From e4e3d806a10cd31079ab379c69a52dad2764f936 Mon Sep 17 00:00:00 2001 From: ninevra Date: Tue, 1 Dec 2020 18:53:09 -0800 Subject: [PATCH 1/6] Test macro invocations containing $ --- corpus/macros.txt | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/corpus/macros.txt b/corpus/macros.txt index d995dffb..ecc40c5d 100644 --- a/corpus/macros.txt +++ b/corpus/macros.txt @@ -51,6 +51,10 @@ a!('\u{0}'..='\u{2}'); a!('lifetime) default!(a); union!(a); +a!($); +a!($()); +a!($ a $); +a!(${$([ a ])}); -------------------------------------------------------------------------------- @@ -101,7 +105,23 @@ union!(a); (macro_invocation (identifier) (token_tree - (identifier))))) + (identifier)))) + (expression_statement + (macro_invocation + (identifier) + (token_tree))) + (expression_statement + (macro_invocation + (identifier) + (token_tree (token_tree)))) + (expression_statement + (macro_invocation + (identifier) + (token_tree (identifier)))) + (expression_statement + (macro_invocation + (identifier) + (token_tree (token_tree (token_tree (token_tree (identifier)))))))) ================================================================================ Macro invocation with comments From f44b01775e1cae106b254be5a2a6b71e61fed9d0 Mon Sep 17 00:00:00 2001 From: ninevra Date: Tue, 1 Dec 2020 19:05:41 -0800 Subject: [PATCH 2/6] Parse macro invocations containing $ --- grammar.js | 18 +- src/grammar.json | 103 +- src/parser.c | 138625 ++++++++++++++++++------------------ src/tree_sitter/parser.h | 5 +- 4 files changed, 69869 insertions(+), 68882 deletions(-) diff --git a/grammar.js b/grammar.js index 0620a009..0454cd3a 100644 --- a/grammar.js +++ b/grammar.js @@ -891,7 +891,23 @@ module.exports = grammar({ $._reserved_identifier, )), '!', - $.token_tree + alias($.delim_token_tree, $.token_tree) + ), + + delim_token_tree: $ => choice( + seq('(', repeat($._delim_tokens), ')'), + seq('[', repeat($._delim_tokens), ']'), + seq('{', repeat($._delim_tokens), '}') + ), + + _delim_tokens: $ => choice( + $._non_delim_token, + alias($.delim_token_tree, $.token_tree), + ), + + _non_delim_token: $ => choice( + $._non_special_token, + '$' ), scoped_identifier: $ => seq( diff --git a/src/grammar.json b/src/grammar.json index adcaaf4b..17702d6c 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4927,9 +4927,110 @@ "type": "STRING", "value": "!" }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "delim_token_tree" + }, + "named": true, + "value": "token_tree" + } + ] + }, + "delim_token_tree": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_delim_tokens" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_delim_tokens" + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_delim_tokens" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + } + ] + }, + "_delim_tokens": { + "type": "CHOICE", + "members": [ { "type": "SYMBOL", - "name": "token_tree" + "name": "_non_delim_token" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "delim_token_tree" + }, + "named": true, + "value": "token_tree" + } + ] + }, + "_non_delim_token": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_non_special_token" + }, + { + "type": "STRING", + "value": "$" } ] }, diff --git a/src/parser.c b/src/parser.c index 948ddf41..f1a975af 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2544 -#define LARGE_STATE_COUNT 628 -#define SYMBOL_COUNT 316 +#define STATE_COUNT 2561 +#define LARGE_STATE_COUNT 643 +#define SYMBOL_COUNT 320 #define ALIAS_COUNT 3 #define TOKEN_COUNT 139 #define EXTERNAL_TOKEN_COUNT 4 @@ -238,106 +238,110 @@ enum { 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, + sym_delim_token_tree = 222, + sym__delim_tokens = 223, + sym__non_delim_token = 224, + sym_scoped_identifier = 225, + sym_scoped_type_identifier_in_expression_position = 226, + sym_scoped_type_identifier = 227, + sym_range_expression = 228, + sym_unary_expression = 229, + sym_try_expression = 230, + sym_reference_expression = 231, + sym_binary_expression = 232, + sym_assignment_expression = 233, + sym_compound_assignment_expr = 234, + sym_type_cast_expression = 235, + sym_return_expression = 236, + sym_yield_expression = 237, + sym_call_expression = 238, + sym_arguments = 239, + sym_array_expression = 240, + sym_parenthesized_expression = 241, + sym_tuple_expression = 242, + sym_unit_expression = 243, + sym_struct_expression = 244, + sym_field_initializer_list = 245, + sym_shorthand_field_initializer = 246, + sym_field_initializer = 247, + sym_base_field_initializer = 248, + sym_if_expression = 249, + sym_if_let_expression = 250, + sym_else_clause = 251, + sym_match_expression = 252, + sym_match_block = 253, + sym_match_arm = 254, + sym_last_match_arm = 255, + sym_match_pattern = 256, + sym_while_expression = 257, + sym_while_let_expression = 258, + sym_loop_expression = 259, + sym_for_expression = 260, + sym_const_block = 261, + sym_closure_expression = 262, + sym_closure_parameters = 263, + sym_loop_label = 264, + sym_break_expression = 265, + sym_continue_expression = 266, + sym_index_expression = 267, + sym_await_expression = 268, + sym_field_expression = 269, + sym_unsafe_block = 270, + sym_async_block = 271, + sym_block = 272, + sym__pattern = 273, + sym_tuple_pattern = 274, + sym_slice_pattern = 275, + sym_tuple_struct_pattern = 276, + sym_struct_pattern = 277, + sym_field_pattern = 278, + sym_remaining_field_pattern = 279, + sym_mut_pattern = 280, + sym_range_pattern = 281, + sym_ref_pattern = 282, + sym_captured_pattern = 283, + sym_reference_pattern = 284, + sym_or_pattern = 285, + sym__literal = 286, + sym__literal_pattern = 287, + sym_negative_literal = 288, + sym_string_literal = 289, + sym_boolean_literal = 290, + aux_sym_source_file_repeat1 = 291, + aux_sym_macro_definition_repeat1 = 292, + aux_sym_token_tree_pattern_repeat1 = 293, + aux_sym_token_tree_repeat1 = 294, + aux_sym_meta_arguments_repeat1 = 295, + aux_sym_declaration_list_repeat1 = 296, + aux_sym_enum_variant_list_repeat1 = 297, + aux_sym_enum_variant_list_repeat2 = 298, + aux_sym_field_declaration_list_repeat1 = 299, + aux_sym_ordered_field_declaration_list_repeat1 = 300, + aux_sym_function_modifiers_repeat1 = 301, + aux_sym_where_clause_repeat1 = 302, + aux_sym_trait_bounds_repeat1 = 303, + aux_sym_type_parameters_repeat1 = 304, + aux_sym_use_list_repeat1 = 305, + aux_sym_parameters_repeat1 = 306, + aux_sym_for_lifetimes_repeat1 = 307, + aux_sym_tuple_type_repeat1 = 308, + aux_sym_type_arguments_repeat1 = 309, + aux_sym_delim_token_tree_repeat1 = 310, + aux_sym_arguments_repeat1 = 311, + aux_sym_array_expression_repeat1 = 312, + aux_sym_tuple_expression_repeat1 = 313, + aux_sym_field_initializer_list_repeat1 = 314, + aux_sym_match_block_repeat1 = 315, + aux_sym_closure_parameters_repeat1 = 316, + aux_sym_tuple_pattern_repeat1 = 317, + aux_sym_struct_pattern_repeat1 = 318, + aux_sym_string_literal_repeat1 = 319, + alias_sym_field_identifier = 320, + alias_sym_shorthand_field_identifier = 321, + alias_sym_type_identifier = 322, }; -static const char * const ts_symbol_names[] = { +static const char *ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym_identifier] = "identifier", [anon_sym_SEMI] = ";", @@ -560,6 +564,9 @@ static const char * const ts_symbol_names[] = { [sym__expression_except_range] = "_expression_except_range", [sym__expression] = "_expression", [sym_macro_invocation] = "macro_invocation", + [sym_delim_token_tree] = "token_tree", + [sym__delim_tokens] = "_delim_tokens", + [sym__non_delim_token] = "_non_delim_token", [sym_scoped_identifier] = "scoped_identifier", [sym_scoped_type_identifier_in_expression_position] = "scoped_type_identifier", [sym_scoped_type_identifier] = "scoped_type_identifier", @@ -645,6 +652,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_for_lifetimes_repeat1] = "for_lifetimes_repeat1", [aux_sym_tuple_type_repeat1] = "tuple_type_repeat1", [aux_sym_type_arguments_repeat1] = "type_arguments_repeat1", + [aux_sym_delim_token_tree_repeat1] = "delim_token_tree_repeat1", [aux_sym_arguments_repeat1] = "arguments_repeat1", [aux_sym_array_expression_repeat1] = "array_expression_repeat1", [aux_sym_tuple_expression_repeat1] = "tuple_expression_repeat1", @@ -659,7 +667,7 @@ static const char * const ts_symbol_names[] = { [alias_sym_type_identifier] = "type_identifier", }; -static const TSSymbol ts_symbol_map[] = { +static TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [sym_identifier] = sym_identifier, [anon_sym_SEMI] = anon_sym_SEMI, @@ -882,6 +890,9 @@ static const TSSymbol ts_symbol_map[] = { [sym__expression_except_range] = sym__expression_except_range, [sym__expression] = sym__expression, [sym_macro_invocation] = sym_macro_invocation, + [sym_delim_token_tree] = sym_token_tree, + [sym__delim_tokens] = sym__delim_tokens, + [sym__non_delim_token] = sym__non_delim_token, [sym_scoped_identifier] = sym_scoped_identifier, [sym_scoped_type_identifier_in_expression_position] = sym_scoped_type_identifier, [sym_scoped_type_identifier] = sym_scoped_type_identifier, @@ -967,6 +978,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_for_lifetimes_repeat1] = aux_sym_for_lifetimes_repeat1, [aux_sym_tuple_type_repeat1] = aux_sym_tuple_type_repeat1, [aux_sym_type_arguments_repeat1] = aux_sym_type_arguments_repeat1, + [aux_sym_delim_token_tree_repeat1] = aux_sym_delim_token_tree_repeat1, [aux_sym_arguments_repeat1] = aux_sym_arguments_repeat1, [aux_sym_array_expression_repeat1] = aux_sym_array_expression_repeat1, [aux_sym_tuple_expression_repeat1] = aux_sym_tuple_expression_repeat1, @@ -1872,6 +1884,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_delim_token_tree] = { + .visible = true, + .named = true, + }, + [sym__delim_tokens] = { + .visible = false, + .named = true, + }, + [sym__non_delim_token] = { + .visible = false, + .named = true, + }, [sym_scoped_identifier] = { .visible = true, .named = true, @@ -2215,6 +2239,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_delim_token_tree_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_arguments_repeat1] = { .visible = false, .named = false, @@ -2296,7 +2324,7 @@ enum { field_value = 28, }; -static const char * const ts_field_names[] = { +static const char *ts_field_names[] = { [0] = NULL, [field_alias] = "alias", [field_alternative] = "alternative", @@ -3224,7 +3252,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_type_parameters, 4}, }; -static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { +static TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, [1] = { [0] = sym_identifier, @@ -3498,7 +3526,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE }, }; -static const uint16_t ts_non_terminal_alias_map[] = { +static uint16_t ts_non_terminal_alias_map[] = { sym_generic_type_with_turbofish, 2, sym_generic_type_with_turbofish, sym_generic_type, @@ -3506,822 +3534,18 @@ static const uint16_t ts_non_terminal_alias_map[] = { }; static inline bool sym_identifier_character_set_1(int32_t c) { - return (c < 43514 - ? (c < 4193 - ? (c < 2707 - ? (c < 1994 - ? (c < 931 - ? (c < 748 - ? (c < 192 + return (c < 43020 + ? (c < 4096 + ? (c < 2693 + ? (c < 1969 + ? (c < 910 + ? (c < 736 + ? (c < 186 ? (c < 170 ? (c < 'a' ? (c >= 'A' && c <= '_') : c <= 'z') - : (c <= 170 || (c < 186 - ? c == 181 - : c <= 186))) - : (c <= 214 || (c < 710 - ? (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705) - : (c <= 721 || (c >= 736 && c <= 740))))) - : (c <= 748 || (c < 895 - ? (c < 886 - ? (c < 880 - ? c == 750 - : c <= 884) - : (c <= 887 || (c >= 891 && c <= 893))) - : (c <= 895 || (c < 908 - ? (c < 904 - ? c == 902 - : c <= 906) - : (c <= 908 || (c >= 910 && c <= 929))))))) - : (c <= 1013 || (c < 1649 - ? (c < 1376 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1015 && c <= 1153) - : c <= 1327) - : (c <= 1366 || c == 1369)) - : (c <= 1416 || (c < 1568 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522) - : (c <= 1610 || (c >= 1646 && c <= 1647))))) - : (c <= 1747 || (c < 1791 - ? (c < 1774 - ? (c < 1765 - ? c == 1749 - : c <= 1766) - : (c <= 1775 || (c >= 1786 && c <= 1788))) - : (c <= 1791 || (c < 1869 - ? (c < 1810 - ? c == 1808 - : c <= 1839) - : (c <= 1957 || c == 1969)))))))) - : (c <= 2026 || (c < 2482 - ? (c < 2208 - ? (c < 2088 - ? (c < 2048 - ? (c < 2042 - ? (c >= 2036 && c <= 2037) - : c <= 2042) - : (c <= 2069 || (c < 2084 - ? c == 2074 - : c <= 2084))) - : (c <= 2088 || (c < 2160 - ? (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154) - : (c <= 2183 || (c >= 2185 && c <= 2190))))) - : (c <= 2249 || (c < 2417 - ? (c < 2384 - ? (c < 2365 - ? (c >= 2308 && c <= 2361) - : c <= 2365) - : (c <= 2384 || (c >= 2392 && c <= 2401))) - : (c <= 2432 || (c < 2451 - ? (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2579 - ? (c < 2527 - ? (c < 2510 - ? (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493) - : (c <= 2510 || (c >= 2524 && c <= 2525))) - : (c <= 2529 || (c < 2565 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556) - : (c <= 2570 || (c >= 2575 && c <= 2576))))) - : (c <= 2600 || (c < 2649 - ? (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2693 - ? (c < 2674 - ? c == 2654 - : c <= 2676) - : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3242 - ? (c < 2962 - ? (c < 2858 - ? (c < 2784 - ? (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 - ? c == 2749 - : c <= 2768))) - : (c <= 2785 || (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c >= 2835 && c <= 2856))))) - : (c <= 2864 || (c < 2911 - ? (c < 2877 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2949 - ? (c < 2947 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c >= 2958 && c <= 2960))))))) - : (c <= 2965 || (c < 3090 - ? (c < 2984 - ? (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c >= 2979 && c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c >= 3086 && c <= 3088))))) - : (c <= 3112 || (c < 3168 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3214 - ? (c < 3205 - ? c == 3200 - : c <= 3212) - : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) - : (c <= 3251 || (c < 3648 - ? (c < 3412 - ? (c < 3332 - ? (c < 3293 - ? (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261) - : (c <= 3294 || (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314))) - : (c <= 3340 || (c < 3389 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386) - : (c <= 3389 || c == 3406)))) - : (c <= 3414 || (c < 3507 - ? (c < 3461 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || c == 3634)))))) - : (c <= 3654 || (c < 3782 - ? (c < 3749 - ? (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3773 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3762) - : (c <= 3773 || (c >= 3776 && c <= 3780))))) - : (c <= 3782 || (c < 3976 - ? (c < 3904 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3911 || (c >= 3913 && c <= 3948))) - : (c <= 3980 || (c < 4176 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) - : (c <= 4193 || (c < 8134 - ? (c < 6176 - ? (c < 4808 - ? (c < 4688 - ? (c < 4295 - ? (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || (c < 4256 - ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))))) - : (c <= 4694 || (c < 4752 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))))))) - : (c <= 4822 || (c < 5792 - ? (c < 5024 - ? (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))))) - : (c <= 5866 || (c < 5984 - ? (c < 5919 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6103 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067) - : (c <= 6103 || c == 6108)))))))) - : (c <= 6264 || (c < 7312 - ? (c < 6823 - ? (c < 6512 - ? (c < 6320 - ? (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314) - : (c <= 6389 || (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509))) - : (c <= 6516 || (c < 6656 - ? (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6823 || (c < 7098 - ? (c < 7043 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988) - : (c <= 7072 || (c >= 7086 && c <= 7087))) - : (c <= 7141 || (c < 7258 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : c <= 7247) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))) - : (c <= 7354 || (c < 8008 - ? (c < 7418 - ? (c < 7406 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : c <= 7404) - : (c <= 7411 || (c >= 7413 && c <= 7414))) - : (c <= 7418 || (c < 7960 - ? (c < 7680 - ? (c >= 7424 && c <= 7615) - : c <= 7957) - : (c <= 7965 || (c >= 7968 && c <= 8005))))) - : (c <= 8013 || (c < 8031 - ? (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || c == 8029)) - : (c <= 8061 || (c < 8126 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) - : (c <= 8140 || (c < 12337 - ? (c < 8544 - ? (c < 8458 - ? (c < 8305 - ? (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188))) - : (c <= 8305 || (c < 8450 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8450 || c == 8455)))) - : (c <= 8467 || (c < 8488 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || c == 8526)))))) - : (c <= 8584 || (c < 11680 - ? (c < 11559 - ? (c < 11506 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))) - : (c <= 11559 || (c < 11631 - ? (c < 11568 - ? c == 11565 - : c <= 11623) - : (c <= 11631 || (c >= 11648 && c <= 11670))))) - : (c <= 11686 || (c < 11720 - ? (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))) - : (c <= 11726 || (c < 12293 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) - : (c <= 12341 || (c < 42891 - ? (c < 19968 - ? (c < 12549 - ? (c < 12445 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12447 || (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 42124 || (c < 42560 - ? (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42775 - ? (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))))))) - : (c <= 42954 || (c < 43250 - ? (c < 43011 - ? (c < 42965 - ? (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))) - : (c <= 43013 || (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))))) - : (c <= 43255 || (c < 43360 - ? (c < 43274 - ? (c < 43261 - ? c == 43259 - : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43488 - ? (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) - : (c <= 43518 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43868 - ? (c < 43714 - ? (c < 43646 - ? (c < 43588 - ? (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))) - : (c <= 43695 || (c < 43705 - ? (c < 43701 - ? c == 43697 - : c <= 43702) - : (c <= 43709 || c == 43712)))) - : (c <= 43714 || (c < 43785 - ? (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))))))) - : (c <= 43881 || (c < 64287 - ? (c < 63744 - ? (c < 55216 - ? (c < 44032 - ? (c >= 43888 && c <= 44002) - : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 - ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 - ? (c < 70480 - ? c == 70461 - : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (c <= 70853 || (c < 71040 - ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 - ? (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 - ? (c < 72250 - ? (c >= 72203 && c <= 72242) - : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 - ? (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (c <= 73112 || (c < 73648 - ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) - : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); -} - -static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 43514 - ? (c < 4193 - ? (c < 2707 - ? (c < 1994 - ? (c < 910 - ? (c < 736 - ? (c < 186 - ? (c < 'a' - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= '_') - : (c <= 'z' || (c < 181 - ? c == 170 - : c <= 181))) + : (c <= 170 || c == 181)) : (c <= 186 || (c < 248 ? (c < 216 ? (c >= 192 && c <= 214) @@ -4338,1098 +3562,1038 @@ static inline bool sym_identifier_character_set_2(int32_t c) { ? c == 895 : c <= 902) : (c <= 906 || c == 908)))))) - : (c <= 929 || (c < 1649 - ? (c < 1376 + : (c <= 929 || (c < 1646 + ? (c < 1369 ? (c < 1162 ? (c < 1015 ? (c >= 931 && c <= 1013) : c <= 1153) - : (c <= 1327 || (c < 1369 - ? (c >= 1329 && c <= 1366) - : c <= 1369))) - : (c <= 1416 || (c < 1568 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522) - : (c <= 1610 || (c >= 1646 && c <= 1647))))) - : (c <= 1747 || (c < 1791 - ? (c < 1774 - ? (c < 1765 - ? c == 1749 - : c <= 1766) - : (c <= 1775 || (c >= 1786 && c <= 1788))) - : (c <= 1791 || (c < 1869 - ? (c < 1810 - ? c == 1808 - : c <= 1839) - : (c <= 1957 || c == 1969)))))))) - : (c <= 2026 || (c < 2482 + : (c <= 1327 || (c >= 1329 && c <= 1366))) + : (c <= 1369 || (c < 1519 + ? (c < 1488 + ? (c >= 1376 && c <= 1416) + : c <= 1514) + : (c <= 1522 || (c >= 1568 && c <= 1610))))) + : (c <= 1647 || (c < 1786 + ? (c < 1765 + ? (c < 1749 + ? (c >= 1649 && c <= 1747) + : c <= 1749) + : (c <= 1766 || (c >= 1774 && c <= 1775))) + : (c <= 1788 || (c < 1810 + ? (c < 1808 + ? c == 1791 + : c <= 1808) + : (c <= 1839 || (c >= 1869 && c <= 1957))))))))) + : (c <= 1969 || (c < 2474 ? (c < 2208 - ? (c < 2088 - ? (c < 2048 - ? (c < 2042 - ? (c >= 2036 && c <= 2037) - : c <= 2042) - : (c <= 2069 || (c < 2084 - ? c == 2074 - : c <= 2084))) - : (c <= 2088 || (c < 2160 - ? (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154) - : (c <= 2183 || (c >= 2185 && c <= 2190))))) - : (c <= 2249 || (c < 2417 - ? (c < 2384 - ? (c < 2365 - ? (c >= 2308 && c <= 2361) - : c <= 2365) - : (c <= 2384 || (c >= 2392 && c <= 2401))) - : (c <= 2432 || (c < 2451 - ? (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2579 - ? (c < 2527 - ? (c < 2510 - ? (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493) - : (c <= 2510 || (c >= 2524 && c <= 2525))) - : (c <= 2529 || (c < 2565 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556) - : (c <= 2570 || (c >= 2575 && c <= 2576))))) - : (c <= 2600 || (c < 2649 - ? (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2693 - ? (c < 2674 - ? c == 2654 - : c <= 2676) - : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3242 - ? (c < 2962 - ? (c < 2858 - ? (c < 2784 - ? (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 + ? (c < 2074 + ? (c < 2042 + ? (c < 2036 + ? (c >= 1994 && c <= 2026) + : c <= 2037) + : (c <= 2042 || (c >= 2048 && c <= 2069))) + : (c <= 2074 || (c < 2112 + ? (c < 2088 + ? c == 2084 + : c <= 2088) + : (c <= 2136 || (c >= 2144 && c <= 2154))))) + : (c <= 2228 || (c < 2392 + ? (c < 2365 + ? (c < 2308 + ? (c >= 2230 && c <= 2247) + : c <= 2361) + : (c <= 2365 || c == 2384)) + : (c <= 2401 || (c < 2447 + ? (c < 2437 + ? (c >= 2417 && c <= 2432) + : c <= 2444) + : (c <= 2448 || (c >= 2451 && c <= 2472))))))) + : (c <= 2480 || (c < 2575 + ? (c < 2524 + ? (c < 2493 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2493 || c == 2510)) + : (c <= 2525 || (c < 2556 + ? (c < 2544 + ? (c >= 2527 && c <= 2529) + : c <= 2545) + : (c <= 2556 || (c >= 2565 && c <= 2570))))) + : (c <= 2576 || (c < 2616 + ? (c < 2610 + ? (c < 2602 + ? (c >= 2579 && c <= 2600) + : c <= 2608) + : (c <= 2611 || (c >= 2613 && c <= 2614))) + : (c <= 2617 || (c < 2654 + ? (c >= 2649 && c <= 2652) + : (c <= 2654 || (c >= 2674 && c <= 2676))))))))))) + : (c <= 2701 || (c < 3214 + ? (c < 2947 + ? (c < 2821 + ? (c < 2741 + ? (c < 2730 + ? (c < 2707 + ? (c >= 2703 && c <= 2705) + : c <= 2728) + : (c <= 2736 || (c >= 2738 && c <= 2739))) + : (c <= 2745 || (c < 2784 + ? (c < 2768 ? c == 2749 - : c <= 2768))) - : (c <= 2785 || (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c >= 2835 && c <= 2856))))) - : (c <= 2864 || (c < 2911 - ? (c < 2877 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2949 - ? (c < 2947 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c >= 2958 && c <= 2960))))))) - : (c <= 2965 || (c < 3090 - ? (c < 2984 - ? (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c >= 2979 && c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c >= 3086 && c <= 3088))))) - : (c <= 3112 || (c < 3168 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3214 - ? (c < 3205 - ? c == 3200 - : c <= 3212) - : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) - : (c <= 3251 || (c < 3648 - ? (c < 3412 - ? (c < 3332 - ? (c < 3293 - ? (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261) - : (c <= 3294 || (c < 3313 + : c <= 2768) + : (c <= 2785 || c == 2809)))) + : (c <= 2828 || (c < 2869 + ? (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c >= 2866 && c <= 2867))) + : (c <= 2873 || (c < 2911 + ? (c < 2908 + ? c == 2877 + : c <= 2909) + : (c <= 2913 || c == 2929)))))) + : (c <= 2947 || (c < 3024 + ? (c < 2972 + ? (c < 2962 + ? (c < 2958 + ? (c >= 2949 && c <= 2954) + : c <= 2960) + : (c <= 2965 || (c >= 2969 && c <= 2970))) + : (c <= 2972 || (c < 2984 + ? (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980) + : (c <= 2986 || (c >= 2990 && c <= 3001))))) + : (c <= 3024 || (c < 3133 + ? (c < 3090 + ? (c < 3086 + ? (c >= 3077 && c <= 3084) + : c <= 3088) + : (c <= 3112 || (c >= 3114 && c <= 3129))) + : (c <= 3133 || (c < 3200 + ? (c < 3168 + ? (c >= 3160 && c <= 3162) + : c <= 3169) + : (c <= 3200 || (c >= 3205 && c <= 3212))))))))) + : (c <= 3216 || (c < 3520 + ? (c < 3346 + ? (c < 3294 + ? (c < 3253 + ? (c < 3242 + ? (c >= 3218 && c <= 3240) + : c <= 3251) + : (c <= 3257 || c == 3261)) + : (c <= 3294 || (c < 3332 + ? (c < 3313 ? (c >= 3296 && c <= 3297) - : c <= 3314))) - : (c <= 3340 || (c < 3389 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386) - : (c <= 3389 || c == 3406)))) - : (c <= 3414 || (c < 3507 - ? (c < 3461 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || c == 3634)))))) - : (c <= 3654 || (c < 3782 - ? (c < 3749 - ? (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3773 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3762) - : (c <= 3773 || (c >= 3776 && c <= 3780))))) - : (c <= 3782 || (c < 3976 - ? (c < 3904 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3911 || (c >= 3913 && c <= 3948))) - : (c <= 3980 || (c < 4176 - ? (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) - : (c <= 4193 || (c < 8134 - ? (c < 6176 - ? (c < 4808 - ? (c < 4688 - ? (c < 4295 - ? (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || (c < 4256 - ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 + : c <= 3314) + : (c <= 3340 || (c >= 3342 && c <= 3344))))) + : (c <= 3386 || (c < 3450 + ? (c < 3412 + ? (c < 3406 + ? c == 3389 + : c <= 3406) + : (c <= 3414 || (c >= 3423 && c <= 3425))) + : (c <= 3455 || (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || c == 3517)))))) + : (c <= 3526 || (c < 3762 + ? (c < 3716 + ? (c < 3648 + ? (c < 3634 + ? (c >= 3585 && c <= 3632) + : c <= 3634) + : (c <= 3654 || (c >= 3713 && c <= 3714))) + : (c <= 3716 || (c < 3749 + ? (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747) + : (c <= 3749 || (c >= 3751 && c <= 3760))))) + : (c <= 3762 || (c < 3840 + ? (c < 3782 + ? (c < 3776 + ? c == 3773 + : c <= 3780) + : (c <= 3782 || (c >= 3804 && c <= 3807))) + : (c <= 3840 || (c < 3913 + ? (c >= 3904 && c <= 3911) + : (c <= 3948 || (c >= 3976 && c <= 3980))))))))))))) + : (c <= 4138 || (c < 8025 + ? (c < 5952 + ? (c < 4752 + ? (c < 4295 + ? (c < 4197 + ? (c < 4186 + ? (c < 4176 + ? c == 4159 + : c <= 4181) + : (c <= 4189 || c == 4193)) + : (c <= 4198 || (c < 4238 + ? (c < 4213 + ? (c >= 4206 && c <= 4208) + : c <= 4225) + : (c <= 4238 || (c >= 4256 && c <= 4293))))) + : (c <= 4295 || (c < 4688 + ? (c < 4348 ? (c < 4304 ? c == 4301 : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))))) - : (c <= 4694 || (c < 4752 - ? (c < 4704 + : (c <= 4680 || (c >= 4682 && c <= 4685))) + : (c <= 4694 || (c < 4704 ? (c < 4698 ? c == 4696 : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4800 + : (c <= 4744 || (c >= 4746 && c <= 4749))))))) + : (c <= 4784 || (c < 5024 + ? (c < 4808 + ? (c < 4800 ? (c < 4792 ? (c >= 4786 && c <= 4789) : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))))))) - : (c <= 4822 || (c < 5792 - ? (c < 5024 - ? (c < 4888 + : (c <= 4800 || (c >= 4802 && c <= 4805))) + : (c <= 4822 || (c < 4888 ? (c < 4882 ? (c >= 4824 && c <= 4880) : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5743 + : (c <= 4954 || (c >= 4992 && c <= 5007))))) + : (c <= 5109 || (c < 5792 + ? (c < 5743 ? (c < 5121 ? (c >= 5112 && c <= 5117) : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))))) - : (c <= 5866 || (c < 5984 - ? (c < 5919 + : (c <= 5759 || (c >= 5761 && c <= 5786))) + : (c <= 5866 || (c < 5902 ? (c < 5888 ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6103 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067) - : (c <= 6103 || c == 6108)))))))) - : (c <= 6264 || (c < 7312 - ? (c < 6823 - ? (c < 6512 - ? (c < 6320 - ? (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314) - : (c <= 6389 || (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509))) - : (c <= 6516 || (c < 6656 - ? (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6823 || (c < 7098 - ? (c < 7043 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988) - : (c <= 7072 || (c >= 7086 && c <= 7087))) - : (c <= 7141 || (c < 7258 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : c <= 7247) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))) - : (c <= 7354 || (c < 8008 - ? (c < 7418 - ? (c < 7406 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : c <= 7404) - : (c <= 7411 || (c >= 7413 && c <= 7414))) - : (c <= 7418 || (c < 7960 - ? (c < 7680 - ? (c >= 7424 && c <= 7615) - : c <= 7957) - : (c <= 7965 || (c >= 7968 && c <= 8005))))) - : (c <= 8013 || (c < 8031 - ? (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || c == 8029)) - : (c <= 8061 || (c < 8126 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) - : (c <= 8140 || (c < 12337 - ? (c < 8544 - ? (c < 8458 - ? (c < 8305 - ? (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188))) - : (c <= 8305 || (c < 8450 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8450 || c == 8455)))) - : (c <= 8467 || (c < 8488 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || c == 8486)) - : (c <= 8488 || (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || c == 8526)))))) - : (c <= 8584 || (c < 11680 - ? (c < 11559 - ? (c < 11506 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))) - : (c <= 11559 || (c < 11631 - ? (c < 11568 - ? c == 11565 - : c <= 11623) - : (c <= 11631 || (c >= 11648 && c <= 11670))))) - : (c <= 11686 || (c < 11720 - ? (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))) - : (c <= 11726 || (c < 12293 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) - : (c <= 12341 || (c < 42891 - ? (c < 19968 - ? (c < 12549 - ? (c < 12445 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12447 || (c < 12540 + : c <= 5900) + : (c <= 5905 || (c >= 5920 && c <= 5937))))))))) + : (c <= 5969 || (c < 7043 + ? (c < 6400 + ? (c < 6108 + ? (c < 6016 + ? (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000) + : (c <= 6067 || c == 6103)) + : (c <= 6108 || (c < 6314 + ? (c < 6272 + ? (c >= 6176 && c <= 6264) + : c <= 6312) + : (c <= 6314 || (c >= 6320 && c <= 6389))))) + : (c <= 6430 || (c < 6656 + ? (c < 6528 + ? (c < 6512 + ? (c >= 6480 && c <= 6509) + : c <= 6516) + : (c <= 6571 || (c >= 6576 && c <= 6601))) + : (c <= 6678 || (c < 6917 + ? (c < 6823 + ? (c >= 6688 && c <= 6740) + : c <= 6823) + : (c <= 6963 || (c >= 6981 && c <= 6987))))))) + : (c <= 7072 || (c < 7406 + ? (c < 7258 + ? (c < 7168 + ? (c < 7098 + ? (c >= 7086 && c <= 7087) + : c <= 7141) + : (c <= 7203 || (c >= 7245 && c <= 7247))) + : (c <= 7293 || (c < 7357 + ? (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354) + : (c <= 7359 || (c >= 7401 && c <= 7404))))) + : (c <= 7411 || (c < 7960 + ? (c < 7424 + ? (c < 7418 + ? (c >= 7413 && c <= 7414) + : c <= 7418) + : (c <= 7615 || (c >= 7680 && c <= 7957))) + : (c <= 7965 || (c < 8008 + ? (c >= 7968 && c <= 8005) + : (c <= 8013 || (c >= 8016 && c <= 8023))))))))))) + : (c <= 8025 || (c < 11631 + ? (c < 8469 + ? (c < 8150 + ? (c < 8118 + ? (c < 8031 + ? (c < 8029 + ? c == 8027 + : c <= 8029) + : (c <= 8061 || (c >= 8064 && c <= 8116))) + : (c <= 8124 || (c < 8134 + ? (c < 8130 + ? c == 8126 + : c <= 8132) + : (c <= 8140 || (c >= 8144 && c <= 8147))))) + : (c <= 8155 || (c < 8319 + ? (c < 8182 + ? (c < 8178 + ? (c >= 8160 && c <= 8172) + : c <= 8180) + : (c <= 8188 || c == 8305)) + : (c <= 8319 || (c < 8455 + ? (c < 8450 + ? (c >= 8336 && c <= 8348) + : c <= 8450) + : (c <= 8455 || (c >= 8458 && c <= 8467))))))) + : (c <= 8469 || (c < 11264 + ? (c < 8490 + ? (c < 8486 + ? (c < 8484 + ? (c >= 8472 && c <= 8477) + : c <= 8484) + : (c <= 8486 || c == 8488)) + : (c <= 8505 || (c < 8526 + ? (c < 8517 + ? (c >= 8508 && c <= 8511) + : c <= 8521) + : (c <= 8526 || (c >= 8544 && c <= 8584))))) + : (c <= 11310 || (c < 11520 + ? (c < 11499 + ? (c < 11360 + ? (c >= 11312 && c <= 11358) + : c <= 11492) + : (c <= 11502 || (c >= 11506 && c <= 11507))) + : (c <= 11557 || (c < 11565 + ? c == 11559 + : (c <= 11565 || (c >= 11568 && c <= 11623))))))))) + : (c <= 11631 || (c < 12704 + ? (c < 12293 + ? (c < 11704 + ? (c < 11688 + ? (c < 11680 + ? (c >= 11648 && c <= 11670) + : c <= 11686) + : (c <= 11694 || (c >= 11696 && c <= 11702))) + : (c <= 11710 || (c < 11728 + ? (c < 11720 + ? (c >= 11712 && c <= 11718) + : c <= 11726) + : (c <= 11734 || (c >= 11736 && c <= 11742))))) + : (c <= 12295 || (c < 12445 + ? (c < 12344 + ? (c < 12337 + ? (c >= 12321 && c <= 12329) + : c <= 12341) + : (c <= 12348 || (c >= 12353 && c <= 12438))) + : (c <= 12447 || (c < 12549 + ? (c < 12540 ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 42124 || (c < 42560 - ? (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42775 - ? (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))))))) - : (c <= 42954 || (c < 43250 - ? (c < 43011 - ? (c < 42965 - ? (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))) - : (c <= 43013 || (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))))) - : (c <= 43255 || (c < 43360 - ? (c < 43274 - ? (c < 43261 - ? c == 43259 - : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43488 - ? (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) - : (c <= 43518 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43868 - ? (c < 43714 - ? (c < 43646 - ? (c < 43588 - ? (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))) - : (c <= 43695 || (c < 43705 - ? (c < 43701 - ? c == 43697 - : c <= 43702) - : (c <= 43709 || c == 43712)))) - : (c <= 43714 || (c < 43785 - ? (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))))))) - : (c <= 43881 || (c < 64287 - ? (c < 63744 - ? (c < 55216 - ? (c < 44032 - ? (c >= 43888 && c <= 44002) - : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 + : c <= 12543) + : (c <= 12591 || (c >= 12593 && c <= 12686))))))) + : (c <= 12735 || (c < 42623 + ? (c < 42192 + ? (c < 19968 + ? (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903) + : (c <= 40956 || (c >= 40960 && c <= 42124))) + : (c <= 42237 || (c < 42538 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))))) + : (c <= 42653 || (c < 42946 + ? (c < 42786 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : c <= 42783) + : (c <= 42888 || (c >= 42891 && c <= 42943))) + : (c <= 42954 || (c < 43011 + ? (c >= 42997 && c <= 43009) + : (c <= 43013 || (c >= 43015 && c <= 43018))))))))))))))) + : (c <= 43042 || (c < 70453 + ? (c < 66176 + ? (c < 64112 + ? (c < 43697 + ? (c < 43471 + ? (c < 43261 + ? (c < 43250 + ? (c < 43138 + ? (c >= 43072 && c <= 43123) + : c <= 43187) + : (c <= 43255 || c == 43259)) + : (c <= 43262 || (c < 43360 + ? (c < 43312 + ? (c >= 43274 && c <= 43301) + : c <= 43334) + : (c <= 43388 || (c >= 43396 && c <= 43442))))) + : (c <= 43471 || (c < 43584 + ? (c < 43514 + ? (c < 43494 + ? (c >= 43488 && c <= 43492) + : c <= 43503) + : (c <= 43518 || (c >= 43520 && c <= 43560))) + : (c <= 43586 || (c < 43642 + ? (c < 43616 + ? (c >= 43588 && c <= 43595) + : c <= 43638) + : (c <= 43642 || (c >= 43646 && c <= 43695))))))) + : (c <= 43697 || (c < 43793 + ? (c < 43739 + ? (c < 43712 + ? (c < 43705 + ? (c >= 43701 && c <= 43702) + : c <= 43709) + : (c <= 43712 || c == 43714)) + : (c <= 43741 || (c < 43777 + ? (c < 43762 + ? (c >= 43744 && c <= 43754) + : c <= 43764) + : (c <= 43782 || (c >= 43785 && c <= 43790))))) + : (c <= 43798 || (c < 43888 + ? (c < 43824 + ? (c < 43816 + ? (c >= 43808 && c <= 43814) + : c <= 43822) + : (c <= 43866 || (c >= 43868 && c <= 43881))) + : (c <= 44002 || (c < 55243 + ? (c < 55216 + ? (c >= 44032 && c <= 55203) + : c <= 55238) + : (c <= 55291 || (c >= 63744 && c <= 64109))))))))) + : (c <= 64217 || (c < 65147 + ? (c < 64326 + ? (c < 64298 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64285 || (c >= 64287 && c <= 64296))) + : (c <= 64310 || (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))))) + : (c <= 64433 || (c < 65008 + ? (c < 64848 + ? (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65017 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || c == 65145)))))) + : (c <= 65147 || (c < 65498 + ? (c < 65382 + ? (c < 65313 ? (c < 65151 ? c == 65149 : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 + : (c <= 65338 || (c >= 65345 && c <= 65370))) + : (c <= 65437 || (c < 65482 ? (c < 65474 ? (c >= 65440 && c <= 65470) : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 + : (c <= 65487 || (c >= 65490 && c <= 65495))))) + : (c <= 65500 || (c < 65599 + ? (c < 65576 ? (c < 65549 ? (c >= 65536 && c <= 65547) : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 - ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 + : (c <= 65594 || (c >= 65596 && c <= 65597))) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : (c <= 65786 || (c >= 65856 && c <= 65908))))))))))) + : (c <= 66204 || (c < 68416 + ? (c < 67639 + ? (c < 66736 + ? (c < 66432 + ? (c < 66349 + ? (c < 66304 + ? (c >= 66208 && c <= 66256) + : c <= 66335) + : (c <= 66378 || (c >= 66384 && c <= 66421))) + : (c <= 66461 || (c < 66513 + ? (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511) + : (c <= 66517 || (c >= 66560 && c <= 66717))))) + : (c <= 66771 || (c < 67392 + ? (c < 66864 + ? (c < 66816 + ? (c >= 66776 && c <= 66811) + : c <= 66855) + : (c <= 66915 || (c >= 67072 && c <= 67382))) + : (c <= 67413 || (c < 67592 + ? (c < 67584 + ? (c >= 67424 && c <= 67431) + : c <= 67589) + : (c <= 67592 || (c >= 67594 && c <= 67637))))))) + : (c <= 67640 || (c < 68030 + ? (c < 67808 + ? (c < 67680 + ? (c < 67647 + ? c == 67644 + : c <= 67669) + : (c <= 67702 || (c >= 67712 && c <= 67742))) + : (c <= 67826 || (c < 67872 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : c <= 67861) + : (c <= 67897 || (c >= 67968 && c <= 68023))))) + : (c <= 68031 || (c < 68192 + ? (c < 68117 + ? (c < 68112 + ? c == 68096 + : c <= 68115) + : (c <= 68119 || (c >= 68121 && c <= 68149))) + : (c <= 68220 || (c < 68297 + ? (c < 68288 + ? (c >= 68224 && c <= 68252) + : c <= 68295) + : (c <= 68324 || (c >= 68352 && c <= 68405))))))))) + : (c <= 68437 || (c < 69968 + ? (c < 69415 + ? (c < 68800 + ? (c < 68608 + ? (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497) + : (c <= 68680 || (c >= 68736 && c <= 68786))) + : (c <= 68850 || (c < 69296 + ? (c < 69248 + ? (c >= 68864 && c <= 68899) + : c <= 69289) + : (c <= 69297 || (c >= 69376 && c <= 69404))))) + : (c <= 69415 || (c < 69763 + ? (c < 69600 + ? (c < 69552 + ? (c >= 69424 && c <= 69445) + : c <= 69572) + : (c <= 69622 || (c >= 69635 && c <= 69687))) + : (c <= 69807 || (c < 69956 + ? (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926) + : (c <= 69956 || c == 69959)))))) + : (c <= 70002 || (c < 70282 + ? (c < 70108 + ? (c < 70081 + ? (c < 70019 + ? c == 70006 + : c <= 70066) + : (c <= 70084 || c == 70106)) + : (c <= 70108 || (c < 70272 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70187) + : (c <= 70278 || c == 70280)))) + : (c <= 70285 || (c < 70415 + ? (c < 70320 + ? (c < 70303 + ? (c >= 70287 && c <= 70301) + : c <= 70312) + : (c <= 70366 || (c >= 70405 && c <= 70412))) + : (c <= 70416 || (c < 70442 + ? (c >= 70419 && c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))))))))))))) + : (c <= 70457 || (c < 113808 + ? (c < 72818 + ? (c < 71945 + ? (c < 71040 + ? (c < 70727 + ? (c < 70493 ? (c < 70480 ? c == 70461 : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 + : (c <= 70497 || (c >= 70656 && c <= 70708))) + : (c <= 70730 || (c < 70852 ? (c < 70784 ? (c >= 70751 && c <= 70753) : c <= 70831) - : (c <= 70853 || (c < 71040 - ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 + : (c <= 70853 || c == 70855)))) + : (c <= 71086 || (c < 71352 + ? (c < 71236 + ? (c < 71168 + ? (c >= 71128 && c <= 71131) + : c <= 71215) + : (c <= 71236 || (c >= 71296 && c <= 71338))) + : (c <= 71352 || (c < 71840 ? (c < 71680 - ? (c >= 71488 && c <= 71494) + ? (c >= 71424 && c <= 71450) : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 + : (c <= 71903 || (c >= 71935 && c <= 71942))))))) + : (c <= 71945 || (c < 72192 + ? (c < 72001 + ? (c < 71960 ? (c < 71957 ? (c >= 71948 && c <= 71955) : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 + : (c <= 71983 || c == 71999)) + : (c <= 72001 || (c < 72161 ? (c < 72106 ? (c >= 72096 && c <= 72103) : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 + : (c <= 72161 || c == 72163)))) + : (c <= 72192 || (c < 72349 + ? (c < 72272 ? (c < 72250 ? (c >= 72203 && c <= 72242) : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 + : (c <= 72272 || (c >= 72284 && c <= 72329))) + : (c <= 72349 || (c < 72714 ? (c < 72704 - ? (c >= 72368 && c <= 72440) + ? (c >= 72384 && c <= 72440) : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 + : (c <= 72750 || c == 72768)))))))) + : (c <= 72847 || (c < 92992 + ? (c < 73648 + ? (c < 73056 + ? (c < 72971 ? (c < 72968 ? (c >= 72960 && c <= 72966) : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 + : (c <= 73008 || c == 73030)) + : (c <= 73061 || (c < 73112 ? (c < 73066 ? (c >= 73063 && c <= 73064) : c <= 73097) - : (c <= 73112 || (c < 73648 - ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 + : (c <= 73112 || (c >= 73440 && c <= 73458))))) + : (c <= 73648 || (c < 82944 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c >= 77824 && c <= 78894))) + : (c <= 83526 || (c < 92880 ? (c < 92736 ? (c >= 92160 && c <= 92728) : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : (c <= 92909 || (c >= 92928 && c <= 92975))))))) + : (c <= 92995 || (c < 100352 + ? (c < 94032 + ? (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c >= 93952 && c <= 94026))) + : (c <= 94032 || (c < 94179 + ? (c < 94176 + ? (c >= 94099 && c <= 94111) + : c <= 94177) + : (c <= 94179 || (c >= 94208 && c <= 100343))))) + : (c <= 101589 || (c < 110960 + ? (c < 110928 + ? (c < 110592 + ? (c >= 101632 && c <= 101640) + : c <= 110878) + : (c <= 110930 || (c >= 110948 && c <= 110951))) + : (c <= 111355 || (c < 113776 + ? (c >= 113664 && c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))))))))))) + : (c <= 113817 || (c < 126469 + ? (c < 120488 + ? (c < 120005 + ? (c < 119973 + ? (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)) + : (c <= 119974 || (c < 119995 + ? (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) + : c <= 119993) + : (c <= 119995 || (c >= 119997 && c <= 120003))))) + : (c <= 120069 || (c < 120123 + ? (c < 120086 + ? (c < 120077 + ? (c >= 120071 && c <= 120074) + : c <= 120084) + : (c <= 120092 || (c >= 120094 && c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c >= 120146 && c <= 120485))))))) + : (c <= 120512 || (c < 120772 + ? (c < 120630 + ? (c < 120572 + ? (c < 120540 + ? (c >= 120514 && c <= 120538) + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))) + : (c <= 120654 || (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c >= 120746 && c <= 120770))))) + : (c <= 120779 || (c < 124928 + ? (c < 123214 + ? (c < 123191 + ? (c >= 123136 && c <= 123180) + : c <= 123197) + : (c <= 123214 || (c >= 123584 && c <= 123627))) + : (c <= 125124 || (c < 125259 + ? (c >= 125184 && c <= 125251) + : (c <= 125259 || (c >= 126464 && c <= 126467))))))))) + : (c <= 126495 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c >= 126505 && c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173789) + : (c <= 177972 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 194560 + ? (c >= 183984 && c <= 191456) : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } -static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < 43514 - ? (c < 4193 - ? (c < 2707 - ? (c < 1994 - ? (c < 931 - ? (c < 748 - ? (c < 192 - ? (c < 170 - ? (c < 'a' +static inline bool sym_identifier_character_set_2(int32_t c) { + return (c < 43020 + ? (c < 3976 + ? (c < 2674 + ? (c < 1869 + ? (c < 908 + ? (c < 710 + ? (c < 181 + ? (c < 'a' + ? (c < '_' ? (c >= 'A' && c <= 'Z') - : c <= 'z') - : (c <= 170 || (c < 186 - ? c == 181 - : c <= 186))) - : (c <= 214 || (c < 710 - ? (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705) - : (c <= 721 || (c >= 736 && c <= 740))))) - : (c <= 748 || (c < 895 - ? (c < 886 - ? (c < 880 - ? c == 750 - : c <= 884) - : (c <= 887 || (c >= 891 && c <= 893))) - : (c <= 895 || (c < 908 - ? (c < 904 - ? c == 902 - : c <= 906) - : (c <= 908 || (c >= 910 && c <= 929))))))) - : (c <= 1013 || (c < 1649 - ? (c < 1376 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1015 && c <= 1153) - : c <= 1327) - : (c <= 1366 || c == 1369)) - : (c <= 1416 || (c < 1568 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522) - : (c <= 1610 || (c >= 1646 && c <= 1647))))) - : (c <= 1747 || (c < 1791 - ? (c < 1774 - ? (c < 1765 - ? c == 1749 - : c <= 1766) - : (c <= 1775 || (c >= 1786 && c <= 1788))) - : (c <= 1791 || (c < 1869 - ? (c < 1810 - ? c == 1808 - : c <= 1839) - : (c <= 1957 || c == 1969)))))))) - : (c <= 2026 || (c < 2482 - ? (c < 2208 - ? (c < 2088 - ? (c < 2048 - ? (c < 2042 - ? (c >= 2036 && c <= 2037) - : c <= 2042) - : (c <= 2069 || (c < 2084 + : c <= '_') + : (c <= 'z' || c == 170)) + : (c <= 181 || (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c >= 248 && c <= 705))))) + : (c <= 721 || (c < 886 + ? (c < 750 + ? (c < 748 + ? (c >= 736 && c <= 740) + : c <= 748) + : (c <= 750 || (c >= 880 && c <= 884))) + : (c <= 887 || (c < 902 + ? (c < 895 + ? (c >= 891 && c <= 893) + : c <= 895) + : (c <= 902 || (c >= 904 && c <= 906))))))) + : (c <= 908 || (c < 1568 + ? (c < 1329 + ? (c < 1015 + ? (c < 931 + ? (c >= 910 && c <= 929) + : c <= 1013) + : (c <= 1153 || (c >= 1162 && c <= 1327))) + : (c <= 1366 || (c < 1488 + ? (c < 1376 + ? c == 1369 + : c <= 1416) + : (c <= 1514 || (c >= 1519 && c <= 1522))))) + : (c <= 1610 || (c < 1774 + ? (c < 1749 + ? (c < 1649 + ? (c >= 1646 && c <= 1647) + : c <= 1747) + : (c <= 1749 || (c >= 1765 && c <= 1766))) + : (c <= 1775 || (c < 1808 + ? (c < 1791 + ? (c >= 1786 && c <= 1788) + : c <= 1791) + : (c <= 1808 || (c >= 1810 && c <= 1839))))))))) + : (c <= 1957 || (c < 2451 + ? (c < 2144 + ? (c < 2048 + ? (c < 2036 + ? (c < 1994 + ? c == 1969 + : c <= 2026) + : (c <= 2037 || c == 2042)) + : (c <= 2069 || (c < 2088 + ? (c < 2084 ? c == 2074 - : c <= 2084))) - : (c <= 2088 || (c < 2160 - ? (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154) - : (c <= 2183 || (c >= 2185 && c <= 2190))))) - : (c <= 2249 || (c < 2417 - ? (c < 2384 - ? (c < 2365 - ? (c >= 2308 && c <= 2361) - : c <= 2365) - : (c <= 2384 || (c >= 2392 && c <= 2401))) - : (c <= 2432 || (c < 2451 - ? (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2579 - ? (c < 2527 - ? (c < 2510 - ? (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493) - : (c <= 2510 || (c >= 2524 && c <= 2525))) - : (c <= 2529 || (c < 2565 - ? (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556) - : (c <= 2570 || (c >= 2575 && c <= 2576))))) - : (c <= 2600 || (c < 2649 - ? (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2693 - ? (c < 2674 - ? c == 2654 - : c <= 2676) - : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3242 - ? (c < 2962 - ? (c < 2858 - ? (c < 2784 - ? (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 - ? c == 2749 - : c <= 2768))) - : (c <= 2785 || (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c >= 2835 && c <= 2856))))) - : (c <= 2864 || (c < 2911 - ? (c < 2877 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2877 || (c >= 2908 && c <= 2909))) - : (c <= 2913 || (c < 2949 - ? (c < 2947 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c >= 2958 && c <= 2960))))))) - : (c <= 2965 || (c < 3090 - ? (c < 2984 - ? (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c >= 2979 && c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c >= 3086 && c <= 3088))))) - : (c <= 3112 || (c < 3168 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || c == 3165)) - : (c <= 3169 || (c < 3214 - ? (c < 3205 - ? c == 3200 - : c <= 3212) - : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) - : (c <= 3251 || (c < 3648 - ? (c < 3412 - ? (c < 3332 - ? (c < 3293 - ? (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261) - : (c <= 3294 || (c < 3313 - ? (c >= 3296 && c <= 3297) - : c <= 3314))) - : (c <= 3340 || (c < 3389 - ? (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386) - : (c <= 3389 || c == 3406)))) - : (c <= 3414 || (c < 3507 - ? (c < 3461 - ? (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || c == 3634)))))) - : (c <= 3654 || (c < 3782 - ? (c < 3749 - ? (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c >= 3724 && c <= 3747))) - : (c <= 3749 || (c < 3773 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : c <= 3762) - : (c <= 3773 || (c >= 3776 && c <= 3780))))) - : (c <= 3782 || (c < 3976 - ? (c < 3904 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3911 || (c >= 3913 && c <= 3948))) - : (c <= 3980 || (c < 4176 + : c <= 2084) + : (c <= 2088 || (c >= 2112 && c <= 2136))))) + : (c <= 2154 || (c < 2384 + ? (c < 2308 + ? (c < 2230 + ? (c >= 2208 && c <= 2228) + : c <= 2247) + : (c <= 2361 || c == 2365)) + : (c <= 2384 || (c < 2437 + ? (c < 2417 + ? (c >= 2392 && c <= 2401) + : c <= 2432) + : (c <= 2444 || (c >= 2447 && c <= 2448))))))) + : (c <= 2472 || (c < 2565 + ? (c < 2510 + ? (c < 2486 + ? (c < 2482 + ? (c >= 2474 && c <= 2480) + : c <= 2482) + : (c <= 2489 || c == 2493)) + : (c <= 2510 || (c < 2544 + ? (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2529) + : (c <= 2545 || c == 2556)))) + : (c <= 2570 || (c < 2613 + ? (c < 2602 + ? (c < 2579 + ? (c >= 2575 && c <= 2576) + : c <= 2600) + : (c <= 2608 || (c >= 2610 && c <= 2611))) + : (c <= 2614 || (c < 2649 + ? (c >= 2616 && c <= 2617) + : (c <= 2652 || c == 2654)))))))))) + : (c <= 2676 || (c < 3205 + ? (c < 2929 + ? (c < 2809 + ? (c < 2738 + ? (c < 2707 + ? (c < 2703 + ? (c >= 2693 && c <= 2701) + : c <= 2705) + : (c <= 2728 || (c >= 2730 && c <= 2736))) + : (c <= 2739 || (c < 2768 + ? (c < 2749 + ? (c >= 2741 && c <= 2745) + : c <= 2749) + : (c <= 2768 || (c >= 2784 && c <= 2785))))) + : (c <= 2809 || (c < 2866 + ? (c < 2835 + ? (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832) + : (c <= 2856 || (c >= 2858 && c <= 2864))) + : (c <= 2867 || (c < 2908 + ? (c < 2877 + ? (c >= 2869 && c <= 2873) + : c <= 2877) + : (c <= 2909 || (c >= 2911 && c <= 2913))))))) + : (c <= 2929 || (c < 2990 + ? (c < 2969 + ? (c < 2958 + ? (c < 2949 + ? c == 2947 + : c <= 2954) + : (c <= 2960 || (c >= 2962 && c <= 2965))) + : (c <= 2970 || (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c >= 2984 && c <= 2986))))) + : (c <= 3001 || (c < 3114 + ? (c < 3086 + ? (c < 3077 + ? c == 3024 + : c <= 3084) + : (c <= 3088 || (c >= 3090 && c <= 3112))) + : (c <= 3129 || (c < 3168 + ? (c < 3160 + ? c == 3133 + : c <= 3162) + : (c <= 3169 || c == 3200)))))))) + : (c <= 3212 || (c < 3517 + ? (c < 3342 + ? (c < 3261 + ? (c < 3242 + ? (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240) + : (c <= 3251 || (c >= 3253 && c <= 3257))) + : (c <= 3261 || (c < 3313 + ? (c < 3296 + ? c == 3294 + : c <= 3297) + : (c <= 3314 || (c >= 3332 && c <= 3340))))) + : (c <= 3344 || (c < 3423 + ? (c < 3406 + ? (c < 3389 + ? (c >= 3346 && c <= 3386) + : c <= 3389) + : (c <= 3406 || (c >= 3412 && c <= 3414))) + : (c <= 3425 || (c < 3482 + ? (c < 3461 + ? (c >= 3450 && c <= 3455) + : c <= 3478) + : (c <= 3505 || (c >= 3507 && c <= 3515))))))) + : (c <= 3517 || (c < 3751 + ? (c < 3713 + ? (c < 3634 + ? (c < 3585 + ? (c >= 3520 && c <= 3526) + : c <= 3632) + : (c <= 3634 || (c >= 3648 && c <= 3654))) + : (c <= 3714 || (c < 3724 + ? (c < 3718 + ? c == 3716 + : c <= 3722) + : (c <= 3747 || c == 3749)))) + : (c <= 3760 || (c < 3804 + ? (c < 3776 + ? (c < 3773 + ? c == 3762 + : c <= 3773) + : (c <= 3780 || c == 3782)) + : (c <= 3807 || (c < 3904 + ? c == 3840 + : (c <= 3911 || (c >= 3913 && c <= 3948))))))))))))) + : (c <= 3980 || (c < 8016 + ? (c < 5920 + ? (c < 4746 + ? (c < 4256 + ? (c < 4193 + ? (c < 4176 ? (c < 4159 ? (c >= 4096 && c <= 4138) : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) - : (c <= 4193 || (c < 8134 - ? (c < 6176 - ? (c < 4808 - ? (c < 4688 - ? (c < 4295 - ? (c < 4213 + : (c <= 4181 || (c >= 4186 && c <= 4189))) + : (c <= 4193 || (c < 4213 ? (c < 4206 ? (c >= 4197 && c <= 4198) : c <= 4208) - : (c <= 4225 || (c < 4256 - ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))))) - : (c <= 4694 || (c < 4752 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))))))) - : (c <= 4822 || (c < 5792 - ? (c < 5024 - ? (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))))) - : (c <= 5866 || (c < 5984 - ? (c < 5919 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6103 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067) - : (c <= 6103 || c == 6108)))))))) - : (c <= 6264 || (c < 7312 - ? (c < 6823 - ? (c < 6512 - ? (c < 6320 - ? (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314) - : (c <= 6389 || (c < 6480 + : (c <= 4225 || c == 4238)))) + : (c <= 4293 || (c < 4682 + ? (c < 4304 + ? (c < 4301 + ? c == 4295 + : c <= 4301) + : (c <= 4346 || (c >= 4348 && c <= 4680))) + : (c <= 4685 || (c < 4698 + ? (c < 4696 + ? (c >= 4688 && c <= 4694) + : c <= 4696) + : (c <= 4701 || (c >= 4704 && c <= 4744))))))) + : (c <= 4749 || (c < 4992 + ? (c < 4802 + ? (c < 4792 + ? (c < 4786 + ? (c >= 4752 && c <= 4784) + : c <= 4789) + : (c <= 4798 || c == 4800)) + : (c <= 4805 || (c < 4882 + ? (c < 4824 + ? (c >= 4808 && c <= 4822) + : c <= 4880) + : (c <= 4885 || (c >= 4888 && c <= 4954))))) + : (c <= 5007 || (c < 5761 + ? (c < 5121 + ? (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117) + : (c <= 5740 || (c >= 5743 && c <= 5759))) + : (c <= 5786 || (c < 5888 + ? (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880) + : (c <= 5900 || (c >= 5902 && c <= 5905))))))))) + : (c <= 5937 || (c < 6981 + ? (c < 6320 + ? (c < 6103 + ? (c < 5998 + ? (c < 5984 + ? (c >= 5952 && c <= 5969) + : c <= 5996) + : (c <= 6000 || (c >= 6016 && c <= 6067))) + : (c <= 6103 || (c < 6272 + ? (c < 6176 + ? c == 6108 + : c <= 6264) + : (c <= 6312 || c == 6314)))) + : (c <= 6389 || (c < 6576 + ? (c < 6512 + ? (c < 6480 ? (c >= 6400 && c <= 6430) - : c <= 6509))) - : (c <= 6516 || (c < 6656 - ? (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6678 || (c >= 6688 && c <= 6740))))) - : (c <= 6823 || (c < 7098 - ? (c < 7043 - ? (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988) - : (c <= 7072 || (c >= 7086 && c <= 7087))) - : (c <= 7141 || (c < 7258 - ? (c < 7245 - ? (c >= 7168 && c <= 7203) - : c <= 7247) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))) - : (c <= 7354 || (c < 8008 - ? (c < 7418 - ? (c < 7406 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : c <= 7404) - : (c <= 7411 || (c >= 7413 && c <= 7414))) - : (c <= 7418 || (c < 7960 - ? (c < 7680 - ? (c >= 7424 && c <= 7615) - : c <= 7957) - : (c <= 7965 || (c >= 7968 && c <= 8005))))) - : (c <= 8013 || (c < 8031 - ? (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || c == 8029)) - : (c <= 8061 || (c < 8126 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) - : (c <= 8140 || (c < 12337 - ? (c < 8544 - ? (c < 8458 - ? (c < 8305 - ? (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188))) + : c <= 6509) + : (c <= 6516 || (c >= 6528 && c <= 6571))) + : (c <= 6601 || (c < 6823 + ? (c < 6688 + ? (c >= 6656 && c <= 6678) + : c <= 6740) + : (c <= 6823 || (c >= 6917 && c <= 6963))))))) + : (c <= 6987 || (c < 7401 + ? (c < 7245 + ? (c < 7098 + ? (c < 7086 + ? (c >= 7043 && c <= 7072) + : c <= 7087) + : (c <= 7141 || (c >= 7168 && c <= 7203))) + : (c <= 7247 || (c < 7312 + ? (c < 7296 + ? (c >= 7258 && c <= 7293) + : c <= 7304) + : (c <= 7354 || (c >= 7357 && c <= 7359))))) + : (c <= 7404 || (c < 7680 + ? (c < 7418 + ? (c < 7413 + ? (c >= 7406 && c <= 7411) + : c <= 7414) + : (c <= 7418 || (c >= 7424 && c <= 7615))) + : (c <= 7957 || (c < 7968 + ? (c >= 7960 && c <= 7965) + : (c <= 8005 || (c >= 8008 && c <= 8013))))))))))) + : (c <= 8023 || (c < 11631 + ? (c < 8458 + ? (c < 8144 + ? (c < 8064 + ? (c < 8029 + ? (c < 8027 + ? c == 8025 + : c <= 8027) + : (c <= 8029 || (c >= 8031 && c <= 8061))) + : (c <= 8116 || (c < 8130 + ? (c < 8126 + ? (c >= 8118 && c <= 8124) + : c <= 8126) + : (c <= 8132 || (c >= 8134 && c <= 8140))))) + : (c <= 8147 || (c < 8305 + ? (c < 8178 + ? (c < 8160 + ? (c >= 8150 && c <= 8155) + : c <= 8172) + : (c <= 8180 || (c >= 8182 && c <= 8188))) : (c <= 8305 || (c < 8450 ? (c < 8336 ? c == 8319 : c <= 8348) - : (c <= 8450 || c == 8455)))) - : (c <= 8467 || (c < 8488 + : (c <= 8450 || c == 8455)))))) + : (c <= 8467 || (c < 8544 + ? (c < 8488 ? (c < 8484 ? (c < 8472 ? c == 8469 @@ -5439,1463 +4603,2119 @@ static inline bool sym_identifier_character_set_3(int32_t c) { ? (c < 8508 ? (c >= 8490 && c <= 8505) : c <= 8511) - : (c <= 8521 || c == 8526)))))) - : (c <= 8584 || (c < 11680 - ? (c < 11559 - ? (c < 11506 - ? (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502) - : (c <= 11507 || (c >= 11520 && c <= 11557))) - : (c <= 11559 || (c < 11631 - ? (c < 11568 - ? c == 11565 - : c <= 11623) - : (c <= 11631 || (c >= 11648 && c <= 11670))))) - : (c <= 11686 || (c < 11720 - ? (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))) - : (c <= 11726 || (c < 12293 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) - : (c <= 12341 || (c < 42891 - ? (c < 19968 - ? (c < 12549 - ? (c < 12445 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12447 || (c < 12540 + : (c <= 8521 || c == 8526)))) + : (c <= 8584 || (c < 11506 + ? (c < 11360 + ? (c < 11312 + ? (c >= 11264 && c <= 11310) + : c <= 11358) + : (c <= 11492 || (c >= 11499 && c <= 11502))) + : (c <= 11507 || (c < 11565 + ? (c < 11559 + ? (c >= 11520 && c <= 11557) + : c <= 11559) + : (c <= 11565 || (c >= 11568 && c <= 11623))))))))) + : (c <= 11631 || (c < 12704 + ? (c < 12293 + ? (c < 11704 + ? (c < 11688 + ? (c < 11680 + ? (c >= 11648 && c <= 11670) + : c <= 11686) + : (c <= 11694 || (c >= 11696 && c <= 11702))) + : (c <= 11710 || (c < 11728 + ? (c < 11720 + ? (c >= 11712 && c <= 11718) + : c <= 11726) + : (c <= 11734 || (c >= 11736 && c <= 11742))))) + : (c <= 12295 || (c < 12445 + ? (c < 12344 + ? (c < 12337 + ? (c >= 12321 && c <= 12329) + : c <= 12341) + : (c <= 12348 || (c >= 12353 && c <= 12438))) + : (c <= 12447 || (c < 12549 + ? (c < 12540 ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 42124 || (c < 42560 - ? (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))) - : (c <= 42606 || (c < 42775 - ? (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))))))) - : (c <= 42954 || (c < 43250 - ? (c < 43011 - ? (c < 42965 - ? (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))) - : (c <= 43013 || (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))))) - : (c <= 43255 || (c < 43360 - ? (c < 43274 - ? (c < 43261 - ? c == 43259 - : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43488 - ? (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) - : (c <= 43518 || (c < 70727 - ? (c < 66956 - ? (c < 64914 - ? (c < 43868 - ? (c < 43714 - ? (c < 43646 - ? (c < 43588 - ? (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586) - : (c <= 43595 || (c < 43642 - ? (c >= 43616 && c <= 43638) - : c <= 43642))) - : (c <= 43695 || (c < 43705 - ? (c < 43701 - ? c == 43697 - : c <= 43702) - : (c <= 43709 || c == 43712)))) - : (c <= 43714 || (c < 43785 - ? (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))))))) - : (c <= 43881 || (c < 64287 - ? (c < 63744 - ? (c < 55216 - ? (c < 44032 - ? (c >= 43888 && c <= 44002) - : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || c == 64285)))) - : (c <= 64296 || (c < 64323 - ? (c < 64318 - ? (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316) - : (c <= 64318 || (c >= 64320 && c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65599 - ? (c < 65382 - ? (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65313 + : c <= 12543) + : (c <= 12591 || (c >= 12593 && c <= 12686))))))) + : (c <= 12735 || (c < 42623 + ? (c < 42192 + ? (c < 19968 + ? (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903) + : (c <= 40956 || (c >= 40960 && c <= 42124))) + : (c <= 42237 || (c < 42538 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))))) + : (c <= 42653 || (c < 42946 + ? (c < 42786 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : c <= 42783) + : (c <= 42888 || (c >= 42891 && c <= 42943))) + : (c <= 42954 || (c < 43011 + ? (c >= 42997 && c <= 43009) + : (c <= 43013 || (c >= 43015 && c <= 43018))))))))))))))) + : (c <= 43042 || (c < 70453 + ? (c < 66176 + ? (c < 64112 + ? (c < 43697 + ? (c < 43471 + ? (c < 43261 + ? (c < 43250 + ? (c < 43138 + ? (c >= 43072 && c <= 43123) + : c <= 43187) + : (c <= 43255 || c == 43259)) + : (c <= 43262 || (c < 43360 + ? (c < 43312 + ? (c >= 43274 && c <= 43301) + : c <= 43334) + : (c <= 43388 || (c >= 43396 && c <= 43442))))) + : (c <= 43471 || (c < 43584 + ? (c < 43514 + ? (c < 43494 + ? (c >= 43488 && c <= 43492) + : c <= 43503) + : (c <= 43518 || (c >= 43520 && c <= 43560))) + : (c <= 43586 || (c < 43642 + ? (c < 43616 + ? (c >= 43588 && c <= 43595) + : c <= 43638) + : (c <= 43642 || (c >= 43646 && c <= 43695))))))) + : (c <= 43697 || (c < 43793 + ? (c < 43739 + ? (c < 43712 + ? (c < 43705 + ? (c >= 43701 && c <= 43702) + : c <= 43709) + : (c <= 43712 || c == 43714)) + : (c <= 43741 || (c < 43777 + ? (c < 43762 + ? (c >= 43744 && c <= 43754) + : c <= 43764) + : (c <= 43782 || (c >= 43785 && c <= 43790))))) + : (c <= 43798 || (c < 43888 + ? (c < 43824 + ? (c < 43816 + ? (c >= 43808 && c <= 43814) + : c <= 43822) + : (c <= 43866 || (c >= 43868 && c <= 43881))) + : (c <= 44002 || (c < 55243 + ? (c < 55216 + ? (c >= 44032 && c <= 55203) + : c <= 55238) + : (c <= 55291 || (c >= 63744 && c <= 64109))))))))) + : (c <= 64217 || (c < 65147 + ? (c < 64326 + ? (c < 64298 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64285 || (c >= 64287 && c <= 64296))) + : (c <= 64310 || (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))))) + : (c <= 64433 || (c < 65008 + ? (c < 64848 + ? (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65017 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || c == 65145)))))) + : (c <= 65147 || (c < 65498 + ? (c < 65382 + ? (c < 65313 ? (c < 65151 ? c == 65149 : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))))) - : (c <= 65437 || (c < 65498 - ? (c < 65482 + : (c <= 65338 || (c >= 65345 && c <= 65370))) + : (c <= 65437 || (c < 65482 ? (c < 65474 ? (c >= 65440 && c <= 65470) : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))) - : (c <= 65500 || (c < 65576 + : (c <= 65487 || (c >= 65490 && c <= 65495))))) + : (c <= 65500 || (c < 65599 + ? (c < 65576 ? (c < 65549 ? (c >= 65536 && c <= 65547) : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c >= 66176 && c <= 66204))) - : (c <= 66256 || (c < 66384 - ? (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378) - : (c <= 66421 || (c >= 66432 && c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c >= 66736 && c <= 66771))) - : (c <= 66811 || (c < 66928 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) - : (c <= 66962 || (c < 68864 - ? (c < 67828 - ? (c < 67506 - ? (c < 67072 - ? (c < 66979 - ? (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977) - : (c <= 66993 || (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004))) - : (c <= 67382 || (c < 67456 - ? (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431) - : (c <= 67461 || (c >= 67463 && c <= 67504))))) - : (c <= 67514 || (c < 67644 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c >= 67639 && c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))))))) - : (c <= 67829 || (c < 68224 - ? (c < 68096 - ? (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68096 || (c < 68121 - ? (c < 68117 - ? (c >= 68112 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c >= 68192 && c <= 68220))))) - : (c <= 68252 || (c < 68448 - ? (c < 68352 - ? (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324) - : (c <= 68405 || (c >= 68416 && c <= 68437))) - : (c <= 68466 || (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) - : (c <= 68899 || (c < 70106 - ? (c < 69749 - ? (c < 69488 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))) - : (c <= 69505 || (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c >= 69745 && c <= 69746))))) - : (c <= 69749 || (c < 69959 - ? (c < 69891 - ? (c < 69840 - ? (c >= 69763 && c <= 69807) - : c <= 69864) - : (c <= 69926 || c == 69956)) - : (c <= 69959 || (c < 70019 - ? (c < 70006 - ? (c >= 69968 && c <= 70002) - : c <= 70006) - : (c <= 70066 || (c >= 70081 && c <= 70084))))))) - : (c <= 70106 || (c < 70405 - ? (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70187 || (c >= 70272 && c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70366))))) - : (c <= 70412 || (c < 70453 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))) - : (c <= 70457 || (c < 70493 + : (c <= 65594 || (c >= 65596 && c <= 65597))) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : (c <= 65786 || (c >= 65856 && c <= 65908))))))))))) + : (c <= 66204 || (c < 68416 + ? (c < 67639 + ? (c < 66736 + ? (c < 66432 + ? (c < 66349 + ? (c < 66304 + ? (c >= 66208 && c <= 66256) + : c <= 66335) + : (c <= 66378 || (c >= 66384 && c <= 66421))) + : (c <= 66461 || (c < 66513 + ? (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511) + : (c <= 66517 || (c >= 66560 && c <= 66717))))) + : (c <= 66771 || (c < 67392 + ? (c < 66864 + ? (c < 66816 + ? (c >= 66776 && c <= 66811) + : c <= 66855) + : (c <= 66915 || (c >= 67072 && c <= 67382))) + : (c <= 67413 || (c < 67592 + ? (c < 67584 + ? (c >= 67424 && c <= 67431) + : c <= 67589) + : (c <= 67592 || (c >= 67594 && c <= 67637))))))) + : (c <= 67640 || (c < 68030 + ? (c < 67808 + ? (c < 67680 + ? (c < 67647 + ? c == 67644 + : c <= 67669) + : (c <= 67702 || (c >= 67712 && c <= 67742))) + : (c <= 67826 || (c < 67872 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : c <= 67861) + : (c <= 67897 || (c >= 67968 && c <= 68023))))) + : (c <= 68031 || (c < 68192 + ? (c < 68117 + ? (c < 68112 + ? c == 68096 + : c <= 68115) + : (c <= 68119 || (c >= 68121 && c <= 68149))) + : (c <= 68220 || (c < 68297 + ? (c < 68288 + ? (c >= 68224 && c <= 68252) + : c <= 68295) + : (c <= 68324 || (c >= 68352 && c <= 68405))))))))) + : (c <= 68437 || (c < 69968 + ? (c < 69415 + ? (c < 68800 + ? (c < 68608 + ? (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497) + : (c <= 68680 || (c >= 68736 && c <= 68786))) + : (c <= 68850 || (c < 69296 + ? (c < 69248 + ? (c >= 68864 && c <= 68899) + : c <= 69289) + : (c <= 69297 || (c >= 69376 && c <= 69404))))) + : (c <= 69415 || (c < 69763 + ? (c < 69600 + ? (c < 69552 + ? (c >= 69424 && c <= 69445) + : c <= 69572) + : (c <= 69622 || (c >= 69635 && c <= 69687))) + : (c <= 69807 || (c < 69956 + ? (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926) + : (c <= 69956 || c == 69959)))))) + : (c <= 70002 || (c < 70282 + ? (c < 70108 + ? (c < 70081 + ? (c < 70019 + ? c == 70006 + : c <= 70066) + : (c <= 70084 || c == 70106)) + : (c <= 70108 || (c < 70272 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70187) + : (c <= 70278 || c == 70280)))) + : (c <= 70285 || (c < 70415 + ? (c < 70320 + ? (c < 70303 + ? (c >= 70287 && c <= 70301) + : c <= 70312) + : (c <= 70366 || (c >= 70405 && c <= 70412))) + : (c <= 70416 || (c < 70442 + ? (c >= 70419 && c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))))))))))))) + : (c <= 70457 || (c < 113808 + ? (c < 72818 + ? (c < 71945 + ? (c < 71040 + ? (c < 70727 + ? (c < 70493 ? (c < 70480 ? c == 70461 : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) - : (c <= 70730 || (c < 119894 - ? (c < 73056 - ? (c < 72001 - ? (c < 71424 - ? (c < 71128 - ? (c < 70852 + : (c <= 70497 || (c >= 70656 && c <= 70708))) + : (c <= 70730 || (c < 70852 ? (c < 70784 ? (c >= 70751 && c <= 70753) : c <= 70831) - : (c <= 70853 || (c < 71040 - ? c == 70855 - : c <= 71086))) - : (c <= 71131 || (c < 71296 - ? (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236) - : (c <= 71338 || c == 71352)))) - : (c <= 71450 || (c < 71945 - ? (c < 71840 + : (c <= 70853 || c == 70855)))) + : (c <= 71086 || (c < 71352 + ? (c < 71236 + ? (c < 71168 + ? (c >= 71128 && c <= 71131) + : c <= 71215) + : (c <= 71236 || (c >= 71296 && c <= 71338))) + : (c <= 71352 || (c < 71840 ? (c < 71680 - ? (c >= 71488 && c <= 71494) + ? (c >= 71424 && c <= 71450) : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))) - : (c <= 71945 || (c < 71960 + : (c <= 71903 || (c >= 71935 && c <= 71942))))))) + : (c <= 71945 || (c < 72192 + ? (c < 72001 + ? (c < 71960 ? (c < 71957 ? (c >= 71948 && c <= 71955) : c <= 71958) - : (c <= 71983 || c == 71999)))))) - : (c <= 72001 || (c < 72349 - ? (c < 72192 - ? (c < 72161 + : (c <= 71983 || c == 71999)) + : (c <= 72001 || (c < 72161 ? (c < 72106 ? (c >= 72096 && c <= 72103) : c <= 72144) - : (c <= 72161 || c == 72163)) - : (c <= 72192 || (c < 72272 + : (c <= 72161 || c == 72163)))) + : (c <= 72192 || (c < 72349 + ? (c < 72272 ? (c < 72250 ? (c >= 72203 && c <= 72242) : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))))) - : (c <= 72349 || (c < 72818 - ? (c < 72714 + : (c <= 72272 || (c >= 72284 && c <= 72329))) + : (c <= 72349 || (c < 72714 ? (c < 72704 - ? (c >= 72368 && c <= 72440) + ? (c >= 72384 && c <= 72440) : c <= 72712) - : (c <= 72750 || c == 72768)) - : (c <= 72847 || (c < 72971 + : (c <= 72750 || c == 72768)))))))) + : (c <= 72847 || (c < 92992 + ? (c < 73648 + ? (c < 73056 + ? (c < 72971 ? (c < 72968 ? (c >= 72960 && c <= 72966) : c <= 72969) - : (c <= 73008 || c == 73030)))))))) - : (c <= 73061 || (c < 93952 - ? (c < 82944 - ? (c < 73728 - ? (c < 73112 + : (c <= 73008 || c == 73030)) + : (c <= 73061 || (c < 73112 ? (c < 73066 ? (c >= 73063 && c <= 73064) : c <= 73097) - : (c <= 73112 || (c < 73648 - ? (c >= 73440 && c <= 73458) - : c <= 73648))) - : (c <= 74649 || (c < 77712 - ? (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075) - : (c <= 77808 || (c >= 77824 && c <= 78894))))) - : (c <= 83526 || (c < 92928 - ? (c < 92784 + : (c <= 73112 || (c >= 73440 && c <= 73458))))) + : (c <= 73648 || (c < 82944 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c >= 77824 && c <= 78894))) + : (c <= 83526 || (c < 92880 ? (c < 92736 ? (c >= 92160 && c <= 92728) : c <= 92766) - : (c <= 92862 || (c >= 92880 && c <= 92909))) - : (c <= 92975 || (c < 93053 - ? (c < 93027 - ? (c >= 92992 && c <= 92995) - : c <= 93047) - : (c <= 93071 || (c >= 93760 && c <= 93823))))))) - : (c <= 94026 || (c < 110589 - ? (c < 94208 - ? (c < 94176 - ? (c < 94099 - ? c == 94032 - : c <= 94111) - : (c <= 94177 || c == 94179)) - : (c <= 100343 || (c < 110576 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))))) - : (c <= 110590 || (c < 113664 - ? (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110882) - : c <= 110930) - : (c <= 110951 || (c >= 110960 && c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 125259 - ? (c < 120572 - ? (c < 120086 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : (c <= 92909 || (c >= 92928 && c <= 92975))))))) + : (c <= 92995 || (c < 100352 + ? (c < 94032 + ? (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c >= 93952 && c <= 94026))) + : (c <= 94032 || (c < 94179 + ? (c < 94176 + ? (c >= 94099 && c <= 94111) + : c <= 94177) + : (c <= 94179 || (c >= 94208 && c <= 100343))))) + : (c <= 101589 || (c < 110960 + ? (c < 110928 + ? (c < 110592 + ? (c >= 101632 && c <= 101640) + : c <= 110878) + : (c <= 110930 || (c >= 110948 && c <= 110951))) + : (c <= 111355 || (c < 113776 + ? (c >= 113664 && c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))))))))))) + : (c <= 113817 || (c < 126469 + ? (c < 120488 + ? (c < 120005 + ? (c < 119973 + ? (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)) + : (c <= 119974 || (c < 119995 + ? (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c >= 120077 && c <= 120084))))) - : (c <= 120092 || (c < 120138 - ? (c < 120128 - ? (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120514 - ? (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512) - : (c <= 120538 || (c >= 120540 && c <= 120570))))))) - : (c <= 120596 || (c < 123191 - ? (c < 120714 - ? (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c >= 120688 && c <= 120712))) - : (c <= 120744 || (c < 122624 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779) - : (c <= 122654 || (c >= 123136 && c <= 123180))))) - : (c <= 123197 || (c < 124904 - ? (c < 123584 - ? (c < 123536 - ? c == 123214 - : c <= 123565) - : (c <= 123627 || (c >= 124896 && c <= 124902))) - : (c <= 124907 || (c < 124928 - ? (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926) - : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) - : (c <= 125259 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126497 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495) - : (c <= 126498 || (c < 126503 - ? c == 126500 - : c <= 126503))) - : (c <= 126514 || (c < 126523 - ? (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521) - : (c <= 126523 || c == 126530)))) - : (c <= 126535 || (c < 126548 - ? (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c >= 126545 && c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126625 - ? (c < 126580 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c >= 126603 && c <= 126619))))) - : (c <= 126627 || (c < 177984 - ? (c < 131072 - ? (c < 126635 - ? (c >= 126629 && c <= 126633) - : c <= 126651) - : (c <= 173791 || (c >= 173824 && c <= 177976))) - : (c <= 178205 || (c < 194560 - ? (c < 183984 - ? (c >= 178208 && c <= 183969) - : c <= 191456) + : c <= 119993) + : (c <= 119995 || (c >= 119997 && c <= 120003))))) + : (c <= 120069 || (c < 120123 + ? (c < 120086 + ? (c < 120077 + ? (c >= 120071 && c <= 120074) + : c <= 120084) + : (c <= 120092 || (c >= 120094 && c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c >= 120146 && c <= 120485))))))) + : (c <= 120512 || (c < 120772 + ? (c < 120630 + ? (c < 120572 + ? (c < 120540 + ? (c >= 120514 && c <= 120538) + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))) + : (c <= 120654 || (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c >= 120746 && c <= 120770))))) + : (c <= 120779 || (c < 124928 + ? (c < 123214 + ? (c < 123191 + ? (c >= 123136 && c <= 123180) + : c <= 123197) + : (c <= 123214 || (c >= 123584 && c <= 123627))) + : (c <= 125124 || (c < 125259 + ? (c >= 125184 && c <= 125251) + : (c <= 125259 || (c >= 126464 && c <= 126467))))))))) + : (c <= 126495 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c >= 126505 && c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173789) + : (c <= 177972 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 194560 + ? (c >= 183984 && c <= 191456) : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } -static inline bool sym_identifier_character_set_4(int32_t c) { - return (c < 43642 - ? (c < 3792 - ? (c < 2763 - ? (c < 2112 - ? (c < 1162 - ? (c < 748 +static inline bool sym_identifier_character_set_3(int32_t c) { + return (c < 43020 + ? (c < 4096 + ? (c < 2693 + ? (c < 1969 + ? (c < 910 + ? (c < 736 ? (c < 186 ? (c < 170 ? (c < 'a' - ? (c >= '0' && c <= 'Z') + ? (c >= 'A' && c <= 'Z') : c <= 'z') - : (c <= 170 || (c < 183 - ? c == 181 - : c <= 183))) + : (c <= 170 || c == 181)) : (c <= 186 || (c < 248 ? (c < 216 ? (c >= 192 && c <= 214) : c <= 246) - : (c <= 705 || (c < 736 - ? (c >= 710 && c <= 721) - : c <= 740))))) - : (c <= 748 || (c < 902 - ? (c < 886 - ? (c < 768 - ? c == 750 - : c <= 884) - : (c <= 887 || (c < 895 - ? (c >= 891 && c <= 893) - : c <= 895))) - : (c <= 906 || (c < 931 - ? (c < 910 - ? c == 908 - : c <= 929) - : (c <= 1013 || (c < 1155 - ? (c >= 1015 && c <= 1153) - : c <= 1159))))))) - : (c <= 1327 || (c < 1568 - ? (c < 1473 - ? (c < 1376 - ? (c < 1369 - ? (c >= 1329 && c <= 1366) - : c <= 1369) - : (c <= 1416 || (c < 1471 - ? (c >= 1425 && c <= 1469) - : c <= 1471))) - : (c <= 1474 || (c < 1488 - ? (c < 1479 - ? (c >= 1476 && c <= 1477) - : c <= 1479) - : (c <= 1514 || (c < 1552 - ? (c >= 1519 && c <= 1522) - : c <= 1562))))) - : (c <= 1641 || (c < 1808 - ? (c < 1759 + : (c <= 705 || (c >= 710 && c <= 721))))) + : (c <= 740 || (c < 891 + ? (c < 880 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c >= 886 && c <= 887))) + : (c <= 893 || (c < 904 + ? (c < 902 + ? c == 895 + : c <= 902) + : (c <= 906 || c == 908)))))) + : (c <= 929 || (c < 1646 + ? (c < 1369 + ? (c < 1162 + ? (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153) + : (c <= 1327 || (c >= 1329 && c <= 1366))) + : (c <= 1369 || (c < 1519 + ? (c < 1488 + ? (c >= 1376 && c <= 1416) + : c <= 1514) + : (c <= 1522 || (c >= 1568 && c <= 1610))))) + : (c <= 1647 || (c < 1786 + ? (c < 1765 ? (c < 1749 - ? (c >= 1646 && c <= 1747) - : c <= 1756) - : (c <= 1768 || (c < 1791 - ? (c >= 1770 && c <= 1788) - : c <= 1791))) - : (c <= 1866 || (c < 2042 - ? (c < 1984 - ? (c >= 1869 && c <= 1969) + ? (c >= 1649 && c <= 1747) + : c <= 1749) + : (c <= 1766 || (c >= 1774 && c <= 1775))) + : (c <= 1788 || (c < 1810 + ? (c < 1808 + ? c == 1791 + : c <= 1808) + : (c <= 1839 || (c >= 1869 && c <= 1957))))))))) + : (c <= 1969 || (c < 2474 + ? (c < 2208 + ? (c < 2074 + ? (c < 2042 + ? (c < 2036 + ? (c >= 1994 && c <= 2026) : c <= 2037) - : (c <= 2042 || (c < 2048 - ? c == 2045 - : c <= 2093))))))))) - : (c <= 2139 || (c < 2565 - ? (c < 2482 - ? (c < 2406 - ? (c < 2185 - ? (c < 2160 - ? (c >= 2144 && c <= 2154) - : c <= 2183) - : (c <= 2190 || (c < 2275 - ? (c >= 2200 && c <= 2273) - : c <= 2403))) - : (c <= 2415 || (c < 2447 + : (c <= 2042 || (c >= 2048 && c <= 2069))) + : (c <= 2074 || (c < 2112 + ? (c < 2088 + ? c == 2084 + : c <= 2088) + : (c <= 2136 || (c >= 2144 && c <= 2154))))) + : (c <= 2228 || (c < 2392 + ? (c < 2365 + ? (c < 2308 + ? (c >= 2230 && c <= 2247) + : c <= 2361) + : (c <= 2365 || c == 2384)) + : (c <= 2401 || (c < 2447 ? (c < 2437 - ? (c >= 2417 && c <= 2435) + ? (c >= 2417 && c <= 2432) : c <= 2444) - : (c <= 2448 || (c < 2474 - ? (c >= 2451 && c <= 2472) - : c <= 2480))))) - : (c <= 2482 || (c < 2524 - ? (c < 2503 - ? (c < 2492 - ? (c >= 2486 && c <= 2489) - : c <= 2500) - : (c <= 2504 || (c < 2519 - ? (c >= 2507 && c <= 2510) - : c <= 2519))) + : (c <= 2448 || (c >= 2451 && c <= 2472))))))) + : (c <= 2480 || (c < 2575 + ? (c < 2524 + ? (c < 2493 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2493 || c == 2510)) : (c <= 2525 || (c < 2556 - ? (c < 2534 - ? (c >= 2527 && c <= 2531) + ? (c < 2544 + ? (c >= 2527 && c <= 2529) : c <= 2545) - : (c <= 2556 || (c < 2561 - ? c == 2558 - : c <= 2563))))))) - : (c <= 2570 || (c < 2649 - ? (c < 2616 - ? (c < 2602 - ? (c < 2579 - ? (c >= 2575 && c <= 2576) - : c <= 2600) - : (c <= 2608 || (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614))) - : (c <= 2617 || (c < 2631 - ? (c < 2622 - ? c == 2620 - : c <= 2626) - : (c <= 2632 || (c < 2641 - ? (c >= 2635 && c <= 2637) - : c <= 2641))))) - : (c <= 2652 || (c < 2707 - ? (c < 2689 - ? (c < 2662 - ? c == 2654 - : c <= 2677) - : (c <= 2691 || (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705))) - : (c <= 2728 || (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2759 - ? (c >= 2748 && c <= 2757) - : c <= 2761))))))))))) - : (c <= 2765 || (c < 3200 - ? (c < 2969 - ? (c < 2876 - ? (c < 2821 - ? (c < 2790 - ? (c < 2784 - ? c == 2768 - : c <= 2787) - : (c <= 2799 || (c < 2817 - ? (c >= 2809 && c <= 2815) - : c <= 2819))) - : (c <= 2828 || (c < 2858 + : (c <= 2556 || (c >= 2565 && c <= 2570))))) + : (c <= 2576 || (c < 2616 + ? (c < 2610 + ? (c < 2602 + ? (c >= 2579 && c <= 2600) + : c <= 2608) + : (c <= 2611 || (c >= 2613 && c <= 2614))) + : (c <= 2617 || (c < 2654 + ? (c >= 2649 && c <= 2652) + : (c <= 2654 || (c >= 2674 && c <= 2676))))))))))) + : (c <= 2701 || (c < 3214 + ? (c < 2947 + ? (c < 2821 + ? (c < 2741 + ? (c < 2730 + ? (c < 2707 + ? (c >= 2703 && c <= 2705) + : c <= 2728) + : (c <= 2736 || (c >= 2738 && c <= 2739))) + : (c <= 2745 || (c < 2784 + ? (c < 2768 + ? c == 2749 + : c <= 2768) + : (c <= 2785 || c == 2809)))) + : (c <= 2828 || (c < 2869 + ? (c < 2858 ? (c < 2835 ? (c >= 2831 && c <= 2832) : c <= 2856) - : (c <= 2864 || (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873))))) - : (c <= 2884 || (c < 2918 - ? (c < 2901 - ? (c < 2891 - ? (c >= 2887 && c <= 2888) - : c <= 2893) - : (c <= 2903 || (c < 2911 - ? (c >= 2908 && c <= 2909) - : c <= 2915))) - : (c <= 2927 || (c < 2949 - ? (c < 2946 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965))))))) - : (c <= 2970 || (c < 3072 - ? (c < 3006 - ? (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001))) - : (c <= 3010 || (c < 3024 - ? (c < 3018 - ? (c >= 3014 && c <= 3016) - : c <= 3021) - : (c <= 3024 || (c < 3046 - ? c == 3031 - : c <= 3055))))) - : (c <= 3084 || (c < 3146 - ? (c < 3114 - ? (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112) - : (c <= 3129 || (c < 3142 - ? (c >= 3132 && c <= 3140) - : c <= 3144))) - : (c <= 3149 || (c < 3165 - ? (c < 3160 - ? (c >= 3157 && c <= 3158) - : c <= 3162) - : (c <= 3165 || (c < 3174 - ? (c >= 3168 && c <= 3171) - : c <= 3183))))))))) - : (c <= 3203 || (c < 3461 - ? (c < 3302 - ? (c < 3260 - ? (c < 3218 - ? (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216) - : (c <= 3240 || (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257))) - : (c <= 3268 || (c < 3285 - ? (c < 3274 - ? (c >= 3270 && c <= 3272) - : c <= 3277) - : (c <= 3286 || (c < 3296 - ? (c >= 3293 && c <= 3294) - : c <= 3299))))) - : (c <= 3311 || (c < 3402 - ? (c < 3342 - ? (c < 3328 - ? (c >= 3313 && c <= 3314) - : c <= 3340) - : (c <= 3344 || (c < 3398 - ? (c >= 3346 && c <= 3396) - : c <= 3400))) - : (c <= 3406 || (c < 3430 - ? (c < 3423 - ? (c >= 3412 && c <= 3415) - : c <= 3427) - : (c <= 3439 || (c < 3457 - ? (c >= 3450 && c <= 3455) - : c <= 3459))))))) - : (c <= 3478 || (c < 3648 - ? (c < 3535 - ? (c < 3517 - ? (c < 3507 - ? (c >= 3482 && c <= 3505) - : c <= 3515) - : (c <= 3517 || (c < 3530 - ? (c >= 3520 && c <= 3526) - : c <= 3530))) - : (c <= 3540 || (c < 3558 - ? (c < 3544 - ? c == 3542 - : c <= 3551) - : (c <= 3567 || (c < 3585 - ? (c >= 3570 && c <= 3571) - : c <= 3642))))) - : (c <= 3662 || (c < 3749 - ? (c < 3716 - ? (c < 3713 - ? (c >= 3664 && c <= 3673) - : c <= 3714) - : (c <= 3716 || (c < 3724 + : (c <= 2864 || (c >= 2866 && c <= 2867))) + : (c <= 2873 || (c < 2911 + ? (c < 2908 + ? c == 2877 + : c <= 2909) + : (c <= 2913 || c == 2929)))))) + : (c <= 2947 || (c < 3024 + ? (c < 2972 + ? (c < 2962 + ? (c < 2958 + ? (c >= 2949 && c <= 2954) + : c <= 2960) + : (c <= 2965 || (c >= 2969 && c <= 2970))) + : (c <= 2972 || (c < 2984 + ? (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980) + : (c <= 2986 || (c >= 2990 && c <= 3001))))) + : (c <= 3024 || (c < 3133 + ? (c < 3090 + ? (c < 3086 + ? (c >= 3077 && c <= 3084) + : c <= 3088) + : (c <= 3112 || (c >= 3114 && c <= 3129))) + : (c <= 3133 || (c < 3200 + ? (c < 3168 + ? (c >= 3160 && c <= 3162) + : c <= 3169) + : (c <= 3200 || (c >= 3205 && c <= 3212))))))))) + : (c <= 3216 || (c < 3520 + ? (c < 3346 + ? (c < 3294 + ? (c < 3253 + ? (c < 3242 + ? (c >= 3218 && c <= 3240) + : c <= 3251) + : (c <= 3257 || c == 3261)) + : (c <= 3294 || (c < 3332 + ? (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314) + : (c <= 3340 || (c >= 3342 && c <= 3344))))) + : (c <= 3386 || (c < 3450 + ? (c < 3412 + ? (c < 3406 + ? c == 3389 + : c <= 3406) + : (c <= 3414 || (c >= 3423 && c <= 3425))) + : (c <= 3455 || (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || c == 3517)))))) + : (c <= 3526 || (c < 3762 + ? (c < 3716 + ? (c < 3648 + ? (c < 3634 + ? (c >= 3585 && c <= 3632) + : c <= 3634) + : (c <= 3654 || (c >= 3713 && c <= 3714))) + : (c <= 3716 || (c < 3749 + ? (c < 3724 ? (c >= 3718 && c <= 3722) - : c <= 3747))) - : (c <= 3749 || (c < 3782 + : c <= 3747) + : (c <= 3749 || (c >= 3751 && c <= 3760))))) + : (c <= 3762 || (c < 3840 + ? (c < 3782 ? (c < 3776 - ? (c >= 3751 && c <= 3773) + ? c == 3773 : c <= 3780) - : (c <= 3782 || (c >= 3784 && c <= 3789))))))))))))) - : (c <= 3801 || (c < 8027 + : (c <= 3782 || (c >= 3804 && c <= 3807))) + : (c <= 3840 || (c < 3913 + ? (c >= 3904 && c <= 3911) + : (c <= 3948 || (c >= 3976 && c <= 3980))))))))))))) + : (c <= 4138 || (c < 8025 ? (c < 5952 - ? (c < 4698 - ? (c < 3993 - ? (c < 3895 - ? (c < 3864 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3865 || (c < 3893 - ? (c >= 3872 && c <= 3881) - : c <= 3893))) - : (c <= 3895 || (c < 3913 - ? (c < 3902 - ? c == 3897 - : c <= 3911) - : (c <= 3948 || (c < 3974 - ? (c >= 3953 && c <= 3972) - : c <= 3991))))) - : (c <= 4028 || (c < 4301 - ? (c < 4176 - ? (c < 4096 - ? c == 4038 - : c <= 4169) - : (c <= 4253 || (c < 4295 - ? (c >= 4256 && c <= 4293) - : c <= 4295))) - : (c <= 4301 || (c < 4682 - ? (c < 4348 - ? (c >= 4304 && c <= 4346) - : c <= 4680) - : (c <= 4685 || (c < 4696 - ? (c >= 4688 && c <= 4694) - : c <= 4696))))))) - : (c <= 4701 || (c < 4957 - ? (c < 4800 - ? (c < 4752 - ? (c < 4746 - ? (c >= 4704 && c <= 4744) - : c <= 4749) - : (c <= 4784 || (c < 4792 + ? (c < 4752 + ? (c < 4295 + ? (c < 4197 + ? (c < 4186 + ? (c < 4176 + ? c == 4159 + : c <= 4181) + : (c <= 4189 || c == 4193)) + : (c <= 4198 || (c < 4238 + ? (c < 4213 + ? (c >= 4206 && c <= 4208) + : c <= 4225) + : (c <= 4238 || (c >= 4256 && c <= 4293))))) + : (c <= 4295 || (c < 4688 + ? (c < 4348 + ? (c < 4304 + ? c == 4301 + : c <= 4346) + : (c <= 4680 || (c >= 4682 && c <= 4685))) + : (c <= 4694 || (c < 4704 + ? (c < 4698 + ? c == 4696 + : c <= 4701) + : (c <= 4744 || (c >= 4746 && c <= 4749))))))) + : (c <= 4784 || (c < 5024 + ? (c < 4808 + ? (c < 4800 + ? (c < 4792 ? (c >= 4786 && c <= 4789) - : c <= 4798))) - : (c <= 4800 || (c < 4824 - ? (c < 4808 - ? (c >= 4802 && c <= 4805) - : c <= 4822) - : (c <= 4880 || (c < 4888 - ? (c >= 4882 && c <= 4885) - : c <= 4954))))) - : (c <= 4959 || (c < 5743 - ? (c < 5024 - ? (c < 4992 - ? (c >= 4969 && c <= 4977) - : c <= 5007) - : (c <= 5109 || (c < 5121 + : c <= 4798) + : (c <= 4800 || (c >= 4802 && c <= 4805))) + : (c <= 4822 || (c < 4888 + ? (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885) + : (c <= 4954 || (c >= 4992 && c <= 5007))))) + : (c <= 5109 || (c < 5792 + ? (c < 5743 + ? (c < 5121 ? (c >= 5112 && c <= 5117) - : c <= 5740))) - : (c <= 5759 || (c < 5870 - ? (c < 5792 - ? (c >= 5761 && c <= 5786) - : c <= 5866) - : (c <= 5880 || (c < 5919 - ? (c >= 5888 && c <= 5909) - : c <= 5940))))))))) - : (c <= 5971 || (c < 6783 - ? (c < 6320 + : c <= 5740) + : (c <= 5759 || (c >= 5761 && c <= 5786))) + : (c <= 5866 || (c < 5902 + ? (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5900) + : (c <= 5905 || (c >= 5920 && c <= 5937))))))))) + : (c <= 5969 || (c < 7043 + ? (c < 6400 ? (c < 6108 - ? (c < 6002 + ? (c < 6016 ? (c < 5998 ? (c >= 5984 && c <= 5996) : c <= 6000) - : (c <= 6003 || (c < 6103 - ? (c >= 6016 && c <= 6099) - : c <= 6103))) - : (c <= 6109 || (c < 6159 - ? (c < 6155 - ? (c >= 6112 && c <= 6121) - : c <= 6157) - : (c <= 6169 || (c < 6272 + : (c <= 6067 || c == 6103)) + : (c <= 6108 || (c < 6314 + ? (c < 6272 ? (c >= 6176 && c <= 6264) - : c <= 6314))))) - : (c <= 6389 || (c < 6528 - ? (c < 6448 - ? (c < 6432 - ? (c >= 6400 && c <= 6430) - : c <= 6443) - : (c <= 6459 || (c < 6512 - ? (c >= 6470 && c <= 6509) - : c <= 6516))) - : (c <= 6571 || (c < 6656 - ? (c < 6608 - ? (c >= 6576 && c <= 6601) - : c <= 6618) - : (c <= 6683 || (c < 6752 - ? (c >= 6688 && c <= 6750) - : c <= 6780))))))) - : (c <= 6793 || (c < 7296 - ? (c < 6992 - ? (c < 6832 + : c <= 6312) + : (c <= 6314 || (c >= 6320 && c <= 6389))))) + : (c <= 6430 || (c < 6656 + ? (c < 6528 + ? (c < 6512 + ? (c >= 6480 && c <= 6509) + : c <= 6516) + : (c <= 6571 || (c >= 6576 && c <= 6601))) + : (c <= 6678 || (c < 6917 ? (c < 6823 - ? (c >= 6800 && c <= 6809) + ? (c >= 6688 && c <= 6740) : c <= 6823) - : (c <= 6845 || (c < 6912 - ? (c >= 6847 && c <= 6862) - : c <= 6988))) - : (c <= 7001 || (c < 7168 - ? (c < 7040 - ? (c >= 7019 && c <= 7027) - : c <= 7155) - : (c <= 7223 || (c < 7245 - ? (c >= 7232 && c <= 7241) - : c <= 7293))))) - : (c <= 7304 || (c < 7960 - ? (c < 7376 - ? (c < 7357 - ? (c >= 7312 && c <= 7354) - : c <= 7359) - : (c <= 7378 || (c < 7424 - ? (c >= 7380 && c <= 7418) - : c <= 7957))) - : (c <= 7965 || (c < 8016 - ? (c < 8008 - ? (c >= 7968 && c <= 8005) - : c <= 8013) - : (c <= 8023 || c == 8025)))))))))) - : (c <= 8027 || (c < 11728 + : (c <= 6963 || (c >= 6981 && c <= 6987))))))) + : (c <= 7072 || (c < 7406 + ? (c < 7258 + ? (c < 7168 + ? (c < 7098 + ? (c >= 7086 && c <= 7087) + : c <= 7141) + : (c <= 7203 || (c >= 7245 && c <= 7247))) + : (c <= 7293 || (c < 7357 + ? (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354) + : (c <= 7359 || (c >= 7401 && c <= 7404))))) + : (c <= 7411 || (c < 7960 + ? (c < 7424 + ? (c < 7418 + ? (c >= 7413 && c <= 7414) + : c <= 7418) + : (c <= 7615 || (c >= 7680 && c <= 7957))) + : (c <= 7965 || (c < 8008 + ? (c >= 7968 && c <= 8005) + : (c <= 8013 || (c >= 8016 && c <= 8023))))))))))) + : (c <= 8025 || (c < 11631 ? (c < 8469 - ? (c < 8182 - ? (c < 8130 - ? (c < 8064 - ? (c < 8031 - ? c == 8029 - : c <= 8061) - : (c <= 8116 || (c < 8126 - ? (c >= 8118 && c <= 8124) - : c <= 8126))) - : (c <= 8132 || (c < 8150 - ? (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147) - : (c <= 8155 || (c < 8178 + ? (c < 8150 + ? (c < 8118 + ? (c < 8031 + ? (c < 8029 + ? c == 8027 + : c <= 8029) + : (c <= 8061 || (c >= 8064 && c <= 8116))) + : (c <= 8124 || (c < 8134 + ? (c < 8130 + ? c == 8126 + : c <= 8132) + : (c <= 8140 || (c >= 8144 && c <= 8147))))) + : (c <= 8155 || (c < 8319 + ? (c < 8182 + ? (c < 8178 ? (c >= 8160 && c <= 8172) - : c <= 8180))))) - : (c <= 8188 || (c < 8400 - ? (c < 8305 - ? (c < 8276 - ? (c >= 8255 && c <= 8256) - : c <= 8276) - : (c <= 8305 || (c < 8336 - ? c == 8319 - : c <= 8348))) - : (c <= 8412 || (c < 8450 - ? (c < 8421 - ? c == 8417 - : c <= 8432) - : (c <= 8450 || (c < 8458 - ? c == 8455 - : c <= 8467))))))) - : (c <= 8469 || (c < 11520 - ? (c < 8508 + : c <= 8180) + : (c <= 8188 || c == 8305)) + : (c <= 8319 || (c < 8455 + ? (c < 8450 + ? (c >= 8336 && c <= 8348) + : c <= 8450) + : (c <= 8455 || (c >= 8458 && c <= 8467))))))) + : (c <= 8469 || (c < 11264 + ? (c < 8490 ? (c < 8486 ? (c < 8484 ? (c >= 8472 && c <= 8477) : c <= 8484) - : (c <= 8486 || (c < 8490 - ? c == 8488 - : c <= 8505))) - : (c <= 8511 || (c < 8544 - ? (c < 8526 - ? (c >= 8517 && c <= 8521) - : c <= 8526) - : (c <= 8584 || (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11507))))) - : (c <= 11557 || (c < 11680 - ? (c < 11568 - ? (c < 11565 - ? c == 11559 - : c <= 11565) - : (c <= 11623 || (c < 11647 - ? c == 11631 - : c <= 11670))) - : (c <= 11686 || (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726))))))))) - : (c <= 11734 || (c < 42775 - ? (c < 12549 - ? (c < 12344 - ? (c < 12293 - ? (c < 11744 - ? (c >= 11736 && c <= 11742) - : c <= 11775) - : (c <= 12295 || (c < 12337 - ? (c >= 12321 && c <= 12335) - : c <= 12341))) - : (c <= 12348 || (c < 12445 - ? (c < 12441 - ? (c >= 12353 && c <= 12438) - : c <= 12442) - : (c <= 12447 || (c < 12540 + : (c <= 8486 || c == 8488)) + : (c <= 8505 || (c < 8526 + ? (c < 8517 + ? (c >= 8508 && c <= 8511) + : c <= 8521) + : (c <= 8526 || (c >= 8544 && c <= 8584))))) + : (c <= 11310 || (c < 11520 + ? (c < 11499 + ? (c < 11360 + ? (c >= 11312 && c <= 11358) + : c <= 11492) + : (c <= 11502 || (c >= 11506 && c <= 11507))) + : (c <= 11557 || (c < 11565 + ? c == 11559 + : (c <= 11565 || (c >= 11568 && c <= 11623))))))))) + : (c <= 11631 || (c < 12704 + ? (c < 12293 + ? (c < 11704 + ? (c < 11688 + ? (c < 11680 + ? (c >= 11648 && c <= 11670) + : c <= 11686) + : (c <= 11694 || (c >= 11696 && c <= 11702))) + : (c <= 11710 || (c < 11728 + ? (c < 11720 + ? (c >= 11712 && c <= 11718) + : c <= 11726) + : (c <= 11734 || (c >= 11736 && c <= 11742))))) + : (c <= 12295 || (c < 12445 + ? (c < 12344 + ? (c < 12337 + ? (c >= 12321 && c <= 12329) + : c <= 12341) + : (c <= 12348 || (c >= 12353 && c <= 12438))) + : (c <= 12447 || (c < 12549 + ? (c < 12540 ? (c >= 12449 && c <= 12538) - : c <= 12543))))) - : (c <= 12591 || (c < 42192 - ? (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c < 19968 - ? (c >= 13312 && c <= 19903) - : c <= 42124))) - : (c <= 42237 || (c < 42560 + : c <= 12543) + : (c <= 12591 || (c >= 12593 && c <= 12686))))))) + : (c <= 12735 || (c < 42623 + ? (c < 42192 + ? (c < 19968 + ? (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903) + : (c <= 40956 || (c >= 40960 && c <= 42124))) + : (c <= 42237 || (c < 42538 ? (c < 42512 ? (c >= 42240 && c <= 42508) - : c <= 42539) - : (c <= 42607 || (c < 42623 - ? (c >= 42612 && c <= 42621) - : c <= 42737))))))) - : (c <= 42783 || (c < 43259 - ? (c < 42994 - ? (c < 42960 - ? (c < 42891 - ? (c >= 42786 && c <= 42888) - : c <= 42954) - : (c <= 42961 || (c < 42965 - ? c == 42963 - : c <= 42969))) - : (c <= 43047 || (c < 43136 - ? (c < 43072 - ? c == 43052 - : c <= 43123) - : (c <= 43205 || (c < 43232 - ? (c >= 43216 && c <= 43225) - : c <= 43255))))) - : (c <= 43259 || (c < 43488 - ? (c < 43360 + : c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))))) + : (c <= 42653 || (c < 42946 + ? (c < 42786 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : c <= 42783) + : (c <= 42888 || (c >= 42891 && c <= 42943))) + : (c <= 42954 || (c < 43011 + ? (c >= 42997 && c <= 43009) + : (c <= 43013 || (c >= 43015 && c <= 43018))))))))))))))) + : (c <= 43042 || (c < 70453 + ? (c < 66176 + ? (c < 64112 + ? (c < 43697 + ? (c < 43471 + ? (c < 43261 + ? (c < 43250 + ? (c < 43138 + ? (c >= 43072 && c <= 43123) + : c <= 43187) + : (c <= 43255 || c == 43259)) + : (c <= 43262 || (c < 43360 ? (c < 43312 - ? (c >= 43261 && c <= 43309) - : c <= 43347) - : (c <= 43388 || (c < 43471 - ? (c >= 43392 && c <= 43456) - : c <= 43481))) - : (c <= 43518 || (c < 43600 - ? (c < 43584 - ? (c >= 43520 && c <= 43574) - : c <= 43597) - : (c <= 43609 || (c >= 43616 && c <= 43638))))))))))))))) - : (c <= 43714 || (c < 71472 - ? (c < 67644 - ? (c < 65382 - ? (c < 64318 - ? (c < 44012 - ? (c < 43793 - ? (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43759) - : (c <= 43766 || (c < 43785 - ? (c >= 43777 && c <= 43782) - : c <= 43790))) - : (c <= 43798 || (c < 43824 + ? (c >= 43274 && c <= 43301) + : c <= 43334) + : (c <= 43388 || (c >= 43396 && c <= 43442))))) + : (c <= 43471 || (c < 43584 + ? (c < 43514 + ? (c < 43494 + ? (c >= 43488 && c <= 43492) + : c <= 43503) + : (c <= 43518 || (c >= 43520 && c <= 43560))) + : (c <= 43586 || (c < 43642 + ? (c < 43616 + ? (c >= 43588 && c <= 43595) + : c <= 43638) + : (c <= 43642 || (c >= 43646 && c <= 43695))))))) + : (c <= 43697 || (c < 43793 + ? (c < 43739 + ? (c < 43712 + ? (c < 43705 + ? (c >= 43701 && c <= 43702) + : c <= 43709) + : (c <= 43712 || c == 43714)) + : (c <= 43741 || (c < 43777 + ? (c < 43762 + ? (c >= 43744 && c <= 43754) + : c <= 43764) + : (c <= 43782 || (c >= 43785 && c <= 43790))))) + : (c <= 43798 || (c < 43888 + ? (c < 43824 ? (c < 43816 ? (c >= 43808 && c <= 43814) : c <= 43822) - : (c <= 43866 || (c < 43888 - ? (c >= 43868 && c <= 43881) - : c <= 44010))))) - : (c <= 44013 || (c < 64112 - ? (c < 55216 - ? (c < 44032 - ? (c >= 44016 && c <= 44025) - : c <= 55203) - : (c <= 55238 || (c < 63744 - ? (c >= 55243 && c <= 55291) - : c <= 64109))) - : (c <= 64217 || (c < 64285 + : (c <= 43866 || (c >= 43868 && c <= 43881))) + : (c <= 44002 || (c < 55243 + ? (c < 55216 + ? (c >= 44032 && c <= 55203) + : c <= 55238) + : (c <= 55291 || (c >= 63744 && c <= 64109))))))))) + : (c <= 64217 || (c < 65147 + ? (c < 64326 + ? (c < 64298 + ? (c < 64285 ? (c < 64275 ? (c >= 64256 && c <= 64262) : c <= 64279) - : (c <= 64296 || (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316))))))) - : (c <= 64318 || (c < 65101 - ? (c < 64848 - ? (c < 64326 - ? (c < 64323 - ? (c >= 64320 && c <= 64321) - : c <= 64324) - : (c <= 64433 || (c < 64612 + : (c <= 64285 || (c >= 64287 && c <= 64296))) + : (c <= 64310 || (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))))) + : (c <= 64433 || (c < 65008 + ? (c < 64848 + ? (c < 64612 ? (c >= 64467 && c <= 64605) - : c <= 64829))) - : (c <= 64911 || (c < 65024 - ? (c < 65008 - ? (c >= 64914 && c <= 64967) - : c <= 65017) - : (c <= 65039 || (c < 65075 - ? (c >= 65056 && c <= 65071) - : c <= 65076))))) - : (c <= 65103 || (c < 65149 - ? (c < 65143 + : c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65017 || (c < 65143 ? (c < 65139 ? c == 65137 : c <= 65139) - : (c <= 65143 || (c < 65147 - ? c == 65145 - : c <= 65147))) - : (c <= 65149 || (c < 65313 - ? (c < 65296 - ? (c >= 65151 && c <= 65276) - : c <= 65305) - : (c <= 65338 || (c < 65345 - ? c == 65343 - : c <= 65370))))))))) - : (c <= 65470 || (c < 66560 - ? (c < 65856 - ? (c < 65549 - ? (c < 65490 - ? (c < 65482 - ? (c >= 65474 && c <= 65479) - : c <= 65487) - : (c <= 65495 || (c < 65536 - ? (c >= 65498 && c <= 65500) - : c <= 65547))) - : (c <= 65574 || (c < 65599 + : (c <= 65143 || c == 65145)))))) + : (c <= 65147 || (c < 65498 + ? (c < 65382 + ? (c < 65313 + ? (c < 65151 + ? c == 65149 + : c <= 65276) + : (c <= 65338 || (c >= 65345 && c <= 65370))) + : (c <= 65437 || (c < 65482 + ? (c < 65474 + ? (c >= 65440 && c <= 65470) + : c <= 65479) + : (c <= 65487 || (c >= 65490 && c <= 65495))))) + : (c <= 65500 || (c < 65599 + ? (c < 65576 + ? (c < 65549 + ? (c >= 65536 && c <= 65547) + : c <= 65574) + : (c <= 65594 || (c >= 65596 && c <= 65597))) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : (c <= 65786 || (c >= 65856 && c <= 65908))))))))))) + : (c <= 66204 || (c < 68416 + ? (c < 67639 + ? (c < 66736 + ? (c < 66432 + ? (c < 66349 + ? (c < 66304 + ? (c >= 66208 && c <= 66256) + : c <= 66335) + : (c <= 66378 || (c >= 66384 && c <= 66421))) + : (c <= 66461 || (c < 66513 + ? (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511) + : (c <= 66517 || (c >= 66560 && c <= 66717))))) + : (c <= 66771 || (c < 67392 + ? (c < 66864 + ? (c < 66816 + ? (c >= 66776 && c <= 66811) + : c <= 66855) + : (c <= 66915 || (c >= 67072 && c <= 67382))) + : (c <= 67413 || (c < 67592 + ? (c < 67584 + ? (c >= 67424 && c <= 67431) + : c <= 67589) + : (c <= 67592 || (c >= 67594 && c <= 67637))))))) + : (c <= 67640 || (c < 68030 + ? (c < 67808 + ? (c < 67680 + ? (c < 67647 + ? c == 67644 + : c <= 67669) + : (c <= 67702 || (c >= 67712 && c <= 67742))) + : (c <= 67826 || (c < 67872 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : c <= 67861) + : (c <= 67897 || (c >= 67968 && c <= 68023))))) + : (c <= 68031 || (c < 68192 + ? (c < 68117 + ? (c < 68112 + ? c == 68096 + : c <= 68115) + : (c <= 68119 || (c >= 68121 && c <= 68149))) + : (c <= 68220 || (c < 68297 + ? (c < 68288 + ? (c >= 68224 && c <= 68252) + : c <= 68295) + : (c <= 68324 || (c >= 68352 && c <= 68405))))))))) + : (c <= 68437 || (c < 69968 + ? (c < 69415 + ? (c < 68800 + ? (c < 68608 + ? (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497) + : (c <= 68680 || (c >= 68736 && c <= 68786))) + : (c <= 68850 || (c < 69296 + ? (c < 69248 + ? (c >= 68864 && c <= 68899) + : c <= 69289) + : (c <= 69297 || (c >= 69376 && c <= 69404))))) + : (c <= 69415 || (c < 69763 + ? (c < 69600 + ? (c < 69552 + ? (c >= 69424 && c <= 69445) + : c <= 69572) + : (c <= 69622 || (c >= 69635 && c <= 69687))) + : (c <= 69807 || (c < 69956 + ? (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926) + : (c <= 69956 || c == 69959)))))) + : (c <= 70002 || (c < 70282 + ? (c < 70108 + ? (c < 70081 + ? (c < 70019 + ? c == 70006 + : c <= 70066) + : (c <= 70084 || c == 70106)) + : (c <= 70108 || (c < 70272 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70187) + : (c <= 70278 || c == 70280)))) + : (c <= 70285 || (c < 70415 + ? (c < 70320 + ? (c < 70303 + ? (c >= 70287 && c <= 70301) + : c <= 70312) + : (c <= 70366 || (c >= 70405 && c <= 70412))) + : (c <= 70416 || (c < 70442 + ? (c >= 70419 && c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))))))))))))) + : (c <= 70457 || (c < 113808 + ? (c < 72818 + ? (c < 71945 + ? (c < 71040 + ? (c < 70727 + ? (c < 70493 + ? (c < 70480 + ? c == 70461 + : c <= 70480) + : (c <= 70497 || (c >= 70656 && c <= 70708))) + : (c <= 70730 || (c < 70852 + ? (c < 70784 + ? (c >= 70751 && c <= 70753) + : c <= 70831) + : (c <= 70853 || c == 70855)))) + : (c <= 71086 || (c < 71352 + ? (c < 71236 + ? (c < 71168 + ? (c >= 71128 && c <= 71131) + : c <= 71215) + : (c <= 71236 || (c >= 71296 && c <= 71338))) + : (c <= 71352 || (c < 71840 + ? (c < 71680 + ? (c >= 71424 && c <= 71450) + : c <= 71723) + : (c <= 71903 || (c >= 71935 && c <= 71942))))))) + : (c <= 71945 || (c < 72192 + ? (c < 72001 + ? (c < 71960 + ? (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958) + : (c <= 71983 || c == 71999)) + : (c <= 72001 || (c < 72161 + ? (c < 72106 + ? (c >= 72096 && c <= 72103) + : c <= 72144) + : (c <= 72161 || c == 72163)))) + : (c <= 72192 || (c < 72349 + ? (c < 72272 + ? (c < 72250 + ? (c >= 72203 && c <= 72242) + : c <= 72250) + : (c <= 72272 || (c >= 72284 && c <= 72329))) + : (c <= 72349 || (c < 72714 + ? (c < 72704 + ? (c >= 72384 && c <= 72440) + : c <= 72712) + : (c <= 72750 || c == 72768)))))))) + : (c <= 72847 || (c < 92992 + ? (c < 73648 + ? (c < 73056 + ? (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73008 || c == 73030)) + : (c <= 73061 || (c < 73112 + ? (c < 73066 + ? (c >= 73063 && c <= 73064) + : c <= 73097) + : (c <= 73112 || (c >= 73440 && c <= 73458))))) + : (c <= 73648 || (c < 82944 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c >= 77824 && c <= 78894))) + : (c <= 83526 || (c < 92880 + ? (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766) + : (c <= 92909 || (c >= 92928 && c <= 92975))))))) + : (c <= 92995 || (c < 100352 + ? (c < 94032 + ? (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c >= 93952 && c <= 94026))) + : (c <= 94032 || (c < 94179 + ? (c < 94176 + ? (c >= 94099 && c <= 94111) + : c <= 94177) + : (c <= 94179 || (c >= 94208 && c <= 100343))))) + : (c <= 101589 || (c < 110960 + ? (c < 110928 + ? (c < 110592 + ? (c >= 101632 && c <= 101640) + : c <= 110878) + : (c <= 110930 || (c >= 110948 && c <= 110951))) + : (c <= 111355 || (c < 113776 + ? (c >= 113664 && c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))))))))))) + : (c <= 113817 || (c < 126469 + ? (c < 120488 + ? (c < 120005 + ? (c < 119973 + ? (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)) + : (c <= 119974 || (c < 119995 + ? (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993) + : (c <= 119995 || (c >= 119997 && c <= 120003))))) + : (c <= 120069 || (c < 120123 + ? (c < 120086 + ? (c < 120077 + ? (c >= 120071 && c <= 120074) + : c <= 120084) + : (c <= 120092 || (c >= 120094 && c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c >= 120146 && c <= 120485))))))) + : (c <= 120512 || (c < 120772 + ? (c < 120630 + ? (c < 120572 + ? (c < 120540 + ? (c >= 120514 && c <= 120538) + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))) + : (c <= 120654 || (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c >= 120746 && c <= 120770))))) + : (c <= 120779 || (c < 124928 + ? (c < 123214 + ? (c < 123191 + ? (c >= 123136 && c <= 123180) + : c <= 123197) + : (c <= 123214 || (c >= 123584 && c <= 123627))) + : (c <= 125124 || (c < 125259 + ? (c >= 125184 && c <= 125251) + : (c <= 125259 || (c >= 126464 && c <= 126467))))))))) + : (c <= 126495 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c >= 126505 && c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173789) + : (c <= 177972 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 194560 + ? (c >= 183984 && c <= 191456) + : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); +} + +static inline bool sym_identifier_character_set_4(int32_t c) { + return (c < 43072 + ? (c < 3724 + ? (c < 2738 + ? (c < 2045 + ? (c < 1155 + ? (c < 748 + ? (c < 186 + ? (c < 170 + ? (c < 'a' + ? (c >= '0' && c <= 'Z') + : c <= 'z') + : (c <= 170 || (c < 183 + ? c == 181 + : c <= 183))) + : (c <= 186 || (c < 248 + ? (c < 216 + ? (c >= 192 && c <= 214) + : c <= 246) + : (c <= 705 || (c < 736 + ? (c >= 710 && c <= 721) + : c <= 740))))) + : (c <= 748 || (c < 902 + ? (c < 886 + ? (c < 768 + ? c == 750 + : c <= 884) + : (c <= 887 || (c < 895 + ? (c >= 891 && c <= 893) + : c <= 895))) + : (c <= 906 || (c < 931 + ? (c < 910 + ? c == 908 + : c <= 929) + : (c <= 1013 || (c >= 1015 && c <= 1153))))))) + : (c <= 1159 || (c < 1552 + ? (c < 1471 + ? (c < 1369 + ? (c < 1329 + ? (c >= 1162 && c <= 1327) + : c <= 1366) + : (c <= 1369 || (c < 1425 + ? (c >= 1376 && c <= 1416) + : c <= 1469))) + : (c <= 1471 || (c < 1479 + ? (c < 1476 + ? (c >= 1473 && c <= 1474) + : c <= 1477) + : (c <= 1479 || (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522))))) + : (c <= 1562 || (c < 1791 + ? (c < 1749 + ? (c < 1646 + ? (c >= 1568 && c <= 1641) + : c <= 1747) + : (c <= 1756 || (c < 1770 + ? (c >= 1759 && c <= 1768) + : c <= 1788))) + : (c <= 1791 || (c < 1984 + ? (c < 1869 + ? (c >= 1808 && c <= 1866) + : c <= 1969) + : (c <= 2037 || c == 2042)))))))) + : (c <= 2045 || (c < 2556 + ? (c < 2451 + ? (c < 2259 + ? (c < 2144 + ? (c < 2112 + ? (c >= 2048 && c <= 2093) + : c <= 2139) + : (c <= 2154 || (c < 2230 + ? (c >= 2208 && c <= 2228) + : c <= 2247))) + : (c <= 2273 || (c < 2417 + ? (c < 2406 + ? (c >= 2275 && c <= 2403) + : c <= 2415) + : (c <= 2435 || (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448))))) + : (c <= 2472 || (c < 2507 + ? (c < 2486 + ? (c < 2482 + ? (c >= 2474 && c <= 2480) + : c <= 2482) + : (c <= 2489 || (c < 2503 + ? (c >= 2492 && c <= 2500) + : c <= 2504))) + : (c <= 2510 || (c < 2527 + ? (c < 2524 + ? c == 2519 + : c <= 2525) + : (c <= 2531 || (c >= 2534 && c <= 2545))))))) + : (c <= 2556 || (c < 2631 + ? (c < 2602 + ? (c < 2565 + ? (c < 2561 + ? c == 2558 + : c <= 2563) + : (c <= 2570 || (c < 2579 + ? (c >= 2575 && c <= 2576) + : c <= 2600))) + : (c <= 2608 || (c < 2616 + ? (c < 2613 + ? (c >= 2610 && c <= 2611) + : c <= 2614) + : (c <= 2617 || (c < 2622 + ? c == 2620 + : c <= 2626))))) + : (c <= 2632 || (c < 2689 + ? (c < 2649 + ? (c < 2641 + ? (c >= 2635 && c <= 2637) + : c <= 2641) + : (c <= 2652 || (c < 2662 + ? c == 2654 + : c <= 2677))) + : (c <= 2691 || (c < 2707 + ? (c < 2703 + ? (c >= 2693 && c <= 2701) + : c <= 2705) + : (c <= 2728 || (c >= 2730 && c <= 2736))))))))))) + : (c <= 2739 || (c < 3146 + ? (c < 2929 + ? (c < 2835 + ? (c < 2784 + ? (c < 2759 + ? (c < 2748 + ? (c >= 2741 && c <= 2745) + : c <= 2757) + : (c <= 2761 || (c < 2768 + ? (c >= 2763 && c <= 2765) + : c <= 2768))) + : (c <= 2787 || (c < 2817 + ? (c < 2809 + ? (c >= 2790 && c <= 2799) + : c <= 2815) + : (c <= 2819 || (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832))))) + : (c <= 2856 || (c < 2891 + ? (c < 2869 + ? (c < 2866 + ? (c >= 2858 && c <= 2864) + : c <= 2867) + : (c <= 2873 || (c < 2887 + ? (c >= 2876 && c <= 2884) + : c <= 2888))) + : (c <= 2893 || (c < 2911 + ? (c < 2908 + ? (c >= 2901 && c <= 2903) + : c <= 2909) + : (c <= 2915 || (c >= 2918 && c <= 2927))))))) + : (c <= 2929 || (c < 3014 + ? (c < 2972 + ? (c < 2958 + ? (c < 2949 + ? (c >= 2946 && c <= 2947) + : c <= 2954) + : (c <= 2960 || (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970))) + : (c <= 2972 || (c < 2984 + ? (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980) + : (c <= 2986 || (c < 3006 + ? (c >= 2990 && c <= 3001) + : c <= 3010))))) + : (c <= 3016 || (c < 3086 + ? (c < 3031 + ? (c < 3024 + ? (c >= 3018 && c <= 3021) + : c <= 3024) + : (c <= 3031 || (c < 3072 + ? (c >= 3046 && c <= 3055) + : c <= 3084))) + : (c <= 3088 || (c < 3133 + ? (c < 3114 + ? (c >= 3090 && c <= 3112) + : c <= 3129) + : (c <= 3140 || (c >= 3142 && c <= 3144))))))))) + : (c <= 3149 || (c < 3402 + ? (c < 3270 + ? (c < 3205 + ? (c < 3168 + ? (c < 3160 + ? (c >= 3157 && c <= 3158) + : c <= 3162) + : (c <= 3171 || (c < 3200 + ? (c >= 3174 && c <= 3183) + : c <= 3203))) + : (c <= 3212 || (c < 3242 + ? (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240) + : (c <= 3251 || (c < 3260 + ? (c >= 3253 && c <= 3257) + : c <= 3268))))) + : (c <= 3272 || (c < 3313 + ? (c < 3294 + ? (c < 3285 + ? (c >= 3274 && c <= 3277) + : c <= 3286) + : (c <= 3294 || (c < 3302 + ? (c >= 3296 && c <= 3299) + : c <= 3311))) + : (c <= 3314 || (c < 3346 + ? (c < 3342 + ? (c >= 3328 && c <= 3340) + : c <= 3344) + : (c <= 3396 || (c >= 3398 && c <= 3400))))))) + : (c <= 3406 || (c < 3535 + ? (c < 3461 + ? (c < 3430 + ? (c < 3423 + ? (c >= 3412 && c <= 3415) + : c <= 3427) + : (c <= 3439 || (c < 3457 + ? (c >= 3450 && c <= 3455) + : c <= 3459))) + : (c <= 3478 || (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c < 3530 + ? (c >= 3520 && c <= 3526) + : c <= 3530))))) + : (c <= 3540 || (c < 3648 + ? (c < 3558 + ? (c < 3544 + ? c == 3542 + : c <= 3551) + : (c <= 3567 || (c < 3585 + ? (c >= 3570 && c <= 3571) + : c <= 3642))) + : (c <= 3662 || (c < 3716 + ? (c < 3713 + ? (c >= 3664 && c <= 3673) + : c <= 3714) + : (c <= 3716 || (c >= 3718 && c <= 3722))))))))))))) + : (c <= 3747 || (c < 7312 + ? (c < 5112 + ? (c < 4295 + ? (c < 3895 + ? (c < 3792 + ? (c < 3776 + ? (c < 3751 + ? c == 3749 + : c <= 3773) + : (c <= 3780 || (c < 3784 + ? c == 3782 + : c <= 3789))) + : (c <= 3801 || (c < 3864 + ? (c < 3840 + ? (c >= 3804 && c <= 3807) + : c <= 3840) + : (c <= 3865 || (c < 3893 + ? (c >= 3872 && c <= 3881) + : c <= 3893))))) + : (c <= 3895 || (c < 3993 + ? (c < 3913 + ? (c < 3902 + ? c == 3897 + : c <= 3911) + : (c <= 3948 || (c < 3974 + ? (c >= 3953 && c <= 3972) + : c <= 3991))) + : (c <= 4028 || (c < 4176 + ? (c < 4096 + ? c == 4038 + : c <= 4169) + : (c <= 4253 || (c >= 4256 && c <= 4293))))))) + : (c <= 4295 || (c < 4792 + ? (c < 4696 + ? (c < 4348 + ? (c < 4304 + ? c == 4301 + : c <= 4346) + : (c <= 4680 || (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694))) + : (c <= 4696 || (c < 4746 + ? (c < 4704 + ? (c >= 4698 && c <= 4701) + : c <= 4744) + : (c <= 4749 || (c < 4786 + ? (c >= 4752 && c <= 4784) + : c <= 4789))))) + : (c <= 4798 || (c < 4888 + ? (c < 4808 + ? (c < 4802 + ? c == 4800 + : c <= 4805) + : (c <= 4822 || (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885))) + : (c <= 4954 || (c < 4992 + ? (c < 4969 + ? (c >= 4957 && c <= 4959) + : c <= 4977) + : (c <= 5007 || (c >= 5024 && c <= 5109))))))))) + : (c <= 5117 || (c < 6432 + ? (c < 6002 + ? (c < 5888 + ? (c < 5761 + ? (c < 5743 + ? (c >= 5121 && c <= 5740) + : c <= 5759) + : (c <= 5786 || (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880))) + : (c <= 5900 || (c < 5952 + ? (c < 5920 + ? (c >= 5902 && c <= 5908) + : c <= 5940) + : (c <= 5971 || (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000))))) + : (c <= 6003 || (c < 6160 + ? (c < 6108 + ? (c < 6103 + ? (c >= 6016 && c <= 6099) + : c <= 6103) + : (c <= 6109 || (c < 6155 + ? (c >= 6112 && c <= 6121) + : c <= 6157))) + : (c <= 6169 || (c < 6320 + ? (c < 6272 + ? (c >= 6176 && c <= 6264) + : c <= 6314) + : (c <= 6389 || (c >= 6400 && c <= 6430))))))) + : (c <= 6443 || (c < 6823 + ? (c < 6608 + ? (c < 6512 + ? (c < 6470 + ? (c >= 6448 && c <= 6459) + : c <= 6509) + : (c <= 6516 || (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601))) + : (c <= 6618 || (c < 6752 + ? (c < 6688 + ? (c >= 6656 && c <= 6683) + : c <= 6750) + : (c <= 6780 || (c < 6800 + ? (c >= 6783 && c <= 6793) + : c <= 6809))))) + : (c <= 6823 || (c < 7040 + ? (c < 6912 + ? (c < 6847 + ? (c >= 6832 && c <= 6845) + : c <= 6848) + : (c <= 6987 || (c < 7019 + ? (c >= 6992 && c <= 7001) + : c <= 7027))) + : (c <= 7155 || (c < 7245 + ? (c < 7232 + ? (c >= 7168 && c <= 7223) + : c <= 7241) + : (c <= 7293 || (c >= 7296 && c <= 7304))))))))))) + : (c <= 7354 || (c < 11312 + ? (c < 8182 + ? (c < 8029 + ? (c < 7960 + ? (c < 7380 + ? (c < 7376 + ? (c >= 7357 && c <= 7359) + : c <= 7378) + : (c <= 7418 || (c < 7675 + ? (c >= 7424 && c <= 7673) + : c <= 7957))) + : (c <= 7965 || (c < 8016 + ? (c < 8008 + ? (c >= 7968 && c <= 8005) + : c <= 8013) + : (c <= 8023 || (c < 8027 + ? c == 8025 + : c <= 8027))))) + : (c <= 8029 || (c < 8134 + ? (c < 8118 + ? (c < 8064 + ? (c >= 8031 && c <= 8061) + : c <= 8116) + : (c <= 8124 || (c < 8130 + ? c == 8126 + : c <= 8132))) + : (c <= 8140 || (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c >= 8178 && c <= 8180))))))) + : (c <= 8188 || (c < 8469 + ? (c < 8400 + ? (c < 8305 + ? (c < 8276 + ? (c >= 8255 && c <= 8256) + : c <= 8276) + : (c <= 8305 || (c < 8336 + ? c == 8319 + : c <= 8348))) + : (c <= 8412 || (c < 8450 + ? (c < 8421 + ? c == 8417 + : c <= 8432) + : (c <= 8450 || (c < 8458 + ? c == 8455 + : c <= 8467))))) + : (c <= 8469 || (c < 8508 + ? (c < 8486 + ? (c < 8484 + ? (c >= 8472 && c <= 8477) + : c <= 8484) + : (c <= 8486 || (c < 8490 + ? c == 8488 + : c <= 8505))) + : (c <= 8511 || (c < 8544 + ? (c < 8526 + ? (c >= 8517 && c <= 8521) + : c <= 8526) + : (c <= 8584 || (c >= 11264 && c <= 11310))))))))) + : (c <= 11358 || (c < 12441 + ? (c < 11704 + ? (c < 11568 + ? (c < 11520 + ? (c < 11499 + ? (c >= 11360 && c <= 11492) + : c <= 11507) + : (c <= 11557 || (c < 11565 + ? c == 11559 + : c <= 11565))) + : (c <= 11623 || (c < 11680 + ? (c < 11647 + ? c == 11631 + : c <= 11670) + : (c <= 11686 || (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702))))) + : (c <= 11710 || (c < 12293 + ? (c < 11728 + ? (c < 11720 + ? (c >= 11712 && c <= 11718) + : c <= 11726) + : (c <= 11734 || (c < 11744 + ? (c >= 11736 && c <= 11742) + : c <= 11775))) + : (c <= 12295 || (c < 12344 + ? (c < 12337 + ? (c >= 12321 && c <= 12335) + : c <= 12341) + : (c <= 12348 || (c >= 12353 && c <= 12438))))))) + : (c <= 12442 || (c < 42240 + ? (c < 12704 + ? (c < 12540 + ? (c < 12449 + ? (c >= 12445 && c <= 12447) + : c <= 12538) + : (c <= 12543 || (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686))) + : (c <= 12735 || (c < 19968 + ? (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903) + : (c <= 40956 || (c < 42192 + ? (c >= 40960 && c <= 42124) + : c <= 42237))))) + : (c <= 42508 || (c < 42786 + ? (c < 42612 + ? (c < 42560 + ? (c >= 42512 && c <= 42539) + : c <= 42607) + : (c <= 42621 || (c < 42775 + ? (c >= 42623 && c <= 42737) + : c <= 42783))) + : (c <= 42888 || (c < 42997 + ? (c < 42946 + ? (c >= 42891 && c <= 42943) + : c <= 42954) + : (c <= 43047 || c == 43052)))))))))))))) + : (c <= 43123 || (c < 71096 + ? (c < 66864 + ? (c < 64914 + ? (c < 43816 + ? (c < 43584 + ? (c < 43312 + ? (c < 43232 + ? (c < 43216 + ? (c >= 43136 && c <= 43205) + : c <= 43225) + : (c <= 43255 || (c < 43261 + ? c == 43259 + : c <= 43309))) + : (c <= 43347 || (c < 43471 + ? (c < 43392 + ? (c >= 43360 && c <= 43388) + : c <= 43456) + : (c <= 43481 || (c < 43520 + ? (c >= 43488 && c <= 43518) + : c <= 43574))))) + : (c <= 43597 || (c < 43762 + ? (c < 43642 + ? (c < 43616 + ? (c >= 43600 && c <= 43609) + : c <= 43638) + : (c <= 43714 || (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43759))) + : (c <= 43766 || (c < 43793 + ? (c < 43785 + ? (c >= 43777 && c <= 43782) + : c <= 43790) + : (c <= 43798 || (c >= 43808 && c <= 43814))))))) + : (c <= 43822 || (c < 64275 + ? (c < 44032 + ? (c < 43888 + ? (c < 43868 + ? (c >= 43824 && c <= 43866) + : c <= 43881) + : (c <= 44010 || (c < 44016 + ? (c >= 44012 && c <= 44013) + : c <= 44025))) + : (c <= 55203 || (c < 63744 + ? (c < 55243 + ? (c >= 55216 && c <= 55238) + : c <= 55291) + : (c <= 64109 || (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262))))) + : (c <= 64279 || (c < 64323 + ? (c < 64312 + ? (c < 64298 + ? (c >= 64285 && c <= 64296) + : c <= 64310) + : (c <= 64316 || (c < 64320 + ? c == 64318 + : c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65549 + ? (c < 65151 + ? (c < 65137 + ? (c < 65056 + ? (c < 65024 + ? (c >= 65008 && c <= 65017) + : c <= 65039) + : (c <= 65071 || (c < 65101 + ? (c >= 65075 && c <= 65076) + : c <= 65103))) + : (c <= 65137 || (c < 65145 + ? (c < 65143 + ? c == 65139 + : c <= 65143) + : (c <= 65145 || (c < 65149 + ? c == 65147 + : c <= 65149))))) + : (c <= 65276 || (c < 65474 + ? (c < 65343 + ? (c < 65313 + ? (c >= 65296 && c <= 65305) + : c <= 65338) + : (c <= 65343 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65470))) + : (c <= 65479 || (c < 65498 + ? (c < 65490 + ? (c >= 65482 && c <= 65487) + : c <= 65495) + : (c <= 65500 || (c >= 65536 && c <= 65547))))))) + : (c <= 65574 || (c < 66349 + ? (c < 65856 + ? (c < 65599 ? (c < 65596 ? (c >= 65576 && c <= 65594) : c <= 65597) : (c <= 65613 || (c < 65664 ? (c >= 65616 && c <= 65629) - : c <= 65786))))) - : (c <= 65908 || (c < 66349 - ? (c < 66208 + : c <= 65786))) + : (c <= 65908 || (c < 66208 ? (c < 66176 ? c == 66045 : c <= 66204) : (c <= 66256 || (c < 66304 ? c == 66272 - : c <= 66335))) - : (c <= 66378 || (c < 66464 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 ? (c < 66432 ? (c >= 66384 && c <= 66426) : c <= 66461) : (c <= 66499 || (c < 66513 ? (c >= 66504 && c <= 66511) - : c <= 66517))))))) - : (c <= 66717 || (c < 66995 - ? (c < 66928 - ? (c < 66776 + : c <= 66517))) + : (c <= 66717 || (c < 66776 ? (c < 66736 ? (c >= 66720 && c <= 66729) : c <= 66771) - : (c <= 66811 || (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915))) - : (c <= 66938 || (c < 66964 - ? (c < 66956 - ? (c >= 66940 && c <= 66954) - : c <= 66962) - : (c <= 66965 || (c < 66979 - ? (c >= 66967 && c <= 66977) - : c <= 66993))))) - : (c <= 67001 || (c < 67463 - ? (c < 67392 - ? (c < 67072 - ? (c >= 67003 && c <= 67004) - : c <= 67382) - : (c <= 67413 || (c < 67456 - ? (c >= 67424 && c <= 67431) - : c <= 67461))) - : (c <= 67504 || (c < 67592 - ? (c < 67584 - ? (c >= 67506 && c <= 67514) - : c <= 67589) - : (c <= 67592 || (c < 67639 - ? (c >= 67594 && c <= 67637) - : c <= 67640))))))))))) - : (c <= 67644 || (c < 69968 - ? (c < 68480 - ? (c < 68108 - ? (c < 67840 - ? (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c < 67828 - ? (c >= 67808 && c <= 67826) - : c <= 67829))) - : (c <= 67861 || (c < 68030 - ? (c < 67968 - ? (c >= 67872 && c <= 67897) - : c <= 68023) - : (c <= 68031 || (c < 68101 - ? (c >= 68096 && c <= 68099) - : c <= 68102))))) - : (c <= 68115 || (c < 68224 - ? (c < 68152 - ? (c < 68121 - ? (c >= 68117 && c <= 68119) - : c <= 68149) - : (c <= 68154 || (c < 68192 + : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) + : (c <= 66915 || (c < 69632 + ? (c < 68152 + ? (c < 67808 + ? (c < 67594 + ? (c < 67424 + ? (c < 67392 + ? (c >= 67072 && c <= 67382) + : c <= 67413) + : (c <= 67431 || (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592))) + : (c <= 67637 || (c < 67647 + ? (c < 67644 + ? (c >= 67639 && c <= 67640) + : c <= 67644) + : (c <= 67669 || (c < 67712 + ? (c >= 67680 && c <= 67702) + : c <= 67742))))) + : (c <= 67826 || (c < 68096 + ? (c < 67872 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : c <= 67861) + : (c <= 67897 || (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031))) + : (c <= 68099 || (c < 68117 + ? (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115) + : (c <= 68119 || (c >= 68121 && c <= 68149))))))) + : (c <= 68154 || (c < 68800 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 ? c == 68159 - : c <= 68220))) - : (c <= 68252 || (c < 68352 - ? (c < 68297 + : c <= 68220) + : (c <= 68252 || (c < 68297 ? (c >= 68288 && c <= 68295) - : c <= 68326) - : (c <= 68405 || (c < 68448 + : c <= 68326))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 ? (c >= 68416 && c <= 68437) - : c <= 68466))))))) - : (c <= 68497 || (c < 69488 - ? (c < 69248 - ? (c < 68800 - ? (c < 68736 + : c <= 68466) + : (c <= 68497 || (c < 68736 ? (c >= 68608 && c <= 68680) - : c <= 68786) - : (c <= 68850 || (c < 68912 + : c <= 68786))))) + : (c <= 68850 || (c < 69376 + ? (c < 69248 + ? (c < 68912 ? (c >= 68864 && c <= 68903) - : c <= 68921))) - : (c <= 69289 || (c < 69376 - ? (c < 69296 + : c <= 68921) + : (c <= 69289 || (c < 69296 ? (c >= 69291 && c <= 69292) - : c <= 69297) - : (c <= 69404 || (c < 69424 + : c <= 69297))) + : (c <= 69404 || (c < 69552 + ? (c < 69424 ? c == 69415 - : c <= 69456))))) - : (c <= 69509 || (c < 69826 - ? (c < 69632 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69702 || (c < 69759 - ? (c >= 69734 && c <= 69749) - : c <= 69818))) - : (c <= 69826 || (c < 69888 - ? (c < 69872 - ? (c >= 69840 && c <= 69864) - : c <= 69881) - : (c <= 69940 || (c < 69956 - ? (c >= 69942 && c <= 69951) - : c <= 69959))))))))) - : (c <= 70003 || (c < 70471 - ? (c < 70287 - ? (c < 70144 - ? (c < 70089 - ? (c < 70016 - ? c == 70006 - : c <= 70084) - : (c <= 70092 || (c < 70108 - ? (c >= 70094 && c <= 70106) - : c <= 70108))) - : (c <= 70161 || (c < 70272 - ? (c < 70206 - ? (c >= 70163 && c <= 70199) - : c <= 70206) - : (c <= 70278 || (c < 70282 - ? c == 70280 - : c <= 70285))))) - : (c <= 70301 || (c < 70415 - ? (c < 70384 - ? (c < 70320 - ? (c >= 70303 && c <= 70312) - : c <= 70378) - : (c <= 70393 || (c < 70405 + : c <= 69456) + : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) + : (c <= 69702 || (c < 70384 + ? (c < 70094 + ? (c < 69942 + ? (c < 69840 + ? (c < 69759 + ? (c >= 69734 && c <= 69743) + : c <= 69818) + : (c <= 69864 || (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940))) + : (c <= 69951 || (c < 70006 + ? (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003) + : (c <= 70006 || (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092))))) + : (c <= 70106 || (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70199 || (c < 70272 + ? c == 70206 + : c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70378))))))) + : (c <= 70393 || (c < 70487 + ? (c < 70450 + ? (c < 70415 + ? (c < 70405 ? (c >= 70400 && c <= 70403) - : c <= 70412))) - : (c <= 70416 || (c < 70450 - ? (c < 70442 + : c <= 70412) + : (c <= 70416 || (c < 70442 ? (c >= 70419 && c <= 70440) - : c <= 70448) - : (c <= 70451 || (c < 70459 + : c <= 70448))) + : (c <= 70451 || (c < 70471 + ? (c < 70459 ? (c >= 70453 && c <= 70457) - : c <= 70468))))))) - : (c <= 70472 || (c < 70864 - ? (c < 70512 - ? (c < 70487 - ? (c < 70480 + : c <= 70468) + : (c <= 70472 || (c < 70480 ? (c >= 70475 && c <= 70477) - : c <= 70480) - : (c <= 70487 || (c < 70502 + : c <= 70480))))) + : (c <= 70487 || (c < 70750 + ? (c < 70512 + ? (c < 70502 ? (c >= 70493 && c <= 70499) - : c <= 70508))) - : (c <= 70516 || (c < 70750 - ? (c < 70736 + : c <= 70508) + : (c <= 70516 || (c < 70736 ? (c >= 70656 && c <= 70730) - : c <= 70745) - : (c <= 70753 || (c < 70855 + : c <= 70745))) + : (c <= 70753 || (c < 70864 + ? (c < 70855 ? (c >= 70784 && c <= 70853) - : c <= 70855))))) - : (c <= 70873 || (c < 71248 - ? (c < 71128 - ? (c < 71096 - ? (c >= 71040 && c <= 71093) - : c <= 71104) - : (c <= 71133 || (c < 71236 - ? (c >= 71168 && c <= 71232) - : c <= 71236))) - : (c <= 71257 || (c < 71424 - ? (c < 71360 - ? (c >= 71296 && c <= 71352) - : c <= 71369) - : (c <= 71450 || (c >= 71453 && c <= 71467))))))))))))) - : (c <= 71481 || (c < 119973 - ? (c < 82944 - ? (c < 72784 - ? (c < 72096 - ? (c < 71948 - ? (c < 71840 - ? (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71738) - : (c <= 71913 || (c < 71945 - ? (c >= 71935 && c <= 71942) - : c <= 71945))) - : (c <= 71955 || (c < 71991 - ? (c < 71960 - ? (c >= 71957 && c <= 71958) - : c <= 71989) - : (c <= 71992 || (c < 72016 - ? (c >= 71995 && c <= 72003) - : c <= 72025))))) - : (c <= 72103 || (c < 72272 - ? (c < 72163 - ? (c < 72154 - ? (c >= 72106 && c <= 72151) - : c <= 72161) - : (c <= 72164 || (c < 72263 + : c <= 70855) + : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) + : (c <= 71104 || (c < 119894 + ? (c < 73104 + ? (c < 72163 + ? (c < 71935 + ? (c < 71360 + ? (c < 71236 + ? (c < 71168 + ? (c >= 71128 && c <= 71133) + : c <= 71232) + : (c <= 71236 || (c < 71296 + ? (c >= 71248 && c <= 71257) + : c <= 71352))) + : (c <= 71369 || (c < 71472 + ? (c < 71453 + ? (c >= 71424 && c <= 71450) + : c <= 71467) + : (c <= 71481 || (c < 71840 + ? (c >= 71680 && c <= 71738) + : c <= 71913))))) + : (c <= 71942 || (c < 71995 + ? (c < 71957 + ? (c < 71948 + ? c == 71945 + : c <= 71955) + : (c <= 71958 || (c < 71991 + ? (c >= 71960 && c <= 71989) + : c <= 71992))) + : (c <= 72003 || (c < 72106 + ? (c < 72096 + ? (c >= 72016 && c <= 72025) + : c <= 72103) + : (c <= 72151 || (c >= 72154 && c <= 72161))))))) + : (c <= 72164 || (c < 72873 + ? (c < 72704 + ? (c < 72272 + ? (c < 72263 ? (c >= 72192 && c <= 72254) - : c <= 72263))) - : (c <= 72345 || (c < 72704 - ? (c < 72368 + : c <= 72263) + : (c <= 72345 || (c < 72384 ? c == 72349 - : c <= 72440) - : (c <= 72712 || (c < 72760 + : c <= 72440))) + : (c <= 72712 || (c < 72784 + ? (c < 72760 ? (c >= 72714 && c <= 72758) - : c <= 72768))))))) - : (c <= 72793 || (c < 73063 - ? (c < 72971 - ? (c < 72873 - ? (c < 72850 + : c <= 72768) + : (c <= 72793 || (c < 72850 ? (c >= 72818 && c <= 72847) - : c <= 72871) - : (c <= 72886 || (c < 72968 + : c <= 72871))))) + : (c <= 72886 || (c < 73023 + ? (c < 72971 + ? (c < 72968 ? (c >= 72960 && c <= 72966) - : c <= 72969))) - : (c <= 73014 || (c < 73023 - ? (c < 73020 + : c <= 72969) + : (c <= 73014 || (c < 73020 ? c == 73018 - : c <= 73021) - : (c <= 73031 || (c < 73056 + : c <= 73021))) + : (c <= 73031 || (c < 73063 + ? (c < 73056 ? (c >= 73040 && c <= 73049) - : c <= 73061))))) - : (c <= 73064 || (c < 73648 - ? (c < 73107 - ? (c < 73104 - ? (c >= 73066 && c <= 73102) - : c <= 73105) - : (c <= 73112 || (c < 73440 - ? (c >= 73120 && c <= 73129) - : c <= 73462))) - : (c <= 73648 || (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c < 77824 - ? (c >= 77712 && c <= 77808) - : c <= 78894))))))))) - : (c <= 83526 || (c < 110581 - ? (c < 93053 - ? (c < 92880 - ? (c < 92768 - ? (c < 92736 + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) + : (c <= 73105 || (c < 94095 + ? (c < 92768 + ? (c < 74752 + ? (c < 73440 + ? (c < 73120 + ? (c >= 73107 && c <= 73112) + : c <= 73129) + : (c <= 73462 || (c < 73728 + ? c == 73648 + : c <= 74649))) + : (c <= 74862 || (c < 82944 + ? (c < 77824 + ? (c >= 74880 && c <= 75075) + : c <= 78894) + : (c <= 83526 || (c < 92736 ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92777 || (c < 92864 - ? (c >= 92784 && c <= 92862) - : c <= 92873))) - : (c <= 92909 || (c < 92992 - ? (c < 92928 - ? (c >= 92912 && c <= 92916) - : c <= 92982) - : (c <= 92995 || (c < 93027 - ? (c >= 93008 && c <= 93017) - : c <= 93047))))) - : (c <= 93071 || (c < 94179 - ? (c < 94031 - ? (c < 93952 - ? (c >= 93760 && c <= 93823) - : c <= 94026) - : (c <= 94087 || (c < 94176 - ? (c >= 94095 && c <= 94111) - : c <= 94177))) - : (c <= 94180 || (c < 100352 - ? (c < 94208 - ? (c >= 94192 && c <= 94193) - : c <= 100343) - : (c <= 101589 || (c < 110576 - ? (c >= 101632 && c <= 101640) - : c <= 110579))))))) - : (c <= 110587 || (c < 118576 - ? (c < 113664 - ? (c < 110928 - ? (c < 110592 - ? (c >= 110589 && c <= 110590) - : c <= 110882) - : (c <= 110930 || (c < 110960 - ? (c >= 110948 && c <= 110951) - : c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c < 118528 - ? (c >= 113821 && c <= 113822) - : c <= 118573))))) - : (c <= 118598 || (c < 119362 - ? (c < 119163 - ? (c < 119149 + : c <= 92766))))) + : (c <= 92777 || (c < 93027 + ? (c < 92928 + ? (c < 92912 + ? (c >= 92880 && c <= 92909) + : c <= 92916) + : (c <= 92982 || (c < 93008 + ? (c >= 92992 && c <= 92995) + : c <= 93017))) + : (c <= 93047 || (c < 93952 + ? (c < 93760 + ? (c >= 93053 && c <= 93071) + : c <= 93823) + : (c <= 94026 || (c >= 94031 && c <= 94087))))))) + : (c <= 94111 || (c < 113776 + ? (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110948 + ? (c < 110928 + ? (c >= 110592 && c <= 110878) + : c <= 110930) + : (c <= 110951 || (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770))))) + : (c <= 113788 || (c < 119163 + ? (c < 113821 + ? (c < 113808 + ? (c >= 113792 && c <= 113800) + : c <= 113817) + : (c <= 113822 || (c < 119149 ? (c >= 119141 && c <= 119145) - : c <= 119154) - : (c <= 119170 || (c < 119210 + : c <= 119154))) + : (c <= 119170 || (c < 119362 + ? (c < 119210 ? (c >= 119173 && c <= 119179) - : c <= 119213))) - : (c <= 119364 || (c < 119966 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : c <= 119964) - : (c <= 119967 || c == 119970)))))))))) - : (c <= 119974 || (c < 124912 - ? (c < 120746 - ? (c < 120134 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 + : c <= 119213) + : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 124928 + ? (c < 120630 + ? (c < 120094 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 + : c <= 120069) + : (c <= 120074 || (c < 120086 ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c < 120128 + : c <= 120092))))) + : (c <= 120121 || (c < 120488 + ? (c < 120134 + ? (c < 120128 ? (c >= 120123 && c <= 120126) - : c <= 120132))))) - : (c <= 120134 || (c < 120572 - ? (c < 120488 - ? (c < 120146 + : c <= 120132) + : (c <= 120134 || (c < 120146 ? (c >= 120138 && c <= 120144) - : c <= 120485) - : (c <= 120512 || (c < 120540 + : c <= 120485))) + : (c <= 120512 || (c < 120572 + ? (c < 120540 ? (c >= 120514 && c <= 120538) - : c <= 120570))) - : (c <= 120596 || (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))))))) - : (c <= 120770 || (c < 122907 - ? (c < 121476 - ? (c < 121344 - ? (c < 120782 - ? (c >= 120772 && c <= 120779) - : c <= 120831) - : (c <= 121398 || (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461))) - : (c <= 121476 || (c < 122624 - ? (c < 121505 - ? (c >= 121499 && c <= 121503) - : c <= 121519) - : (c <= 122654 || (c < 122888 + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))))))) + : (c <= 120654 || (c < 121505 + ? (c < 120782 + ? (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779))) + : (c <= 120831 || (c < 121461 + ? (c < 121403 + ? (c >= 121344 && c <= 121398) + : c <= 121452) + : (c <= 121461 || (c < 121499 + ? c == 121476 + : c <= 121503))))) + : (c <= 121519 || (c < 123136 + ? (c < 122907 + ? (c < 122888 ? (c >= 122880 && c <= 122886) - : c <= 122904))))) - : (c <= 122913 || (c < 123214 - ? (c < 123136 - ? (c < 122918 + : c <= 122904) + : (c <= 122913 || (c < 122918 ? (c >= 122915 && c <= 122916) - : c <= 122922) - : (c <= 123180 || (c < 123200 + : c <= 122922))) + : (c <= 123180 || (c < 123214 + ? (c < 123200 ? (c >= 123184 && c <= 123197) - : c <= 123209))) - : (c <= 123214 || (c < 124896 - ? (c < 123584 - ? (c >= 123536 && c <= 123566) - : c <= 123641) - : (c <= 124902 || (c < 124909 - ? (c >= 124904 && c <= 124907) - : c <= 124910))))))))) - : (c <= 124926 || (c < 126557 - ? (c < 126521 - ? (c < 126469 - ? (c < 125184 - ? (c < 125136 - ? (c >= 124928 && c <= 125124) - : c <= 125142) - : (c <= 125259 || (c < 126464 - ? (c >= 125264 && c <= 125273) - : c <= 126467))) - : (c <= 126495 || (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c < 126516 - ? (c >= 126505 && c <= 126514) - : c <= 126519))))) - : (c <= 126521 || (c < 126541 - ? (c < 126535 - ? (c < 126530 - ? c == 126523 - : c <= 126530) - : (c <= 126535 || (c < 126539 - ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126551 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548) - : (c <= 126551 || (c < 126555 - ? c == 126553 - : c <= 126555))))))) + : c <= 123209) + : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) + : (c <= 125124 || (c < 126557 + ? (c < 126523 + ? (c < 126497 + ? (c < 125264 + ? (c < 125184 + ? (c >= 125136 && c <= 125142) + : c <= 125259) + : (c <= 125273 || (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495))) + : (c <= 126498 || (c < 126505 + ? (c < 126503 + ? c == 126500 + : c <= 126503) + : (c <= 126514 || (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521))))) + : (c <= 126523 || (c < 126545 + ? (c < 126537 + ? (c < 126535 + ? c == 126530 + : c <= 126535) + : (c <= 126537 || (c < 126541 + ? c == 126539 + : c <= 126543))) + : (c <= 126546 || (c < 126553 + ? (c < 126551 + ? c == 126548 + : c <= 126551) + : (c <= 126553 || c == 126555)))))) : (c <= 126557 || (c < 126629 ? (c < 126580 ? (c < 126564 @@ -6917,8 +6737,8 @@ static inline bool sym_identifier_character_set_4(int32_t c) { ? (c < 130032 ? (c >= 126635 && c <= 126651) : c <= 130041) - : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177976) + : (c <= 173789 || (c < 177984 + ? (c >= 173824 && c <= 177972) : c <= 178205))) : (c <= 183969 || (c < 196608 ? (c < 194560 @@ -6928,10 +6748,10 @@ static inline bool sym_identifier_character_set_4(int32_t c) { } static inline bool sym_identifier_character_set_5(int32_t c) { - return (c < 43616 - ? (c < 3782 - ? (c < 2748 - ? (c < 2045 + return (c < 43052 + ? (c < 3718 + ? (c < 2730 + ? (c < 2042 ? (c < 1015 ? (c < 710 ? (c < 181 @@ -6992,344 +6812,338 @@ static inline bool sym_identifier_character_set_5(int32_t c) { ? (c < 1808 ? c == 1791 : c <= 1866) - : (c <= 1969 || (c < 2042 - ? (c >= 1984 && c <= 2037) - : c <= 2042))))))))) - : (c <= 2045 || (c < 2558 - ? (c < 2451 - ? (c < 2200 - ? (c < 2144 - ? (c < 2112 - ? (c >= 2048 && c <= 2093) - : c <= 2139) - : (c <= 2154 || (c < 2185 - ? (c >= 2160 && c <= 2183) - : c <= 2190))) - : (c <= 2273 || (c < 2417 - ? (c < 2406 - ? (c >= 2275 && c <= 2403) - : c <= 2415) - : (c <= 2435 || (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448))))) - : (c <= 2472 || (c < 2507 - ? (c < 2486 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482) - : (c <= 2489 || (c < 2503 - ? (c >= 2492 && c <= 2500) - : c <= 2504))) - : (c <= 2510 || (c < 2527 - ? (c < 2524 - ? c == 2519 - : c <= 2525) - : (c <= 2531 || (c < 2556 - ? (c >= 2534 && c <= 2545) - : c <= 2556))))))) - : (c <= 2558 || (c < 2635 - ? (c < 2610 - ? (c < 2575 - ? (c < 2565 - ? (c >= 2561 && c <= 2563) - : c <= 2570) - : (c <= 2576 || (c < 2602 - ? (c >= 2579 && c <= 2600) - : c <= 2608))) - : (c <= 2611 || (c < 2620 - ? (c < 2616 - ? (c >= 2613 && c <= 2614) - : c <= 2617) - : (c <= 2620 || (c < 2631 - ? (c >= 2622 && c <= 2626) - : c <= 2632))))) - : (c <= 2637 || (c < 2693 - ? (c < 2654 - ? (c < 2649 - ? c == 2641 - : c <= 2652) - : (c <= 2654 || (c < 2689 - ? (c >= 2662 && c <= 2677) - : c <= 2691))) - : (c <= 2701 || (c < 2730 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : c <= 2728) - : (c <= 2736 || (c < 2741 + : (c <= 1969 || (c >= 1984 && c <= 2037))))))))) + : (c <= 2042 || (c < 2534 + ? (c < 2447 + ? (c < 2230 + ? (c < 2112 + ? (c < 2048 + ? c == 2045 + : c <= 2093) + : (c <= 2139 || (c < 2208 + ? (c >= 2144 && c <= 2154) + : c <= 2228))) + : (c <= 2247 || (c < 2406 + ? (c < 2275 + ? (c >= 2259 && c <= 2273) + : c <= 2403) + : (c <= 2415 || (c < 2437 + ? (c >= 2417 && c <= 2435) + : c <= 2444))))) + : (c <= 2448 || (c < 2503 + ? (c < 2482 + ? (c < 2474 + ? (c >= 2451 && c <= 2472) + : c <= 2480) + : (c <= 2482 || (c < 2492 + ? (c >= 2486 && c <= 2489) + : c <= 2500))) + : (c <= 2504 || (c < 2524 + ? (c < 2519 + ? (c >= 2507 && c <= 2510) + : c <= 2519) + : (c <= 2525 || (c >= 2527 && c <= 2531))))))) + : (c <= 2545 || (c < 2622 + ? (c < 2579 + ? (c < 2561 + ? (c < 2558 + ? c == 2556 + : c <= 2558) + : (c <= 2563 || (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576))) + : (c <= 2600 || (c < 2613 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611) + : (c <= 2614 || (c < 2620 + ? (c >= 2616 && c <= 2617) + : c <= 2620))))) + : (c <= 2626 || (c < 2662 + ? (c < 2641 + ? (c < 2635 + ? (c >= 2631 && c <= 2632) + : c <= 2637) + : (c <= 2641 || (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654))) + : (c <= 2677 || (c < 2703 + ? (c < 2693 + ? (c >= 2689 && c <= 2691) + : c <= 2701) + : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) + : (c <= 2736 || (c < 3142 + ? (c < 2918 + ? (c < 2831 + ? (c < 2768 + ? (c < 2748 + ? (c < 2741 ? (c >= 2738 && c <= 2739) - : c <= 2745))))))))))) - : (c <= 2757 || (c < 3168 - ? (c < 2958 - ? (c < 2866 - ? (c < 2809 - ? (c < 2768 - ? (c < 2763 + : c <= 2745) + : (c <= 2757 || (c < 2763 ? (c >= 2759 && c <= 2761) - : c <= 2765) - : (c <= 2768 || (c < 2790 + : c <= 2765))) + : (c <= 2768 || (c < 2809 + ? (c < 2790 ? (c >= 2784 && c <= 2787) - : c <= 2799))) - : (c <= 2815 || (c < 2831 - ? (c < 2821 + : c <= 2799) + : (c <= 2815 || (c < 2821 ? (c >= 2817 && c <= 2819) - : c <= 2828) - : (c <= 2832 || (c < 2858 + : c <= 2828))))) + : (c <= 2832 || (c < 2887 + ? (c < 2866 + ? (c < 2858 ? (c >= 2835 && c <= 2856) - : c <= 2864))))) - : (c <= 2867 || (c < 2908 - ? (c < 2887 - ? (c < 2876 + : c <= 2864) + : (c <= 2867 || (c < 2876 ? (c >= 2869 && c <= 2873) - : c <= 2884) - : (c <= 2888 || (c < 2901 + : c <= 2884))) + : (c <= 2888 || (c < 2908 + ? (c < 2901 ? (c >= 2891 && c <= 2893) - : c <= 2903))) - : (c <= 2909 || (c < 2929 - ? (c < 2918 - ? (c >= 2911 && c <= 2915) - : c <= 2927) - : (c <= 2929 || (c < 2949 - ? (c >= 2946 && c <= 2947) - : c <= 2954))))))) - : (c <= 2960 || (c < 3031 - ? (c < 2984 - ? (c < 2972 - ? (c < 2969 - ? (c >= 2962 && c <= 2965) - : c <= 2970) - : (c <= 2972 || (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980))) - : (c <= 2986 || (c < 3014 - ? (c < 3006 - ? (c >= 2990 && c <= 3001) - : c <= 3010) - : (c <= 3016 || (c < 3024 - ? (c >= 3018 && c <= 3021) - : c <= 3024))))) - : (c <= 3031 || (c < 3132 - ? (c < 3086 - ? (c < 3072 - ? (c >= 3046 && c <= 3055) - : c <= 3084) - : (c <= 3088 || (c < 3114 - ? (c >= 3090 && c <= 3112) - : c <= 3129))) - : (c <= 3140 || (c < 3157 - ? (c < 3146 - ? (c >= 3142 && c <= 3144) - : c <= 3149) - : (c <= 3158 || (c < 3165 - ? (c >= 3160 && c <= 3162) - : c <= 3165))))))))) - : (c <= 3171 || (c < 3450 - ? (c < 3293 - ? (c < 3242 - ? (c < 3205 - ? (c < 3200 - ? (c >= 3174 && c <= 3183) - : c <= 3203) - : (c <= 3212 || (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240))) - : (c <= 3251 || (c < 3270 - ? (c < 3260 - ? (c >= 3253 && c <= 3257) - : c <= 3268) - : (c <= 3272 || (c < 3285 - ? (c >= 3274 && c <= 3277) - : c <= 3286))))) - : (c <= 3294 || (c < 3346 - ? (c < 3313 - ? (c < 3302 - ? (c >= 3296 && c <= 3299) - : c <= 3311) - : (c <= 3314 || (c < 3342 - ? (c >= 3328 && c <= 3340) - : c <= 3344))) - : (c <= 3396 || (c < 3412 - ? (c < 3402 - ? (c >= 3398 && c <= 3400) - : c <= 3406) - : (c <= 3415 || (c < 3430 - ? (c >= 3423 && c <= 3427) - : c <= 3439))))))) - : (c <= 3455 || (c < 3570 - ? (c < 3520 - ? (c < 3482 - ? (c < 3461 - ? (c >= 3457 && c <= 3459) - : c <= 3478) - : (c <= 3505 || (c < 3517 - ? (c >= 3507 && c <= 3515) - : c <= 3517))) - : (c <= 3526 || (c < 3542 - ? (c < 3535 - ? c == 3530 - : c <= 3540) - : (c <= 3542 || (c < 3558 - ? (c >= 3544 && c <= 3551) - : c <= 3567))))) - : (c <= 3571 || (c < 3718 - ? (c < 3664 - ? (c < 3648 - ? (c >= 3585 && c <= 3642) - : c <= 3662) - : (c <= 3673 || (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716))) - : (c <= 3722 || (c < 3751 - ? (c < 3749 - ? (c >= 3724 && c <= 3747) - : c <= 3749) - : (c <= 3773 || (c >= 3776 && c <= 3780))))))))))))) - : (c <= 3782 || (c < 8025 - ? (c < 5888 - ? (c < 4688 - ? (c < 3953 - ? (c < 3872 - ? (c < 3804 - ? (c < 3792 - ? (c >= 3784 && c <= 3789) - : c <= 3801) - : (c <= 3807 || (c < 3864 - ? c == 3840 - : c <= 3865))) - : (c <= 3881 || (c < 3897 - ? (c < 3895 - ? c == 3893 - : c <= 3895) - : (c <= 3897 || (c < 3913 - ? (c >= 3902 && c <= 3911) - : c <= 3948))))) - : (c <= 3972 || (c < 4256 - ? (c < 4038 - ? (c < 3993 - ? (c >= 3974 && c <= 3991) - : c <= 4028) - : (c <= 4038 || (c < 4176 - ? (c >= 4096 && c <= 4169) - : c <= 4253))) - : (c <= 4293 || (c < 4304 - ? (c < 4301 - ? c == 4295 - : c <= 4301) - : (c <= 4346 || (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685))))))) - : (c <= 4694 || (c < 4882 - ? (c < 4786 - ? (c < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c < 4752 - ? (c >= 4746 && c <= 4749) - : c <= 4784))) - : (c <= 4789 || (c < 4802 - ? (c < 4800 - ? (c >= 4792 && c <= 4798) - : c <= 4800) - : (c <= 4805 || (c < 4824 - ? (c >= 4808 && c <= 4822) - : c <= 4880))))) - : (c <= 4885 || (c < 5112 - ? (c < 4969 - ? (c < 4957 - ? (c >= 4888 && c <= 4954) - : c <= 4959) - : (c <= 4977 || (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109))) - : (c <= 5117 || (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880))))))))) - : (c <= 5909 || (c < 6688 - ? (c < 6176 - ? (c < 6016 - ? (c < 5984 - ? (c < 5952 - ? (c >= 5919 && c <= 5940) - : c <= 5971) - : (c <= 5996 || (c < 6002 - ? (c >= 5998 && c <= 6000) - : c <= 6003))) - : (c <= 6099 || (c < 6112 - ? (c < 6108 - ? c == 6103 - : c <= 6109) - : (c <= 6121 || (c < 6159 - ? (c >= 6155 && c <= 6157) - : c <= 6169))))) - : (c <= 6264 || (c < 6470 - ? (c < 6400 - ? (c < 6320 - ? (c >= 6272 && c <= 6314) - : c <= 6389) - : (c <= 6430 || (c < 6448 - ? (c >= 6432 && c <= 6443) - : c <= 6459))) - : (c <= 6509 || (c < 6576 - ? (c < 6528 - ? (c >= 6512 && c <= 6516) - : c <= 6571) - : (c <= 6601 || (c < 6656 - ? (c >= 6608 && c <= 6618) - : c <= 6683))))))) - : (c <= 6750 || (c < 7232 - ? (c < 6847 - ? (c < 6800 - ? (c < 6783 - ? (c >= 6752 && c <= 6780) - : c <= 6793) - : (c <= 6809 || (c < 6832 - ? c == 6823 - : c <= 6845))) - : (c <= 6862 || (c < 7019 - ? (c < 6992 - ? (c >= 6912 && c <= 6988) - : c <= 7001) - : (c <= 7027 || (c < 7168 - ? (c >= 7040 && c <= 7155) - : c <= 7223))))) - : (c <= 7241 || (c < 7380 - ? (c < 7312 - ? (c < 7296 - ? (c >= 7245 && c <= 7293) - : c <= 7304) - : (c <= 7354 || (c < 7376 - ? (c >= 7357 && c <= 7359) - : c <= 7378))) - : (c <= 7418 || (c < 7968 - ? (c < 7960 - ? (c >= 7424 && c <= 7957) - : c <= 7965) - : (c <= 8005 || (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023))))))))))) - : (c <= 8025 || (c < 11720 - ? (c < 8458 - ? (c < 8178 - ? (c < 8126 - ? (c < 8031 - ? (c < 8029 - ? c == 8027 - : c <= 8029) - : (c <= 8061 || (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124))) - : (c <= 8126 || (c < 8144 - ? (c < 8134 - ? (c >= 8130 && c <= 8132) - : c <= 8140) - : (c <= 8147 || (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172))))) - : (c <= 8180 || (c < 8336 + : c <= 2903) + : (c <= 2909 || (c >= 2911 && c <= 2915))))))) + : (c <= 2927 || (c < 3006 + ? (c < 2969 + ? (c < 2949 + ? (c < 2946 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c < 2962 + ? (c >= 2958 && c <= 2960) + : c <= 2965))) + : (c <= 2970 || (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))))) + : (c <= 3010 || (c < 3072 + ? (c < 3024 + ? (c < 3018 + ? (c >= 3014 && c <= 3016) + : c <= 3021) + : (c <= 3024 || (c < 3046 + ? c == 3031 + : c <= 3055))) + : (c <= 3084 || (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || (c >= 3133 && c <= 3140))))))))) + : (c <= 3144 || (c < 3398 + ? (c < 3260 + ? (c < 3200 + ? (c < 3160 + ? (c < 3157 + ? (c >= 3146 && c <= 3149) + : c <= 3158) + : (c <= 3162 || (c < 3174 + ? (c >= 3168 && c <= 3171) + : c <= 3183))) + : (c <= 3203 || (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257))))) + : (c <= 3268 || (c < 3302 + ? (c < 3285 + ? (c < 3274 + ? (c >= 3270 && c <= 3272) + : c <= 3277) + : (c <= 3286 || (c < 3296 + ? c == 3294 + : c <= 3299))) + : (c <= 3311 || (c < 3342 + ? (c < 3328 + ? (c >= 3313 && c <= 3314) + : c <= 3340) + : (c <= 3344 || (c >= 3346 && c <= 3396))))))) + : (c <= 3400 || (c < 3530 + ? (c < 3457 + ? (c < 3423 + ? (c < 3412 + ? (c >= 3402 && c <= 3406) + : c <= 3415) + : (c <= 3427 || (c < 3450 + ? (c >= 3430 && c <= 3439) + : c <= 3455))) + : (c <= 3459 || (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || (c < 3520 + ? c == 3517 + : c <= 3526))))) + : (c <= 3530 || (c < 3585 + ? (c < 3544 + ? (c < 3542 + ? (c >= 3535 && c <= 3540) + : c <= 3542) + : (c <= 3551 || (c < 3570 + ? (c >= 3558 && c <= 3567) + : c <= 3571))) + : (c <= 3642 || (c < 3713 + ? (c < 3664 + ? (c >= 3648 && c <= 3662) + : c <= 3673) + : (c <= 3714 || c == 3716)))))))))))) + : (c <= 3722 || (c < 7296 + ? (c < 5024 + ? (c < 4256 + ? (c < 3893 + ? (c < 3784 + ? (c < 3751 + ? (c < 3749 + ? (c >= 3724 && c <= 3747) + : c <= 3749) + : (c <= 3773 || (c < 3782 + ? (c >= 3776 && c <= 3780) + : c <= 3782))) + : (c <= 3789 || (c < 3840 + ? (c < 3804 + ? (c >= 3792 && c <= 3801) + : c <= 3807) + : (c <= 3840 || (c < 3872 + ? (c >= 3864 && c <= 3865) + : c <= 3881))))) + : (c <= 3893 || (c < 3974 + ? (c < 3902 + ? (c < 3897 + ? c == 3895 + : c <= 3897) + : (c <= 3911 || (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972))) + : (c <= 3991 || (c < 4096 + ? (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038) + : (c <= 4169 || (c >= 4176 && c <= 4253))))))) + : (c <= 4293 || (c < 4786 + ? (c < 4688 + ? (c < 4304 + ? (c < 4301 + ? c == 4295 + : c <= 4301) + : (c <= 4346 || (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685))) + : (c <= 4694 || (c < 4704 + ? (c < 4698 + ? c == 4696 + : c <= 4701) + : (c <= 4744 || (c < 4752 + ? (c >= 4746 && c <= 4749) + : c <= 4784))))) + : (c <= 4789 || (c < 4882 + ? (c < 4802 + ? (c < 4800 + ? (c >= 4792 && c <= 4798) + : c <= 4800) + : (c <= 4805 || (c < 4824 + ? (c >= 4808 && c <= 4822) + : c <= 4880))) + : (c <= 4885 || (c < 4969 + ? (c < 4957 + ? (c >= 4888 && c <= 4954) + : c <= 4959) + : (c <= 4977 || (c >= 4992 && c <= 5007))))))))) + : (c <= 5109 || (c < 6400 + ? (c < 5998 + ? (c < 5870 + ? (c < 5743 + ? (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740) + : (c <= 5759 || (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866))) + : (c <= 5880 || (c < 5920 + ? (c < 5902 + ? (c >= 5888 && c <= 5900) + : c <= 5908) + : (c <= 5940 || (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996))))) + : (c <= 6000 || (c < 6155 + ? (c < 6103 + ? (c < 6016 + ? (c >= 6002 && c <= 6003) + : c <= 6099) + : (c <= 6103 || (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121))) + : (c <= 6157 || (c < 6272 + ? (c < 6176 + ? (c >= 6160 && c <= 6169) + : c <= 6264) + : (c <= 6314 || (c >= 6320 && c <= 6389))))))) + : (c <= 6430 || (c < 6800 + ? (c < 6576 + ? (c < 6470 + ? (c < 6448 + ? (c >= 6432 && c <= 6443) + : c <= 6459) + : (c <= 6509 || (c < 6528 + ? (c >= 6512 && c <= 6516) + : c <= 6571))) + : (c <= 6601 || (c < 6688 + ? (c < 6656 + ? (c >= 6608 && c <= 6618) + : c <= 6683) + : (c <= 6750 || (c < 6783 + ? (c >= 6752 && c <= 6780) + : c <= 6793))))) + : (c <= 6809 || (c < 7019 + ? (c < 6847 + ? (c < 6832 + ? c == 6823 + : c <= 6845) + : (c <= 6848 || (c < 6992 + ? (c >= 6912 && c <= 6987) + : c <= 7001))) + : (c <= 7027 || (c < 7232 + ? (c < 7168 + ? (c >= 7040 && c <= 7155) + : c <= 7223) + : (c <= 7241 || (c >= 7245 && c <= 7293))))))))))) + : (c <= 7304 || (c < 11264 + ? (c < 8178 + ? (c < 8027 + ? (c < 7675 + ? (c < 7376 + ? (c < 7357 + ? (c >= 7312 && c <= 7354) + : c <= 7359) + : (c <= 7378 || (c < 7424 + ? (c >= 7380 && c <= 7418) + : c <= 7673))) + : (c <= 7957 || (c < 8008 + ? (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005) + : (c <= 8013 || (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025))))) + : (c <= 8027 || (c < 8130 + ? (c < 8064 + ? (c < 8031 + ? c == 8029 + : c <= 8061) + : (c <= 8116 || (c < 8126 + ? (c >= 8118 && c <= 8124) + : c <= 8126))) + : (c <= 8132 || (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c >= 8160 && c <= 8172))))))) + : (c <= 8180 || (c < 8458 + ? (c < 8336 ? (c < 8276 ? (c < 8255 ? (c >= 8182 && c <= 8188) @@ -7343,9 +7157,8 @@ static inline bool sym_identifier_character_set_5(int32_t c) { : c <= 8417) : (c <= 8432 || (c < 8455 ? c == 8450 - : c <= 8455))))))) - : (c <= 8467 || (c < 11499 - ? (c < 8490 + : c <= 8455))))) + : (c <= 8467 || (c < 8490 ? (c < 8484 ? (c < 8472 ? c == 8469 @@ -7357,563 +7170,518 @@ static inline bool sym_identifier_character_set_5(int32_t c) { ? (c < 8517 ? (c >= 8508 && c <= 8511) : c <= 8521) - : (c <= 8526 || (c < 11264 - ? (c >= 8544 && c <= 8584) - : c <= 11492))))) - : (c <= 11507 || (c < 11647 - ? (c < 11565 - ? (c < 11559 + : (c <= 8526 || (c >= 8544 && c <= 8584))))))))) + : (c <= 11310 || (c < 12353 + ? (c < 11696 + ? (c < 11565 + ? (c < 11499 + ? (c < 11360 + ? (c >= 11312 && c <= 11358) + : c <= 11492) + : (c <= 11507 || (c < 11559 ? (c >= 11520 && c <= 11557) - : c <= 11559) - : (c <= 11565 || (c < 11631 + : c <= 11559))) + : (c <= 11565 || (c < 11647 + ? (c < 11631 ? (c >= 11568 && c <= 11623) - : c <= 11631))) - : (c <= 11670 || (c < 11696 - ? (c < 11688 + : c <= 11631) + : (c <= 11670 || (c < 11688 ? (c >= 11680 && c <= 11686) - : c <= 11694) - : (c <= 11702 || (c < 11712 + : c <= 11694))))) + : (c <= 11702 || (c < 11744 + ? (c < 11720 + ? (c < 11712 ? (c >= 11704 && c <= 11710) - : c <= 11718))))))))) - : (c <= 11726 || (c < 42623 - ? (c < 12540 - ? (c < 12337 - ? (c < 11744 - ? (c < 11736 + : c <= 11718) + : (c <= 11726 || (c < 11736 ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 11775 || (c < 12321 + : c <= 11742))) + : (c <= 11775 || (c < 12337 + ? (c < 12321 ? (c >= 12293 && c <= 12295) - : c <= 12335))) - : (c <= 12341 || (c < 12441 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12442 || (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538))))) - : (c <= 12543 || (c < 19968 - ? (c < 12704 - ? (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686) - : (c <= 12735 || (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903))) - : (c <= 42124 || (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42539 || (c < 42612 - ? (c >= 42560 && c <= 42607) - : c <= 42621))))))) - : (c <= 42737 || (c < 43232 - ? (c < 42965 - ? (c < 42891 - ? (c < 42786 - ? (c >= 42775 && c <= 42783) - : c <= 42888) - : (c <= 42954 || (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963))) - : (c <= 42969 || (c < 43072 - ? (c < 43052 - ? (c >= 42994 && c <= 43047) - : c <= 43052) - : (c <= 43123 || (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225))))) - : (c <= 43255 || (c < 43471 - ? (c < 43312 - ? (c < 43261 - ? c == 43259 - : c <= 43309) - : (c <= 43347 || (c < 43392 - ? (c >= 43360 && c <= 43388) - : c <= 43456))) - : (c <= 43481 || (c < 43584 - ? (c < 43520 - ? (c >= 43488 && c <= 43518) - : c <= 43574) - : (c <= 43597 || (c >= 43600 && c <= 43609))))))))))))))) - : (c <= 43638 || (c < 71453 - ? (c < 67639 - ? (c < 65345 - ? (c < 64312 - ? (c < 43888 - ? (c < 43785 - ? (c < 43744 - ? (c < 43739 + : c <= 12335) + : (c <= 12341 || (c >= 12344 && c <= 12348))))))) + : (c <= 12438 || (c < 42192 + ? (c < 12593 + ? (c < 12449 + ? (c < 12445 + ? (c >= 12441 && c <= 12442) + : c <= 12447) + : (c <= 12538 || (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591))) + : (c <= 12686 || (c < 13312 + ? (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799) + : (c <= 19903 || (c < 40960 + ? (c >= 19968 && c <= 40956) + : c <= 42124))))) + : (c <= 42237 || (c < 42775 + ? (c < 42560 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42539) + : (c <= 42607 || (c < 42623 + ? (c >= 42612 && c <= 42621) + : c <= 42737))) + : (c <= 42783 || (c < 42946 + ? (c < 42891 + ? (c >= 42786 && c <= 42888) + : c <= 42943) + : (c <= 42954 || (c >= 42997 && c <= 43047))))))))))))))) + : (c <= 43052 || (c < 71096 + ? (c < 66864 + ? (c < 64914 + ? (c < 43816 + ? (c < 43520 + ? (c < 43261 + ? (c < 43216 + ? (c < 43136 + ? (c >= 43072 && c <= 43123) + : c <= 43205) + : (c <= 43225 || (c < 43259 + ? (c >= 43232 && c <= 43255) + : c <= 43259))) + : (c <= 43309 || (c < 43392 + ? (c < 43360 + ? (c >= 43312 && c <= 43347) + : c <= 43388) + : (c <= 43456 || (c < 43488 + ? (c >= 43471 && c <= 43481) + : c <= 43518))))) + : (c <= 43574 || (c < 43744 + ? (c < 43616 + ? (c < 43600 + ? (c >= 43584 && c <= 43597) + : c <= 43609) + : (c <= 43638 || (c < 43739 ? (c >= 43642 && c <= 43714) - : c <= 43741) - : (c <= 43759 || (c < 43777 + : c <= 43741))) + : (c <= 43759 || (c < 43785 + ? (c < 43777 ? (c >= 43762 && c <= 43766) - : c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 + : c <= 43782) + : (c <= 43790 || (c < 43808 ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c < 43868 + : c <= 43814))))))) + : (c <= 43822 || (c < 64275 + ? (c < 44032 + ? (c < 43888 + ? (c < 43868 ? (c >= 43824 && c <= 43866) - : c <= 43881))))) - : (c <= 44010 || (c < 63744 - ? (c < 44032 - ? (c < 44016 + : c <= 43881) + : (c <= 44010 || (c < 44016 ? (c >= 44012 && c <= 44013) - : c <= 44025) - : (c <= 55203 || (c < 55243 + : c <= 44025))) + : (c <= 55203 || (c < 63744 + ? (c < 55243 ? (c >= 55216 && c <= 55238) - : c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 + : c <= 55291) + : (c <= 64109 || (c < 64256 ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || (c < 64298 + : c <= 64262))))) + : (c <= 64279 || (c < 64323 + ? (c < 64312 + ? (c < 64298 ? (c >= 64285 && c <= 64296) - : c <= 64310))))))) - : (c <= 64316 || (c < 65075 - ? (c < 64612 - ? (c < 64323 - ? (c < 64320 + : c <= 64310) + : (c <= 64316 || (c < 64320 ? c == 64318 - : c <= 64321) - : (c <= 64324 || (c < 64467 + : c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 ? (c >= 64326 && c <= 64433) - : c <= 64605))) - : (c <= 64829 || (c < 65008 - ? (c < 64914 - ? (c >= 64848 && c <= 64911) - : c <= 64967) - : (c <= 65017 || (c < 65056 - ? (c >= 65024 && c <= 65039) - : c <= 65071))))) - : (c <= 65076 || (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65101 && c <= 65103) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65296 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65305 || (c < 65343 - ? (c >= 65313 && c <= 65338) - : c <= 65343))))))))) - : (c <= 65370 || (c < 66513 - ? (c < 65664 - ? (c < 65536 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65382 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c < 65498 - ? (c >= 65490 && c <= 65495) - : c <= 65500))) - : (c <= 65547 || (c < 65596 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : c <= 65594) - : (c <= 65597 || (c < 65616 - ? (c >= 65599 && c <= 65613) - : c <= 65629))))) - : (c <= 65786 || (c < 66304 - ? (c < 66176 - ? (c < 66045 - ? (c >= 65856 && c <= 65908) - : c <= 66045) - : (c <= 66204 || (c < 66272 - ? (c >= 66208 && c <= 66256) - : c <= 66272))) - : (c <= 66335 || (c < 66432 - ? (c < 66384 - ? (c >= 66349 && c <= 66378) - : c <= 66426) - : (c <= 66461 || (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511))))))) - : (c <= 66517 || (c < 66979 - ? (c < 66864 - ? (c < 66736 - ? (c < 66720 - ? (c >= 66560 && c <= 66717) - : c <= 66729) - : (c <= 66771 || (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855))) - : (c <= 66915 || (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))))) - : (c <= 66993 || (c < 67456 - ? (c < 67072 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004) - : (c <= 67382 || (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431))) - : (c <= 67461 || (c < 67584 - ? (c < 67506 - ? (c >= 67463 && c <= 67504) - : c <= 67514) - : (c <= 67589 || (c < 67594 - ? c == 67592 - : c <= 67637))))))))))) - : (c <= 67640 || (c < 69956 - ? (c < 68448 - ? (c < 68101 - ? (c < 67828 - ? (c < 67680 - ? (c < 67647 - ? c == 67644 - : c <= 67669) - : (c <= 67702 || (c < 67808 - ? (c >= 67712 && c <= 67742) - : c <= 67826))) - : (c <= 67829 || (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c < 68096 - ? (c >= 68030 && c <= 68031) - : c <= 68099))))) - : (c <= 68102 || (c < 68192 - ? (c < 68121 - ? (c < 68117 - ? (c >= 68108 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c < 68159 - ? (c >= 68152 && c <= 68154) - : c <= 68159))) - : (c <= 68220 || (c < 68297 - ? (c < 68288 - ? (c >= 68224 && c <= 68252) - : c <= 68295) - : (c <= 68326 || (c < 68416 - ? (c >= 68352 && c <= 68405) - : c <= 68437))))))) - : (c <= 68466 || (c < 69424 - ? (c < 68912 - ? (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c < 68864 - ? (c >= 68800 && c <= 68850) - : c <= 68903))) - : (c <= 68921 || (c < 69296 - ? (c < 69291 - ? (c >= 69248 && c <= 69289) - : c <= 69292) - : (c <= 69297 || (c < 69415 - ? (c >= 69376 && c <= 69404) - : c <= 69415))))) - : (c <= 69456 || (c < 69759 - ? (c < 69600 - ? (c < 69552 - ? (c >= 69488 && c <= 69509) - : c <= 69572) - : (c <= 69622 || (c < 69734 - ? (c >= 69632 && c <= 69702) - : c <= 69749))) - : (c <= 69818 || (c < 69872 - ? (c < 69840 - ? c == 69826 - : c <= 69864) - : (c <= 69881 || (c < 69942 - ? (c >= 69888 && c <= 69940) - : c <= 69951))))))))) - : (c <= 69959 || (c < 70459 - ? (c < 70282 - ? (c < 70108 - ? (c < 70016 - ? (c < 70006 - ? (c >= 69968 && c <= 70003) - : c <= 70006) - : (c <= 70084 || (c < 70094 - ? (c >= 70089 && c <= 70092) - : c <= 70106))) - : (c <= 70108 || (c < 70206 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70199) - : (c <= 70206 || (c < 70280 - ? (c >= 70272 && c <= 70278) - : c <= 70280))))) - : (c <= 70285 || (c < 70405 - ? (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70378 || (c < 70400 - ? (c >= 70384 && c <= 70393) - : c <= 70403))) - : (c <= 70412 || (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c < 70453 - ? (c >= 70450 && c <= 70451) - : c <= 70457))))))) - : (c <= 70468 || (c < 70855 - ? (c < 70502 - ? (c < 70480 - ? (c < 70475 - ? (c >= 70471 && c <= 70472) - : c <= 70477) - : (c <= 70480 || (c < 70493 - ? c == 70487 - : c <= 70499))) - : (c <= 70508 || (c < 70736 - ? (c < 70656 - ? (c >= 70512 && c <= 70516) - : c <= 70730) - : (c <= 70745 || (c < 70784 - ? (c >= 70750 && c <= 70753) - : c <= 70853))))) - : (c <= 70855 || (c < 71236 - ? (c < 71096 - ? (c < 71040 - ? (c >= 70864 && c <= 70873) - : c <= 71093) - : (c <= 71104 || (c < 71168 + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65549 + ? (c < 65151 + ? (c < 65137 + ? (c < 65056 + ? (c < 65024 + ? (c >= 65008 && c <= 65017) + : c <= 65039) + : (c <= 65071 || (c < 65101 + ? (c >= 65075 && c <= 65076) + : c <= 65103))) + : (c <= 65137 || (c < 65145 + ? (c < 65143 + ? c == 65139 + : c <= 65143) + : (c <= 65145 || (c < 65149 + ? c == 65147 + : c <= 65149))))) + : (c <= 65276 || (c < 65474 + ? (c < 65343 + ? (c < 65313 + ? (c >= 65296 && c <= 65305) + : c <= 65338) + : (c <= 65343 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65470))) + : (c <= 65479 || (c < 65498 + ? (c < 65490 + ? (c >= 65482 && c <= 65487) + : c <= 65495) + : (c <= 65500 || (c >= 65536 && c <= 65547))))))) + : (c <= 65574 || (c < 66349 + ? (c < 65856 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786))) + : (c <= 65908 || (c < 66208 + ? (c < 66176 + ? c == 66045 + : c <= 66204) + : (c <= 66256 || (c < 66304 + ? c == 66272 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66426) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66776 + ? (c < 66736 + ? (c >= 66720 && c <= 66729) + : c <= 66771) + : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) + : (c <= 66915 || (c < 69632 + ? (c < 68152 + ? (c < 67808 + ? (c < 67594 + ? (c < 67424 + ? (c < 67392 + ? (c >= 67072 && c <= 67382) + : c <= 67413) + : (c <= 67431 || (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592))) + : (c <= 67637 || (c < 67647 + ? (c < 67644 + ? (c >= 67639 && c <= 67640) + : c <= 67644) + : (c <= 67669 || (c < 67712 + ? (c >= 67680 && c <= 67702) + : c <= 67742))))) + : (c <= 67826 || (c < 68096 + ? (c < 67872 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : c <= 67861) + : (c <= 67897 || (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031))) + : (c <= 68099 || (c < 68117 + ? (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115) + : (c <= 68119 || (c >= 68121 && c <= 68149))))))) + : (c <= 68154 || (c < 68800 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 + ? c == 68159 + : c <= 68220) + : (c <= 68252 || (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68326))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 + ? (c >= 68416 && c <= 68437) + : c <= 68466) + : (c <= 68497 || (c < 68736 + ? (c >= 68608 && c <= 68680) + : c <= 68786))))) + : (c <= 68850 || (c < 69376 + ? (c < 69248 + ? (c < 68912 + ? (c >= 68864 && c <= 68903) + : c <= 68921) + : (c <= 69289 || (c < 69296 + ? (c >= 69291 && c <= 69292) + : c <= 69297))) + : (c <= 69404 || (c < 69552 + ? (c < 69424 + ? c == 69415 + : c <= 69456) + : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) + : (c <= 69702 || (c < 70384 + ? (c < 70094 + ? (c < 69942 + ? (c < 69840 + ? (c < 69759 + ? (c >= 69734 && c <= 69743) + : c <= 69818) + : (c <= 69864 || (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940))) + : (c <= 69951 || (c < 70006 + ? (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003) + : (c <= 70006 || (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092))))) + : (c <= 70106 || (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70199 || (c < 70272 + ? c == 70206 + : c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70378))))))) + : (c <= 70393 || (c < 70487 + ? (c < 70450 + ? (c < 70415 + ? (c < 70405 + ? (c >= 70400 && c <= 70403) + : c <= 70412) + : (c <= 70416 || (c < 70442 + ? (c >= 70419 && c <= 70440) + : c <= 70448))) + : (c <= 70451 || (c < 70471 + ? (c < 70459 + ? (c >= 70453 && c <= 70457) + : c <= 70468) + : (c <= 70472 || (c < 70480 + ? (c >= 70475 && c <= 70477) + : c <= 70480))))) + : (c <= 70487 || (c < 70750 + ? (c < 70512 + ? (c < 70502 + ? (c >= 70493 && c <= 70499) + : c <= 70508) + : (c <= 70516 || (c < 70736 + ? (c >= 70656 && c <= 70730) + : c <= 70745))) + : (c <= 70753 || (c < 70864 + ? (c < 70855 + ? (c >= 70784 && c <= 70853) + : c <= 70855) + : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) + : (c <= 71104 || (c < 119894 + ? (c < 73104 + ? (c < 72163 + ? (c < 71935 + ? (c < 71360 + ? (c < 71236 + ? (c < 71168 ? (c >= 71128 && c <= 71133) - : c <= 71232))) - : (c <= 71236 || (c < 71360 - ? (c < 71296 + : c <= 71232) + : (c <= 71236 || (c < 71296 ? (c >= 71248 && c <= 71257) - : c <= 71352) - : (c <= 71369 || (c >= 71424 && c <= 71450))))))))))))) - : (c <= 71467 || (c < 119973 - ? (c < 77824 - ? (c < 72760 - ? (c < 72016 - ? (c < 71945 - ? (c < 71680 - ? (c < 71488 - ? (c >= 71472 && c <= 71481) - : c <= 71494) - : (c <= 71738 || (c < 71935 - ? (c >= 71840 && c <= 71913) - : c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71989 || (c < 71995 - ? (c >= 71991 && c <= 71992) - : c <= 72003))))) - : (c <= 72025 || (c < 72263 - ? (c < 72154 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72151) - : (c <= 72161 || (c < 72192 - ? (c >= 72163 && c <= 72164) - : c <= 72254))) - : (c <= 72263 || (c < 72368 - ? (c < 72349 - ? (c >= 72272 && c <= 72345) - : c <= 72349) - : (c <= 72440 || (c < 72714 - ? (c >= 72704 && c <= 72712) - : c <= 72758))))))) - : (c <= 72768 || (c < 73056 - ? (c < 72968 - ? (c < 72850 - ? (c < 72818 - ? (c >= 72784 && c <= 72793) - : c <= 72847) - : (c <= 72871 || (c < 72960 - ? (c >= 72873 && c <= 72886) - : c <= 72966))) - : (c <= 72969 || (c < 73020 - ? (c < 73018 - ? (c >= 72971 && c <= 73014) - : c <= 73018) - : (c <= 73021 || (c < 73040 - ? (c >= 73023 && c <= 73031) - : c <= 73049))))) - : (c <= 73061 || (c < 73440 - ? (c < 73104 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73102) - : (c <= 73105 || (c < 73120 + : c <= 71352))) + : (c <= 71369 || (c < 71472 + ? (c < 71453 + ? (c >= 71424 && c <= 71450) + : c <= 71467) + : (c <= 71481 || (c < 71840 + ? (c >= 71680 && c <= 71738) + : c <= 71913))))) + : (c <= 71942 || (c < 71995 + ? (c < 71957 + ? (c < 71948 + ? c == 71945 + : c <= 71955) + : (c <= 71958 || (c < 71991 + ? (c >= 71960 && c <= 71989) + : c <= 71992))) + : (c <= 72003 || (c < 72106 + ? (c < 72096 + ? (c >= 72016 && c <= 72025) + : c <= 72103) + : (c <= 72151 || (c >= 72154 && c <= 72161))))))) + : (c <= 72164 || (c < 72873 + ? (c < 72704 + ? (c < 72272 + ? (c < 72263 + ? (c >= 72192 && c <= 72254) + : c <= 72263) + : (c <= 72345 || (c < 72384 + ? c == 72349 + : c <= 72440))) + : (c <= 72712 || (c < 72784 + ? (c < 72760 + ? (c >= 72714 && c <= 72758) + : c <= 72768) + : (c <= 72793 || (c < 72850 + ? (c >= 72818 && c <= 72847) + : c <= 72871))))) + : (c <= 72886 || (c < 73023 + ? (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73014 || (c < 73020 + ? c == 73018 + : c <= 73021))) + : (c <= 73031 || (c < 73063 + ? (c < 73056 + ? (c >= 73040 && c <= 73049) + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) + : (c <= 73105 || (c < 94095 + ? (c < 92768 + ? (c < 74752 + ? (c < 73440 + ? (c < 73120 ? (c >= 73107 && c <= 73112) - : c <= 73129))) - : (c <= 73462 || (c < 74752 - ? (c < 73728 + : c <= 73129) + : (c <= 73462 || (c < 73728 ? c == 73648 - : c <= 74649) - : (c <= 74862 || (c < 77712 + : c <= 74649))) + : (c <= 74862 || (c < 82944 + ? (c < 77824 ? (c >= 74880 && c <= 75075) - : c <= 77808))))))))) - : (c <= 78894 || (c < 110576 - ? (c < 93027 - ? (c < 92864 - ? (c < 92736 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : c <= 92728) - : (c <= 92766 || (c < 92784 - ? (c >= 92768 && c <= 92777) - : c <= 92862))) - : (c <= 92873 || (c < 92928 + : c <= 78894) + : (c <= 83526 || (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766))))) + : (c <= 92777 || (c < 93027 + ? (c < 92928 ? (c < 92912 ? (c >= 92880 && c <= 92909) : c <= 92916) : (c <= 92982 || (c < 93008 ? (c >= 92992 && c <= 92995) - : c <= 93017))))) - : (c <= 93047 || (c < 94176 - ? (c < 93952 + : c <= 93017))) + : (c <= 93047 || (c < 93952 ? (c < 93760 ? (c >= 93053 && c <= 93071) : c <= 93823) - : (c <= 94026 || (c < 94095 - ? (c >= 94031 && c <= 94087) - : c <= 94111))) - : (c <= 94177 || (c < 94208 - ? (c < 94192 - ? (c >= 94179 && c <= 94180) - : c <= 94193) - : (c <= 100343 || (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640))))))) - : (c <= 110579 || (c < 118528 - ? (c < 110960 - ? (c < 110592 - ? (c < 110589 - ? (c >= 110581 && c <= 110587) - : c <= 110590) - : (c <= 110882 || (c < 110948 - ? (c >= 110928 && c <= 110930) - : c <= 110951))) - : (c <= 111355 || (c < 113792 - ? (c < 113776 - ? (c >= 113664 && c <= 113770) - : c <= 113788) - : (c <= 113800 || (c < 113821 - ? (c >= 113808 && c <= 113817) - : c <= 113822))))) - : (c <= 118573 || (c < 119210 - ? (c < 119149 - ? (c < 119141 - ? (c >= 118576 && c <= 118598) - : c <= 119145) - : (c <= 119154 || (c < 119173 - ? (c >= 119163 && c <= 119170) - : c <= 119179))) - : (c <= 119213 || (c < 119894 - ? (c < 119808 - ? (c >= 119362 && c <= 119364) - : c <= 119892) - : (c <= 119964 || (c < 119970 + : (c <= 94026 || (c >= 94031 && c <= 94087))))))) + : (c <= 94111 || (c < 113776 + ? (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110948 + ? (c < 110928 + ? (c >= 110592 && c <= 110878) + : c <= 110930) + : (c <= 110951 || (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770))))) + : (c <= 113788 || (c < 119163 + ? (c < 113821 + ? (c < 113808 + ? (c >= 113792 && c <= 113800) + : c <= 113817) + : (c <= 113822 || (c < 119149 + ? (c >= 119141 && c <= 119145) + : c <= 119154))) + : (c <= 119170 || (c < 119362 + ? (c < 119210 + ? (c >= 119173 && c <= 119179) + : c <= 119213) + : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 124928 + ? (c < 120630 + ? (c < 120094 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 ? (c >= 119966 && c <= 119967) - : c <= 119970))))))))))) - : (c <= 119974 || (c < 124912 - ? (c < 120746 - ? (c < 120134 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 + : c <= 119970) + : (c <= 119974 || (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 + : c <= 120069) + : (c <= 120074 || (c < 120086 ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c < 120128 + : c <= 120092))))) + : (c <= 120121 || (c < 120488 + ? (c < 120134 + ? (c < 120128 ? (c >= 120123 && c <= 120126) - : c <= 120132))))) - : (c <= 120134 || (c < 120572 - ? (c < 120488 - ? (c < 120146 + : c <= 120132) + : (c <= 120134 || (c < 120146 ? (c >= 120138 && c <= 120144) - : c <= 120485) - : (c <= 120512 || (c < 120540 + : c <= 120485))) + : (c <= 120512 || (c < 120572 + ? (c < 120540 ? (c >= 120514 && c <= 120538) - : c <= 120570))) - : (c <= 120596 || (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))))))) - : (c <= 120770 || (c < 122907 - ? (c < 121476 - ? (c < 121344 - ? (c < 120782 - ? (c >= 120772 && c <= 120779) - : c <= 120831) - : (c <= 121398 || (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461))) - : (c <= 121476 || (c < 122624 - ? (c < 121505 - ? (c >= 121499 && c <= 121503) - : c <= 121519) - : (c <= 122654 || (c < 122888 + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))))))) + : (c <= 120654 || (c < 121505 + ? (c < 120782 + ? (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779))) + : (c <= 120831 || (c < 121461 + ? (c < 121403 + ? (c >= 121344 && c <= 121398) + : c <= 121452) + : (c <= 121461 || (c < 121499 + ? c == 121476 + : c <= 121503))))) + : (c <= 121519 || (c < 123136 + ? (c < 122907 + ? (c < 122888 ? (c >= 122880 && c <= 122886) - : c <= 122904))))) - : (c <= 122913 || (c < 123214 - ? (c < 123136 - ? (c < 122918 + : c <= 122904) + : (c <= 122913 || (c < 122918 ? (c >= 122915 && c <= 122916) - : c <= 122922) - : (c <= 123180 || (c < 123200 + : c <= 122922))) + : (c <= 123180 || (c < 123214 + ? (c < 123200 ? (c >= 123184 && c <= 123197) - : c <= 123209))) - : (c <= 123214 || (c < 124896 - ? (c < 123584 - ? (c >= 123536 && c <= 123566) - : c <= 123641) - : (c <= 124902 || (c < 124909 - ? (c >= 124904 && c <= 124907) - : c <= 124910))))))))) - : (c <= 124926 || (c < 126557 - ? (c < 126521 - ? (c < 126469 - ? (c < 125184 - ? (c < 125136 - ? (c >= 124928 && c <= 125124) - : c <= 125142) - : (c <= 125259 || (c < 126464 - ? (c >= 125264 && c <= 125273) - : c <= 126467))) - : (c <= 126495 || (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c < 126516 - ? (c >= 126505 && c <= 126514) - : c <= 126519))))) - : (c <= 126521 || (c < 126541 - ? (c < 126535 - ? (c < 126530 - ? c == 126523 - : c <= 126530) - : (c <= 126535 || (c < 126539 - ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126551 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548) - : (c <= 126551 || (c < 126555 - ? c == 126553 - : c <= 126555))))))) + : c <= 123209) + : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) + : (c <= 125124 || (c < 126557 + ? (c < 126523 + ? (c < 126497 + ? (c < 125264 + ? (c < 125184 + ? (c >= 125136 && c <= 125142) + : c <= 125259) + : (c <= 125273 || (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495))) + : (c <= 126498 || (c < 126505 + ? (c < 126503 + ? c == 126500 + : c <= 126503) + : (c <= 126514 || (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521))))) + : (c <= 126523 || (c < 126545 + ? (c < 126537 + ? (c < 126535 + ? c == 126530 + : c <= 126535) + : (c <= 126537 || (c < 126541 + ? c == 126539 + : c <= 126543))) + : (c <= 126546 || (c < 126553 + ? (c < 126551 + ? c == 126548 + : c <= 126551) + : (c <= 126553 || c == 126555)))))) : (c <= 126557 || (c < 126629 ? (c < 126580 ? (c < 126564 @@ -7935,8 +7703,8 @@ static inline bool sym_identifier_character_set_5(int32_t c) { ? (c < 130032 ? (c >= 126635 && c <= 126651) : c <= 130041) - : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177976) + : (c <= 173789 || (c < 177984 + ? (c >= 173824 && c <= 177972) : c <= 178205))) : (c <= 183969 || (c < 196608 ? (c < 194560 @@ -7946,10 +7714,10 @@ static inline bool sym_identifier_character_set_5(int32_t c) { } static inline bool sym_identifier_character_set_6(int32_t c) { - return (c < 43642 - ? (c < 3784 - ? (c < 2759 - ? (c < 2048 + return (c < 43072 + ? (c < 3724 + ? (c < 2738 + ? (c < 2045 ? (c < 1155 ? (c < 736 ? (c < 183 @@ -8010,344 +7778,338 @@ static inline bool sym_identifier_character_set_6(int32_t c) { ? (c < 1869 ? (c >= 1808 && c <= 1866) : c <= 1969) - : (c <= 2037 || (c < 2045 - ? c == 2042 - : c <= 2045))))))))) - : (c <= 2093 || (c < 2561 - ? (c < 2474 - ? (c < 2275 - ? (c < 2160 - ? (c < 2144 - ? (c >= 2112 && c <= 2139) - : c <= 2154) - : (c <= 2183 || (c < 2200 - ? (c >= 2185 && c <= 2190) - : c <= 2273))) - : (c <= 2403 || (c < 2437 - ? (c < 2417 - ? (c >= 2406 && c <= 2415) - : c <= 2435) - : (c <= 2444 || (c < 2451 - ? (c >= 2447 && c <= 2448) - : c <= 2472))))) - : (c <= 2480 || (c < 2519 - ? (c < 2492 - ? (c < 2486 - ? c == 2482 - : c <= 2489) - : (c <= 2500 || (c < 2507 - ? (c >= 2503 && c <= 2504) - : c <= 2510))) - : (c <= 2519 || (c < 2534 - ? (c < 2527 - ? (c >= 2524 && c <= 2525) - : c <= 2531) - : (c <= 2545 || (c < 2558 - ? c == 2556 - : c <= 2558))))))) - : (c <= 2563 || (c < 2641 - ? (c < 2613 - ? (c < 2579 - ? (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576) - : (c <= 2600 || (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611))) - : (c <= 2614 || (c < 2622 - ? (c < 2620 - ? (c >= 2616 && c <= 2617) - : c <= 2620) - : (c <= 2626 || (c < 2635 - ? (c >= 2631 && c <= 2632) - : c <= 2637))))) - : (c <= 2641 || (c < 2703 - ? (c < 2662 - ? (c < 2654 - ? (c >= 2649 && c <= 2652) - : c <= 2654) - : (c <= 2677 || (c < 2693 - ? (c >= 2689 && c <= 2691) - : c <= 2701))) - : (c <= 2705 || (c < 2738 - ? (c < 2730 - ? (c >= 2707 && c <= 2728) - : c <= 2736) - : (c <= 2739 || (c < 2748 + : (c <= 2037 || c == 2042)))))))) + : (c <= 2045 || (c < 2556 + ? (c < 2451 + ? (c < 2259 + ? (c < 2144 + ? (c < 2112 + ? (c >= 2048 && c <= 2093) + : c <= 2139) + : (c <= 2154 || (c < 2230 + ? (c >= 2208 && c <= 2228) + : c <= 2247))) + : (c <= 2273 || (c < 2417 + ? (c < 2406 + ? (c >= 2275 && c <= 2403) + : c <= 2415) + : (c <= 2435 || (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448))))) + : (c <= 2472 || (c < 2507 + ? (c < 2486 + ? (c < 2482 + ? (c >= 2474 && c <= 2480) + : c <= 2482) + : (c <= 2489 || (c < 2503 + ? (c >= 2492 && c <= 2500) + : c <= 2504))) + : (c <= 2510 || (c < 2527 + ? (c < 2524 + ? c == 2519 + : c <= 2525) + : (c <= 2531 || (c >= 2534 && c <= 2545))))))) + : (c <= 2556 || (c < 2631 + ? (c < 2602 + ? (c < 2565 + ? (c < 2561 + ? c == 2558 + : c <= 2563) + : (c <= 2570 || (c < 2579 + ? (c >= 2575 && c <= 2576) + : c <= 2600))) + : (c <= 2608 || (c < 2616 + ? (c < 2613 + ? (c >= 2610 && c <= 2611) + : c <= 2614) + : (c <= 2617 || (c < 2622 + ? c == 2620 + : c <= 2626))))) + : (c <= 2632 || (c < 2689 + ? (c < 2649 + ? (c < 2641 + ? (c >= 2635 && c <= 2637) + : c <= 2641) + : (c <= 2652 || (c < 2662 + ? c == 2654 + : c <= 2677))) + : (c <= 2691 || (c < 2707 + ? (c < 2703 + ? (c >= 2693 && c <= 2701) + : c <= 2705) + : (c <= 2728 || (c >= 2730 && c <= 2736))))))))))) + : (c <= 2739 || (c < 3146 + ? (c < 2929 + ? (c < 2835 + ? (c < 2784 + ? (c < 2759 + ? (c < 2748 ? (c >= 2741 && c <= 2745) - : c <= 2757))))))))))) - : (c <= 2761 || (c < 3174 - ? (c < 2962 - ? (c < 2869 - ? (c < 2817 - ? (c < 2784 - ? (c < 2768 + : c <= 2757) + : (c <= 2761 || (c < 2768 ? (c >= 2763 && c <= 2765) - : c <= 2768) - : (c <= 2787 || (c < 2809 + : c <= 2768))) + : (c <= 2787 || (c < 2817 + ? (c < 2809 ? (c >= 2790 && c <= 2799) - : c <= 2815))) - : (c <= 2819 || (c < 2835 - ? (c < 2831 + : c <= 2815) + : (c <= 2819 || (c < 2831 ? (c >= 2821 && c <= 2828) - : c <= 2832) - : (c <= 2856 || (c < 2866 + : c <= 2832))))) + : (c <= 2856 || (c < 2891 + ? (c < 2869 + ? (c < 2866 ? (c >= 2858 && c <= 2864) - : c <= 2867))))) - : (c <= 2873 || (c < 2911 - ? (c < 2891 - ? (c < 2887 + : c <= 2867) + : (c <= 2873 || (c < 2887 ? (c >= 2876 && c <= 2884) - : c <= 2888) - : (c <= 2893 || (c < 2908 + : c <= 2888))) + : (c <= 2893 || (c < 2911 + ? (c < 2908 ? (c >= 2901 && c <= 2903) - : c <= 2909))) - : (c <= 2915 || (c < 2946 - ? (c < 2929 - ? (c >= 2918 && c <= 2927) - : c <= 2929) - : (c <= 2947 || (c < 2958 - ? (c >= 2949 && c <= 2954) - : c <= 2960))))))) - : (c <= 2965 || (c < 3046 - ? (c < 2990 - ? (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c < 2984 - ? (c >= 2979 && c <= 2980) - : c <= 2986))) - : (c <= 3001 || (c < 3018 - ? (c < 3014 - ? (c >= 3006 && c <= 3010) - : c <= 3016) - : (c <= 3021 || (c < 3031 - ? c == 3024 - : c <= 3031))))) - : (c <= 3055 || (c < 3142 - ? (c < 3090 - ? (c < 3086 - ? (c >= 3072 && c <= 3084) - : c <= 3088) - : (c <= 3112 || (c < 3132 - ? (c >= 3114 && c <= 3129) - : c <= 3140))) - : (c <= 3144 || (c < 3160 - ? (c < 3157 - ? (c >= 3146 && c <= 3149) - : c <= 3158) - : (c <= 3162 || (c < 3168 - ? c == 3165 - : c <= 3171))))))))) - : (c <= 3183 || (c < 3457 - ? (c < 3296 - ? (c < 3253 - ? (c < 3214 - ? (c < 3205 - ? (c >= 3200 && c <= 3203) - : c <= 3212) - : (c <= 3216 || (c < 3242 - ? (c >= 3218 && c <= 3240) - : c <= 3251))) - : (c <= 3257 || (c < 3274 - ? (c < 3270 - ? (c >= 3260 && c <= 3268) - : c <= 3272) - : (c <= 3277 || (c < 3293 - ? (c >= 3285 && c <= 3286) - : c <= 3294))))) - : (c <= 3299 || (c < 3398 - ? (c < 3328 - ? (c < 3313 - ? (c >= 3302 && c <= 3311) - : c <= 3314) - : (c <= 3340 || (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3396))) - : (c <= 3400 || (c < 3423 - ? (c < 3412 - ? (c >= 3402 && c <= 3406) - : c <= 3415) - : (c <= 3427 || (c < 3450 - ? (c >= 3430 && c <= 3439) - : c <= 3455))))))) - : (c <= 3459 || (c < 3585 - ? (c < 3530 - ? (c < 3507 - ? (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505) - : (c <= 3515 || (c < 3520 - ? c == 3517 - : c <= 3526))) - : (c <= 3530 || (c < 3544 - ? (c < 3542 - ? (c >= 3535 && c <= 3540) - : c <= 3542) - : (c <= 3551 || (c < 3570 - ? (c >= 3558 && c <= 3567) - : c <= 3571))))) - : (c <= 3642 || (c < 3724 - ? (c < 3713 - ? (c < 3664 - ? (c >= 3648 && c <= 3662) - : c <= 3673) - : (c <= 3714 || (c < 3718 - ? c == 3716 - : c <= 3722))) - : (c <= 3747 || (c < 3776 + : c <= 2909) + : (c <= 2915 || (c >= 2918 && c <= 2927))))))) + : (c <= 2929 || (c < 3014 + ? (c < 2972 + ? (c < 2958 + ? (c < 2949 + ? (c >= 2946 && c <= 2947) + : c <= 2954) + : (c <= 2960 || (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970))) + : (c <= 2972 || (c < 2984 + ? (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980) + : (c <= 2986 || (c < 3006 + ? (c >= 2990 && c <= 3001) + : c <= 3010))))) + : (c <= 3016 || (c < 3086 + ? (c < 3031 + ? (c < 3024 + ? (c >= 3018 && c <= 3021) + : c <= 3024) + : (c <= 3031 || (c < 3072 + ? (c >= 3046 && c <= 3055) + : c <= 3084))) + : (c <= 3088 || (c < 3133 + ? (c < 3114 + ? (c >= 3090 && c <= 3112) + : c <= 3129) + : (c <= 3140 || (c >= 3142 && c <= 3144))))))))) + : (c <= 3149 || (c < 3402 + ? (c < 3270 + ? (c < 3205 + ? (c < 3168 + ? (c < 3160 + ? (c >= 3157 && c <= 3158) + : c <= 3162) + : (c <= 3171 || (c < 3200 + ? (c >= 3174 && c <= 3183) + : c <= 3203))) + : (c <= 3212 || (c < 3242 + ? (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240) + : (c <= 3251 || (c < 3260 + ? (c >= 3253 && c <= 3257) + : c <= 3268))))) + : (c <= 3272 || (c < 3313 + ? (c < 3294 + ? (c < 3285 + ? (c >= 3274 && c <= 3277) + : c <= 3286) + : (c <= 3294 || (c < 3302 + ? (c >= 3296 && c <= 3299) + : c <= 3311))) + : (c <= 3314 || (c < 3346 + ? (c < 3342 + ? (c >= 3328 && c <= 3340) + : c <= 3344) + : (c <= 3396 || (c >= 3398 && c <= 3400))))))) + : (c <= 3406 || (c < 3535 + ? (c < 3461 + ? (c < 3430 + ? (c < 3423 + ? (c >= 3412 && c <= 3415) + : c <= 3427) + : (c <= 3439 || (c < 3457 + ? (c >= 3450 && c <= 3455) + : c <= 3459))) + : (c <= 3478 || (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c < 3530 + ? (c >= 3520 && c <= 3526) + : c <= 3530))))) + : (c <= 3540 || (c < 3648 + ? (c < 3558 + ? (c < 3544 + ? c == 3542 + : c <= 3551) + : (c <= 3567 || (c < 3585 + ? (c >= 3570 && c <= 3571) + : c <= 3642))) + : (c <= 3662 || (c < 3716 + ? (c < 3713 + ? (c >= 3664 && c <= 3673) + : c <= 3714) + : (c <= 3716 || (c >= 3718 && c <= 3722))))))))))))) + : (c <= 3747 || (c < 7312 + ? (c < 5112 + ? (c < 4295 + ? (c < 3895 + ? (c < 3792 + ? (c < 3776 ? (c < 3751 ? c == 3749 : c <= 3773) - : (c <= 3780 || c == 3782)))))))))))) - : (c <= 3789 || (c < 8027 - ? (c < 5919 - ? (c < 4696 - ? (c < 3974 - ? (c < 3893 - ? (c < 3840 - ? (c < 3804 - ? (c >= 3792 && c <= 3801) - : c <= 3807) - : (c <= 3840 || (c < 3872 - ? (c >= 3864 && c <= 3865) - : c <= 3881))) - : (c <= 3893 || (c < 3902 - ? (c < 3897 - ? c == 3895 - : c <= 3897) - : (c <= 3911 || (c < 3953 - ? (c >= 3913 && c <= 3948) - : c <= 3972))))) - : (c <= 3991 || (c < 4295 - ? (c < 4096 - ? (c < 4038 - ? (c >= 3993 && c <= 4028) - : c <= 4038) - : (c <= 4169 || (c < 4256 - ? (c >= 4176 && c <= 4253) - : c <= 4293))) - : (c <= 4295 || (c < 4348 + : (c <= 3780 || (c < 3784 + ? c == 3782 + : c <= 3789))) + : (c <= 3801 || (c < 3864 + ? (c < 3840 + ? (c >= 3804 && c <= 3807) + : c <= 3840) + : (c <= 3865 || (c < 3893 + ? (c >= 3872 && c <= 3881) + : c <= 3893))))) + : (c <= 3895 || (c < 3993 + ? (c < 3913 + ? (c < 3902 + ? c == 3897 + : c <= 3911) + : (c <= 3948 || (c < 3974 + ? (c >= 3953 && c <= 3972) + : c <= 3991))) + : (c <= 4028 || (c < 4176 + ? (c < 4096 + ? c == 4038 + : c <= 4169) + : (c <= 4253 || (c >= 4256 && c <= 4293))))))) + : (c <= 4295 || (c < 4792 + ? (c < 4696 + ? (c < 4348 ? (c < 4304 ? c == 4301 : c <= 4346) : (c <= 4680 || (c < 4688 ? (c >= 4682 && c <= 4685) - : c <= 4694))))))) - : (c <= 4696 || (c < 4888 - ? (c < 4792 - ? (c < 4746 + : c <= 4694))) + : (c <= 4696 || (c < 4746 ? (c < 4704 ? (c >= 4698 && c <= 4701) : c <= 4744) : (c <= 4749 || (c < 4786 ? (c >= 4752 && c <= 4784) - : c <= 4789))) - : (c <= 4798 || (c < 4808 + : c <= 4789))))) + : (c <= 4798 || (c < 4888 + ? (c < 4808 ? (c < 4802 ? c == 4800 : c <= 4805) : (c <= 4822 || (c < 4882 ? (c >= 4824 && c <= 4880) - : c <= 4885))))) - : (c <= 4954 || (c < 5121 - ? (c < 4992 + : c <= 4885))) + : (c <= 4954 || (c < 4992 ? (c < 4969 ? (c >= 4957 && c <= 4959) : c <= 4977) - : (c <= 5007 || (c < 5112 - ? (c >= 5024 && c <= 5109) - : c <= 5117))) - : (c <= 5740 || (c < 5792 - ? (c < 5761 - ? (c >= 5743 && c <= 5759) - : c <= 5786) - : (c <= 5866 || (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5909))))))))) - : (c <= 5940 || (c < 6752 - ? (c < 6272 - ? (c < 6103 - ? (c < 5998 - ? (c < 5984 - ? (c >= 5952 && c <= 5971) - : c <= 5996) - : (c <= 6000 || (c < 6016 - ? (c >= 6002 && c <= 6003) - : c <= 6099))) - : (c <= 6103 || (c < 6155 - ? (c < 6112 - ? (c >= 6108 && c <= 6109) - : c <= 6121) - : (c <= 6157 || (c < 6176 - ? (c >= 6159 && c <= 6169) - : c <= 6264))))) - : (c <= 6314 || (c < 6512 - ? (c < 6432 - ? (c < 6400 - ? (c >= 6320 && c <= 6389) - : c <= 6430) - : (c <= 6443 || (c < 6470 + : (c <= 5007 || (c >= 5024 && c <= 5109))))))))) + : (c <= 5117 || (c < 6432 + ? (c < 6002 + ? (c < 5888 + ? (c < 5761 + ? (c < 5743 + ? (c >= 5121 && c <= 5740) + : c <= 5759) + : (c <= 5786 || (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880))) + : (c <= 5900 || (c < 5952 + ? (c < 5920 + ? (c >= 5902 && c <= 5908) + : c <= 5940) + : (c <= 5971 || (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000))))) + : (c <= 6003 || (c < 6160 + ? (c < 6108 + ? (c < 6103 + ? (c >= 6016 && c <= 6099) + : c <= 6103) + : (c <= 6109 || (c < 6155 + ? (c >= 6112 && c <= 6121) + : c <= 6157))) + : (c <= 6169 || (c < 6320 + ? (c < 6272 + ? (c >= 6176 && c <= 6264) + : c <= 6314) + : (c <= 6389 || (c >= 6400 && c <= 6430))))))) + : (c <= 6443 || (c < 6823 + ? (c < 6608 + ? (c < 6512 + ? (c < 6470 ? (c >= 6448 && c <= 6459) - : c <= 6509))) - : (c <= 6516 || (c < 6608 - ? (c < 6576 + : c <= 6509) + : (c <= 6516 || (c < 6576 ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6618 || (c < 6688 + : c <= 6601))) + : (c <= 6618 || (c < 6752 + ? (c < 6688 ? (c >= 6656 && c <= 6683) - : c <= 6750))))))) - : (c <= 6780 || (c < 7245 - ? (c < 6912 - ? (c < 6823 - ? (c < 6800 + : c <= 6750) + : (c <= 6780 || (c < 6800 ? (c >= 6783 && c <= 6793) - : c <= 6809) - : (c <= 6823 || (c < 6847 + : c <= 6809))))) + : (c <= 6823 || (c < 7040 + ? (c < 6912 + ? (c < 6847 ? (c >= 6832 && c <= 6845) - : c <= 6862))) - : (c <= 6988 || (c < 7040 - ? (c < 7019 + : c <= 6848) + : (c <= 6987 || (c < 7019 ? (c >= 6992 && c <= 7001) - : c <= 7027) - : (c <= 7155 || (c < 7232 + : c <= 7027))) + : (c <= 7155 || (c < 7245 + ? (c < 7232 ? (c >= 7168 && c <= 7223) - : c <= 7241))))) - : (c <= 7293 || (c < 7424 - ? (c < 7357 - ? (c < 7312 - ? (c >= 7296 && c <= 7304) - : c <= 7354) - : (c <= 7359 || (c < 7380 - ? (c >= 7376 && c <= 7378) - : c <= 7418))) - : (c <= 7957 || (c < 8008 - ? (c < 7968 - ? (c >= 7960 && c <= 7965) - : c <= 8005) - : (c <= 8013 || (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025))))))))))) - : (c <= 8027 || (c < 11728 - ? (c < 8469 - ? (c < 8182 - ? (c < 8130 - ? (c < 8064 - ? (c < 8031 - ? c == 8029 - : c <= 8061) - : (c <= 8116 || (c < 8126 - ? (c >= 8118 && c <= 8124) - : c <= 8126))) - : (c <= 8132 || (c < 8150 - ? (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147) - : (c <= 8155 || (c < 8178 - ? (c >= 8160 && c <= 8172) - : c <= 8180))))) - : (c <= 8188 || (c < 8400 + : c <= 7241) + : (c <= 7293 || (c >= 7296 && c <= 7304))))))))))) + : (c <= 7354 || (c < 11312 + ? (c < 8182 + ? (c < 8029 + ? (c < 7960 + ? (c < 7380 + ? (c < 7376 + ? (c >= 7357 && c <= 7359) + : c <= 7378) + : (c <= 7418 || (c < 7675 + ? (c >= 7424 && c <= 7673) + : c <= 7957))) + : (c <= 7965 || (c < 8016 + ? (c < 8008 + ? (c >= 7968 && c <= 8005) + : c <= 8013) + : (c <= 8023 || (c < 8027 + ? c == 8025 + : c <= 8027))))) + : (c <= 8029 || (c < 8134 + ? (c < 8118 + ? (c < 8064 + ? (c >= 8031 && c <= 8061) + : c <= 8116) + : (c <= 8124 || (c < 8130 + ? c == 8126 + : c <= 8132))) + : (c <= 8140 || (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c >= 8178 && c <= 8180))))))) + : (c <= 8188 || (c < 8469 + ? (c < 8400 ? (c < 8305 ? (c < 8276 ? (c >= 8255 && c <= 8256) @@ -8361,9 +8123,8 @@ static inline bool sym_identifier_character_set_6(int32_t c) { : c <= 8432) : (c <= 8450 || (c < 8458 ? c == 8455 - : c <= 8467))))))) - : (c <= 8469 || (c < 11520 - ? (c < 8508 + : c <= 8467))))) + : (c <= 8469 || (c < 8508 ? (c < 8486 ? (c < 8484 ? (c >= 8472 && c <= 8477) @@ -8375,561 +8136,516 @@ static inline bool sym_identifier_character_set_6(int32_t c) { ? (c < 8526 ? (c >= 8517 && c <= 8521) : c <= 8526) - : (c <= 8584 || (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11507))))) - : (c <= 11557 || (c < 11680 - ? (c < 11568 - ? (c < 11565 + : (c <= 8584 || (c >= 11264 && c <= 11310))))))))) + : (c <= 11358 || (c < 12441 + ? (c < 11704 + ? (c < 11568 + ? (c < 11520 + ? (c < 11499 + ? (c >= 11360 && c <= 11492) + : c <= 11507) + : (c <= 11557 || (c < 11565 ? c == 11559 - : c <= 11565) - : (c <= 11623 || (c < 11647 + : c <= 11565))) + : (c <= 11623 || (c < 11680 + ? (c < 11647 ? c == 11631 - : c <= 11670))) - : (c <= 11686 || (c < 11704 - ? (c < 11696 + : c <= 11670) + : (c <= 11686 || (c < 11696 ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c < 11720 + : c <= 11702))))) + : (c <= 11710 || (c < 12293 + ? (c < 11728 + ? (c < 11720 ? (c >= 11712 && c <= 11718) - : c <= 11726))))))))) - : (c <= 11734 || (c < 42775 - ? (c < 12549 - ? (c < 12344 - ? (c < 12293 - ? (c < 11744 + : c <= 11726) + : (c <= 11734 || (c < 11744 ? (c >= 11736 && c <= 11742) - : c <= 11775) - : (c <= 12295 || (c < 12337 + : c <= 11775))) + : (c <= 12295 || (c < 12344 + ? (c < 12337 ? (c >= 12321 && c <= 12335) - : c <= 12341))) - : (c <= 12348 || (c < 12445 - ? (c < 12441 - ? (c >= 12353 && c <= 12438) - : c <= 12442) - : (c <= 12447 || (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543))))) - : (c <= 12591 || (c < 42192 - ? (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c < 19968 - ? (c >= 13312 && c <= 19903) - : c <= 42124))) - : (c <= 42237 || (c < 42560 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42539) - : (c <= 42607 || (c < 42623 - ? (c >= 42612 && c <= 42621) - : c <= 42737))))))) - : (c <= 42783 || (c < 43259 - ? (c < 42994 - ? (c < 42960 - ? (c < 42891 - ? (c >= 42786 && c <= 42888) + : c <= 12341) + : (c <= 12348 || (c >= 12353 && c <= 12438))))))) + : (c <= 12442 || (c < 42240 + ? (c < 12704 + ? (c < 12540 + ? (c < 12449 + ? (c >= 12445 && c <= 12447) + : c <= 12538) + : (c <= 12543 || (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686))) + : (c <= 12735 || (c < 19968 + ? (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903) + : (c <= 40956 || (c < 42192 + ? (c >= 40960 && c <= 42124) + : c <= 42237))))) + : (c <= 42508 || (c < 42786 + ? (c < 42612 + ? (c < 42560 + ? (c >= 42512 && c <= 42539) + : c <= 42607) + : (c <= 42621 || (c < 42775 + ? (c >= 42623 && c <= 42737) + : c <= 42783))) + : (c <= 42888 || (c < 42997 + ? (c < 42946 + ? (c >= 42891 && c <= 42943) : c <= 42954) - : (c <= 42961 || (c < 42965 - ? c == 42963 - : c <= 42969))) - : (c <= 43047 || (c < 43136 - ? (c < 43072 - ? c == 43052 - : c <= 43123) - : (c <= 43205 || (c < 43232 - ? (c >= 43216 && c <= 43225) - : c <= 43255))))) - : (c <= 43259 || (c < 43488 - ? (c < 43360 - ? (c < 43312 - ? (c >= 43261 && c <= 43309) - : c <= 43347) - : (c <= 43388 || (c < 43471 - ? (c >= 43392 && c <= 43456) - : c <= 43481))) - : (c <= 43518 || (c < 43600 - ? (c < 43584 - ? (c >= 43520 && c <= 43574) - : c <= 43597) - : (c <= 43609 || (c >= 43616 && c <= 43638))))))))))))))) - : (c <= 43714 || (c < 71472 - ? (c < 67644 - ? (c < 65382 - ? (c < 64318 - ? (c < 44012 - ? (c < 43793 - ? (c < 43762 - ? (c < 43744 + : (c <= 43047 || c == 43052)))))))))))))) + : (c <= 43123 || (c < 71096 + ? (c < 66864 + ? (c < 64914 + ? (c < 43816 + ? (c < 43584 + ? (c < 43312 + ? (c < 43232 + ? (c < 43216 + ? (c >= 43136 && c <= 43205) + : c <= 43225) + : (c <= 43255 || (c < 43261 + ? c == 43259 + : c <= 43309))) + : (c <= 43347 || (c < 43471 + ? (c < 43392 + ? (c >= 43360 && c <= 43388) + : c <= 43456) + : (c <= 43481 || (c < 43520 + ? (c >= 43488 && c <= 43518) + : c <= 43574))))) + : (c <= 43597 || (c < 43762 + ? (c < 43642 + ? (c < 43616 + ? (c >= 43600 && c <= 43609) + : c <= 43638) + : (c <= 43714 || (c < 43744 ? (c >= 43739 && c <= 43741) - : c <= 43759) - : (c <= 43766 || (c < 43785 + : c <= 43759))) + : (c <= 43766 || (c < 43793 + ? (c < 43785 ? (c >= 43777 && c <= 43782) - : c <= 43790))) - : (c <= 43798 || (c < 43824 - ? (c < 43816 - ? (c >= 43808 && c <= 43814) - : c <= 43822) - : (c <= 43866 || (c < 43888 - ? (c >= 43868 && c <= 43881) - : c <= 44010))))) - : (c <= 44013 || (c < 64112 - ? (c < 55216 - ? (c < 44032 - ? (c >= 44016 && c <= 44025) - : c <= 55203) - : (c <= 55238 || (c < 63744 - ? (c >= 55243 && c <= 55291) - : c <= 64109))) - : (c <= 64217 || (c < 64285 - ? (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279) - : (c <= 64296 || (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316))))))) - : (c <= 64318 || (c < 65101 - ? (c < 64848 - ? (c < 64326 - ? (c < 64323 - ? (c >= 64320 && c <= 64321) - : c <= 64324) - : (c <= 64433 || (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829))) - : (c <= 64911 || (c < 65024 - ? (c < 65008 - ? (c >= 64914 && c <= 64967) - : c <= 65017) - : (c <= 65039 || (c < 65075 - ? (c >= 65056 && c <= 65071) - : c <= 65076))))) - : (c <= 65103 || (c < 65149 - ? (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || (c < 65147 - ? c == 65145 - : c <= 65147))) - : (c <= 65149 || (c < 65313 - ? (c < 65296 - ? (c >= 65151 && c <= 65276) - : c <= 65305) - : (c <= 65338 || (c < 65345 - ? c == 65343 - : c <= 65370))))))))) - : (c <= 65470 || (c < 66560 - ? (c < 65856 - ? (c < 65549 - ? (c < 65490 - ? (c < 65482 - ? (c >= 65474 && c <= 65479) - : c <= 65487) - : (c <= 65495 || (c < 65536 - ? (c >= 65498 && c <= 65500) - : c <= 65547))) - : (c <= 65574 || (c < 65599 + : c <= 43790) + : (c <= 43798 || (c >= 43808 && c <= 43814))))))) + : (c <= 43822 || (c < 64275 + ? (c < 44032 + ? (c < 43888 + ? (c < 43868 + ? (c >= 43824 && c <= 43866) + : c <= 43881) + : (c <= 44010 || (c < 44016 + ? (c >= 44012 && c <= 44013) + : c <= 44025))) + : (c <= 55203 || (c < 63744 + ? (c < 55243 + ? (c >= 55216 && c <= 55238) + : c <= 55291) + : (c <= 64109 || (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262))))) + : (c <= 64279 || (c < 64323 + ? (c < 64312 + ? (c < 64298 + ? (c >= 64285 && c <= 64296) + : c <= 64310) + : (c <= 64316 || (c < 64320 + ? c == 64318 + : c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65549 + ? (c < 65151 + ? (c < 65137 + ? (c < 65056 + ? (c < 65024 + ? (c >= 65008 && c <= 65017) + : c <= 65039) + : (c <= 65071 || (c < 65101 + ? (c >= 65075 && c <= 65076) + : c <= 65103))) + : (c <= 65137 || (c < 65145 + ? (c < 65143 + ? c == 65139 + : c <= 65143) + : (c <= 65145 || (c < 65149 + ? c == 65147 + : c <= 65149))))) + : (c <= 65276 || (c < 65474 + ? (c < 65343 + ? (c < 65313 + ? (c >= 65296 && c <= 65305) + : c <= 65338) + : (c <= 65343 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65470))) + : (c <= 65479 || (c < 65498 + ? (c < 65490 + ? (c >= 65482 && c <= 65487) + : c <= 65495) + : (c <= 65500 || (c >= 65536 && c <= 65547))))))) + : (c <= 65574 || (c < 66349 + ? (c < 65856 + ? (c < 65599 ? (c < 65596 ? (c >= 65576 && c <= 65594) : c <= 65597) : (c <= 65613 || (c < 65664 ? (c >= 65616 && c <= 65629) - : c <= 65786))))) - : (c <= 65908 || (c < 66349 - ? (c < 66208 + : c <= 65786))) + : (c <= 65908 || (c < 66208 ? (c < 66176 ? c == 66045 : c <= 66204) : (c <= 66256 || (c < 66304 ? c == 66272 - : c <= 66335))) - : (c <= 66378 || (c < 66464 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 ? (c < 66432 ? (c >= 66384 && c <= 66426) : c <= 66461) : (c <= 66499 || (c < 66513 ? (c >= 66504 && c <= 66511) - : c <= 66517))))))) - : (c <= 66717 || (c < 66995 - ? (c < 66928 - ? (c < 66776 + : c <= 66517))) + : (c <= 66717 || (c < 66776 ? (c < 66736 ? (c >= 66720 && c <= 66729) : c <= 66771) - : (c <= 66811 || (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915))) - : (c <= 66938 || (c < 66964 - ? (c < 66956 - ? (c >= 66940 && c <= 66954) - : c <= 66962) - : (c <= 66965 || (c < 66979 - ? (c >= 66967 && c <= 66977) - : c <= 66993))))) - : (c <= 67001 || (c < 67463 - ? (c < 67392 - ? (c < 67072 - ? (c >= 67003 && c <= 67004) - : c <= 67382) - : (c <= 67413 || (c < 67456 - ? (c >= 67424 && c <= 67431) - : c <= 67461))) - : (c <= 67504 || (c < 67592 - ? (c < 67584 - ? (c >= 67506 && c <= 67514) - : c <= 67589) - : (c <= 67592 || (c < 67639 - ? (c >= 67594 && c <= 67637) - : c <= 67640))))))))))) - : (c <= 67644 || (c < 69968 - ? (c < 68480 - ? (c < 68108 - ? (c < 67840 - ? (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c < 67828 - ? (c >= 67808 && c <= 67826) - : c <= 67829))) - : (c <= 67861 || (c < 68030 - ? (c < 67968 - ? (c >= 67872 && c <= 67897) - : c <= 68023) - : (c <= 68031 || (c < 68101 - ? (c >= 68096 && c <= 68099) - : c <= 68102))))) - : (c <= 68115 || (c < 68224 - ? (c < 68152 - ? (c < 68121 - ? (c >= 68117 && c <= 68119) - : c <= 68149) - : (c <= 68154 || (c < 68192 + : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) + : (c <= 66915 || (c < 69632 + ? (c < 68152 + ? (c < 67808 + ? (c < 67594 + ? (c < 67424 + ? (c < 67392 + ? (c >= 67072 && c <= 67382) + : c <= 67413) + : (c <= 67431 || (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592))) + : (c <= 67637 || (c < 67647 + ? (c < 67644 + ? (c >= 67639 && c <= 67640) + : c <= 67644) + : (c <= 67669 || (c < 67712 + ? (c >= 67680 && c <= 67702) + : c <= 67742))))) + : (c <= 67826 || (c < 68096 + ? (c < 67872 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : c <= 67861) + : (c <= 67897 || (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031))) + : (c <= 68099 || (c < 68117 + ? (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115) + : (c <= 68119 || (c >= 68121 && c <= 68149))))))) + : (c <= 68154 || (c < 68800 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 ? c == 68159 - : c <= 68220))) - : (c <= 68252 || (c < 68352 - ? (c < 68297 + : c <= 68220) + : (c <= 68252 || (c < 68297 ? (c >= 68288 && c <= 68295) - : c <= 68326) - : (c <= 68405 || (c < 68448 + : c <= 68326))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 ? (c >= 68416 && c <= 68437) - : c <= 68466))))))) - : (c <= 68497 || (c < 69488 - ? (c < 69248 - ? (c < 68800 - ? (c < 68736 + : c <= 68466) + : (c <= 68497 || (c < 68736 ? (c >= 68608 && c <= 68680) - : c <= 68786) - : (c <= 68850 || (c < 68912 + : c <= 68786))))) + : (c <= 68850 || (c < 69376 + ? (c < 69248 + ? (c < 68912 ? (c >= 68864 && c <= 68903) - : c <= 68921))) - : (c <= 69289 || (c < 69376 - ? (c < 69296 + : c <= 68921) + : (c <= 69289 || (c < 69296 ? (c >= 69291 && c <= 69292) - : c <= 69297) - : (c <= 69404 || (c < 69424 + : c <= 69297))) + : (c <= 69404 || (c < 69552 + ? (c < 69424 ? c == 69415 - : c <= 69456))))) - : (c <= 69509 || (c < 69826 - ? (c < 69632 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69702 || (c < 69759 - ? (c >= 69734 && c <= 69749) - : c <= 69818))) - : (c <= 69826 || (c < 69888 - ? (c < 69872 - ? (c >= 69840 && c <= 69864) - : c <= 69881) - : (c <= 69940 || (c < 69956 - ? (c >= 69942 && c <= 69951) - : c <= 69959))))))))) - : (c <= 70003 || (c < 70471 - ? (c < 70287 - ? (c < 70144 - ? (c < 70089 - ? (c < 70016 - ? c == 70006 - : c <= 70084) - : (c <= 70092 || (c < 70108 - ? (c >= 70094 && c <= 70106) - : c <= 70108))) - : (c <= 70161 || (c < 70272 - ? (c < 70206 - ? (c >= 70163 && c <= 70199) - : c <= 70206) - : (c <= 70278 || (c < 70282 - ? c == 70280 - : c <= 70285))))) - : (c <= 70301 || (c < 70415 - ? (c < 70384 - ? (c < 70320 - ? (c >= 70303 && c <= 70312) - : c <= 70378) - : (c <= 70393 || (c < 70405 + : c <= 69456) + : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) + : (c <= 69702 || (c < 70384 + ? (c < 70094 + ? (c < 69942 + ? (c < 69840 + ? (c < 69759 + ? (c >= 69734 && c <= 69743) + : c <= 69818) + : (c <= 69864 || (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940))) + : (c <= 69951 || (c < 70006 + ? (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003) + : (c <= 70006 || (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092))))) + : (c <= 70106 || (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70199 || (c < 70272 + ? c == 70206 + : c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70378))))))) + : (c <= 70393 || (c < 70487 + ? (c < 70450 + ? (c < 70415 + ? (c < 70405 ? (c >= 70400 && c <= 70403) - : c <= 70412))) - : (c <= 70416 || (c < 70450 - ? (c < 70442 + : c <= 70412) + : (c <= 70416 || (c < 70442 ? (c >= 70419 && c <= 70440) - : c <= 70448) - : (c <= 70451 || (c < 70459 + : c <= 70448))) + : (c <= 70451 || (c < 70471 + ? (c < 70459 ? (c >= 70453 && c <= 70457) - : c <= 70468))))))) - : (c <= 70472 || (c < 70864 - ? (c < 70512 - ? (c < 70487 - ? (c < 70480 + : c <= 70468) + : (c <= 70472 || (c < 70480 ? (c >= 70475 && c <= 70477) - : c <= 70480) - : (c <= 70487 || (c < 70502 + : c <= 70480))))) + : (c <= 70487 || (c < 70750 + ? (c < 70512 + ? (c < 70502 ? (c >= 70493 && c <= 70499) - : c <= 70508))) - : (c <= 70516 || (c < 70750 - ? (c < 70736 + : c <= 70508) + : (c <= 70516 || (c < 70736 ? (c >= 70656 && c <= 70730) - : c <= 70745) - : (c <= 70753 || (c < 70855 + : c <= 70745))) + : (c <= 70753 || (c < 70864 + ? (c < 70855 ? (c >= 70784 && c <= 70853) - : c <= 70855))))) - : (c <= 70873 || (c < 71248 - ? (c < 71128 - ? (c < 71096 - ? (c >= 71040 && c <= 71093) - : c <= 71104) - : (c <= 71133 || (c < 71236 - ? (c >= 71168 && c <= 71232) - : c <= 71236))) - : (c <= 71257 || (c < 71424 - ? (c < 71360 - ? (c >= 71296 && c <= 71352) - : c <= 71369) - : (c <= 71450 || (c >= 71453 && c <= 71467))))))))))))) - : (c <= 71481 || (c < 119973 - ? (c < 82944 - ? (c < 72784 - ? (c < 72096 - ? (c < 71948 - ? (c < 71840 - ? (c < 71680 - ? (c >= 71488 && c <= 71494) - : c <= 71738) - : (c <= 71913 || (c < 71945 - ? (c >= 71935 && c <= 71942) - : c <= 71945))) - : (c <= 71955 || (c < 71991 - ? (c < 71960 - ? (c >= 71957 && c <= 71958) - : c <= 71989) - : (c <= 71992 || (c < 72016 - ? (c >= 71995 && c <= 72003) - : c <= 72025))))) - : (c <= 72103 || (c < 72272 - ? (c < 72163 - ? (c < 72154 - ? (c >= 72106 && c <= 72151) - : c <= 72161) - : (c <= 72164 || (c < 72263 - ? (c >= 72192 && c <= 72254) - : c <= 72263))) - : (c <= 72345 || (c < 72704 - ? (c < 72368 + : c <= 70855) + : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) + : (c <= 71104 || (c < 119894 + ? (c < 73104 + ? (c < 72163 + ? (c < 71935 + ? (c < 71360 + ? (c < 71236 + ? (c < 71168 + ? (c >= 71128 && c <= 71133) + : c <= 71232) + : (c <= 71236 || (c < 71296 + ? (c >= 71248 && c <= 71257) + : c <= 71352))) + : (c <= 71369 || (c < 71472 + ? (c < 71453 + ? (c >= 71424 && c <= 71450) + : c <= 71467) + : (c <= 71481 || (c < 71840 + ? (c >= 71680 && c <= 71738) + : c <= 71913))))) + : (c <= 71942 || (c < 71995 + ? (c < 71957 + ? (c < 71948 + ? c == 71945 + : c <= 71955) + : (c <= 71958 || (c < 71991 + ? (c >= 71960 && c <= 71989) + : c <= 71992))) + : (c <= 72003 || (c < 72106 + ? (c < 72096 + ? (c >= 72016 && c <= 72025) + : c <= 72103) + : (c <= 72151 || (c >= 72154 && c <= 72161))))))) + : (c <= 72164 || (c < 72873 + ? (c < 72704 + ? (c < 72272 + ? (c < 72263 + ? (c >= 72192 && c <= 72254) + : c <= 72263) + : (c <= 72345 || (c < 72384 ? c == 72349 - : c <= 72440) - : (c <= 72712 || (c < 72760 + : c <= 72440))) + : (c <= 72712 || (c < 72784 + ? (c < 72760 ? (c >= 72714 && c <= 72758) - : c <= 72768))))))) - : (c <= 72793 || (c < 73063 - ? (c < 72971 - ? (c < 72873 - ? (c < 72850 + : c <= 72768) + : (c <= 72793 || (c < 72850 ? (c >= 72818 && c <= 72847) - : c <= 72871) - : (c <= 72886 || (c < 72968 + : c <= 72871))))) + : (c <= 72886 || (c < 73023 + ? (c < 72971 + ? (c < 72968 ? (c >= 72960 && c <= 72966) - : c <= 72969))) - : (c <= 73014 || (c < 73023 - ? (c < 73020 + : c <= 72969) + : (c <= 73014 || (c < 73020 ? c == 73018 - : c <= 73021) - : (c <= 73031 || (c < 73056 + : c <= 73021))) + : (c <= 73031 || (c < 73063 + ? (c < 73056 ? (c >= 73040 && c <= 73049) - : c <= 73061))))) - : (c <= 73064 || (c < 73648 - ? (c < 73107 - ? (c < 73104 - ? (c >= 73066 && c <= 73102) - : c <= 73105) - : (c <= 73112 || (c < 73440 - ? (c >= 73120 && c <= 73129) - : c <= 73462))) - : (c <= 73648 || (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c < 77824 - ? (c >= 77712 && c <= 77808) - : c <= 78894))))))))) - : (c <= 83526 || (c < 110581 - ? (c < 93053 - ? (c < 92880 - ? (c < 92768 - ? (c < 92736 + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) + : (c <= 73105 || (c < 94095 + ? (c < 92768 + ? (c < 74752 + ? (c < 73440 + ? (c < 73120 + ? (c >= 73107 && c <= 73112) + : c <= 73129) + : (c <= 73462 || (c < 73728 + ? c == 73648 + : c <= 74649))) + : (c <= 74862 || (c < 82944 + ? (c < 77824 + ? (c >= 74880 && c <= 75075) + : c <= 78894) + : (c <= 83526 || (c < 92736 ? (c >= 92160 && c <= 92728) - : c <= 92766) - : (c <= 92777 || (c < 92864 - ? (c >= 92784 && c <= 92862) - : c <= 92873))) - : (c <= 92909 || (c < 92992 - ? (c < 92928 - ? (c >= 92912 && c <= 92916) - : c <= 92982) - : (c <= 92995 || (c < 93027 - ? (c >= 93008 && c <= 93017) - : c <= 93047))))) - : (c <= 93071 || (c < 94179 - ? (c < 94031 - ? (c < 93952 - ? (c >= 93760 && c <= 93823) - : c <= 94026) - : (c <= 94087 || (c < 94176 - ? (c >= 94095 && c <= 94111) - : c <= 94177))) - : (c <= 94180 || (c < 100352 - ? (c < 94208 - ? (c >= 94192 && c <= 94193) - : c <= 100343) - : (c <= 101589 || (c < 110576 - ? (c >= 101632 && c <= 101640) - : c <= 110579))))))) - : (c <= 110587 || (c < 118576 - ? (c < 113664 - ? (c < 110928 - ? (c < 110592 - ? (c >= 110589 && c <= 110590) - : c <= 110882) - : (c <= 110930 || (c < 110960 - ? (c >= 110948 && c <= 110951) - : c <= 111355))) - : (c <= 113770 || (c < 113808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : c <= 113800) - : (c <= 113817 || (c < 118528 - ? (c >= 113821 && c <= 113822) - : c <= 118573))))) - : (c <= 118598 || (c < 119362 - ? (c < 119163 - ? (c < 119149 + : c <= 92766))))) + : (c <= 92777 || (c < 93027 + ? (c < 92928 + ? (c < 92912 + ? (c >= 92880 && c <= 92909) + : c <= 92916) + : (c <= 92982 || (c < 93008 + ? (c >= 92992 && c <= 92995) + : c <= 93017))) + : (c <= 93047 || (c < 93952 + ? (c < 93760 + ? (c >= 93053 && c <= 93071) + : c <= 93823) + : (c <= 94026 || (c >= 94031 && c <= 94087))))))) + : (c <= 94111 || (c < 113776 + ? (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110948 + ? (c < 110928 + ? (c >= 110592 && c <= 110878) + : c <= 110930) + : (c <= 110951 || (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770))))) + : (c <= 113788 || (c < 119163 + ? (c < 113821 + ? (c < 113808 + ? (c >= 113792 && c <= 113800) + : c <= 113817) + : (c <= 113822 || (c < 119149 ? (c >= 119141 && c <= 119145) - : c <= 119154) - : (c <= 119170 || (c < 119210 + : c <= 119154))) + : (c <= 119170 || (c < 119362 + ? (c < 119210 ? (c >= 119173 && c <= 119179) - : c <= 119213))) - : (c <= 119364 || (c < 119966 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : c <= 119964) - : (c <= 119967 || c == 119970)))))))))) - : (c <= 119974 || (c < 124912 - ? (c < 120746 - ? (c < 120134 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 + : c <= 119213) + : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 124928 + ? (c < 120630 + ? (c < 120094 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 + : c <= 120069) + : (c <= 120074 || (c < 120086 ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c < 120128 + : c <= 120092))))) + : (c <= 120121 || (c < 120488 + ? (c < 120134 + ? (c < 120128 ? (c >= 120123 && c <= 120126) - : c <= 120132))))) - : (c <= 120134 || (c < 120572 - ? (c < 120488 - ? (c < 120146 + : c <= 120132) + : (c <= 120134 || (c < 120146 ? (c >= 120138 && c <= 120144) - : c <= 120485) - : (c <= 120512 || (c < 120540 + : c <= 120485))) + : (c <= 120512 || (c < 120572 + ? (c < 120540 ? (c >= 120514 && c <= 120538) - : c <= 120570))) - : (c <= 120596 || (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))))))) - : (c <= 120770 || (c < 122907 - ? (c < 121476 - ? (c < 121344 - ? (c < 120782 - ? (c >= 120772 && c <= 120779) - : c <= 120831) - : (c <= 121398 || (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461))) - : (c <= 121476 || (c < 122624 - ? (c < 121505 - ? (c >= 121499 && c <= 121503) - : c <= 121519) - : (c <= 122654 || (c < 122888 + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))))))) + : (c <= 120654 || (c < 121505 + ? (c < 120782 + ? (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779))) + : (c <= 120831 || (c < 121461 + ? (c < 121403 + ? (c >= 121344 && c <= 121398) + : c <= 121452) + : (c <= 121461 || (c < 121499 + ? c == 121476 + : c <= 121503))))) + : (c <= 121519 || (c < 123136 + ? (c < 122907 + ? (c < 122888 ? (c >= 122880 && c <= 122886) - : c <= 122904))))) - : (c <= 122913 || (c < 123214 - ? (c < 123136 - ? (c < 122918 + : c <= 122904) + : (c <= 122913 || (c < 122918 ? (c >= 122915 && c <= 122916) - : c <= 122922) - : (c <= 123180 || (c < 123200 + : c <= 122922))) + : (c <= 123180 || (c < 123214 + ? (c < 123200 ? (c >= 123184 && c <= 123197) - : c <= 123209))) - : (c <= 123214 || (c < 124896 - ? (c < 123584 - ? (c >= 123536 && c <= 123566) - : c <= 123641) - : (c <= 124902 || (c < 124909 - ? (c >= 124904 && c <= 124907) - : c <= 124910))))))))) - : (c <= 124926 || (c < 126557 - ? (c < 126521 - ? (c < 126469 - ? (c < 125184 - ? (c < 125136 - ? (c >= 124928 && c <= 125124) - : c <= 125142) - : (c <= 125259 || (c < 126464 - ? (c >= 125264 && c <= 125273) - : c <= 126467))) - : (c <= 126495 || (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c < 126516 - ? (c >= 126505 && c <= 126514) - : c <= 126519))))) - : (c <= 126521 || (c < 126541 - ? (c < 126535 - ? (c < 126530 - ? c == 126523 - : c <= 126530) - : (c <= 126535 || (c < 126539 - ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126551 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548) - : (c <= 126551 || (c < 126555 - ? c == 126553 - : c <= 126555))))))) + : c <= 123209) + : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) + : (c <= 125124 || (c < 126557 + ? (c < 126523 + ? (c < 126497 + ? (c < 125264 + ? (c < 125184 + ? (c >= 125136 && c <= 125142) + : c <= 125259) + : (c <= 125273 || (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495))) + : (c <= 126498 || (c < 126505 + ? (c < 126503 + ? c == 126500 + : c <= 126503) + : (c <= 126514 || (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521))))) + : (c <= 126523 || (c < 126545 + ? (c < 126537 + ? (c < 126535 + ? c == 126530 + : c <= 126535) + : (c <= 126537 || (c < 126541 + ? c == 126539 + : c <= 126543))) + : (c <= 126546 || (c < 126553 + ? (c < 126551 + ? c == 126548 + : c <= 126551) + : (c <= 126553 || c == 126555)))))) : (c <= 126557 || (c < 126629 ? (c < 126580 ? (c < 126564 @@ -8951,8 +8667,8 @@ static inline bool sym_identifier_character_set_6(int32_t c) { ? (c < 130032 ? (c >= 126635 && c <= 126651) : c <= 130041) - : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177976) + : (c <= 173789 || (c < 177984 + ? (c >= 173824 && c <= 177972) : c <= 178205))) : (c <= 183969 || (c < 196608 ? (c < 194560 @@ -8962,10 +8678,10 @@ static inline bool sym_identifier_character_set_6(int32_t c) { } static inline bool sym_identifier_character_set_7(int32_t c) { - return (c < 43616 - ? (c < 3782 - ? (c < 2748 - ? (c < 2045 + return (c < 43052 + ? (c < 3718 + ? (c < 2730 + ? (c < 2042 ? (c < 1015 ? (c < 710 ? (c < 181 @@ -9026,344 +8742,338 @@ static inline bool sym_identifier_character_set_7(int32_t c) { ? (c < 1808 ? c == 1791 : c <= 1866) - : (c <= 1969 || (c < 2042 - ? (c >= 1984 && c <= 2037) - : c <= 2042))))))))) - : (c <= 2045 || (c < 2558 - ? (c < 2451 - ? (c < 2200 - ? (c < 2144 - ? (c < 2112 - ? (c >= 2048 && c <= 2093) - : c <= 2139) - : (c <= 2154 || (c < 2185 - ? (c >= 2160 && c <= 2183) - : c <= 2190))) - : (c <= 2273 || (c < 2417 - ? (c < 2406 - ? (c >= 2275 && c <= 2403) - : c <= 2415) - : (c <= 2435 || (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448))))) - : (c <= 2472 || (c < 2507 - ? (c < 2486 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482) - : (c <= 2489 || (c < 2503 - ? (c >= 2492 && c <= 2500) - : c <= 2504))) - : (c <= 2510 || (c < 2527 - ? (c < 2524 - ? c == 2519 - : c <= 2525) - : (c <= 2531 || (c < 2556 - ? (c >= 2534 && c <= 2545) - : c <= 2556))))))) - : (c <= 2558 || (c < 2635 - ? (c < 2610 - ? (c < 2575 - ? (c < 2565 - ? (c >= 2561 && c <= 2563) - : c <= 2570) - : (c <= 2576 || (c < 2602 - ? (c >= 2579 && c <= 2600) - : c <= 2608))) - : (c <= 2611 || (c < 2620 - ? (c < 2616 - ? (c >= 2613 && c <= 2614) - : c <= 2617) - : (c <= 2620 || (c < 2631 - ? (c >= 2622 && c <= 2626) - : c <= 2632))))) - : (c <= 2637 || (c < 2693 - ? (c < 2654 - ? (c < 2649 - ? c == 2641 - : c <= 2652) - : (c <= 2654 || (c < 2689 - ? (c >= 2662 && c <= 2677) - : c <= 2691))) - : (c <= 2701 || (c < 2730 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : c <= 2728) - : (c <= 2736 || (c < 2741 + : (c <= 1969 || (c >= 1984 && c <= 2037))))))))) + : (c <= 2042 || (c < 2534 + ? (c < 2447 + ? (c < 2230 + ? (c < 2112 + ? (c < 2048 + ? c == 2045 + : c <= 2093) + : (c <= 2139 || (c < 2208 + ? (c >= 2144 && c <= 2154) + : c <= 2228))) + : (c <= 2247 || (c < 2406 + ? (c < 2275 + ? (c >= 2259 && c <= 2273) + : c <= 2403) + : (c <= 2415 || (c < 2437 + ? (c >= 2417 && c <= 2435) + : c <= 2444))))) + : (c <= 2448 || (c < 2503 + ? (c < 2482 + ? (c < 2474 + ? (c >= 2451 && c <= 2472) + : c <= 2480) + : (c <= 2482 || (c < 2492 + ? (c >= 2486 && c <= 2489) + : c <= 2500))) + : (c <= 2504 || (c < 2524 + ? (c < 2519 + ? (c >= 2507 && c <= 2510) + : c <= 2519) + : (c <= 2525 || (c >= 2527 && c <= 2531))))))) + : (c <= 2545 || (c < 2622 + ? (c < 2579 + ? (c < 2561 + ? (c < 2558 + ? c == 2556 + : c <= 2558) + : (c <= 2563 || (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576))) + : (c <= 2600 || (c < 2613 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611) + : (c <= 2614 || (c < 2620 + ? (c >= 2616 && c <= 2617) + : c <= 2620))))) + : (c <= 2626 || (c < 2662 + ? (c < 2641 + ? (c < 2635 + ? (c >= 2631 && c <= 2632) + : c <= 2637) + : (c <= 2641 || (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654))) + : (c <= 2677 || (c < 2703 + ? (c < 2693 + ? (c >= 2689 && c <= 2691) + : c <= 2701) + : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) + : (c <= 2736 || (c < 3142 + ? (c < 2918 + ? (c < 2831 + ? (c < 2768 + ? (c < 2748 + ? (c < 2741 ? (c >= 2738 && c <= 2739) - : c <= 2745))))))))))) - : (c <= 2757 || (c < 3168 - ? (c < 2958 - ? (c < 2866 - ? (c < 2809 - ? (c < 2768 - ? (c < 2763 + : c <= 2745) + : (c <= 2757 || (c < 2763 ? (c >= 2759 && c <= 2761) - : c <= 2765) - : (c <= 2768 || (c < 2790 + : c <= 2765))) + : (c <= 2768 || (c < 2809 + ? (c < 2790 ? (c >= 2784 && c <= 2787) - : c <= 2799))) - : (c <= 2815 || (c < 2831 - ? (c < 2821 + : c <= 2799) + : (c <= 2815 || (c < 2821 ? (c >= 2817 && c <= 2819) - : c <= 2828) - : (c <= 2832 || (c < 2858 + : c <= 2828))))) + : (c <= 2832 || (c < 2887 + ? (c < 2866 + ? (c < 2858 ? (c >= 2835 && c <= 2856) - : c <= 2864))))) - : (c <= 2867 || (c < 2908 - ? (c < 2887 - ? (c < 2876 + : c <= 2864) + : (c <= 2867 || (c < 2876 ? (c >= 2869 && c <= 2873) - : c <= 2884) - : (c <= 2888 || (c < 2901 + : c <= 2884))) + : (c <= 2888 || (c < 2908 + ? (c < 2901 ? (c >= 2891 && c <= 2893) - : c <= 2903))) - : (c <= 2909 || (c < 2929 - ? (c < 2918 - ? (c >= 2911 && c <= 2915) - : c <= 2927) - : (c <= 2929 || (c < 2949 - ? (c >= 2946 && c <= 2947) - : c <= 2954))))))) - : (c <= 2960 || (c < 3031 - ? (c < 2984 - ? (c < 2972 - ? (c < 2969 - ? (c >= 2962 && c <= 2965) - : c <= 2970) - : (c <= 2972 || (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980))) - : (c <= 2986 || (c < 3014 - ? (c < 3006 - ? (c >= 2990 && c <= 3001) - : c <= 3010) - : (c <= 3016 || (c < 3024 - ? (c >= 3018 && c <= 3021) - : c <= 3024))))) - : (c <= 3031 || (c < 3132 - ? (c < 3086 - ? (c < 3072 - ? (c >= 3046 && c <= 3055) - : c <= 3084) - : (c <= 3088 || (c < 3114 - ? (c >= 3090 && c <= 3112) - : c <= 3129))) - : (c <= 3140 || (c < 3157 - ? (c < 3146 - ? (c >= 3142 && c <= 3144) - : c <= 3149) - : (c <= 3158 || (c < 3165 - ? (c >= 3160 && c <= 3162) - : c <= 3165))))))))) - : (c <= 3171 || (c < 3450 - ? (c < 3293 - ? (c < 3242 - ? (c < 3205 - ? (c < 3200 - ? (c >= 3174 && c <= 3183) - : c <= 3203) - : (c <= 3212 || (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240))) - : (c <= 3251 || (c < 3270 - ? (c < 3260 - ? (c >= 3253 && c <= 3257) - : c <= 3268) - : (c <= 3272 || (c < 3285 - ? (c >= 3274 && c <= 3277) - : c <= 3286))))) - : (c <= 3294 || (c < 3346 - ? (c < 3313 - ? (c < 3302 - ? (c >= 3296 && c <= 3299) - : c <= 3311) - : (c <= 3314 || (c < 3342 - ? (c >= 3328 && c <= 3340) - : c <= 3344))) - : (c <= 3396 || (c < 3412 - ? (c < 3402 - ? (c >= 3398 && c <= 3400) - : c <= 3406) - : (c <= 3415 || (c < 3430 - ? (c >= 3423 && c <= 3427) - : c <= 3439))))))) - : (c <= 3455 || (c < 3570 - ? (c < 3520 - ? (c < 3482 - ? (c < 3461 - ? (c >= 3457 && c <= 3459) - : c <= 3478) - : (c <= 3505 || (c < 3517 - ? (c >= 3507 && c <= 3515) - : c <= 3517))) - : (c <= 3526 || (c < 3542 - ? (c < 3535 - ? c == 3530 - : c <= 3540) - : (c <= 3542 || (c < 3558 - ? (c >= 3544 && c <= 3551) - : c <= 3567))))) - : (c <= 3571 || (c < 3718 - ? (c < 3664 - ? (c < 3648 - ? (c >= 3585 && c <= 3642) - : c <= 3662) - : (c <= 3673 || (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716))) - : (c <= 3722 || (c < 3751 + : c <= 2903) + : (c <= 2909 || (c >= 2911 && c <= 2915))))))) + : (c <= 2927 || (c < 3006 + ? (c < 2969 + ? (c < 2949 + ? (c < 2946 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c < 2962 + ? (c >= 2958 && c <= 2960) + : c <= 2965))) + : (c <= 2970 || (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))))) + : (c <= 3010 || (c < 3072 + ? (c < 3024 + ? (c < 3018 + ? (c >= 3014 && c <= 3016) + : c <= 3021) + : (c <= 3024 || (c < 3046 + ? c == 3031 + : c <= 3055))) + : (c <= 3084 || (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || (c >= 3133 && c <= 3140))))))))) + : (c <= 3144 || (c < 3398 + ? (c < 3260 + ? (c < 3200 + ? (c < 3160 + ? (c < 3157 + ? (c >= 3146 && c <= 3149) + : c <= 3158) + : (c <= 3162 || (c < 3174 + ? (c >= 3168 && c <= 3171) + : c <= 3183))) + : (c <= 3203 || (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257))))) + : (c <= 3268 || (c < 3302 + ? (c < 3285 + ? (c < 3274 + ? (c >= 3270 && c <= 3272) + : c <= 3277) + : (c <= 3286 || (c < 3296 + ? c == 3294 + : c <= 3299))) + : (c <= 3311 || (c < 3342 + ? (c < 3328 + ? (c >= 3313 && c <= 3314) + : c <= 3340) + : (c <= 3344 || (c >= 3346 && c <= 3396))))))) + : (c <= 3400 || (c < 3530 + ? (c < 3457 + ? (c < 3423 + ? (c < 3412 + ? (c >= 3402 && c <= 3406) + : c <= 3415) + : (c <= 3427 || (c < 3450 + ? (c >= 3430 && c <= 3439) + : c <= 3455))) + : (c <= 3459 || (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || (c < 3520 + ? c == 3517 + : c <= 3526))))) + : (c <= 3530 || (c < 3585 + ? (c < 3544 + ? (c < 3542 + ? (c >= 3535 && c <= 3540) + : c <= 3542) + : (c <= 3551 || (c < 3570 + ? (c >= 3558 && c <= 3567) + : c <= 3571))) + : (c <= 3642 || (c < 3713 + ? (c < 3664 + ? (c >= 3648 && c <= 3662) + : c <= 3673) + : (c <= 3714 || c == 3716)))))))))))) + : (c <= 3722 || (c < 7296 + ? (c < 5024 + ? (c < 4256 + ? (c < 3893 + ? (c < 3784 + ? (c < 3751 ? (c < 3749 ? (c >= 3724 && c <= 3747) : c <= 3749) - : (c <= 3773 || (c >= 3776 && c <= 3780))))))))))))) - : (c <= 3782 || (c < 8025 - ? (c < 5888 - ? (c < 4688 - ? (c < 3953 - ? (c < 3872 - ? (c < 3804 - ? (c < 3792 - ? (c >= 3784 && c <= 3789) - : c <= 3801) - : (c <= 3807 || (c < 3864 - ? c == 3840 - : c <= 3865))) - : (c <= 3881 || (c < 3897 - ? (c < 3895 - ? c == 3893 - : c <= 3895) - : (c <= 3897 || (c < 3913 - ? (c >= 3902 && c <= 3911) - : c <= 3948))))) - : (c <= 3972 || (c < 4256 - ? (c < 4038 - ? (c < 3993 - ? (c >= 3974 && c <= 3991) - : c <= 4028) - : (c <= 4038 || (c < 4176 - ? (c >= 4096 && c <= 4169) - : c <= 4253))) - : (c <= 4293 || (c < 4304 + : (c <= 3773 || (c < 3782 + ? (c >= 3776 && c <= 3780) + : c <= 3782))) + : (c <= 3789 || (c < 3840 + ? (c < 3804 + ? (c >= 3792 && c <= 3801) + : c <= 3807) + : (c <= 3840 || (c < 3872 + ? (c >= 3864 && c <= 3865) + : c <= 3881))))) + : (c <= 3893 || (c < 3974 + ? (c < 3902 + ? (c < 3897 + ? c == 3895 + : c <= 3897) + : (c <= 3911 || (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972))) + : (c <= 3991 || (c < 4096 + ? (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038) + : (c <= 4169 || (c >= 4176 && c <= 4253))))))) + : (c <= 4293 || (c < 4786 + ? (c < 4688 + ? (c < 4304 ? (c < 4301 ? c == 4295 : c <= 4301) : (c <= 4346 || (c < 4682 ? (c >= 4348 && c <= 4680) - : c <= 4685))))))) - : (c <= 4694 || (c < 4882 - ? (c < 4786 - ? (c < 4704 + : c <= 4685))) + : (c <= 4694 || (c < 4704 ? (c < 4698 ? c == 4696 : c <= 4701) : (c <= 4744 || (c < 4752 ? (c >= 4746 && c <= 4749) - : c <= 4784))) - : (c <= 4789 || (c < 4802 + : c <= 4784))))) + : (c <= 4789 || (c < 4882 + ? (c < 4802 ? (c < 4800 ? (c >= 4792 && c <= 4798) : c <= 4800) : (c <= 4805 || (c < 4824 ? (c >= 4808 && c <= 4822) - : c <= 4880))))) - : (c <= 4885 || (c < 5112 - ? (c < 4969 + : c <= 4880))) + : (c <= 4885 || (c < 4969 ? (c < 4957 ? (c >= 4888 && c <= 4954) : c <= 4959) - : (c <= 4977 || (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109))) - : (c <= 5117 || (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880))))))))) - : (c <= 5909 || (c < 6688 - ? (c < 6176 - ? (c < 6016 - ? (c < 5984 - ? (c < 5952 - ? (c >= 5919 && c <= 5940) - : c <= 5971) - : (c <= 5996 || (c < 6002 - ? (c >= 5998 && c <= 6000) - : c <= 6003))) - : (c <= 6099 || (c < 6112 - ? (c < 6108 - ? c == 6103 - : c <= 6109) - : (c <= 6121 || (c < 6159 - ? (c >= 6155 && c <= 6157) - : c <= 6169))))) - : (c <= 6264 || (c < 6470 - ? (c < 6400 - ? (c < 6320 - ? (c >= 6272 && c <= 6314) - : c <= 6389) - : (c <= 6430 || (c < 6448 + : (c <= 4977 || (c >= 4992 && c <= 5007))))))))) + : (c <= 5109 || (c < 6400 + ? (c < 5998 + ? (c < 5870 + ? (c < 5743 + ? (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740) + : (c <= 5759 || (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866))) + : (c <= 5880 || (c < 5920 + ? (c < 5902 + ? (c >= 5888 && c <= 5900) + : c <= 5908) + : (c <= 5940 || (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996))))) + : (c <= 6000 || (c < 6155 + ? (c < 6103 + ? (c < 6016 + ? (c >= 6002 && c <= 6003) + : c <= 6099) + : (c <= 6103 || (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121))) + : (c <= 6157 || (c < 6272 + ? (c < 6176 + ? (c >= 6160 && c <= 6169) + : c <= 6264) + : (c <= 6314 || (c >= 6320 && c <= 6389))))))) + : (c <= 6430 || (c < 6800 + ? (c < 6576 + ? (c < 6470 + ? (c < 6448 ? (c >= 6432 && c <= 6443) - : c <= 6459))) - : (c <= 6509 || (c < 6576 - ? (c < 6528 + : c <= 6459) + : (c <= 6509 || (c < 6528 ? (c >= 6512 && c <= 6516) - : c <= 6571) - : (c <= 6601 || (c < 6656 + : c <= 6571))) + : (c <= 6601 || (c < 6688 + ? (c < 6656 ? (c >= 6608 && c <= 6618) - : c <= 6683))))))) - : (c <= 6750 || (c < 7232 - ? (c < 6847 - ? (c < 6800 - ? (c < 6783 + : c <= 6683) + : (c <= 6750 || (c < 6783 ? (c >= 6752 && c <= 6780) - : c <= 6793) - : (c <= 6809 || (c < 6832 + : c <= 6793))))) + : (c <= 6809 || (c < 7019 + ? (c < 6847 + ? (c < 6832 ? c == 6823 - : c <= 6845))) - : (c <= 6862 || (c < 7019 - ? (c < 6992 - ? (c >= 6912 && c <= 6988) - : c <= 7001) - : (c <= 7027 || (c < 7168 + : c <= 6845) + : (c <= 6848 || (c < 6992 + ? (c >= 6912 && c <= 6987) + : c <= 7001))) + : (c <= 7027 || (c < 7232 + ? (c < 7168 ? (c >= 7040 && c <= 7155) - : c <= 7223))))) - : (c <= 7241 || (c < 7380 - ? (c < 7312 - ? (c < 7296 - ? (c >= 7245 && c <= 7293) - : c <= 7304) - : (c <= 7354 || (c < 7376 - ? (c >= 7357 && c <= 7359) - : c <= 7378))) - : (c <= 7418 || (c < 7968 - ? (c < 7960 - ? (c >= 7424 && c <= 7957) - : c <= 7965) - : (c <= 8005 || (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023))))))))))) - : (c <= 8025 || (c < 11720 - ? (c < 8458 - ? (c < 8178 - ? (c < 8126 - ? (c < 8031 - ? (c < 8029 - ? c == 8027 - : c <= 8029) - : (c <= 8061 || (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124))) - : (c <= 8126 || (c < 8144 - ? (c < 8134 - ? (c >= 8130 && c <= 8132) - : c <= 8140) - : (c <= 8147 || (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172))))) - : (c <= 8180 || (c < 8336 + : c <= 7223) + : (c <= 7241 || (c >= 7245 && c <= 7293))))))))))) + : (c <= 7304 || (c < 11264 + ? (c < 8178 + ? (c < 8027 + ? (c < 7675 + ? (c < 7376 + ? (c < 7357 + ? (c >= 7312 && c <= 7354) + : c <= 7359) + : (c <= 7378 || (c < 7424 + ? (c >= 7380 && c <= 7418) + : c <= 7673))) + : (c <= 7957 || (c < 8008 + ? (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005) + : (c <= 8013 || (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025))))) + : (c <= 8027 || (c < 8130 + ? (c < 8064 + ? (c < 8031 + ? c == 8029 + : c <= 8061) + : (c <= 8116 || (c < 8126 + ? (c >= 8118 && c <= 8124) + : c <= 8126))) + : (c <= 8132 || (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c >= 8160 && c <= 8172))))))) + : (c <= 8180 || (c < 8458 + ? (c < 8336 ? (c < 8276 ? (c < 8255 ? (c >= 8182 && c <= 8188) @@ -9377,9 +9087,8 @@ static inline bool sym_identifier_character_set_7(int32_t c) { : c <= 8417) : (c <= 8432 || (c < 8455 ? c == 8450 - : c <= 8455))))))) - : (c <= 8467 || (c < 11499 - ? (c < 8490 + : c <= 8455))))) + : (c <= 8467 || (c < 8490 ? (c < 8484 ? (c < 8472 ? c == 8469 @@ -9391,563 +9100,518 @@ static inline bool sym_identifier_character_set_7(int32_t c) { ? (c < 8517 ? (c >= 8508 && c <= 8511) : c <= 8521) - : (c <= 8526 || (c < 11264 - ? (c >= 8544 && c <= 8584) - : c <= 11492))))) - : (c <= 11507 || (c < 11647 - ? (c < 11565 - ? (c < 11559 + : (c <= 8526 || (c >= 8544 && c <= 8584))))))))) + : (c <= 11310 || (c < 12353 + ? (c < 11696 + ? (c < 11565 + ? (c < 11499 + ? (c < 11360 + ? (c >= 11312 && c <= 11358) + : c <= 11492) + : (c <= 11507 || (c < 11559 ? (c >= 11520 && c <= 11557) - : c <= 11559) - : (c <= 11565 || (c < 11631 + : c <= 11559))) + : (c <= 11565 || (c < 11647 + ? (c < 11631 ? (c >= 11568 && c <= 11623) - : c <= 11631))) - : (c <= 11670 || (c < 11696 - ? (c < 11688 + : c <= 11631) + : (c <= 11670 || (c < 11688 ? (c >= 11680 && c <= 11686) - : c <= 11694) - : (c <= 11702 || (c < 11712 + : c <= 11694))))) + : (c <= 11702 || (c < 11744 + ? (c < 11720 + ? (c < 11712 ? (c >= 11704 && c <= 11710) - : c <= 11718))))))))) - : (c <= 11726 || (c < 42623 - ? (c < 12540 - ? (c < 12337 - ? (c < 11744 - ? (c < 11736 + : c <= 11718) + : (c <= 11726 || (c < 11736 ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 11775 || (c < 12321 + : c <= 11742))) + : (c <= 11775 || (c < 12337 + ? (c < 12321 ? (c >= 12293 && c <= 12295) - : c <= 12335))) - : (c <= 12341 || (c < 12441 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12442 || (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538))))) - : (c <= 12543 || (c < 19968 - ? (c < 12704 - ? (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686) - : (c <= 12735 || (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903))) - : (c <= 42124 || (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42539 || (c < 42612 - ? (c >= 42560 && c <= 42607) - : c <= 42621))))))) - : (c <= 42737 || (c < 43232 - ? (c < 42965 - ? (c < 42891 - ? (c < 42786 - ? (c >= 42775 && c <= 42783) - : c <= 42888) - : (c <= 42954 || (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963))) - : (c <= 42969 || (c < 43072 - ? (c < 43052 - ? (c >= 42994 && c <= 43047) - : c <= 43052) - : (c <= 43123 || (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225))))) - : (c <= 43255 || (c < 43471 - ? (c < 43312 - ? (c < 43261 - ? c == 43259 - : c <= 43309) - : (c <= 43347 || (c < 43392 - ? (c >= 43360 && c <= 43388) - : c <= 43456))) - : (c <= 43481 || (c < 43584 - ? (c < 43520 - ? (c >= 43488 && c <= 43518) - : c <= 43574) - : (c <= 43597 || (c >= 43600 && c <= 43609))))))))))))))) - : (c <= 43638 || (c < 71453 - ? (c < 67639 - ? (c < 65345 - ? (c < 64312 - ? (c < 43888 - ? (c < 43785 - ? (c < 43744 - ? (c < 43739 + : c <= 12335) + : (c <= 12341 || (c >= 12344 && c <= 12348))))))) + : (c <= 12438 || (c < 42192 + ? (c < 12593 + ? (c < 12449 + ? (c < 12445 + ? (c >= 12441 && c <= 12442) + : c <= 12447) + : (c <= 12538 || (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591))) + : (c <= 12686 || (c < 13312 + ? (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799) + : (c <= 19903 || (c < 40960 + ? (c >= 19968 && c <= 40956) + : c <= 42124))))) + : (c <= 42237 || (c < 42775 + ? (c < 42560 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42539) + : (c <= 42607 || (c < 42623 + ? (c >= 42612 && c <= 42621) + : c <= 42737))) + : (c <= 42783 || (c < 42946 + ? (c < 42891 + ? (c >= 42786 && c <= 42888) + : c <= 42943) + : (c <= 42954 || (c >= 42997 && c <= 43047))))))))))))))) + : (c <= 43052 || (c < 71096 + ? (c < 66864 + ? (c < 64914 + ? (c < 43816 + ? (c < 43520 + ? (c < 43261 + ? (c < 43216 + ? (c < 43136 + ? (c >= 43072 && c <= 43123) + : c <= 43205) + : (c <= 43225 || (c < 43259 + ? (c >= 43232 && c <= 43255) + : c <= 43259))) + : (c <= 43309 || (c < 43392 + ? (c < 43360 + ? (c >= 43312 && c <= 43347) + : c <= 43388) + : (c <= 43456 || (c < 43488 + ? (c >= 43471 && c <= 43481) + : c <= 43518))))) + : (c <= 43574 || (c < 43744 + ? (c < 43616 + ? (c < 43600 + ? (c >= 43584 && c <= 43597) + : c <= 43609) + : (c <= 43638 || (c < 43739 ? (c >= 43642 && c <= 43714) - : c <= 43741) - : (c <= 43759 || (c < 43777 + : c <= 43741))) + : (c <= 43759 || (c < 43785 + ? (c < 43777 ? (c >= 43762 && c <= 43766) - : c <= 43782))) - : (c <= 43790 || (c < 43816 - ? (c < 43808 + : c <= 43782) + : (c <= 43790 || (c < 43808 ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c < 43868 + : c <= 43814))))))) + : (c <= 43822 || (c < 64275 + ? (c < 44032 + ? (c < 43888 + ? (c < 43868 ? (c >= 43824 && c <= 43866) - : c <= 43881))))) - : (c <= 44010 || (c < 63744 - ? (c < 44032 - ? (c < 44016 + : c <= 43881) + : (c <= 44010 || (c < 44016 ? (c >= 44012 && c <= 44013) - : c <= 44025) - : (c <= 55203 || (c < 55243 + : c <= 44025))) + : (c <= 55203 || (c < 63744 + ? (c < 55243 ? (c >= 55216 && c <= 55238) - : c <= 55291))) - : (c <= 64109 || (c < 64275 - ? (c < 64256 + : c <= 55291) + : (c <= 64109 || (c < 64256 ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || (c < 64298 + : c <= 64262))))) + : (c <= 64279 || (c < 64323 + ? (c < 64312 + ? (c < 64298 ? (c >= 64285 && c <= 64296) - : c <= 64310))))))) - : (c <= 64316 || (c < 65075 - ? (c < 64612 - ? (c < 64323 - ? (c < 64320 + : c <= 64310) + : (c <= 64316 || (c < 64320 ? c == 64318 - : c <= 64321) - : (c <= 64324 || (c < 64467 + : c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 ? (c >= 64326 && c <= 64433) - : c <= 64605))) - : (c <= 64829 || (c < 65008 - ? (c < 64914 - ? (c >= 64848 && c <= 64911) - : c <= 64967) - : (c <= 65017 || (c < 65056 - ? (c >= 65024 && c <= 65039) - : c <= 65071))))) - : (c <= 65076 || (c < 65147 - ? (c < 65139 - ? (c < 65137 - ? (c >= 65101 && c <= 65103) - : c <= 65137) - : (c <= 65139 || (c < 65145 - ? c == 65143 - : c <= 65145))) - : (c <= 65147 || (c < 65296 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65305 || (c < 65343 - ? (c >= 65313 && c <= 65338) - : c <= 65343))))))))) - : (c <= 65370 || (c < 66513 - ? (c < 65664 - ? (c < 65536 - ? (c < 65482 - ? (c < 65474 - ? (c >= 65382 && c <= 65470) - : c <= 65479) - : (c <= 65487 || (c < 65498 - ? (c >= 65490 && c <= 65495) - : c <= 65500))) - : (c <= 65547 || (c < 65596 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : c <= 65594) - : (c <= 65597 || (c < 65616 - ? (c >= 65599 && c <= 65613) - : c <= 65629))))) - : (c <= 65786 || (c < 66304 - ? (c < 66176 - ? (c < 66045 - ? (c >= 65856 && c <= 65908) - : c <= 66045) - : (c <= 66204 || (c < 66272 - ? (c >= 66208 && c <= 66256) - : c <= 66272))) - : (c <= 66335 || (c < 66432 - ? (c < 66384 - ? (c >= 66349 && c <= 66378) - : c <= 66426) - : (c <= 66461 || (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511))))))) - : (c <= 66517 || (c < 66979 - ? (c < 66864 - ? (c < 66736 - ? (c < 66720 - ? (c >= 66560 && c <= 66717) - : c <= 66729) - : (c <= 66771 || (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855))) - : (c <= 66915 || (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))))) - : (c <= 66993 || (c < 67456 - ? (c < 67072 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004) - : (c <= 67382 || (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431))) - : (c <= 67461 || (c < 67584 - ? (c < 67506 - ? (c >= 67463 && c <= 67504) - : c <= 67514) - : (c <= 67589 || (c < 67594 - ? c == 67592 - : c <= 67637))))))))))) - : (c <= 67640 || (c < 69956 - ? (c < 68448 - ? (c < 68101 - ? (c < 67828 - ? (c < 67680 - ? (c < 67647 - ? c == 67644 - : c <= 67669) - : (c <= 67702 || (c < 67808 - ? (c >= 67712 && c <= 67742) - : c <= 67826))) - : (c <= 67829 || (c < 67968 - ? (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897) - : (c <= 68023 || (c < 68096 - ? (c >= 68030 && c <= 68031) - : c <= 68099))))) - : (c <= 68102 || (c < 68192 - ? (c < 68121 - ? (c < 68117 - ? (c >= 68108 && c <= 68115) - : c <= 68119) - : (c <= 68149 || (c < 68159 - ? (c >= 68152 && c <= 68154) - : c <= 68159))) - : (c <= 68220 || (c < 68297 - ? (c < 68288 - ? (c >= 68224 && c <= 68252) - : c <= 68295) - : (c <= 68326 || (c < 68416 - ? (c >= 68352 && c <= 68405) - : c <= 68437))))))) - : (c <= 68466 || (c < 69424 - ? (c < 68912 - ? (c < 68736 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : c <= 68680) - : (c <= 68786 || (c < 68864 - ? (c >= 68800 && c <= 68850) - : c <= 68903))) - : (c <= 68921 || (c < 69296 - ? (c < 69291 - ? (c >= 69248 && c <= 69289) - : c <= 69292) - : (c <= 69297 || (c < 69415 - ? (c >= 69376 && c <= 69404) - : c <= 69415))))) - : (c <= 69456 || (c < 69759 - ? (c < 69600 - ? (c < 69552 - ? (c >= 69488 && c <= 69509) - : c <= 69572) - : (c <= 69622 || (c < 69734 - ? (c >= 69632 && c <= 69702) - : c <= 69749))) - : (c <= 69818 || (c < 69872 - ? (c < 69840 - ? c == 69826 - : c <= 69864) - : (c <= 69881 || (c < 69942 - ? (c >= 69888 && c <= 69940) - : c <= 69951))))))))) - : (c <= 69959 || (c < 70459 - ? (c < 70282 - ? (c < 70108 - ? (c < 70016 - ? (c < 70006 - ? (c >= 69968 && c <= 70003) - : c <= 70006) - : (c <= 70084 || (c < 70094 - ? (c >= 70089 && c <= 70092) - : c <= 70106))) - : (c <= 70108 || (c < 70206 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70199) - : (c <= 70206 || (c < 70280 - ? (c >= 70272 && c <= 70278) - : c <= 70280))))) - : (c <= 70285 || (c < 70405 - ? (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70378 || (c < 70400 - ? (c >= 70384 && c <= 70393) - : c <= 70403))) - : (c <= 70412 || (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c < 70453 - ? (c >= 70450 && c <= 70451) - : c <= 70457))))))) - : (c <= 70468 || (c < 70855 - ? (c < 70502 - ? (c < 70480 - ? (c < 70475 - ? (c >= 70471 && c <= 70472) - : c <= 70477) - : (c <= 70480 || (c < 70493 - ? c == 70487 - : c <= 70499))) - : (c <= 70508 || (c < 70736 - ? (c < 70656 - ? (c >= 70512 && c <= 70516) - : c <= 70730) - : (c <= 70745 || (c < 70784 - ? (c >= 70750 && c <= 70753) - : c <= 70853))))) - : (c <= 70855 || (c < 71236 - ? (c < 71096 - ? (c < 71040 - ? (c >= 70864 && c <= 70873) - : c <= 71093) - : (c <= 71104 || (c < 71168 + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65549 + ? (c < 65151 + ? (c < 65137 + ? (c < 65056 + ? (c < 65024 + ? (c >= 65008 && c <= 65017) + : c <= 65039) + : (c <= 65071 || (c < 65101 + ? (c >= 65075 && c <= 65076) + : c <= 65103))) + : (c <= 65137 || (c < 65145 + ? (c < 65143 + ? c == 65139 + : c <= 65143) + : (c <= 65145 || (c < 65149 + ? c == 65147 + : c <= 65149))))) + : (c <= 65276 || (c < 65474 + ? (c < 65343 + ? (c < 65313 + ? (c >= 65296 && c <= 65305) + : c <= 65338) + : (c <= 65343 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65470))) + : (c <= 65479 || (c < 65498 + ? (c < 65490 + ? (c >= 65482 && c <= 65487) + : c <= 65495) + : (c <= 65500 || (c >= 65536 && c <= 65547))))))) + : (c <= 65574 || (c < 66349 + ? (c < 65856 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786))) + : (c <= 65908 || (c < 66208 + ? (c < 66176 + ? c == 66045 + : c <= 66204) + : (c <= 66256 || (c < 66304 + ? c == 66272 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66426) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66776 + ? (c < 66736 + ? (c >= 66720 && c <= 66729) + : c <= 66771) + : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) + : (c <= 66915 || (c < 69632 + ? (c < 68152 + ? (c < 67808 + ? (c < 67594 + ? (c < 67424 + ? (c < 67392 + ? (c >= 67072 && c <= 67382) + : c <= 67413) + : (c <= 67431 || (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592))) + : (c <= 67637 || (c < 67647 + ? (c < 67644 + ? (c >= 67639 && c <= 67640) + : c <= 67644) + : (c <= 67669 || (c < 67712 + ? (c >= 67680 && c <= 67702) + : c <= 67742))))) + : (c <= 67826 || (c < 68096 + ? (c < 67872 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : c <= 67861) + : (c <= 67897 || (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031))) + : (c <= 68099 || (c < 68117 + ? (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115) + : (c <= 68119 || (c >= 68121 && c <= 68149))))))) + : (c <= 68154 || (c < 68800 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 + ? c == 68159 + : c <= 68220) + : (c <= 68252 || (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68326))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 + ? (c >= 68416 && c <= 68437) + : c <= 68466) + : (c <= 68497 || (c < 68736 + ? (c >= 68608 && c <= 68680) + : c <= 68786))))) + : (c <= 68850 || (c < 69376 + ? (c < 69248 + ? (c < 68912 + ? (c >= 68864 && c <= 68903) + : c <= 68921) + : (c <= 69289 || (c < 69296 + ? (c >= 69291 && c <= 69292) + : c <= 69297))) + : (c <= 69404 || (c < 69552 + ? (c < 69424 + ? c == 69415 + : c <= 69456) + : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) + : (c <= 69702 || (c < 70384 + ? (c < 70094 + ? (c < 69942 + ? (c < 69840 + ? (c < 69759 + ? (c >= 69734 && c <= 69743) + : c <= 69818) + : (c <= 69864 || (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940))) + : (c <= 69951 || (c < 70006 + ? (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003) + : (c <= 70006 || (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092))))) + : (c <= 70106 || (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70199 || (c < 70272 + ? c == 70206 + : c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70378))))))) + : (c <= 70393 || (c < 70487 + ? (c < 70450 + ? (c < 70415 + ? (c < 70405 + ? (c >= 70400 && c <= 70403) + : c <= 70412) + : (c <= 70416 || (c < 70442 + ? (c >= 70419 && c <= 70440) + : c <= 70448))) + : (c <= 70451 || (c < 70471 + ? (c < 70459 + ? (c >= 70453 && c <= 70457) + : c <= 70468) + : (c <= 70472 || (c < 70480 + ? (c >= 70475 && c <= 70477) + : c <= 70480))))) + : (c <= 70487 || (c < 70750 + ? (c < 70512 + ? (c < 70502 + ? (c >= 70493 && c <= 70499) + : c <= 70508) + : (c <= 70516 || (c < 70736 + ? (c >= 70656 && c <= 70730) + : c <= 70745))) + : (c <= 70753 || (c < 70864 + ? (c < 70855 + ? (c >= 70784 && c <= 70853) + : c <= 70855) + : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) + : (c <= 71104 || (c < 119894 + ? (c < 73104 + ? (c < 72163 + ? (c < 71935 + ? (c < 71360 + ? (c < 71236 + ? (c < 71168 ? (c >= 71128 && c <= 71133) - : c <= 71232))) - : (c <= 71236 || (c < 71360 - ? (c < 71296 + : c <= 71232) + : (c <= 71236 || (c < 71296 ? (c >= 71248 && c <= 71257) - : c <= 71352) - : (c <= 71369 || (c >= 71424 && c <= 71450))))))))))))) - : (c <= 71467 || (c < 119973 - ? (c < 77824 - ? (c < 72760 - ? (c < 72016 - ? (c < 71945 - ? (c < 71680 - ? (c < 71488 - ? (c >= 71472 && c <= 71481) - : c <= 71494) - : (c <= 71738 || (c < 71935 - ? (c >= 71840 && c <= 71913) - : c <= 71942))) - : (c <= 71945 || (c < 71960 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958) - : (c <= 71989 || (c < 71995 - ? (c >= 71991 && c <= 71992) - : c <= 72003))))) - : (c <= 72025 || (c < 72263 - ? (c < 72154 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72151) - : (c <= 72161 || (c < 72192 - ? (c >= 72163 && c <= 72164) - : c <= 72254))) - : (c <= 72263 || (c < 72368 - ? (c < 72349 - ? (c >= 72272 && c <= 72345) - : c <= 72349) - : (c <= 72440 || (c < 72714 - ? (c >= 72704 && c <= 72712) - : c <= 72758))))))) - : (c <= 72768 || (c < 73056 - ? (c < 72968 - ? (c < 72850 - ? (c < 72818 - ? (c >= 72784 && c <= 72793) - : c <= 72847) - : (c <= 72871 || (c < 72960 - ? (c >= 72873 && c <= 72886) - : c <= 72966))) - : (c <= 72969 || (c < 73020 - ? (c < 73018 - ? (c >= 72971 && c <= 73014) - : c <= 73018) - : (c <= 73021 || (c < 73040 - ? (c >= 73023 && c <= 73031) - : c <= 73049))))) - : (c <= 73061 || (c < 73440 - ? (c < 73104 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73102) - : (c <= 73105 || (c < 73120 + : c <= 71352))) + : (c <= 71369 || (c < 71472 + ? (c < 71453 + ? (c >= 71424 && c <= 71450) + : c <= 71467) + : (c <= 71481 || (c < 71840 + ? (c >= 71680 && c <= 71738) + : c <= 71913))))) + : (c <= 71942 || (c < 71995 + ? (c < 71957 + ? (c < 71948 + ? c == 71945 + : c <= 71955) + : (c <= 71958 || (c < 71991 + ? (c >= 71960 && c <= 71989) + : c <= 71992))) + : (c <= 72003 || (c < 72106 + ? (c < 72096 + ? (c >= 72016 && c <= 72025) + : c <= 72103) + : (c <= 72151 || (c >= 72154 && c <= 72161))))))) + : (c <= 72164 || (c < 72873 + ? (c < 72704 + ? (c < 72272 + ? (c < 72263 + ? (c >= 72192 && c <= 72254) + : c <= 72263) + : (c <= 72345 || (c < 72384 + ? c == 72349 + : c <= 72440))) + : (c <= 72712 || (c < 72784 + ? (c < 72760 + ? (c >= 72714 && c <= 72758) + : c <= 72768) + : (c <= 72793 || (c < 72850 + ? (c >= 72818 && c <= 72847) + : c <= 72871))))) + : (c <= 72886 || (c < 73023 + ? (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73014 || (c < 73020 + ? c == 73018 + : c <= 73021))) + : (c <= 73031 || (c < 73063 + ? (c < 73056 + ? (c >= 73040 && c <= 73049) + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) + : (c <= 73105 || (c < 94095 + ? (c < 92768 + ? (c < 74752 + ? (c < 73440 + ? (c < 73120 ? (c >= 73107 && c <= 73112) - : c <= 73129))) - : (c <= 73462 || (c < 74752 - ? (c < 73728 + : c <= 73129) + : (c <= 73462 || (c < 73728 ? c == 73648 - : c <= 74649) - : (c <= 74862 || (c < 77712 + : c <= 74649))) + : (c <= 74862 || (c < 82944 + ? (c < 77824 ? (c >= 74880 && c <= 75075) - : c <= 77808))))))))) - : (c <= 78894 || (c < 110576 - ? (c < 93027 - ? (c < 92864 - ? (c < 92736 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : c <= 92728) - : (c <= 92766 || (c < 92784 - ? (c >= 92768 && c <= 92777) - : c <= 92862))) - : (c <= 92873 || (c < 92928 + : c <= 78894) + : (c <= 83526 || (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766))))) + : (c <= 92777 || (c < 93027 + ? (c < 92928 ? (c < 92912 ? (c >= 92880 && c <= 92909) : c <= 92916) : (c <= 92982 || (c < 93008 ? (c >= 92992 && c <= 92995) - : c <= 93017))))) - : (c <= 93047 || (c < 94176 - ? (c < 93952 + : c <= 93017))) + : (c <= 93047 || (c < 93952 ? (c < 93760 ? (c >= 93053 && c <= 93071) : c <= 93823) - : (c <= 94026 || (c < 94095 - ? (c >= 94031 && c <= 94087) - : c <= 94111))) - : (c <= 94177 || (c < 94208 - ? (c < 94192 - ? (c >= 94179 && c <= 94180) - : c <= 94193) - : (c <= 100343 || (c < 101632 - ? (c >= 100352 && c <= 101589) - : c <= 101640))))))) - : (c <= 110579 || (c < 118528 - ? (c < 110960 - ? (c < 110592 - ? (c < 110589 - ? (c >= 110581 && c <= 110587) - : c <= 110590) - : (c <= 110882 || (c < 110948 - ? (c >= 110928 && c <= 110930) - : c <= 110951))) - : (c <= 111355 || (c < 113792 - ? (c < 113776 - ? (c >= 113664 && c <= 113770) - : c <= 113788) - : (c <= 113800 || (c < 113821 - ? (c >= 113808 && c <= 113817) - : c <= 113822))))) - : (c <= 118573 || (c < 119210 - ? (c < 119149 - ? (c < 119141 - ? (c >= 118576 && c <= 118598) - : c <= 119145) - : (c <= 119154 || (c < 119173 - ? (c >= 119163 && c <= 119170) - : c <= 119179))) - : (c <= 119213 || (c < 119894 - ? (c < 119808 - ? (c >= 119362 && c <= 119364) - : c <= 119892) - : (c <= 119964 || (c < 119970 + : (c <= 94026 || (c >= 94031 && c <= 94087))))))) + : (c <= 94111 || (c < 113776 + ? (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110948 + ? (c < 110928 + ? (c >= 110592 && c <= 110878) + : c <= 110930) + : (c <= 110951 || (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770))))) + : (c <= 113788 || (c < 119163 + ? (c < 113821 + ? (c < 113808 + ? (c >= 113792 && c <= 113800) + : c <= 113817) + : (c <= 113822 || (c < 119149 + ? (c >= 119141 && c <= 119145) + : c <= 119154))) + : (c <= 119170 || (c < 119362 + ? (c < 119210 + ? (c >= 119173 && c <= 119179) + : c <= 119213) + : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 124928 + ? (c < 120630 + ? (c < 120094 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 ? (c >= 119966 && c <= 119967) - : c <= 119970))))))))))) - : (c <= 119974 || (c < 124912 - ? (c < 120746 - ? (c < 120134 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 + : c <= 119970) + : (c <= 119974 || (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 + : c <= 120069) + : (c <= 120074 || (c < 120086 ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c < 120128 + : c <= 120092))))) + : (c <= 120121 || (c < 120488 + ? (c < 120134 + ? (c < 120128 ? (c >= 120123 && c <= 120126) - : c <= 120132))))) - : (c <= 120134 || (c < 120572 - ? (c < 120488 - ? (c < 120146 + : c <= 120132) + : (c <= 120134 || (c < 120146 ? (c >= 120138 && c <= 120144) - : c <= 120485) - : (c <= 120512 || (c < 120540 + : c <= 120485))) + : (c <= 120512 || (c < 120572 + ? (c < 120540 ? (c >= 120514 && c <= 120538) - : c <= 120570))) - : (c <= 120596 || (c < 120656 - ? (c < 120630 - ? (c >= 120598 && c <= 120628) - : c <= 120654) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))))))) - : (c <= 120770 || (c < 122907 - ? (c < 121476 - ? (c < 121344 - ? (c < 120782 - ? (c >= 120772 && c <= 120779) - : c <= 120831) - : (c <= 121398 || (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461))) - : (c <= 121476 || (c < 122624 - ? (c < 121505 - ? (c >= 121499 && c <= 121503) - : c <= 121519) - : (c <= 122654 || (c < 122888 + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))))))) + : (c <= 120654 || (c < 121505 + ? (c < 120782 + ? (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779))) + : (c <= 120831 || (c < 121461 + ? (c < 121403 + ? (c >= 121344 && c <= 121398) + : c <= 121452) + : (c <= 121461 || (c < 121499 + ? c == 121476 + : c <= 121503))))) + : (c <= 121519 || (c < 123136 + ? (c < 122907 + ? (c < 122888 ? (c >= 122880 && c <= 122886) - : c <= 122904))))) - : (c <= 122913 || (c < 123214 - ? (c < 123136 - ? (c < 122918 + : c <= 122904) + : (c <= 122913 || (c < 122918 ? (c >= 122915 && c <= 122916) - : c <= 122922) - : (c <= 123180 || (c < 123200 + : c <= 122922))) + : (c <= 123180 || (c < 123214 + ? (c < 123200 ? (c >= 123184 && c <= 123197) - : c <= 123209))) - : (c <= 123214 || (c < 124896 - ? (c < 123584 - ? (c >= 123536 && c <= 123566) - : c <= 123641) - : (c <= 124902 || (c < 124909 - ? (c >= 124904 && c <= 124907) - : c <= 124910))))))))) - : (c <= 124926 || (c < 126557 - ? (c < 126521 - ? (c < 126469 - ? (c < 125184 - ? (c < 125136 - ? (c >= 124928 && c <= 125124) - : c <= 125142) - : (c <= 125259 || (c < 126464 - ? (c >= 125264 && c <= 125273) - : c <= 126467))) - : (c <= 126495 || (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c < 126516 - ? (c >= 126505 && c <= 126514) - : c <= 126519))))) - : (c <= 126521 || (c < 126541 - ? (c < 126535 - ? (c < 126530 - ? c == 126523 - : c <= 126530) - : (c <= 126535 || (c < 126539 - ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126551 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548) - : (c <= 126551 || (c < 126555 - ? c == 126553 - : c <= 126555))))))) + : c <= 123209) + : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) + : (c <= 125124 || (c < 126557 + ? (c < 126523 + ? (c < 126497 + ? (c < 125264 + ? (c < 125184 + ? (c >= 125136 && c <= 125142) + : c <= 125259) + : (c <= 125273 || (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495))) + : (c <= 126498 || (c < 126505 + ? (c < 126503 + ? c == 126500 + : c <= 126503) + : (c <= 126514 || (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521))))) + : (c <= 126523 || (c < 126545 + ? (c < 126537 + ? (c < 126535 + ? c == 126530 + : c <= 126535) + : (c <= 126537 || (c < 126541 + ? c == 126539 + : c <= 126543))) + : (c <= 126546 || (c < 126553 + ? (c < 126551 + ? c == 126548 + : c <= 126551) + : (c <= 126553 || c == 126555)))))) : (c <= 126557 || (c < 126629 ? (c < 126580 ? (c < 126564 @@ -9969,8 +9633,8 @@ static inline bool sym_identifier_character_set_7(int32_t c) { ? (c < 130032 ? (c >= 126635 && c <= 126651) : c <= 130041) - : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177976) + : (c <= 173789 || (c < 177984 + ? (c >= 173824 && c <= 177972) : c <= 178205))) : (c <= 183969 || (c < 196608 ? (c < 194560 @@ -11997,7 +11661,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { } } -static const TSLexMode ts_lex_modes[STATE_COUNT] = { +static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 57, .external_lex_state = 2}, [2] = {.lex_state = 57, .external_lex_state = 2}, @@ -12042,8 +11706,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 56, .external_lex_state = 2}, + [44] = {.lex_state = 56, .external_lex_state = 2}, + [45] = {.lex_state = 5, .external_lex_state = 2}, [46] = {.lex_state = 5, .external_lex_state = 2}, [47] = {.lex_state = 56, .external_lex_state = 2}, [48] = {.lex_state = 5, .external_lex_state = 2}, @@ -12051,62 +11715,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [50] = {.lex_state = 5, .external_lex_state = 2}, [51] = {.lex_state = 5, .external_lex_state = 2}, [52] = {.lex_state = 5, .external_lex_state = 2}, - [53] = {.lex_state = 5, .external_lex_state = 2}, + [53] = {.lex_state = 56, .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 = 5, .external_lex_state = 2}, [59] = {.lex_state = 5, .external_lex_state = 2}, - [60] = {.lex_state = 56, .external_lex_state = 2}, + [60] = {.lex_state = 5, .external_lex_state = 2}, [61] = {.lex_state = 5, .external_lex_state = 2}, [62] = {.lex_state = 5, .external_lex_state = 2}, [63] = {.lex_state = 5, .external_lex_state = 2}, - [64] = {.lex_state = 56, .external_lex_state = 2}, + [64] = {.lex_state = 5, .external_lex_state = 2}, [65] = {.lex_state = 5, .external_lex_state = 2}, [66] = {.lex_state = 5, .external_lex_state = 2}, [67] = {.lex_state = 5, .external_lex_state = 2}, - [68] = {.lex_state = 5, .external_lex_state = 2}, + [68] = {.lex_state = 56, .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}, + [73] = {.lex_state = 5, .external_lex_state = 2}, [74] = {.lex_state = 5, .external_lex_state = 2}, - [75] = {.lex_state = 5, .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 = 56, .external_lex_state = 2}, + [75] = {.lex_state = 56, .external_lex_state = 2}, + [76] = {.lex_state = 56, .external_lex_state = 2}, + [77] = {.lex_state = 5, .external_lex_state = 2}, + [78] = {.lex_state = 56, .external_lex_state = 2}, + [79] = {.lex_state = 5, .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}, + [81] = {.lex_state = 5, .external_lex_state = 2}, + [82] = {.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 = 56, .external_lex_state = 2}, - [86] = {.lex_state = 5, .external_lex_state = 2}, + [85] = {.lex_state = 5, .external_lex_state = 2}, + [86] = {.lex_state = 56, .external_lex_state = 2}, [87] = {.lex_state = 5, .external_lex_state = 2}, [88] = {.lex_state = 5, .external_lex_state = 2}, [89] = {.lex_state = 5, .external_lex_state = 2}, [90] = {.lex_state = 5, .external_lex_state = 2}, [91] = {.lex_state = 5, .external_lex_state = 2}, - [92] = {.lex_state = 56, .external_lex_state = 2}, + [92] = {.lex_state = 5, .external_lex_state = 2}, [93] = {.lex_state = 5, .external_lex_state = 2}, - [94] = {.lex_state = 5, .external_lex_state = 2}, - [95] = {.lex_state = 56, .external_lex_state = 2}, + [94] = {.lex_state = 56, .external_lex_state = 2}, + [95] = {.lex_state = 5, .external_lex_state = 2}, [96] = {.lex_state = 56, .external_lex_state = 2}, - [97] = {.lex_state = 5, .external_lex_state = 2}, + [97] = {.lex_state = 56, .external_lex_state = 2}, [98] = {.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 = 56, .external_lex_state = 2}, + [101] = {.lex_state = 56, .external_lex_state = 2}, + [102] = {.lex_state = 5, .external_lex_state = 2}, [103] = {.lex_state = 5, .external_lex_state = 2}, - [104] = {.lex_state = 5, .external_lex_state = 2}, + [104] = {.lex_state = 56, .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 = 56, .external_lex_state = 2}, + [108] = {.lex_state = 5, .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}, @@ -12115,25 +11779,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [114] = {.lex_state = 5, .external_lex_state = 2}, [115] = {.lex_state = 5, .external_lex_state = 2}, [116] = {.lex_state = 5, .external_lex_state = 2}, - [117] = {.lex_state = 5, .external_lex_state = 2}, + [117] = {.lex_state = 56, .external_lex_state = 2}, [118] = {.lex_state = 5, .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 = 56, .external_lex_state = 2}, + [123] = {.lex_state = 5, .external_lex_state = 2}, [124] = {.lex_state = 5, .external_lex_state = 2}, [125] = {.lex_state = 5, .external_lex_state = 2}, - [126] = {.lex_state = 56, .external_lex_state = 2}, + [126] = {.lex_state = 5, .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 = 56, .external_lex_state = 2}, + [131] = {.lex_state = 5, .external_lex_state = 2}, [132] = {.lex_state = 5, .external_lex_state = 2}, [133] = {.lex_state = 5, .external_lex_state = 2}, [134] = {.lex_state = 5, .external_lex_state = 2}, - [135] = {.lex_state = 56, .external_lex_state = 2}, + [135] = {.lex_state = 5, .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}, @@ -12146,39 +11810,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 56, .external_lex_state = 2}, + [148] = {.lex_state = 5, .external_lex_state = 2}, [149] = {.lex_state = 56, .external_lex_state = 2}, - [150] = {.lex_state = 5, .external_lex_state = 2}, + [150] = {.lex_state = 56, .external_lex_state = 2}, [151] = {.lex_state = 5, .external_lex_state = 2}, [152] = {.lex_state = 5, .external_lex_state = 2}, - [153] = {.lex_state = 5, .external_lex_state = 2}, + [153] = {.lex_state = 56, .external_lex_state = 2}, [154] = {.lex_state = 5, .external_lex_state = 2}, [155] = {.lex_state = 5, .external_lex_state = 2}, - [156] = {.lex_state = 5, .external_lex_state = 2}, + [156] = {.lex_state = 56, .external_lex_state = 2}, [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 = 56, .external_lex_state = 2}, + [160] = {.lex_state = 5, .external_lex_state = 2}, [161] = {.lex_state = 5, .external_lex_state = 2}, [162] = {.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 = 56, .external_lex_state = 2}, + [163] = {.lex_state = 5, .external_lex_state = 2}, + [164] = {.lex_state = 56, .external_lex_state = 2}, + [165] = {.lex_state = 56, .external_lex_state = 2}, + [166] = {.lex_state = 5, .external_lex_state = 2}, [167] = {.lex_state = 5, .external_lex_state = 2}, [168] = {.lex_state = 5, .external_lex_state = 2}, [169] = {.lex_state = 5, .external_lex_state = 2}, [170] = {.lex_state = 5, .external_lex_state = 2}, [171] = {.lex_state = 5, .external_lex_state = 2}, [172] = {.lex_state = 5, .external_lex_state = 2}, - [173] = {.lex_state = 56, .external_lex_state = 2}, - [174] = {.lex_state = 5, .external_lex_state = 2}, + [173] = {.lex_state = 5, .external_lex_state = 2}, + [174] = {.lex_state = 56, .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 = 56, .external_lex_state = 2}, - [179] = {.lex_state = 5, .external_lex_state = 2}, - [180] = {.lex_state = 5, .external_lex_state = 2}, + [179] = {.lex_state = 56, .external_lex_state = 2}, + [180] = {.lex_state = 56, .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}, @@ -12221,25 +11885,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [220] = {.lex_state = 1, .external_lex_state = 2}, [221] = {.lex_state = 1, .external_lex_state = 2}, [222] = {.lex_state = 1, .external_lex_state = 2}, - [223] = {.lex_state = 5, .external_lex_state = 2}, + [223] = {.lex_state = 1, .external_lex_state = 2}, [224] = {.lex_state = 1, .external_lex_state = 2}, [225] = {.lex_state = 1, .external_lex_state = 2}, [226] = {.lex_state = 1, .external_lex_state = 2}, - [227] = {.lex_state = 1, .external_lex_state = 2}, + [227] = {.lex_state = 5, .external_lex_state = 2}, [228] = {.lex_state = 5, .external_lex_state = 2}, - [229] = {.lex_state = 5, .external_lex_state = 2}, + [229] = {.lex_state = 1, .external_lex_state = 2}, [230] = {.lex_state = 1, .external_lex_state = 2}, [231] = {.lex_state = 1, .external_lex_state = 2}, [232] = {.lex_state = 1, .external_lex_state = 2}, - [233] = {.lex_state = 5, .external_lex_state = 2}, + [233] = {.lex_state = 1, .external_lex_state = 2}, [234] = {.lex_state = 1, .external_lex_state = 2}, [235] = {.lex_state = 1, .external_lex_state = 2}, [236] = {.lex_state = 1, .external_lex_state = 2}, [237] = {.lex_state = 1, .external_lex_state = 2}, [238] = {.lex_state = 1, .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}, + [240] = {.lex_state = 5, .external_lex_state = 2}, + [241] = {.lex_state = 5, .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}, @@ -12249,9 +11913,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [251] = {.lex_state = 4, .external_lex_state = 3}, [252] = {.lex_state = 4, .external_lex_state = 3}, - [253] = {.lex_state = 4, .external_lex_state = 3}, + [253] = {.lex_state = 12, .external_lex_state = 2}, [254] = {.lex_state = 57, .external_lex_state = 2}, [255] = {.lex_state = 57, .external_lex_state = 2}, [256] = {.lex_state = 57, .external_lex_state = 2}, @@ -12270,7 +11934,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [269] = {.lex_state = 57, .external_lex_state = 2}, [270] = {.lex_state = 57, .external_lex_state = 2}, [271] = {.lex_state = 57, .external_lex_state = 2}, - [272] = {.lex_state = 57, .external_lex_state = 2}, + [272] = {.lex_state = 5, .external_lex_state = 2}, [273] = {.lex_state = 57, .external_lex_state = 2}, [274] = {.lex_state = 57, .external_lex_state = 2}, [275] = {.lex_state = 57, .external_lex_state = 2}, @@ -12278,8 +11942,8 @@ 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 = 5, .external_lex_state = 2}, - [281] = {.lex_state = 57, .external_lex_state = 2}, + [280] = {.lex_state = 57, .external_lex_state = 2}, + [281] = {.lex_state = 12, .external_lex_state = 2}, [282] = {.lex_state = 57, .external_lex_state = 2}, [283] = {.lex_state = 57, .external_lex_state = 2}, [284] = {.lex_state = 57, .external_lex_state = 2}, @@ -12379,13 +12043,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [378] = {.lex_state = 57, .external_lex_state = 2}, [379] = {.lex_state = 57, .external_lex_state = 2}, [380] = {.lex_state = 57, .external_lex_state = 2}, - [381] = {.lex_state = 57, .external_lex_state = 2}, + [381] = {.lex_state = 5, .external_lex_state = 2}, [382] = {.lex_state = 57, .external_lex_state = 2}, [383] = {.lex_state = 57, .external_lex_state = 2}, [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 = 5, .external_lex_state = 2}, + [387] = {.lex_state = 57, .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}, @@ -12480,7 +12144,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [482] = {.lex_state = 57, .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}, @@ -12488,8 +12152,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [487] = {.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 = 5, .external_lex_state = 2}, + [490] = {.lex_state = 5, .external_lex_state = 2}, + [491] = {.lex_state = 12, .external_lex_state = 2}, [492] = {.lex_state = 12, .external_lex_state = 2}, [493] = {.lex_state = 12, .external_lex_state = 2}, [494] = {.lex_state = 12, .external_lex_state = 2}, @@ -12498,7 +12162,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 5, .external_lex_state = 2}, + [500] = {.lex_state = 12, .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}, @@ -12513,7 +12177,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [512] = {.lex_state = 12, .external_lex_state = 2}, [513] = {.lex_state = 12, .external_lex_state = 2}, [514] = {.lex_state = 12, .external_lex_state = 2}, - [515] = {.lex_state = 12, .external_lex_state = 2}, + [515] = {.lex_state = 5, .external_lex_state = 2}, [516] = {.lex_state = 12, .external_lex_state = 2}, [517] = {.lex_state = 12, .external_lex_state = 2}, [518] = {.lex_state = 12, .external_lex_state = 2}, @@ -12531,62 +12195,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 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}, + [533] = {.lex_state = 12, .external_lex_state = 2}, + [534] = {.lex_state = 12, .external_lex_state = 2}, + [535] = {.lex_state = 12, .external_lex_state = 2}, + [536] = {.lex_state = 12, .external_lex_state = 2}, + [537] = {.lex_state = 12, .external_lex_state = 2}, + [538] = {.lex_state = 12, .external_lex_state = 2}, + [539] = {.lex_state = 12, .external_lex_state = 2}, + [540] = {.lex_state = 12, .external_lex_state = 2}, + [541] = {.lex_state = 12, .external_lex_state = 2}, + [542] = {.lex_state = 12, .external_lex_state = 2}, + [543] = {.lex_state = 12, .external_lex_state = 2}, + [544] = {.lex_state = 12, .external_lex_state = 2}, + [545] = {.lex_state = 12, .external_lex_state = 2}, + [546] = {.lex_state = 5, .external_lex_state = 2}, + [547] = {.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}, + [549] = {.lex_state = 7, .external_lex_state = 3}, + [550] = {.lex_state = 7, .external_lex_state = 3}, + [551] = {.lex_state = 7, .external_lex_state = 3}, + [552] = {.lex_state = 7, .external_lex_state = 3}, [553] = {.lex_state = 7, .external_lex_state = 3}, - [554] = {.lex_state = 12, .external_lex_state = 2}, - [555] = {.lex_state = 12, .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}, + [554] = {.lex_state = 7, .external_lex_state = 3}, + [555] = {.lex_state = 7, .external_lex_state = 3}, + [556] = {.lex_state = 11, .external_lex_state = 2}, + [557] = {.lex_state = 7, .external_lex_state = 3}, + [558] = {.lex_state = 7, .external_lex_state = 3}, + [559] = {.lex_state = 5, .external_lex_state = 2}, + [560] = {.lex_state = 7, .external_lex_state = 3}, [561] = {.lex_state = 12, .external_lex_state = 2}, - [562] = {.lex_state = 12, .external_lex_state = 2}, + [562] = {.lex_state = 5, .external_lex_state = 2}, [563] = {.lex_state = 5, .external_lex_state = 2}, - [564] = {.lex_state = 12, .external_lex_state = 2}, + [564] = {.lex_state = 5, .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 = 5, .external_lex_state = 2}, - [569] = {.lex_state = 5, .external_lex_state = 2}, - [570] = {.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 = 7, .external_lex_state = 3}, - [574] = {.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 = 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 = 7, .external_lex_state = 3}, + [567] = {.lex_state = 12, .external_lex_state = 2}, + [568] = {.lex_state = 12, .external_lex_state = 2}, + [569] = {.lex_state = 12, .external_lex_state = 2}, + [570] = {.lex_state = 12, .external_lex_state = 2}, + [571] = {.lex_state = 12, .external_lex_state = 2}, + [572] = {.lex_state = 12, .external_lex_state = 2}, + [573] = {.lex_state = 12, .external_lex_state = 2}, + [574] = {.lex_state = 12, .external_lex_state = 2}, + [575] = {.lex_state = 12, .external_lex_state = 2}, + [576] = {.lex_state = 12, .external_lex_state = 2}, + [577] = {.lex_state = 12, .external_lex_state = 2}, + [578] = {.lex_state = 12, .external_lex_state = 2}, + [579] = {.lex_state = 12, .external_lex_state = 2}, + [580] = {.lex_state = 12, .external_lex_state = 2}, + [581] = {.lex_state = 12, .external_lex_state = 2}, [582] = {.lex_state = 5, .external_lex_state = 2}, - [583] = {.lex_state = 7, .external_lex_state = 3}, - [584] = {.lex_state = 5, .external_lex_state = 2}, - [585] = {.lex_state = 5, .external_lex_state = 2}, + [583] = {.lex_state = 5, .external_lex_state = 2}, + [584] = {.lex_state = 7, .external_lex_state = 3}, + [585] = {.lex_state = 7, .external_lex_state = 3}, [586] = {.lex_state = 5, .external_lex_state = 2}, [587] = {.lex_state = 5, .external_lex_state = 2}, - [588] = {.lex_state = 5, .external_lex_state = 2}, + [588] = {.lex_state = 7, .external_lex_state = 3}, [589] = {.lex_state = 5, .external_lex_state = 2}, [590] = {.lex_state = 5, .external_lex_state = 2}, [591] = {.lex_state = 7, .external_lex_state = 3}, @@ -12594,7 +12258,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [596] = {.lex_state = 7, .external_lex_state = 3}, [597] = {.lex_state = 5, .external_lex_state = 2}, [598] = {.lex_state = 5, .external_lex_state = 2}, [599] = {.lex_state = 5, .external_lex_state = 2}, @@ -12604,29 +12268,29 @@ 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 = 7, .external_lex_state = 3}, - [607] = {.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 = 5, .external_lex_state = 2}, - [609] = {.lex_state = 5, .external_lex_state = 2}, + [609] = {.lex_state = 7, .external_lex_state = 3}, [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}, - [617] = {.lex_state = 7, .external_lex_state = 3}, - [618] = {.lex_state = 7, .external_lex_state = 3}, - [619] = {.lex_state = 7, .external_lex_state = 3}, - [620] = {.lex_state = 7, .external_lex_state = 3}, - [621] = {.lex_state = 7, .external_lex_state = 3}, - [622] = {.lex_state = 7, .external_lex_state = 3}, - [623] = {.lex_state = 7, .external_lex_state = 3}, - [624] = {.lex_state = 7, .external_lex_state = 3}, - [625] = {.lex_state = 7, .external_lex_state = 3}, - [626] = {.lex_state = 7, .external_lex_state = 3}, - [627] = {.lex_state = 7, .external_lex_state = 3}, - [628] = {.lex_state = 7, .external_lex_state = 3}, + [615] = {.lex_state = 5, .external_lex_state = 2}, + [616] = {.lex_state = 5, .external_lex_state = 2}, + [617] = {.lex_state = 5, .external_lex_state = 2}, + [618] = {.lex_state = 5, .external_lex_state = 2}, + [619] = {.lex_state = 5, .external_lex_state = 2}, + [620] = {.lex_state = 5, .external_lex_state = 2}, + [621] = {.lex_state = 5, .external_lex_state = 2}, + [622] = {.lex_state = 5, .external_lex_state = 2}, + [623] = {.lex_state = 5, .external_lex_state = 2}, + [624] = {.lex_state = 5, .external_lex_state = 2}, + [625] = {.lex_state = 5, .external_lex_state = 2}, + [626] = {.lex_state = 5, .external_lex_state = 2}, + [627] = {.lex_state = 5, .external_lex_state = 2}, + [628] = {.lex_state = 5, .external_lex_state = 2}, [629] = {.lex_state = 7, .external_lex_state = 3}, [630] = {.lex_state = 7, .external_lex_state = 3}, [631] = {.lex_state = 7, .external_lex_state = 3}, @@ -12662,7 +12326,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 = 5, .external_lex_state = 2}, + [664] = {.lex_state = 7, .external_lex_state = 3}, [665] = {.lex_state = 7, .external_lex_state = 3}, [666] = {.lex_state = 7, .external_lex_state = 3}, [667] = {.lex_state = 7, .external_lex_state = 3}, @@ -12692,7 +12356,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [691] = {.lex_state = 7, .external_lex_state = 3}, [692] = {.lex_state = 7, .external_lex_state = 3}, [693] = {.lex_state = 7, .external_lex_state = 3}, - [694] = {.lex_state = 7, .external_lex_state = 3}, + [694] = {.lex_state = 5, .external_lex_state = 2}, [695] = {.lex_state = 7, .external_lex_state = 3}, [696] = {.lex_state = 7, .external_lex_state = 3}, [697] = {.lex_state = 7, .external_lex_state = 3}, @@ -12736,77 +12400,77 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 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 = 3, .external_lex_state = 3}, - [751] = {.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 = 4, .external_lex_state = 3}, - [755] = {.lex_state = 4, .external_lex_state = 3}, - [756] = {.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 = 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}, + [738] = {.lex_state = 7, .external_lex_state = 3}, + [739] = {.lex_state = 7, .external_lex_state = 3}, + [740] = {.lex_state = 7, .external_lex_state = 3}, + [741] = {.lex_state = 7, .external_lex_state = 3}, + [742] = {.lex_state = 7, .external_lex_state = 3}, + [743] = {.lex_state = 7, .external_lex_state = 3}, + [744] = {.lex_state = 7, .external_lex_state = 3}, + [745] = {.lex_state = 7, .external_lex_state = 3}, + [746] = {.lex_state = 7, .external_lex_state = 3}, + [747] = {.lex_state = 7, .external_lex_state = 3}, + [748] = {.lex_state = 7, .external_lex_state = 3}, + [749] = {.lex_state = 7, .external_lex_state = 3}, + [750] = {.lex_state = 7, .external_lex_state = 3}, + [751] = {.lex_state = 7, .external_lex_state = 3}, + [752] = {.lex_state = 7, .external_lex_state = 3}, + [753] = {.lex_state = 5, .external_lex_state = 2}, + [754] = {.lex_state = 5, .external_lex_state = 2}, + [755] = {.lex_state = 5, .external_lex_state = 2}, + [756] = {.lex_state = 5, .external_lex_state = 2}, + [757] = {.lex_state = 6, .external_lex_state = 2}, + [758] = {.lex_state = 3, .external_lex_state = 3}, + [759] = {.lex_state = 3, .external_lex_state = 3}, + [760] = {.lex_state = 3, .external_lex_state = 3}, + [761] = {.lex_state = 4, .external_lex_state = 3}, + [762] = {.lex_state = 4, .external_lex_state = 3}, + [763] = {.lex_state = 3, .external_lex_state = 3}, + [764] = {.lex_state = 4, .external_lex_state = 3}, + [765] = {.lex_state = 4, .external_lex_state = 3}, + [766] = {.lex_state = 3, .external_lex_state = 3}, [767] = {.lex_state = 2, .external_lex_state = 3}, - [768] = {.lex_state = 4, .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 = 2, .external_lex_state = 3}, + [768] = {.lex_state = 3, .external_lex_state = 3}, + [769] = {.lex_state = 3, .external_lex_state = 3}, + [770] = {.lex_state = 3, .external_lex_state = 3}, + [771] = {.lex_state = 3, .external_lex_state = 3}, + [772] = {.lex_state = 4, .external_lex_state = 3}, [773] = {.lex_state = 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}, + [774] = {.lex_state = 3, .external_lex_state = 3}, + [775] = {.lex_state = 2, .external_lex_state = 3}, + [776] = {.lex_state = 2, .external_lex_state = 3}, + [777] = {.lex_state = 2, .external_lex_state = 3}, [778] = {.lex_state = 2, .external_lex_state = 3}, - [779] = {.lex_state = 4, .external_lex_state = 3}, - [780] = {.lex_state = 4, .external_lex_state = 3}, - [781] = {.lex_state = 4, .external_lex_state = 3}, - [782] = {.lex_state = 4, .external_lex_state = 3}, + [779] = {.lex_state = 2, .external_lex_state = 3}, + [780] = {.lex_state = 2, .external_lex_state = 3}, + [781] = {.lex_state = 2, .external_lex_state = 3}, + [782] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, + [786] = {.lex_state = 4, .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 = 2, .external_lex_state = 3}, + [790] = {.lex_state = 4, .external_lex_state = 3}, [791] = {.lex_state = 4, .external_lex_state = 3}, - [792] = {.lex_state = 10, .external_lex_state = 3}, + [792] = {.lex_state = 4, .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 = 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}, + [798] = {.lex_state = 2, .external_lex_state = 3}, + [799] = {.lex_state = 4, .external_lex_state = 3}, [800] = {.lex_state = 4, .external_lex_state = 3}, - [801] = {.lex_state = 4, .external_lex_state = 3}, - [802] = {.lex_state = 4, .external_lex_state = 3}, - [803] = {.lex_state = 2, .external_lex_state = 3}, - [804] = {.lex_state = 2, .external_lex_state = 3}, + [801] = {.lex_state = 2, .external_lex_state = 3}, + [802] = {.lex_state = 2, .external_lex_state = 3}, + [803] = {.lex_state = 10, .external_lex_state = 3}, + [804] = {.lex_state = 4, .external_lex_state = 3}, [805] = {.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 = 2, .external_lex_state = 3}, + [806] = {.lex_state = 4, .external_lex_state = 3}, + [807] = {.lex_state = 2, .external_lex_state = 3}, + [808] = {.lex_state = 4, .external_lex_state = 3}, [809] = {.lex_state = 4, .external_lex_state = 3}, [810] = {.lex_state = 4, .external_lex_state = 3}, [811] = {.lex_state = 4, .external_lex_state = 3}, @@ -12822,40 +12486,40 @@ 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 = 4, .external_lex_state = 3}, - [825] = {.lex_state = 4, .external_lex_state = 3}, + [824] = {.lex_state = 2, .external_lex_state = 3}, + [825] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, - [832] = {.lex_state = 4, .external_lex_state = 3}, + [832] = {.lex_state = 2, .external_lex_state = 3}, [833] = {.lex_state = 4, .external_lex_state = 3}, [834] = {.lex_state = 4, .external_lex_state = 3}, [835] = {.lex_state = 4, .external_lex_state = 3}, [836] = {.lex_state = 4, .external_lex_state = 3}, - [837] = {.lex_state = 4, .external_lex_state = 3}, - [838] = {.lex_state = 2, .external_lex_state = 3}, + [837] = {.lex_state = 2, .external_lex_state = 3}, + [838] = {.lex_state = 4, .external_lex_state = 3}, [839] = {.lex_state = 4, .external_lex_state = 3}, - [840] = {.lex_state = 4, .external_lex_state = 3}, + [840] = {.lex_state = 2, .external_lex_state = 3}, [841] = {.lex_state = 4, .external_lex_state = 3}, [842] = {.lex_state = 4, .external_lex_state = 3}, [843] = {.lex_state = 4, .external_lex_state = 3}, - [844] = {.lex_state = 4, .external_lex_state = 3}, + [844] = {.lex_state = 2, .external_lex_state = 3}, [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 = 2, .external_lex_state = 3}, + [848] = {.lex_state = 4, .external_lex_state = 3}, [849] = {.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}, + [852] = {.lex_state = 2, .external_lex_state = 3}, [853] = {.lex_state = 4, .external_lex_state = 3}, - [854] = {.lex_state = 4, .external_lex_state = 3}, - [855] = {.lex_state = 2, .external_lex_state = 3}, + [854] = {.lex_state = 2, .external_lex_state = 3}, + [855] = {.lex_state = 4, .external_lex_state = 3}, [856] = {.lex_state = 4, .external_lex_state = 3}, - [857] = {.lex_state = 2, .external_lex_state = 3}, + [857] = {.lex_state = 4, .external_lex_state = 3}, [858] = {.lex_state = 4, .external_lex_state = 3}, [859] = {.lex_state = 4, .external_lex_state = 3}, [860] = {.lex_state = 4, .external_lex_state = 3}, @@ -12863,38 +12527,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2, .external_lex_state = 3}, + [865] = {.lex_state = 4, .external_lex_state = 3}, [866] = {.lex_state = 2, .external_lex_state = 3}, [867] = {.lex_state = 4, .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 = 2, .external_lex_state = 3}, + [872] = {.lex_state = 4, .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 = 4, .external_lex_state = 3}, - [878] = {.lex_state = 4, .external_lex_state = 3}, + [878] = {.lex_state = 2, .external_lex_state = 3}, [879] = {.lex_state = 4, .external_lex_state = 3}, - [880] = {.lex_state = 2, .external_lex_state = 3}, + [880] = {.lex_state = 4, .external_lex_state = 3}, [881] = {.lex_state = 4, .external_lex_state = 3}, [882] = {.lex_state = 4, .external_lex_state = 3}, [883] = {.lex_state = 4, .external_lex_state = 3}, [884] = {.lex_state = 2, .external_lex_state = 3}, [885] = {.lex_state = 4, .external_lex_state = 3}, - [886] = {.lex_state = 2, .external_lex_state = 3}, + [886] = {.lex_state = 4, .external_lex_state = 3}, [887] = {.lex_state = 4, .external_lex_state = 3}, [888] = {.lex_state = 4, .external_lex_state = 3}, [889] = {.lex_state = 4, .external_lex_state = 3}, [890] = {.lex_state = 4, .external_lex_state = 3}, [891] = {.lex_state = 4, .external_lex_state = 3}, [892] = {.lex_state = 4, .external_lex_state = 3}, - [893] = {.lex_state = 4, .external_lex_state = 3}, + [893] = {.lex_state = 2, .external_lex_state = 3}, [894] = {.lex_state = 4, .external_lex_state = 3}, [895] = {.lex_state = 4, .external_lex_state = 3}, - [896] = {.lex_state = 2, .external_lex_state = 3}, + [896] = {.lex_state = 4, .external_lex_state = 3}, [897] = {.lex_state = 4, .external_lex_state = 3}, [898] = {.lex_state = 4, .external_lex_state = 3}, [899] = {.lex_state = 4, .external_lex_state = 3}, @@ -12903,9 +12567,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [902] = {.lex_state = 4, .external_lex_state = 3}, [903] = {.lex_state = 4, .external_lex_state = 3}, [904] = {.lex_state = 4, .external_lex_state = 3}, - [905] = {.lex_state = 4, .external_lex_state = 3}, + [905] = {.lex_state = 2, .external_lex_state = 3}, [906] = {.lex_state = 4, .external_lex_state = 3}, - [907] = {.lex_state = 2, .external_lex_state = 3}, + [907] = {.lex_state = 4, .external_lex_state = 3}, [908] = {.lex_state = 4, .external_lex_state = 3}, [909] = {.lex_state = 4, .external_lex_state = 3}, [910] = {.lex_state = 4, .external_lex_state = 3}, @@ -12929,7 +12593,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 = 2, .external_lex_state = 3}, + [931] = {.lex_state = 4, .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,23 +12601,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [936] = {.lex_state = 4, .external_lex_state = 3}, [937] = {.lex_state = 4, .external_lex_state = 3}, [938] = {.lex_state = 4, .external_lex_state = 3}, - [939] = {.lex_state = 4, .external_lex_state = 3}, + [939] = {.lex_state = 2, .external_lex_state = 3}, [940] = {.lex_state = 4, .external_lex_state = 3}, [941] = {.lex_state = 4, .external_lex_state = 3}, - [942] = {.lex_state = 4, .external_lex_state = 3}, + [942] = {.lex_state = 2, .external_lex_state = 3}, [943] = {.lex_state = 4, .external_lex_state = 3}, [944] = {.lex_state = 4, .external_lex_state = 3}, [945] = {.lex_state = 4, .external_lex_state = 3}, - [946] = {.lex_state = 2, .external_lex_state = 3}, + [946] = {.lex_state = 4, .external_lex_state = 3}, [947] = {.lex_state = 4, .external_lex_state = 3}, [948] = {.lex_state = 4, .external_lex_state = 3}, [949] = {.lex_state = 4, .external_lex_state = 3}, - [950] = {.lex_state = 4, .external_lex_state = 3}, + [950] = {.lex_state = 2, .external_lex_state = 3}, [951] = {.lex_state = 4, .external_lex_state = 3}, [952] = {.lex_state = 4, .external_lex_state = 3}, [953] = {.lex_state = 4, .external_lex_state = 3}, [954] = {.lex_state = 4, .external_lex_state = 3}, - [955] = {.lex_state = 4, .external_lex_state = 3}, + [955] = {.lex_state = 2, .external_lex_state = 3}, [956] = {.lex_state = 4, .external_lex_state = 3}, [957] = {.lex_state = 4, .external_lex_state = 3}, [958] = {.lex_state = 4, .external_lex_state = 3}, @@ -12966,9 +12630,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [965] = {.lex_state = 4, .external_lex_state = 3}, [966] = {.lex_state = 4, .external_lex_state = 3}, [967] = {.lex_state = 4, .external_lex_state = 3}, - [968] = {.lex_state = 4, .external_lex_state = 3}, + [968] = {.lex_state = 2, .external_lex_state = 3}, [969] = {.lex_state = 4, .external_lex_state = 3}, - [970] = {.lex_state = 4, .external_lex_state = 3}, + [970] = {.lex_state = 2, .external_lex_state = 3}, [971] = {.lex_state = 4, .external_lex_state = 3}, [972] = {.lex_state = 4, .external_lex_state = 3}, [973] = {.lex_state = 4, .external_lex_state = 3}, @@ -12977,34 +12641,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [976] = {.lex_state = 4, .external_lex_state = 3}, [977] = {.lex_state = 4, .external_lex_state = 3}, [978] = {.lex_state = 4, .external_lex_state = 3}, - [979] = {.lex_state = 4, .external_lex_state = 3}, - [980] = {.lex_state = 4, .external_lex_state = 3}, + [979] = {.lex_state = 2, .external_lex_state = 3}, + [980] = {.lex_state = 2, .external_lex_state = 3}, [981] = {.lex_state = 4, .external_lex_state = 3}, [982] = {.lex_state = 4, .external_lex_state = 3}, [983] = {.lex_state = 4, .external_lex_state = 3}, [984] = {.lex_state = 4, .external_lex_state = 3}, - [985] = {.lex_state = 4, .external_lex_state = 3}, + [985] = {.lex_state = 2, .external_lex_state = 3}, [986] = {.lex_state = 4, .external_lex_state = 3}, - [987] = {.lex_state = 2, .external_lex_state = 3}, - [988] = {.lex_state = 4, .external_lex_state = 3}, + [987] = {.lex_state = 4, .external_lex_state = 3}, + [988] = {.lex_state = 2, .external_lex_state = 3}, [989] = {.lex_state = 2, .external_lex_state = 3}, - [990] = {.lex_state = 2, .external_lex_state = 3}, + [990] = {.lex_state = 4, .external_lex_state = 3}, [991] = {.lex_state = 4, .external_lex_state = 3}, [992] = {.lex_state = 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}, + [995] = {.lex_state = 3, .external_lex_state = 3}, [996] = {.lex_state = 4, .external_lex_state = 3}, [997] = {.lex_state = 4, .external_lex_state = 3}, [998] = {.lex_state = 4, .external_lex_state = 3}, - [999] = {.lex_state = 4, .external_lex_state = 3}, + [999] = {.lex_state = 2, .external_lex_state = 3}, [1000] = {.lex_state = 4, .external_lex_state = 3}, [1001] = {.lex_state = 4, .external_lex_state = 3}, [1002] = {.lex_state = 4, .external_lex_state = 3}, [1003] = {.lex_state = 4, .external_lex_state = 3}, - [1004] = {.lex_state = 4, .external_lex_state = 3}, + [1004] = {.lex_state = 2, .external_lex_state = 3}, [1005] = {.lex_state = 4, .external_lex_state = 3}, - [1006] = {.lex_state = 2, .external_lex_state = 3}, + [1006] = {.lex_state = 4, .external_lex_state = 3}, [1007] = {.lex_state = 4, .external_lex_state = 3}, [1008] = {.lex_state = 4, .external_lex_state = 3}, [1009] = {.lex_state = 4, .external_lex_state = 3}, @@ -13014,31 +12678,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1013] = {.lex_state = 4, .external_lex_state = 3}, [1014] = {.lex_state = 4, .external_lex_state = 3}, [1015] = {.lex_state = 4, .external_lex_state = 3}, - [1016] = {.lex_state = 2, .external_lex_state = 3}, - [1017] = {.lex_state = 2, .external_lex_state = 3}, + [1016] = {.lex_state = 4, .external_lex_state = 3}, + [1017] = {.lex_state = 4, .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}, + [1022] = {.lex_state = 4, .external_lex_state = 3}, [1023] = {.lex_state = 4, .external_lex_state = 3}, [1024] = {.lex_state = 4, .external_lex_state = 3}, [1025] = {.lex_state = 4, .external_lex_state = 3}, - [1026] = {.lex_state = 2, .external_lex_state = 3}, - [1027] = {.lex_state = 2, .external_lex_state = 3}, - [1028] = {.lex_state = 2, .external_lex_state = 3}, - [1029] = {.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}, - [1034] = {.lex_state = 2, .external_lex_state = 3}, - [1035] = {.lex_state = 2, .external_lex_state = 3}, - [1036] = {.lex_state = 2, .external_lex_state = 3}, - [1037] = {.lex_state = 2, .external_lex_state = 3}, - [1038] = {.lex_state = 2, .external_lex_state = 3}, - [1039] = {.lex_state = 2, .external_lex_state = 3}, - [1040] = {.lex_state = 2, .external_lex_state = 3}, + [1026] = {.lex_state = 4, .external_lex_state = 3}, + [1027] = {.lex_state = 4, .external_lex_state = 3}, + [1028] = {.lex_state = 4, .external_lex_state = 3}, + [1029] = {.lex_state = 4, .external_lex_state = 3}, + [1030] = {.lex_state = 4, .external_lex_state = 3}, + [1031] = {.lex_state = 4, .external_lex_state = 3}, + [1032] = {.lex_state = 4, .external_lex_state = 3}, + [1033] = {.lex_state = 4, .external_lex_state = 3}, + [1034] = {.lex_state = 4, .external_lex_state = 3}, + [1035] = {.lex_state = 4, .external_lex_state = 3}, + [1036] = {.lex_state = 4, .external_lex_state = 3}, + [1037] = {.lex_state = 4, .external_lex_state = 3}, + [1038] = {.lex_state = 4, .external_lex_state = 3}, + [1039] = {.lex_state = 4, .external_lex_state = 3}, + [1040] = {.lex_state = 4, .external_lex_state = 3}, [1041] = {.lex_state = 2, .external_lex_state = 3}, [1042] = {.lex_state = 2, .external_lex_state = 3}, [1043] = {.lex_state = 2, .external_lex_state = 3}, @@ -13052,50 +12716,50 @@ 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 = 7, .external_lex_state = 3}, + [1054] = {.lex_state = 2, .external_lex_state = 3}, [1055] = {.lex_state = 2, .external_lex_state = 3}, [1056] = {.lex_state = 2, .external_lex_state = 3}, [1057] = {.lex_state = 2, .external_lex_state = 3}, - [1058] = {.lex_state = 7, .external_lex_state = 3}, + [1058] = {.lex_state = 2, .external_lex_state = 3}, [1059] = {.lex_state = 2, .external_lex_state = 3}, [1060] = {.lex_state = 2, .external_lex_state = 3}, [1061] = {.lex_state = 2, .external_lex_state = 3}, [1062] = {.lex_state = 2, .external_lex_state = 3}, [1063] = {.lex_state = 2, .external_lex_state = 3}, - [1064] = {.lex_state = 7, .external_lex_state = 3}, + [1064] = {.lex_state = 2, .external_lex_state = 3}, [1065] = {.lex_state = 2, .external_lex_state = 3}, [1066] = {.lex_state = 2, .external_lex_state = 3}, [1067] = {.lex_state = 2, .external_lex_state = 3}, - [1068] = {.lex_state = 7, .external_lex_state = 3}, + [1068] = {.lex_state = 2, .external_lex_state = 3}, [1069] = {.lex_state = 2, .external_lex_state = 3}, - [1070] = {.lex_state = 2, .external_lex_state = 3}, + [1070] = {.lex_state = 5, .external_lex_state = 2}, [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 = 7, .external_lex_state = 3}, + [1074] = {.lex_state = 2, .external_lex_state = 3}, [1075] = {.lex_state = 2, .external_lex_state = 3}, - [1076] = {.lex_state = 7, .external_lex_state = 3}, - [1077] = {.lex_state = 7, .external_lex_state = 3}, + [1076] = {.lex_state = 2, .external_lex_state = 3}, + [1077] = {.lex_state = 2, .external_lex_state = 3}, [1078] = {.lex_state = 2, .external_lex_state = 3}, [1079] = {.lex_state = 2, .external_lex_state = 3}, [1080] = {.lex_state = 2, .external_lex_state = 3}, - [1081] = {.lex_state = 2, .external_lex_state = 3}, + [1081] = {.lex_state = 7, .external_lex_state = 3}, [1082] = {.lex_state = 2, .external_lex_state = 3}, [1083] = {.lex_state = 2, .external_lex_state = 3}, [1084] = {.lex_state = 2, .external_lex_state = 3}, [1085] = {.lex_state = 2, .external_lex_state = 3}, [1086] = {.lex_state = 2, .external_lex_state = 3}, - [1087] = {.lex_state = 7, .external_lex_state = 3}, + [1087] = {.lex_state = 2, .external_lex_state = 3}, [1088] = {.lex_state = 2, .external_lex_state = 3}, [1089] = {.lex_state = 2, .external_lex_state = 3}, - [1090] = {.lex_state = 5, .external_lex_state = 2}, + [1090] = {.lex_state = 2, .external_lex_state = 3}, [1091] = {.lex_state = 2, .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 = 7, .external_lex_state = 3}, - [1096] = {.lex_state = 2, .external_lex_state = 3}, - [1097] = {.lex_state = 2, .external_lex_state = 3}, + [1093] = {.lex_state = 7, .external_lex_state = 3}, + [1094] = {.lex_state = 7, .external_lex_state = 3}, + [1095] = {.lex_state = 2, .external_lex_state = 3}, + [1096] = {.lex_state = 7, .external_lex_state = 3}, + [1097] = {.lex_state = 5, .external_lex_state = 2}, [1098] = {.lex_state = 2, .external_lex_state = 3}, [1099] = {.lex_state = 2, .external_lex_state = 3}, [1100] = {.lex_state = 2, .external_lex_state = 3}, @@ -13112,33 +12776,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1111] = {.lex_state = 2, .external_lex_state = 3}, [1112] = {.lex_state = 2, .external_lex_state = 3}, [1113] = {.lex_state = 2, .external_lex_state = 3}, - [1114] = {.lex_state = 2, .external_lex_state = 3}, + [1114] = {.lex_state = 7, .external_lex_state = 3}, [1115] = {.lex_state = 2, .external_lex_state = 3}, [1116] = {.lex_state = 2, .external_lex_state = 3}, [1117] = {.lex_state = 2, .external_lex_state = 3}, - [1118] = {.lex_state = 2, .external_lex_state = 3}, + [1118] = {.lex_state = 7, .external_lex_state = 3}, [1119] = {.lex_state = 2, .external_lex_state = 3}, [1120] = {.lex_state = 2, .external_lex_state = 3}, - [1121] = {.lex_state = 2, .external_lex_state = 3}, - [1122] = {.lex_state = 2, .external_lex_state = 3}, + [1121] = {.lex_state = 7, .external_lex_state = 3}, + [1122] = {.lex_state = 7, .external_lex_state = 3}, [1123] = {.lex_state = 2, .external_lex_state = 3}, [1124] = {.lex_state = 2, .external_lex_state = 3}, [1125] = {.lex_state = 2, .external_lex_state = 3}, [1126] = {.lex_state = 2, .external_lex_state = 3}, [1127] = {.lex_state = 2, .external_lex_state = 3}, - [1128] = {.lex_state = 5, .external_lex_state = 2}, + [1128] = {.lex_state = 2, .external_lex_state = 3}, [1129] = {.lex_state = 2, .external_lex_state = 3}, [1130] = {.lex_state = 2, .external_lex_state = 3}, [1131] = {.lex_state = 2, .external_lex_state = 3}, [1132] = {.lex_state = 2, .external_lex_state = 3}, [1133] = {.lex_state = 2, .external_lex_state = 3}, [1134] = {.lex_state = 2, .external_lex_state = 3}, - [1135] = {.lex_state = 2, .external_lex_state = 3}, + [1135] = {.lex_state = 7, .external_lex_state = 3}, [1136] = {.lex_state = 2, .external_lex_state = 3}, [1137] = {.lex_state = 2, .external_lex_state = 3}, [1138] = {.lex_state = 2, .external_lex_state = 3}, [1139] = {.lex_state = 2, .external_lex_state = 3}, - [1140] = {.lex_state = 5, .external_lex_state = 2}, + [1140] = {.lex_state = 2, .external_lex_state = 3}, [1141] = {.lex_state = 2, .external_lex_state = 3}, [1142] = {.lex_state = 2, .external_lex_state = 3}, [1143] = {.lex_state = 2, .external_lex_state = 3}, @@ -13147,58 +12811,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 5, .external_lex_state = 2}, - [1153] = {.lex_state = 7, .external_lex_state = 3}, + [1149] = {.lex_state = 5, .external_lex_state = 2}, + [1150] = {.lex_state = 2, .external_lex_state = 3}, + [1151] = {.lex_state = 2, .external_lex_state = 3}, + [1152] = {.lex_state = 2, .external_lex_state = 3}, + [1153] = {.lex_state = 2, .external_lex_state = 3}, [1154] = {.lex_state = 2, .external_lex_state = 3}, - [1155] = {.lex_state = 7, .external_lex_state = 3}, - [1156] = {.lex_state = 7, .external_lex_state = 3}, - [1157] = {.lex_state = 7, .external_lex_state = 3}, - [1158] = {.lex_state = 7, .external_lex_state = 3}, + [1155] = {.lex_state = 2, .external_lex_state = 3}, + [1156] = {.lex_state = 5, .external_lex_state = 2}, + [1157] = {.lex_state = 2, .external_lex_state = 3}, + [1158] = {.lex_state = 2, .external_lex_state = 3}, [1159] = {.lex_state = 2, .external_lex_state = 3}, - [1160] = {.lex_state = 5, .external_lex_state = 2}, - [1161] = {.lex_state = 5, .external_lex_state = 2}, - [1162] = {.lex_state = 5, .external_lex_state = 2}, + [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 = 2, .external_lex_state = 3}, - [1164] = {.lex_state = 5, .external_lex_state = 2}, + [1164] = {.lex_state = 7, .external_lex_state = 3}, [1165] = {.lex_state = 7, .external_lex_state = 3}, [1166] = {.lex_state = 2, .external_lex_state = 3}, - [1167] = {.lex_state = 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}, + [1167] = {.lex_state = 7, .external_lex_state = 3}, + [1168] = {.lex_state = 7, .external_lex_state = 3}, + [1169] = {.lex_state = 7, .external_lex_state = 3}, + [1170] = {.lex_state = 7, .external_lex_state = 3}, [1171] = {.lex_state = 7, .external_lex_state = 3}, [1172] = {.lex_state = 7, .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}, + [1173] = {.lex_state = 5, .external_lex_state = 2}, + [1174] = {.lex_state = 2, .external_lex_state = 3}, + [1175] = {.lex_state = 5, .external_lex_state = 2}, [1176] = {.lex_state = 2, .external_lex_state = 3}, - [1177] = {.lex_state = 7, .external_lex_state = 3}, - [1178] = {.lex_state = 2, .external_lex_state = 3}, + [1177] = {.lex_state = 5, .external_lex_state = 2}, + [1178] = {.lex_state = 5, .external_lex_state = 2}, [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 = 7, .external_lex_state = 3}, + [1180] = {.lex_state = 2, .external_lex_state = 3}, + [1181] = {.lex_state = 7, .external_lex_state = 3}, + [1182] = {.lex_state = 2, .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}, + [1184] = {.lex_state = 7, .external_lex_state = 3}, + [1185] = {.lex_state = 7, .external_lex_state = 3}, + [1186] = {.lex_state = 5, .external_lex_state = 2}, + [1187] = {.lex_state = 7, .external_lex_state = 3}, [1188] = {.lex_state = 7, .external_lex_state = 3}, - [1189] = {.lex_state = 2, .external_lex_state = 3}, + [1189] = {.lex_state = 7, .external_lex_state = 3}, [1190] = {.lex_state = 2, .external_lex_state = 3}, [1191] = {.lex_state = 2, .external_lex_state = 3}, - [1192] = {.lex_state = 2, .external_lex_state = 3}, + [1192] = {.lex_state = 7, .external_lex_state = 3}, [1193] = {.lex_state = 2, .external_lex_state = 3}, [1194] = {.lex_state = 2, .external_lex_state = 3}, [1195] = {.lex_state = 2, .external_lex_state = 3}, - [1196] = {.lex_state = 2, .external_lex_state = 3}, + [1196] = {.lex_state = 7, .external_lex_state = 3}, [1197] = {.lex_state = 2, .external_lex_state = 3}, [1198] = {.lex_state = 2, .external_lex_state = 3}, [1199] = {.lex_state = 2, .external_lex_state = 3}, - [1200] = {.lex_state = 2, .external_lex_state = 3}, + [1200] = {.lex_state = 7, .external_lex_state = 3}, [1201] = {.lex_state = 2, .external_lex_state = 3}, [1202] = {.lex_state = 2, .external_lex_state = 3}, [1203] = {.lex_state = 2, .external_lex_state = 3}, @@ -13212,7 +12876,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1214] = {.lex_state = 7, .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}, @@ -13262,7 +12926,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 = 7, .external_lex_state = 3}, + [1264] = {.lex_state = 2, .external_lex_state = 3}, [1265] = {.lex_state = 2, .external_lex_state = 3}, [1266] = {.lex_state = 2, .external_lex_state = 3}, [1267] = {.lex_state = 2, .external_lex_state = 3}, @@ -13272,7 +12936,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1271] = {.lex_state = 2, .external_lex_state = 3}, [1272] = {.lex_state = 2, .external_lex_state = 3}, [1273] = {.lex_state = 2, .external_lex_state = 3}, - [1274] = {.lex_state = 7, .external_lex_state = 3}, + [1274] = {.lex_state = 2, .external_lex_state = 3}, [1275] = {.lex_state = 2, .external_lex_state = 3}, [1276] = {.lex_state = 2, .external_lex_state = 3}, [1277] = {.lex_state = 2, .external_lex_state = 3}, @@ -13294,89 +12958,89 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1296] = {.lex_state = 2, .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}, - [1301] = {.lex_state = 7, .external_lex_state = 3}, - [1302] = {.lex_state = 7, .external_lex_state = 3}, - [1303] = {.lex_state = 7, .external_lex_state = 3}, + [1298] = {.lex_state = 2, .external_lex_state = 3}, + [1299] = {.lex_state = 2, .external_lex_state = 3}, + [1300] = {.lex_state = 2, .external_lex_state = 3}, + [1301] = {.lex_state = 2, .external_lex_state = 3}, + [1302] = {.lex_state = 2, .external_lex_state = 3}, + [1303] = {.lex_state = 2, .external_lex_state = 3}, [1304] = {.lex_state = 7, .external_lex_state = 3}, - [1305] = {.lex_state = 7, .external_lex_state = 3}, - [1306] = {.lex_state = 7, .external_lex_state = 3}, - [1307] = {.lex_state = 7, .external_lex_state = 3}, - [1308] = {.lex_state = 7, .external_lex_state = 3}, - [1309] = {.lex_state = 7, .external_lex_state = 3}, - [1310] = {.lex_state = 7, .external_lex_state = 3}, + [1305] = {.lex_state = 2, .external_lex_state = 3}, + [1306] = {.lex_state = 2, .external_lex_state = 3}, + [1307] = {.lex_state = 2, .external_lex_state = 3}, + [1308] = {.lex_state = 2, .external_lex_state = 3}, + [1309] = {.lex_state = 2, .external_lex_state = 3}, + [1310] = {.lex_state = 2, .external_lex_state = 3}, [1311] = {.lex_state = 7, .external_lex_state = 3}, - [1312] = {.lex_state = 7, .external_lex_state = 3}, + [1312] = {.lex_state = 2, .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}, - [1320] = {.lex_state = 9, .external_lex_state = 3}, - [1321] = {.lex_state = 9, .external_lex_state = 3}, - [1322] = {.lex_state = 9, .external_lex_state = 3}, - [1323] = {.lex_state = 9, .external_lex_state = 3}, - [1324] = {.lex_state = 9, .external_lex_state = 3}, - [1325] = {.lex_state = 9, .external_lex_state = 3}, - [1326] = {.lex_state = 9, .external_lex_state = 3}, - [1327] = {.lex_state = 9, .external_lex_state = 3}, - [1328] = {.lex_state = 9, .external_lex_state = 3}, + [1315] = {.lex_state = 7, .external_lex_state = 3}, + [1316] = {.lex_state = 7, .external_lex_state = 3}, + [1317] = {.lex_state = 7, .external_lex_state = 3}, + [1318] = {.lex_state = 7, .external_lex_state = 3}, + [1319] = {.lex_state = 7, .external_lex_state = 3}, + [1320] = {.lex_state = 7, .external_lex_state = 3}, + [1321] = {.lex_state = 7, .external_lex_state = 3}, + [1322] = {.lex_state = 7, .external_lex_state = 3}, + [1323] = {.lex_state = 7, .external_lex_state = 3}, + [1324] = {.lex_state = 7, .external_lex_state = 3}, + [1325] = {.lex_state = 7, .external_lex_state = 3}, + [1326] = {.lex_state = 7, .external_lex_state = 3}, + [1327] = {.lex_state = 7, .external_lex_state = 3}, + [1328] = {.lex_state = 7, .external_lex_state = 3}, [1329] = {.lex_state = 7, .external_lex_state = 3}, [1330] = {.lex_state = 17, .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 = 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 = 7, .external_lex_state = 3}, + [1331] = {.lex_state = 17, .external_lex_state = 3}, + [1332] = {.lex_state = 9, .external_lex_state = 3}, + [1333] = {.lex_state = 9, .external_lex_state = 3}, + [1334] = {.lex_state = 9, .external_lex_state = 3}, + [1335] = {.lex_state = 9, .external_lex_state = 3}, + [1336] = {.lex_state = 9, .external_lex_state = 3}, + [1337] = {.lex_state = 9, .external_lex_state = 3}, + [1338] = {.lex_state = 9, .external_lex_state = 3}, + [1339] = {.lex_state = 9, .external_lex_state = 3}, + [1340] = {.lex_state = 9, .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 = 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 = 17, .external_lex_state = 3}, - [1350] = {.lex_state = 7, .external_lex_state = 3}, + [1342] = {.lex_state = 9, .external_lex_state = 3}, + [1343] = {.lex_state = 9, .external_lex_state = 3}, + [1344] = {.lex_state = 7, .external_lex_state = 3}, + [1345] = {.lex_state = 7, .external_lex_state = 3}, + [1346] = {.lex_state = 17, .external_lex_state = 3}, + [1347] = {.lex_state = 17, .external_lex_state = 3}, + [1348] = {.lex_state = 17, .external_lex_state = 3}, + [1349] = {.lex_state = 7, .external_lex_state = 3}, + [1350] = {.lex_state = 17, .external_lex_state = 3}, [1351] = {.lex_state = 7, .external_lex_state = 3}, - [1352] = {.lex_state = 7, .external_lex_state = 3}, + [1352] = {.lex_state = 9, .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}, + [1355] = {.lex_state = 7, .external_lex_state = 3}, + [1356] = {.lex_state = 7, .external_lex_state = 3}, [1357] = {.lex_state = 7, .external_lex_state = 3}, - [1358] = {.lex_state = 17, .external_lex_state = 3}, + [1358] = {.lex_state = 7, .external_lex_state = 3}, [1359] = {.lex_state = 7, .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}, + [1360] = {.lex_state = 7, .external_lex_state = 3}, + [1361] = {.lex_state = 17, .external_lex_state = 3}, + [1362] = {.lex_state = 7, .external_lex_state = 3}, + [1363] = {.lex_state = 9, .external_lex_state = 3}, + [1364] = {.lex_state = 9, .external_lex_state = 3}, + [1365] = {.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 = 7, .external_lex_state = 3}, - [1371] = {.lex_state = 17, .external_lex_state = 3}, - [1372] = {.lex_state = 17, .external_lex_state = 3}, + [1367] = {.lex_state = 7, .external_lex_state = 3}, + [1368] = {.lex_state = 7, .external_lex_state = 3}, + [1369] = {.lex_state = 17, .external_lex_state = 3}, + [1370] = {.lex_state = 17, .external_lex_state = 3}, + [1371] = {.lex_state = 9, .external_lex_state = 3}, + [1372] = {.lex_state = 7, .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}, + [1376] = {.lex_state = 7, .external_lex_state = 3}, [1377] = {.lex_state = 17, .external_lex_state = 3}, - [1378] = {.lex_state = 17, .external_lex_state = 3}, + [1378] = {.lex_state = 7, .external_lex_state = 3}, [1379] = {.lex_state = 17, .external_lex_state = 3}, [1380] = {.lex_state = 17, .external_lex_state = 3}, [1381] = {.lex_state = 17, .external_lex_state = 3}, @@ -13384,15 +13048,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1383] = {.lex_state = 17, .external_lex_state = 3}, [1384] = {.lex_state = 17, .external_lex_state = 3}, [1385] = {.lex_state = 17, .external_lex_state = 3}, - [1386] = {.lex_state = 17, .external_lex_state = 3}, + [1386] = {.lex_state = 7, .external_lex_state = 3}, [1387] = {.lex_state = 17, .external_lex_state = 3}, - [1388] = {.lex_state = 17, .external_lex_state = 3}, - [1389] = {.lex_state = 17, .external_lex_state = 3}, + [1388] = {.lex_state = 7, .external_lex_state = 3}, + [1389] = {.lex_state = 7, .external_lex_state = 3}, [1390] = {.lex_state = 17, .external_lex_state = 3}, [1391] = {.lex_state = 17, .external_lex_state = 3}, [1392] = {.lex_state = 17, .external_lex_state = 3}, [1393] = {.lex_state = 17, .external_lex_state = 3}, - [1394] = {.lex_state = 17, .external_lex_state = 3}, + [1394] = {.lex_state = 7, .external_lex_state = 3}, [1395] = {.lex_state = 17, .external_lex_state = 3}, [1396] = {.lex_state = 17, .external_lex_state = 3}, [1397] = {.lex_state = 17, .external_lex_state = 3}, @@ -13403,953 +13067,953 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1402] = {.lex_state = 17, .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 = 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}, + [1405] = {.lex_state = 17, .external_lex_state = 3}, + [1406] = {.lex_state = 17, .external_lex_state = 3}, + [1407] = {.lex_state = 17, .external_lex_state = 3}, + [1408] = {.lex_state = 17, .external_lex_state = 3}, + [1409] = {.lex_state = 17, .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 = 9, .external_lex_state = 3}, - [1418] = {.lex_state = 7, .external_lex_state = 3}, - [1419] = {.lex_state = 7, .external_lex_state = 3}, - [1420] = {.lex_state = 7, .external_lex_state = 3}, - [1421] = {.lex_state = 9, .external_lex_state = 3}, - [1422] = {.lex_state = 7, .external_lex_state = 3}, + [1411] = {.lex_state = 17, .external_lex_state = 3}, + [1412] = {.lex_state = 17, .external_lex_state = 3}, + [1413] = {.lex_state = 17, .external_lex_state = 3}, + [1414] = {.lex_state = 17, .external_lex_state = 3}, + [1415] = {.lex_state = 17, .external_lex_state = 3}, + [1416] = {.lex_state = 17, .external_lex_state = 3}, + [1417] = {.lex_state = 17, .external_lex_state = 3}, + [1418] = {.lex_state = 17, .external_lex_state = 3}, + [1419] = {.lex_state = 17, .external_lex_state = 3}, + [1420] = {.lex_state = 17, .external_lex_state = 3}, + [1421] = {.lex_state = 17, .external_lex_state = 3}, + [1422] = {.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}, + [1424] = {.lex_state = 9, .external_lex_state = 3}, + [1425] = {.lex_state = 9, .external_lex_state = 3}, + [1426] = {.lex_state = 7, .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 = 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 = 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 = 9, .external_lex_state = 3}, - [1444] = {.lex_state = 17, .external_lex_state = 3}, - [1445] = {.lex_state = 7, .external_lex_state = 3}, + [1429] = {.lex_state = 7, .external_lex_state = 3}, + [1430] = {.lex_state = 9, .external_lex_state = 3}, + [1431] = {.lex_state = 7, .external_lex_state = 3}, + [1432] = {.lex_state = 9, .external_lex_state = 3}, + [1433] = {.lex_state = 9, .external_lex_state = 3}, + [1434] = {.lex_state = 7, .external_lex_state = 3}, + [1435] = {.lex_state = 7, .external_lex_state = 3}, + [1436] = {.lex_state = 9, .external_lex_state = 3}, + [1437] = {.lex_state = 9, .external_lex_state = 3}, + [1438] = {.lex_state = 9, .external_lex_state = 3}, + [1439] = {.lex_state = 17, .external_lex_state = 3}, + [1440] = {.lex_state = 7, .external_lex_state = 3}, + [1441] = {.lex_state = 7, .external_lex_state = 3}, + [1442] = {.lex_state = 7, .external_lex_state = 3}, + [1443] = {.lex_state = 17, .external_lex_state = 3}, + [1444] = {.lex_state = 9, .external_lex_state = 3}, + [1445] = {.lex_state = 17, .external_lex_state = 3}, [1446] = {.lex_state = 17, .external_lex_state = 3}, [1447] = {.lex_state = 17, .external_lex_state = 3}, - [1448] = {.lex_state = 9, .external_lex_state = 3}, + [1448] = {.lex_state = 17, .external_lex_state = 3}, [1449] = {.lex_state = 17, .external_lex_state = 3}, [1450] = {.lex_state = 17, .external_lex_state = 3}, - [1451] = {.lex_state = 17, .external_lex_state = 3}, + [1451] = {.lex_state = 9, .external_lex_state = 3}, [1452] = {.lex_state = 17, .external_lex_state = 3}, [1453] = {.lex_state = 9, .external_lex_state = 3}, - [1454] = {.lex_state = 17, .external_lex_state = 3}, + [1454] = {.lex_state = 9, .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}, + [1457] = {.lex_state = 9, .external_lex_state = 3}, [1458] = {.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}, + [1459] = {.lex_state = 17, .external_lex_state = 3}, + [1460] = {.lex_state = 7, .external_lex_state = 3}, + [1461] = {.lex_state = 17, .external_lex_state = 3}, [1462] = {.lex_state = 17, .external_lex_state = 3}, - [1463] = {.lex_state = 17, .external_lex_state = 3}, + [1463] = {.lex_state = 9, .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}, + [1466] = {.lex_state = 13, .external_lex_state = 3}, [1467] = {.lex_state = 17, .external_lex_state = 3}, - [1468] = {.lex_state = 7, .external_lex_state = 3}, + [1468] = {.lex_state = 17, .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}, + [1471] = {.lex_state = 9, .external_lex_state = 3}, [1472] = {.lex_state = 17, .external_lex_state = 3}, - [1473] = {.lex_state = 13, .external_lex_state = 3}, + [1473] = {.lex_state = 17, .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 = 7, .external_lex_state = 3}, - [1478] = {.lex_state = 1, .external_lex_state = 2}, - [1479] = {.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 = 17, .external_lex_state = 3}, - [1486] = {.lex_state = 7, .external_lex_state = 3}, + [1475] = {.lex_state = 17, .external_lex_state = 3}, + [1476] = {.lex_state = 17, .external_lex_state = 3}, + [1477] = {.lex_state = 17, .external_lex_state = 3}, + [1478] = {.lex_state = 17, .external_lex_state = 3}, + [1479] = {.lex_state = 9, .external_lex_state = 3}, + [1480] = {.lex_state = 17, .external_lex_state = 3}, + [1481] = {.lex_state = 17, .external_lex_state = 3}, + [1482] = {.lex_state = 13, .external_lex_state = 3}, + [1483] = {.lex_state = 13, .external_lex_state = 3}, + [1484] = {.lex_state = 17, .external_lex_state = 3}, + [1485] = {.lex_state = 9, .external_lex_state = 3}, + [1486] = {.lex_state = 17, .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 = 17, .external_lex_state = 3}, + [1488] = {.lex_state = 17, .external_lex_state = 3}, + [1489] = {.lex_state = 13, .external_lex_state = 3}, + [1490] = {.lex_state = 14, .external_lex_state = 3}, [1491] = {.lex_state = 7, .external_lex_state = 3}, - [1492] = {.lex_state = 4, .external_lex_state = 3}, - [1493] = {.lex_state = 7, .external_lex_state = 3}, + [1492] = {.lex_state = 7, .external_lex_state = 3}, + [1493] = {.lex_state = 1, .external_lex_state = 2}, [1494] = {.lex_state = 7, .external_lex_state = 3}, [1495] = {.lex_state = 7, .external_lex_state = 3}, [1496] = {.lex_state = 7, .external_lex_state = 3}, [1497] = {.lex_state = 7, .external_lex_state = 3}, - [1498] = {.lex_state = 17, .external_lex_state = 3}, - [1499] = {.lex_state = 7, .external_lex_state = 3}, - [1500] = {.lex_state = 14, .external_lex_state = 3}, - [1501] = {.lex_state = 7, .external_lex_state = 3}, + [1498] = {.lex_state = 1, .external_lex_state = 2}, + [1499] = {.lex_state = 9, .external_lex_state = 3}, + [1500] = {.lex_state = 7, .external_lex_state = 3}, + [1501] = {.lex_state = 17, .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 = 7, .external_lex_state = 3}, - [1507] = {.lex_state = 7, .external_lex_state = 3}, + [1506] = {.lex_state = 14, .external_lex_state = 3}, + [1507] = {.lex_state = 17, .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}, + [1510] = {.lex_state = 17, .external_lex_state = 3}, [1511] = {.lex_state = 7, .external_lex_state = 3}, [1512] = {.lex_state = 7, .external_lex_state = 3}, - [1513] = {.lex_state = 7, .external_lex_state = 3}, + [1513] = {.lex_state = 17, .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 = 7, .external_lex_state = 3}, - [1518] = {.lex_state = 17, .external_lex_state = 3}, - [1519] = {.lex_state = 17, .external_lex_state = 3}, + [1515] = {.lex_state = 7, .external_lex_state = 3}, + [1516] = {.lex_state = 7, .external_lex_state = 3}, + [1517] = {.lex_state = 17, .external_lex_state = 3}, + [1518] = {.lex_state = 7, .external_lex_state = 3}, + [1519] = {.lex_state = 7, .external_lex_state = 3}, [1520] = {.lex_state = 7, .external_lex_state = 3}, [1521] = {.lex_state = 7, .external_lex_state = 3}, [1522] = {.lex_state = 17, .external_lex_state = 3}, - [1523] = {.lex_state = 17, .external_lex_state = 3}, + [1523] = {.lex_state = 7, .external_lex_state = 3}, [1524] = {.lex_state = 7, .external_lex_state = 3}, - [1525] = {.lex_state = 14, .external_lex_state = 3}, + [1525] = {.lex_state = 7, .external_lex_state = 3}, [1526] = {.lex_state = 7, .external_lex_state = 3}, - [1527] = {.lex_state = 7, .external_lex_state = 3}, + [1527] = {.lex_state = 4, .external_lex_state = 3}, [1528] = {.lex_state = 7, .external_lex_state = 3}, - [1529] = {.lex_state = 7, .external_lex_state = 3}, + [1529] = {.lex_state = 17, .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}, + [1532] = {.lex_state = 17, .external_lex_state = 3}, [1533] = {.lex_state = 14, .external_lex_state = 3}, - [1534] = {.lex_state = 4, .external_lex_state = 3}, - [1535] = {.lex_state = 14, .external_lex_state = 3}, + [1534] = {.lex_state = 7, .external_lex_state = 3}, + [1535] = {.lex_state = 7, .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 = 4, .external_lex_state = 3}, - [1540] = {.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 = 14, .external_lex_state = 3}, + [1539] = {.lex_state = 7, .external_lex_state = 3}, + [1540] = {.lex_state = 17, .external_lex_state = 3}, + [1541] = {.lex_state = 7, .external_lex_state = 3}, + [1542] = {.lex_state = 7, .external_lex_state = 3}, + [1543] = {.lex_state = 7, .external_lex_state = 3}, [1544] = {.lex_state = 7, .external_lex_state = 3}, [1545] = {.lex_state = 7, .external_lex_state = 3}, [1546] = {.lex_state = 7, .external_lex_state = 3}, - [1547] = {.lex_state = 7, .external_lex_state = 3}, + [1547] = {.lex_state = 4, .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}, + [1550] = {.lex_state = 14, .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 = 14, .external_lex_state = 3}, + [1553] = {.lex_state = 14, .external_lex_state = 3}, + [1554] = {.lex_state = 7, .external_lex_state = 3}, + [1555] = {.lex_state = 4, .external_lex_state = 3}, + [1556] = {.lex_state = 7, .external_lex_state = 3}, [1557] = {.lex_state = 7, .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}, + [1559] = {.lex_state = 14, .external_lex_state = 3}, + [1560] = {.lex_state = 7, .external_lex_state = 3}, [1561] = {.lex_state = 7, .external_lex_state = 3}, - [1562] = {.lex_state = 14, .external_lex_state = 3}, + [1562] = {.lex_state = 7, .external_lex_state = 3}, [1563] = {.lex_state = 7, .external_lex_state = 3}, - [1564] = {.lex_state = 4, .external_lex_state = 3}, + [1564] = {.lex_state = 14, .external_lex_state = 3}, [1565] = {.lex_state = 7, .external_lex_state = 3}, [1566] = {.lex_state = 7, .external_lex_state = 3}, - [1567] = {.lex_state = 7, .external_lex_state = 3}, - [1568] = {.lex_state = 14, .external_lex_state = 3}, - [1569] = {.lex_state = 7, .external_lex_state = 3}, - [1570] = {.lex_state = 4, .external_lex_state = 3}, + [1567] = {.lex_state = 14, .external_lex_state = 3}, + [1568] = {.lex_state = 7, .external_lex_state = 3}, + [1569] = {.lex_state = 14, .external_lex_state = 3}, + [1570] = {.lex_state = 14, .external_lex_state = 3}, [1571] = {.lex_state = 7, .external_lex_state = 3}, [1572] = {.lex_state = 7, .external_lex_state = 3}, [1573] = {.lex_state = 7, .external_lex_state = 3}, - [1574] = {.lex_state = 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 = 0, .external_lex_state = 3}, + [1574] = {.lex_state = 7, .external_lex_state = 3}, + [1575] = {.lex_state = 13, .external_lex_state = 3}, + [1576] = {.lex_state = 0, .external_lex_state = 3}, + [1577] = {.lex_state = 7, .external_lex_state = 3}, + [1578] = {.lex_state = 14, .external_lex_state = 3}, [1579] = {.lex_state = 4, .external_lex_state = 3}, [1580] = {.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 = 0, .external_lex_state = 3}, - [1586] = {.lex_state = 7, .external_lex_state = 3}, + [1581] = {.lex_state = 7, .external_lex_state = 3}, + [1582] = {.lex_state = 4, .external_lex_state = 3}, + [1583] = {.lex_state = 7, .external_lex_state = 3}, + [1584] = {.lex_state = 14, .external_lex_state = 3}, + [1585] = {.lex_state = 7, .external_lex_state = 3}, + [1586] = {.lex_state = 0, .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 = 14, .external_lex_state = 3}, - [1591] = {.lex_state = 14, .external_lex_state = 3}, - [1592] = {.lex_state = 7, .external_lex_state = 3}, + [1588] = {.lex_state = 7, .external_lex_state = 3}, + [1589] = {.lex_state = 7, .external_lex_state = 3}, + [1590] = {.lex_state = 0, .external_lex_state = 3}, + [1591] = {.lex_state = 7, .external_lex_state = 3}, + [1592] = {.lex_state = 0, .external_lex_state = 3}, [1593] = {.lex_state = 7, .external_lex_state = 3}, [1594] = {.lex_state = 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}, + [1595] = {.lex_state = 0, .external_lex_state = 3}, + [1596] = {.lex_state = 7, .external_lex_state = 3}, + [1597] = {.lex_state = 7, .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}, + [1600] = {.lex_state = 7, .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}, [1604] = {.lex_state = 0, .external_lex_state = 3}, [1605] = {.lex_state = 0, .external_lex_state = 3}, - [1606] = {.lex_state = 7, .external_lex_state = 3}, + [1606] = {.lex_state = 0, .external_lex_state = 3}, [1607] = {.lex_state = 0, .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}, + [1609] = {.lex_state = 4, .external_lex_state = 3}, + [1610] = {.lex_state = 7, .external_lex_state = 3}, [1611] = {.lex_state = 7, .external_lex_state = 3}, - [1612] = {.lex_state = 7, .external_lex_state = 3}, + [1612] = {.lex_state = 0, .external_lex_state = 3}, [1613] = {.lex_state = 0, .external_lex_state = 3}, [1614] = {.lex_state = 0, .external_lex_state = 3}, - [1615] = {.lex_state = 7, .external_lex_state = 3}, - [1616] = {.lex_state = 7, .external_lex_state = 3}, + [1615] = {.lex_state = 0, .external_lex_state = 3}, + [1616] = {.lex_state = 0, .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 = 17, .external_lex_state = 3}, + [1618] = {.lex_state = 14, .external_lex_state = 3}, + [1619] = {.lex_state = 0, .external_lex_state = 3}, + [1620] = {.lex_state = 0, .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}, + [1622] = {.lex_state = 0, .external_lex_state = 3}, + [1623] = {.lex_state = 14, .external_lex_state = 3}, [1624] = {.lex_state = 7, .external_lex_state = 3}, [1625] = {.lex_state = 7, .external_lex_state = 3}, [1626] = {.lex_state = 7, .external_lex_state = 3}, - [1627] = {.lex_state = 7, .external_lex_state = 3}, - [1628] = {.lex_state = 7, .external_lex_state = 3}, + [1627] = {.lex_state = 0, .external_lex_state = 3}, + [1628] = {.lex_state = 0, .external_lex_state = 3}, [1629] = {.lex_state = 7, .external_lex_state = 3}, - [1630] = {.lex_state = 7, .external_lex_state = 3}, + [1630] = {.lex_state = 14, .external_lex_state = 3}, [1631] = {.lex_state = 7, .external_lex_state = 3}, [1632] = {.lex_state = 7, .external_lex_state = 3}, - [1633] = {.lex_state = 10, .external_lex_state = 3}, + [1633] = {.lex_state = 7, .external_lex_state = 3}, [1634] = {.lex_state = 7, .external_lex_state = 3}, [1635] = {.lex_state = 7, .external_lex_state = 3}, - [1636] = {.lex_state = 17, .external_lex_state = 3}, + [1636] = {.lex_state = 10, .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}, + [1638] = {.lex_state = 10, .external_lex_state = 3}, + [1639] = {.lex_state = 7, .external_lex_state = 3}, [1640] = {.lex_state = 7, .external_lex_state = 3}, - [1641] = {.lex_state = 13, .external_lex_state = 3}, + [1641] = {.lex_state = 7, .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 = 4, .external_lex_state = 3}, - [1648] = {.lex_state = 17, .external_lex_state = 3}, + [1647] = {.lex_state = 7, .external_lex_state = 3}, + [1648] = {.lex_state = 7, .external_lex_state = 3}, [1649] = {.lex_state = 7, .external_lex_state = 3}, [1650] = {.lex_state = 7, .external_lex_state = 3}, - [1651] = {.lex_state = 7, .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}, + [1651] = {.lex_state = 13, .external_lex_state = 3}, + [1652] = {.lex_state = 17, .external_lex_state = 3}, + [1653] = {.lex_state = 7, .external_lex_state = 3}, + [1654] = {.lex_state = 17, .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 = 10, .external_lex_state = 3}, - [1659] = {.lex_state = 7, .external_lex_state = 3}, - [1660] = {.lex_state = 17, .external_lex_state = 3}, + [1657] = {.lex_state = 17, .external_lex_state = 3}, + [1658] = {.lex_state = 17, .external_lex_state = 3}, + [1659] = {.lex_state = 4, .external_lex_state = 3}, + [1660] = {.lex_state = 14, .external_lex_state = 3}, [1661] = {.lex_state = 7, .external_lex_state = 3}, - [1662] = {.lex_state = 10, .external_lex_state = 3}, - [1663] = {.lex_state = 0, .external_lex_state = 3}, + [1662] = {.lex_state = 0, .external_lex_state = 3}, + [1663] = {.lex_state = 7, .external_lex_state = 3}, [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 7, .external_lex_state = 3}, - [1666] = {.lex_state = 7, .external_lex_state = 3}, - [1667] = {.lex_state = 4, .external_lex_state = 3}, + [1665] = {.lex_state = 17, .external_lex_state = 3}, + [1666] = {.lex_state = 4, .external_lex_state = 3}, + [1667] = {.lex_state = 7, .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}, + [1671] = {.lex_state = 7, .external_lex_state = 3}, [1672] = {.lex_state = 7, .external_lex_state = 3}, - [1673] = {.lex_state = 10, .external_lex_state = 3}, + [1673] = {.lex_state = 7, .external_lex_state = 3}, [1674] = {.lex_state = 7, .external_lex_state = 3}, [1675] = {.lex_state = 7, .external_lex_state = 3}, [1676] = {.lex_state = 7, .external_lex_state = 3}, - [1677] = {.lex_state = 7, .external_lex_state = 3}, + [1677] = {.lex_state = 10, .external_lex_state = 3}, [1678] = {.lex_state = 7, .external_lex_state = 3}, [1679] = {.lex_state = 7, .external_lex_state = 3}, - [1680] = {.lex_state = 10, .external_lex_state = 3}, + [1680] = {.lex_state = 7, .external_lex_state = 3}, [1681] = {.lex_state = 7, .external_lex_state = 3}, [1682] = {.lex_state = 7, .external_lex_state = 3}, [1683] = {.lex_state = 7, .external_lex_state = 3}, [1684] = {.lex_state = 7, .external_lex_state = 3}, [1685] = {.lex_state = 7, .external_lex_state = 3}, - [1686] = {.lex_state = 7, .external_lex_state = 3}, - [1687] = {.lex_state = 57, .external_lex_state = 3}, - [1688] = {.lex_state = 57, .external_lex_state = 3}, + [1686] = {.lex_state = 17, .external_lex_state = 3}, + [1687] = {.lex_state = 7, .external_lex_state = 3}, + [1688] = {.lex_state = 7, .external_lex_state = 3}, [1689] = {.lex_state = 7, .external_lex_state = 3}, [1690] = {.lex_state = 7, .external_lex_state = 3}, - [1691] = {.lex_state = 7, .external_lex_state = 3}, + [1691] = {.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 = 7, .external_lex_state = 3}, - [1695] = {.lex_state = 7, .external_lex_state = 3}, - [1696] = {.lex_state = 13, .external_lex_state = 3}, - [1697] = {.lex_state = 17, .external_lex_state = 3}, + [1695] = {.lex_state = 57, .external_lex_state = 3}, + [1696] = {.lex_state = 7, .external_lex_state = 3}, + [1697] = {.lex_state = 57, .external_lex_state = 3}, [1698] = {.lex_state = 7, .external_lex_state = 3}, - [1699] = {.lex_state = 7, .external_lex_state = 3}, + [1699] = {.lex_state = 17, .external_lex_state = 3}, [1700] = {.lex_state = 7, .external_lex_state = 3}, - [1701] = {.lex_state = 7, .external_lex_state = 3}, - [1702] = {.lex_state = 17, .external_lex_state = 3}, + [1701] = {.lex_state = 10, .external_lex_state = 3}, + [1702] = {.lex_state = 7, .external_lex_state = 3}, [1703] = {.lex_state = 7, .external_lex_state = 3}, [1704] = {.lex_state = 7, .external_lex_state = 3}, - [1705] = {.lex_state = 4, .external_lex_state = 3}, - [1706] = {.lex_state = 17, .external_lex_state = 3}, - [1707] = {.lex_state = 0, .external_lex_state = 3}, - [1708] = {.lex_state = 17, .external_lex_state = 3}, + [1705] = {.lex_state = 7, .external_lex_state = 3}, + [1706] = {.lex_state = 7, .external_lex_state = 3}, + [1707] = {.lex_state = 7, .external_lex_state = 3}, + [1708] = {.lex_state = 7, .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}, + [1710] = {.lex_state = 7, .external_lex_state = 3}, + [1711] = {.lex_state = 17, .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}, + [1713] = {.lex_state = 7, .external_lex_state = 3}, + [1714] = {.lex_state = 7, .external_lex_state = 3}, + [1715] = {.lex_state = 13, .external_lex_state = 3}, [1716] = {.lex_state = 7, .external_lex_state = 3}, - [1717] = {.lex_state = 7, .external_lex_state = 3}, + [1717] = {.lex_state = 17, .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 = 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 = 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 = 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}, + [1719] = {.lex_state = 17, .external_lex_state = 3}, + [1720] = {.lex_state = 7, .external_lex_state = 3}, + [1721] = {.lex_state = 10, .external_lex_state = 3}, + [1722] = {.lex_state = 4, .external_lex_state = 3}, + [1723] = {.lex_state = 0, .external_lex_state = 3}, + [1724] = {.lex_state = 7, .external_lex_state = 3}, + [1725] = {.lex_state = 4, .external_lex_state = 3}, + [1726] = {.lex_state = 17, .external_lex_state = 3}, + [1727] = {.lex_state = 7, .external_lex_state = 3}, + [1728] = {.lex_state = 10, .external_lex_state = 3}, + [1729] = {.lex_state = 10, .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}, [1734] = {.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 = 7, .external_lex_state = 3}, - [1744] = {.lex_state = 7, .external_lex_state = 3}, + [1735] = {.lex_state = 7, .external_lex_state = 3}, + [1736] = {.lex_state = 7, .external_lex_state = 3}, + [1737] = {.lex_state = 0, .external_lex_state = 3}, + [1738] = {.lex_state = 17, .external_lex_state = 3}, + [1739] = {.lex_state = 0, .external_lex_state = 3}, + [1740] = {.lex_state = 57, .external_lex_state = 3}, + [1741] = {.lex_state = 0, .external_lex_state = 3}, + [1742] = {.lex_state = 17, .external_lex_state = 3}, + [1743] = {.lex_state = 17, .external_lex_state = 3}, + [1744] = {.lex_state = 0, .external_lex_state = 3}, [1745] = {.lex_state = 7, .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}, + [1746] = {.lex_state = 10, .external_lex_state = 3}, + [1747] = {.lex_state = 4, .external_lex_state = 3}, + [1748] = {.lex_state = 10, .external_lex_state = 3}, + [1749] = {.lex_state = 17, .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}, + [1753] = {.lex_state = 0, .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 = 7, .external_lex_state = 3}, + [1755] = {.lex_state = 10, .external_lex_state = 3}, + [1756] = {.lex_state = 10, .external_lex_state = 3}, + [1757] = {.lex_state = 17, .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}, + [1760] = {.lex_state = 7, .external_lex_state = 3}, + [1761] = {.lex_state = 7, .external_lex_state = 3}, + [1762] = {.lex_state = 7, .external_lex_state = 3}, + [1763] = {.lex_state = 7, .external_lex_state = 3}, + [1764] = {.lex_state = 17, .external_lex_state = 3}, + [1765] = {.lex_state = 7, .external_lex_state = 3}, + [1766] = {.lex_state = 7, .external_lex_state = 3}, + [1767] = {.lex_state = 7, .external_lex_state = 3}, + [1768] = {.lex_state = 7, .external_lex_state = 3}, + [1769] = {.lex_state = 7, .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 = 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 = 57, .external_lex_state = 3}, - [1779] = {.lex_state = 57, .external_lex_state = 3}, - [1780] = {.lex_state = 0, .external_lex_state = 3}, + [1771] = {.lex_state = 57, .external_lex_state = 3}, + [1772] = {.lex_state = 0, .external_lex_state = 3}, + [1773] = {.lex_state = 17, .external_lex_state = 3}, + [1774] = {.lex_state = 0, .external_lex_state = 3}, + [1775] = {.lex_state = 7, .external_lex_state = 3}, + [1776] = {.lex_state = 18, .external_lex_state = 3}, + [1777] = {.lex_state = 17, .external_lex_state = 3}, + [1778] = {.lex_state = 4, .external_lex_state = 3}, + [1779] = {.lex_state = 4, .external_lex_state = 3}, + [1780] = {.lex_state = 4, .external_lex_state = 4}, [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 = 0, .external_lex_state = 3}, + [1783] = {.lex_state = 57, .external_lex_state = 3}, + [1784] = {.lex_state = 18, .external_lex_state = 3}, + [1785] = {.lex_state = 57, .external_lex_state = 3}, + [1786] = {.lex_state = 18, .external_lex_state = 3}, + [1787] = {.lex_state = 18, .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 = 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}, + [1790] = {.lex_state = 17, .external_lex_state = 3}, + [1791] = {.lex_state = 7, .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 = 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}, + [1797] = {.lex_state = 17, .external_lex_state = 3}, + [1798] = {.lex_state = 4, .external_lex_state = 4}, + [1799] = {.lex_state = 0, .external_lex_state = 3}, + [1800] = {.lex_state = 17, .external_lex_state = 3}, + [1801] = {.lex_state = 0, .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 = 57, .external_lex_state = 3}, - [1810] = {.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 = 0, .external_lex_state = 3}, + [1806] = {.lex_state = 7, .external_lex_state = 3}, + [1807] = {.lex_state = 4, .external_lex_state = 4}, + [1808] = {.lex_state = 57, .external_lex_state = 3}, + [1809] = {.lex_state = 0, .external_lex_state = 3}, + [1810] = {.lex_state = 4, .external_lex_state = 4}, [1811] = {.lex_state = 57, .external_lex_state = 3}, - [1812] = {.lex_state = 7, .external_lex_state = 3}, - [1813] = {.lex_state = 57, .external_lex_state = 3}, + [1812] = {.lex_state = 17, .external_lex_state = 3}, + [1813] = {.lex_state = 0, .external_lex_state = 3}, [1814] = {.lex_state = 7, .external_lex_state = 3}, - [1815] = {.lex_state = 7, .external_lex_state = 3}, + [1815] = {.lex_state = 57, .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}, + [1817] = {.lex_state = 57, .external_lex_state = 3}, + [1818] = {.lex_state = 7, .external_lex_state = 3}, + [1819] = {.lex_state = 7, .external_lex_state = 3}, [1820] = {.lex_state = 57, .external_lex_state = 3}, - [1821] = {.lex_state = 7, .external_lex_state = 3}, + [1821] = {.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}, + [1824] = {.lex_state = 57, .external_lex_state = 3}, [1825] = {.lex_state = 7, .external_lex_state = 3}, - [1826] = {.lex_state = 10, .external_lex_state = 3}, + [1826] = {.lex_state = 7, .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 = 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 = 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 = 57, .external_lex_state = 3}, - [1845] = {.lex_state = 4, .external_lex_state = 4}, - [1846] = {.lex_state = 0, .external_lex_state = 3}, + [1828] = {.lex_state = 7, .external_lex_state = 3}, + [1829] = {.lex_state = 7, .external_lex_state = 3}, + [1830] = {.lex_state = 4, .external_lex_state = 3}, + [1831] = {.lex_state = 0, .external_lex_state = 3}, + [1832] = {.lex_state = 17, .external_lex_state = 3}, + [1833] = {.lex_state = 7, .external_lex_state = 3}, + [1834] = {.lex_state = 57, .external_lex_state = 3}, + [1835] = {.lex_state = 57, .external_lex_state = 3}, + [1836] = {.lex_state = 57, .external_lex_state = 3}, + [1837] = {.lex_state = 57, .external_lex_state = 3}, + [1838] = {.lex_state = 57, .external_lex_state = 3}, + [1839] = {.lex_state = 7, .external_lex_state = 3}, + [1840] = {.lex_state = 17, .external_lex_state = 3}, + [1841] = {.lex_state = 7, .external_lex_state = 3}, + [1842] = {.lex_state = 10, .external_lex_state = 3}, + [1843] = {.lex_state = 7, .external_lex_state = 3}, + [1844] = {.lex_state = 17, .external_lex_state = 3}, + [1845] = {.lex_state = 0, .external_lex_state = 3}, + [1846] = {.lex_state = 10, .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}, + [1848] = {.lex_state = 57, .external_lex_state = 3}, + [1849] = {.lex_state = 7, .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}, + [1853] = {.lex_state = 7, .external_lex_state = 3}, + [1854] = {.lex_state = 0, .external_lex_state = 3}, [1855] = {.lex_state = 57, .external_lex_state = 3}, - [1856] = {.lex_state = 0, .external_lex_state = 3}, - [1857] = {.lex_state = 7, .external_lex_state = 3}, + [1856] = {.lex_state = 17, .external_lex_state = 3}, + [1857] = {.lex_state = 57, .external_lex_state = 3}, [1858] = {.lex_state = 7, .external_lex_state = 3}, - [1859] = {.lex_state = 7, .external_lex_state = 3}, + [1859] = {.lex_state = 0, .external_lex_state = 3}, [1860] = {.lex_state = 0, .external_lex_state = 3}, - [1861] = {.lex_state = 0, .external_lex_state = 3}, - [1862] = {.lex_state = 57, .external_lex_state = 3}, + [1861] = {.lex_state = 4, .external_lex_state = 4}, + [1862] = {.lex_state = 0, .external_lex_state = 3}, [1863] = {.lex_state = 0, .external_lex_state = 3}, - [1864] = {.lex_state = 7, .external_lex_state = 3}, - [1865] = {.lex_state = 57, .external_lex_state = 3}, - [1866] = {.lex_state = 7, .external_lex_state = 3}, + [1864] = {.lex_state = 17, .external_lex_state = 3}, + [1865] = {.lex_state = 0, .external_lex_state = 3}, + [1866] = {.lex_state = 4, .external_lex_state = 4}, [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}, + [1868] = {.lex_state = 0, .external_lex_state = 3}, + [1869] = {.lex_state = 57, .external_lex_state = 3}, + [1870] = {.lex_state = 57, .external_lex_state = 3}, + [1871] = {.lex_state = 7, .external_lex_state = 3}, + [1872] = {.lex_state = 57, .external_lex_state = 3}, [1873] = {.lex_state = 57, .external_lex_state = 3}, - [1874] = {.lex_state = 0, .external_lex_state = 3}, + [1874] = {.lex_state = 7, .external_lex_state = 3}, [1875] = {.lex_state = 0, .external_lex_state = 3}, - [1876] = {.lex_state = 0, .external_lex_state = 3}, - [1877] = {.lex_state = 57, .external_lex_state = 3}, + [1876] = {.lex_state = 57, .external_lex_state = 3}, + [1877] = {.lex_state = 0, .external_lex_state = 3}, [1878] = {.lex_state = 0, .external_lex_state = 3}, - [1879] = {.lex_state = 0, .external_lex_state = 3}, - [1880] = {.lex_state = 0, .external_lex_state = 3}, - [1881] = {.lex_state = 0, .external_lex_state = 3}, + [1879] = {.lex_state = 17, .external_lex_state = 3}, + [1880] = {.lex_state = 57, .external_lex_state = 3}, + [1881] = {.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 = 7, .external_lex_state = 3}, - [1885] = {.lex_state = 57, .external_lex_state = 3}, - [1886] = {.lex_state = 0, .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}, + [1883] = {.lex_state = 7, .external_lex_state = 3}, + [1884] = {.lex_state = 0, .external_lex_state = 3}, + [1885] = {.lex_state = 7, .external_lex_state = 3}, + [1886] = {.lex_state = 7, .external_lex_state = 3}, + [1887] = {.lex_state = 0, .external_lex_state = 3}, + [1888] = {.lex_state = 0, .external_lex_state = 3}, + [1889] = {.lex_state = 57, .external_lex_state = 3}, [1890] = {.lex_state = 57, .external_lex_state = 3}, - [1891] = {.lex_state = 7, .external_lex_state = 3}, + [1891] = {.lex_state = 57, .external_lex_state = 3}, [1892] = {.lex_state = 0, .external_lex_state = 3}, - [1893] = {.lex_state = 0, .external_lex_state = 3}, + [1893] = {.lex_state = 57, .external_lex_state = 3}, [1894] = {.lex_state = 0, .external_lex_state = 3}, - [1895] = {.lex_state = 0, .external_lex_state = 3}, + [1895] = {.lex_state = 57, .external_lex_state = 3}, [1896] = {.lex_state = 57, .external_lex_state = 3}, - [1897] = {.lex_state = 0, .external_lex_state = 3}, - [1898] = {.lex_state = 7, .external_lex_state = 3}, - [1899] = {.lex_state = 0, .external_lex_state = 3}, + [1897] = {.lex_state = 57, .external_lex_state = 3}, + [1898] = {.lex_state = 0, .external_lex_state = 3}, + [1899] = {.lex_state = 7, .external_lex_state = 3}, [1900] = {.lex_state = 57, .external_lex_state = 3}, - [1901] = {.lex_state = 57, .external_lex_state = 3}, + [1901] = {.lex_state = 0, .external_lex_state = 3}, [1902] = {.lex_state = 0, .external_lex_state = 3}, - [1903] = {.lex_state = 0, .external_lex_state = 3}, + [1903] = {.lex_state = 7, .external_lex_state = 3}, [1904] = {.lex_state = 0, .external_lex_state = 3}, - [1905] = {.lex_state = 0, .external_lex_state = 3}, - [1906] = {.lex_state = 7, .external_lex_state = 3}, - [1907] = {.lex_state = 0, .external_lex_state = 3}, + [1905] = {.lex_state = 57, .external_lex_state = 3}, + [1906] = {.lex_state = 0, .external_lex_state = 3}, + [1907] = {.lex_state = 57, .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 = 7, .external_lex_state = 3}, + [1909] = {.lex_state = 7, .external_lex_state = 3}, + [1910] = {.lex_state = 7, .external_lex_state = 3}, + [1911] = {.lex_state = 0, .external_lex_state = 3}, [1912] = {.lex_state = 0, .external_lex_state = 3}, - [1913] = {.lex_state = 0, .external_lex_state = 3}, - [1914] = {.lex_state = 57, .external_lex_state = 3}, - [1915] = {.lex_state = 0, .external_lex_state = 3}, - [1916] = {.lex_state = 10, .external_lex_state = 3}, + [1913] = {.lex_state = 57, .external_lex_state = 3}, + [1914] = {.lex_state = 0, .external_lex_state = 3}, + [1915] = {.lex_state = 57, .external_lex_state = 3}, + [1916] = {.lex_state = 0, .external_lex_state = 3}, [1917] = {.lex_state = 0, .external_lex_state = 3}, [1918] = {.lex_state = 0, .external_lex_state = 3}, - [1919] = {.lex_state = 0, .external_lex_state = 3}, + [1919] = {.lex_state = 7, .external_lex_state = 3}, [1920] = {.lex_state = 0, .external_lex_state = 3}, - [1921] = {.lex_state = 10, .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}, + [1921] = {.lex_state = 0, .external_lex_state = 3}, + [1922] = {.lex_state = 0, .external_lex_state = 3}, + [1923] = {.lex_state = 10, .external_lex_state = 3}, + [1924] = {.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 = 57, .external_lex_state = 3}, - [1929] = {.lex_state = 0, .external_lex_state = 3}, - [1930] = {.lex_state = 0, .external_lex_state = 3}, + [1926] = {.lex_state = 57, .external_lex_state = 3}, + [1927] = {.lex_state = 57, .external_lex_state = 3}, + [1928] = {.lex_state = 0, .external_lex_state = 3}, + [1929] = {.lex_state = 57, .external_lex_state = 3}, + [1930] = {.lex_state = 57, .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}, + [1932] = {.lex_state = 57, .external_lex_state = 3}, + [1933] = {.lex_state = 0, .external_lex_state = 3}, [1934] = {.lex_state = 0, .external_lex_state = 3}, - [1935] = {.lex_state = 0, .external_lex_state = 3}, + [1935] = {.lex_state = 7, .external_lex_state = 3}, [1936] = {.lex_state = 0, .external_lex_state = 3}, - [1937] = {.lex_state = 7, .external_lex_state = 3}, + [1937] = {.lex_state = 0, .external_lex_state = 3}, [1938] = {.lex_state = 0, .external_lex_state = 3}, [1939] = {.lex_state = 0, .external_lex_state = 3}, [1940] = {.lex_state = 0, .external_lex_state = 3}, - [1941] = {.lex_state = 57, .external_lex_state = 3}, + [1941] = {.lex_state = 0, .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}, + [1943] = {.lex_state = 57, .external_lex_state = 3}, + [1944] = {.lex_state = 57, .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}, + [1946] = {.lex_state = 0, .external_lex_state = 3}, + [1947] = {.lex_state = 0, .external_lex_state = 3}, + [1948] = {.lex_state = 7, .external_lex_state = 3}, [1949] = {.lex_state = 0, .external_lex_state = 3}, - [1950] = {.lex_state = 57, .external_lex_state = 3}, + [1950] = {.lex_state = 0, .external_lex_state = 3}, [1951] = {.lex_state = 0, .external_lex_state = 3}, [1952] = {.lex_state = 0, .external_lex_state = 3}, [1953] = {.lex_state = 0, .external_lex_state = 3}, - [1954] = {.lex_state = 57, .external_lex_state = 3}, - [1955] = {.lex_state = 7, .external_lex_state = 3}, - [1956] = {.lex_state = 0, .external_lex_state = 3}, - [1957] = {.lex_state = 0, .external_lex_state = 3}, - [1958] = {.lex_state = 57, .external_lex_state = 3}, + [1954] = {.lex_state = 0, .external_lex_state = 3}, + [1955] = {.lex_state = 0, .external_lex_state = 3}, + [1956] = {.lex_state = 7, .external_lex_state = 3}, + [1957] = {.lex_state = 3, .external_lex_state = 3}, + [1958] = {.lex_state = 10, .external_lex_state = 3}, [1959] = {.lex_state = 0, .external_lex_state = 3}, - [1960] = {.lex_state = 3, .external_lex_state = 3}, + [1960] = {.lex_state = 0, .external_lex_state = 3}, [1961] = {.lex_state = 0, .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}, + [1962] = {.lex_state = 0, .external_lex_state = 3}, + [1963] = {.lex_state = 0, .external_lex_state = 3}, + [1964] = {.lex_state = 57, .external_lex_state = 3}, [1965] = {.lex_state = 0, .external_lex_state = 3}, - [1966] = {.lex_state = 57, .external_lex_state = 3}, + [1966] = {.lex_state = 0, .external_lex_state = 3}, [1967] = {.lex_state = 0, .external_lex_state = 3}, [1968] = {.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 = 57, .external_lex_state = 3}, - [1972] = {.lex_state = 3, .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}, + [1969] = {.lex_state = 57, .external_lex_state = 3}, + [1970] = {.lex_state = 7, .external_lex_state = 3}, + [1971] = {.lex_state = 0, .external_lex_state = 3}, + [1972] = {.lex_state = 0, .external_lex_state = 3}, + [1973] = {.lex_state = 0, .external_lex_state = 3}, + [1974] = {.lex_state = 0, .external_lex_state = 3}, + [1975] = {.lex_state = 57, .external_lex_state = 3}, [1976] = {.lex_state = 0, .external_lex_state = 3}, - [1977] = {.lex_state = 7, .external_lex_state = 3}, + [1977] = {.lex_state = 0, .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}, + [1980] = {.lex_state = 7, .external_lex_state = 3}, + [1981] = {.lex_state = 0, .external_lex_state = 3}, + [1982] = {.lex_state = 3, .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}, + [1985] = {.lex_state = 3, .external_lex_state = 3}, + [1986] = {.lex_state = 0, .external_lex_state = 3}, + [1987] = {.lex_state = 57, .external_lex_state = 3}, + [1988] = {.lex_state = 57, .external_lex_state = 3}, + [1989] = {.lex_state = 57, .external_lex_state = 3}, + [1990] = {.lex_state = 3, .external_lex_state = 3}, + [1991] = {.lex_state = 0, .external_lex_state = 3}, + [1992] = {.lex_state = 0, .external_lex_state = 3}, + [1993] = {.lex_state = 0, .external_lex_state = 3}, + [1994] = {.lex_state = 10, .external_lex_state = 3}, + [1995] = {.lex_state = 0, .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 = 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 = 3, .external_lex_state = 3}, - [2007] = {.lex_state = 0, .external_lex_state = 3}, - [2008] = {.lex_state = 0, .external_lex_state = 3}, - [2009] = {.lex_state = 0, .external_lex_state = 3}, - [2010] = {.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 = 3, .external_lex_state = 3}, + [2000] = {.lex_state = 3, .external_lex_state = 3}, + [2001] = {.lex_state = 0, .external_lex_state = 3}, + [2002] = {.lex_state = 4, .external_lex_state = 3}, + [2003] = {.lex_state = 3, .external_lex_state = 3}, + [2004] = {.lex_state = 3, .external_lex_state = 3}, + [2005] = {.lex_state = 7, .external_lex_state = 3}, + [2006] = {.lex_state = 57, .external_lex_state = 3}, + [2007] = {.lex_state = 3, .external_lex_state = 3}, + [2008] = {.lex_state = 3, .external_lex_state = 3}, + [2009] = {.lex_state = 3, .external_lex_state = 3}, + [2010] = {.lex_state = 57, .external_lex_state = 3}, [2011] = {.lex_state = 57, .external_lex_state = 3}, [2012] = {.lex_state = 57, .external_lex_state = 3}, - [2013] = {.lex_state = 3, .external_lex_state = 3}, + [2013] = {.lex_state = 4, .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 = 57, .external_lex_state = 3}, - [2019] = {.lex_state = 10, .external_lex_state = 3}, - [2020] = {.lex_state = 3, .external_lex_state = 3}, + [2015] = {.lex_state = 3, .external_lex_state = 3}, + [2016] = {.lex_state = 7, .external_lex_state = 3}, + [2017] = {.lex_state = 57, .external_lex_state = 3}, + [2018] = {.lex_state = 0, .external_lex_state = 3}, + [2019] = {.lex_state = 3, .external_lex_state = 3}, + [2020] = {.lex_state = 0, .external_lex_state = 3}, [2021] = {.lex_state = 0, .external_lex_state = 3}, - [2022] = {.lex_state = 3, .external_lex_state = 3}, - [2023] = {.lex_state = 0, .external_lex_state = 3}, - [2024] = {.lex_state = 0, .external_lex_state = 3}, - [2025] = {.lex_state = 57, .external_lex_state = 3}, - [2026] = {.lex_state = 0, .external_lex_state = 3}, - [2027] = {.lex_state = 0, .external_lex_state = 3}, - [2028] = {.lex_state = 0, .external_lex_state = 3}, + [2022] = {.lex_state = 57, .external_lex_state = 3}, + [2023] = {.lex_state = 57, .external_lex_state = 3}, + [2024] = {.lex_state = 57, .external_lex_state = 3}, + [2025] = {.lex_state = 7, .external_lex_state = 3}, + [2026] = {.lex_state = 57, .external_lex_state = 3}, + [2027] = {.lex_state = 3, .external_lex_state = 3}, + [2028] = {.lex_state = 57, .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}, + [2030] = {.lex_state = 0, .external_lex_state = 3}, + [2031] = {.lex_state = 57, .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 = 0, .external_lex_state = 3}, + [2033] = {.lex_state = 3, .external_lex_state = 3}, + [2034] = {.lex_state = 3, .external_lex_state = 3}, + [2035] = {.lex_state = 57, .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 = 3, .external_lex_state = 3}, - [2040] = {.lex_state = 0, .external_lex_state = 3}, + [2037] = {.lex_state = 0, .external_lex_state = 3}, + [2038] = {.lex_state = 10, .external_lex_state = 3}, + [2039] = {.lex_state = 57, .external_lex_state = 3}, + [2040] = {.lex_state = 57, .external_lex_state = 3}, [2041] = {.lex_state = 57, .external_lex_state = 3}, [2042] = {.lex_state = 0, .external_lex_state = 3}, [2043] = {.lex_state = 0, .external_lex_state = 3}, [2044] = {.lex_state = 0, .external_lex_state = 3}, [2045] = {.lex_state = 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}, + [2046] = {.lex_state = 0, .external_lex_state = 3}, + [2047] = {.lex_state = 0, .external_lex_state = 3}, + [2048] = {.lex_state = 10, .external_lex_state = 3}, + [2049] = {.lex_state = 0, .external_lex_state = 3}, [2050] = {.lex_state = 0, .external_lex_state = 3}, - [2051] = {.lex_state = 0, .external_lex_state = 3}, + [2051] = {.lex_state = 7, .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}, + [2055] = {.lex_state = 57, .external_lex_state = 3}, [2056] = {.lex_state = 0, .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}, + [2057] = {.lex_state = 57, .external_lex_state = 3}, + [2058] = {.lex_state = 57, .external_lex_state = 3}, + [2059] = {.lex_state = 57, .external_lex_state = 3}, [2060] = {.lex_state = 0, .external_lex_state = 3}, [2061] = {.lex_state = 0, .external_lex_state = 3}, [2062] = {.lex_state = 0, .external_lex_state = 3}, [2063] = {.lex_state = 0, .external_lex_state = 3}, [2064] = {.lex_state = 0, .external_lex_state = 3}, - [2065] = {.lex_state = 57, .external_lex_state = 3}, + [2065] = {.lex_state = 0, .external_lex_state = 3}, [2066] = {.lex_state = 0, .external_lex_state = 3}, - [2067] = {.lex_state = 0, .external_lex_state = 3}, + [2067] = {.lex_state = 57, .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}, + [2071] = {.lex_state = 0, .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 = 57, .external_lex_state = 3}, - [2076] = {.lex_state = 0, .external_lex_state = 3}, + [2073] = {.lex_state = 0, .external_lex_state = 3}, + [2074] = {.lex_state = 0, .external_lex_state = 3}, + [2075] = {.lex_state = 7, .external_lex_state = 3}, + [2076] = {.lex_state = 57, .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}, + [2078] = {.lex_state = 3, .external_lex_state = 3}, + [2079] = {.lex_state = 0, .external_lex_state = 3}, [2080] = {.lex_state = 0, .external_lex_state = 3}, - [2081] = {.lex_state = 0, .external_lex_state = 3}, - [2082] = {.lex_state = 0, .external_lex_state = 3}, + [2081] = {.lex_state = 3, .external_lex_state = 3}, + [2082] = {.lex_state = 57, .external_lex_state = 3}, [2083] = {.lex_state = 0, .external_lex_state = 3}, - [2084] = {.lex_state = 0, .external_lex_state = 3}, + [2084] = {.lex_state = 57, .external_lex_state = 3}, [2085] = {.lex_state = 0, .external_lex_state = 3}, [2086] = {.lex_state = 0, .external_lex_state = 3}, - [2087] = {.lex_state = 57, .external_lex_state = 3}, + [2087] = {.lex_state = 0, .external_lex_state = 3}, [2088] = {.lex_state = 0, .external_lex_state = 3}, [2089] = {.lex_state = 0, .external_lex_state = 3}, - [2090] = {.lex_state = 7, .external_lex_state = 3}, - [2091] = {.lex_state = 7, .external_lex_state = 3}, - [2092] = {.lex_state = 57, .external_lex_state = 3}, + [2090] = {.lex_state = 57, .external_lex_state = 3}, + [2091] = {.lex_state = 0, .external_lex_state = 3}, + [2092] = {.lex_state = 0, .external_lex_state = 3}, [2093] = {.lex_state = 0, .external_lex_state = 3}, - [2094] = {.lex_state = 0, .external_lex_state = 3}, + [2094] = {.lex_state = 57, .external_lex_state = 3}, [2095] = {.lex_state = 0, .external_lex_state = 3}, - [2096] = {.lex_state = 57, .external_lex_state = 3}, + [2096] = {.lex_state = 0, .external_lex_state = 3}, [2097] = {.lex_state = 0, .external_lex_state = 3}, - [2098] = {.lex_state = 0, .external_lex_state = 3}, + [2098] = {.lex_state = 57, .external_lex_state = 3}, [2099] = {.lex_state = 0, .external_lex_state = 3}, [2100] = {.lex_state = 0, .external_lex_state = 3}, [2101] = {.lex_state = 0, .external_lex_state = 3}, - [2102] = {.lex_state = 0, .external_lex_state = 3}, - [2103] = {.lex_state = 0, .external_lex_state = 3}, - [2104] = {.lex_state = 0, .external_lex_state = 3}, - [2105] = {.lex_state = 57, .external_lex_state = 3}, - [2106] = {.lex_state = 57, .external_lex_state = 3}, + [2102] = {.lex_state = 7, .external_lex_state = 3}, + [2103] = {.lex_state = 7, .external_lex_state = 3}, + [2104] = {.lex_state = 57, .external_lex_state = 3}, + [2105] = {.lex_state = 0, .external_lex_state = 3}, + [2106] = {.lex_state = 0, .external_lex_state = 3}, [2107] = {.lex_state = 0, .external_lex_state = 3}, - [2108] = {.lex_state = 7, .external_lex_state = 3}, + [2108] = {.lex_state = 0, .external_lex_state = 3}, [2109] = {.lex_state = 0, .external_lex_state = 3}, [2110] = {.lex_state = 0, .external_lex_state = 3}, - [2111] = {.lex_state = 57, .external_lex_state = 3}, - [2112] = {.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 = 10, .external_lex_state = 3}, + [2111] = {.lex_state = 0, .external_lex_state = 3}, + [2112] = {.lex_state = 7, .external_lex_state = 3}, + [2113] = {.lex_state = 0, .external_lex_state = 3}, + [2114] = {.lex_state = 0, .external_lex_state = 3}, + [2115] = {.lex_state = 57, .external_lex_state = 3}, + [2116] = {.lex_state = 0, .external_lex_state = 3}, [2117] = {.lex_state = 0, .external_lex_state = 3}, [2118] = {.lex_state = 0, .external_lex_state = 3}, - [2119] = {.lex_state = 0, .external_lex_state = 3}, - [2120] = {.lex_state = 57, .external_lex_state = 3}, - [2121] = {.lex_state = 57, .external_lex_state = 3}, + [2119] = {.lex_state = 7, .external_lex_state = 3}, + [2120] = {.lex_state = 0, .external_lex_state = 3}, + [2121] = {.lex_state = 0, .external_lex_state = 3}, [2122] = {.lex_state = 0, .external_lex_state = 3}, [2123] = {.lex_state = 0, .external_lex_state = 3}, [2124] = {.lex_state = 0, .external_lex_state = 3}, - [2125] = {.lex_state = 0, .external_lex_state = 3}, + [2125] = {.lex_state = 57, .external_lex_state = 3}, [2126] = {.lex_state = 0, .external_lex_state = 3}, - [2127] = {.lex_state = 0, .external_lex_state = 3}, + [2127] = {.lex_state = 57, .external_lex_state = 3}, [2128] = {.lex_state = 0, .external_lex_state = 3}, [2129] = {.lex_state = 0, .external_lex_state = 3}, - [2130] = {.lex_state = 7, .external_lex_state = 3}, - [2131] = {.lex_state = 0, .external_lex_state = 3}, + [2130] = {.lex_state = 0, .external_lex_state = 3}, + [2131] = {.lex_state = 7, .external_lex_state = 3}, [2132] = {.lex_state = 0, .external_lex_state = 3}, - [2133] = {.lex_state = 7, .external_lex_state = 3}, - [2134] = {.lex_state = 17, .external_lex_state = 3}, + [2133] = {.lex_state = 0, .external_lex_state = 3}, + [2134] = {.lex_state = 0, .external_lex_state = 3}, [2135] = {.lex_state = 0, .external_lex_state = 3}, [2136] = {.lex_state = 0, .external_lex_state = 3}, - [2137] = {.lex_state = 7, .external_lex_state = 3}, + [2137] = {.lex_state = 0, .external_lex_state = 3}, [2138] = {.lex_state = 0, .external_lex_state = 3}, - [2139] = {.lex_state = 7, .external_lex_state = 3}, + [2139] = {.lex_state = 0, .external_lex_state = 3}, [2140] = {.lex_state = 0, .external_lex_state = 3}, [2141] = {.lex_state = 57, .external_lex_state = 3}, - [2142] = {.lex_state = 0, .external_lex_state = 3}, - [2143] = {.lex_state = 57, .external_lex_state = 3}, + [2142] = {.lex_state = 57, .external_lex_state = 3}, + [2143] = {.lex_state = 0, .external_lex_state = 3}, [2144] = {.lex_state = 0, .external_lex_state = 3}, - [2145] = {.lex_state = 7, .external_lex_state = 3}, + [2145] = {.lex_state = 0, .external_lex_state = 3}, [2146] = {.lex_state = 0, .external_lex_state = 3}, [2147] = {.lex_state = 0, .external_lex_state = 3}, [2148] = {.lex_state = 57, .external_lex_state = 3}, - [2149] = {.lex_state = 57, .external_lex_state = 3}, - [2150] = {.lex_state = 7, .external_lex_state = 3}, + [2149] = {.lex_state = 0, .external_lex_state = 3}, + [2150] = {.lex_state = 0, .external_lex_state = 3}, [2151] = {.lex_state = 0, .external_lex_state = 3}, - [2152] = {.lex_state = 57, .external_lex_state = 3}, + [2152] = {.lex_state = 7, .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 = 57, .external_lex_state = 3}, + [2154] = {.lex_state = 0, .external_lex_state = 3}, + [2155] = {.lex_state = 7, .external_lex_state = 3}, + [2156] = {.lex_state = 0, .external_lex_state = 3}, [2157] = {.lex_state = 0, .external_lex_state = 3}, [2158] = {.lex_state = 0, .external_lex_state = 3}, - [2159] = {.lex_state = 0, .external_lex_state = 3}, + [2159] = {.lex_state = 57, .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}, + [2161] = {.lex_state = 7, .external_lex_state = 3}, + [2162] = {.lex_state = 0, .external_lex_state = 3}, + [2163] = {.lex_state = 7, .external_lex_state = 3}, + [2164] = {.lex_state = 0, .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}, + [2167] = {.lex_state = 57, .external_lex_state = 3}, [2168] = {.lex_state = 0, .external_lex_state = 3}, - [2169] = {.lex_state = 7, .external_lex_state = 3}, - [2170] = {.lex_state = 0, .external_lex_state = 3}, + [2169] = {.lex_state = 0, .external_lex_state = 3}, + [2170] = {.lex_state = 57, .external_lex_state = 3}, [2171] = {.lex_state = 0, .external_lex_state = 3}, - [2172] = {.lex_state = 57, .external_lex_state = 3}, + [2172] = {.lex_state = 0, .external_lex_state = 3}, [2173] = {.lex_state = 0, .external_lex_state = 3}, - [2174] = {.lex_state = 0, .external_lex_state = 3}, + [2174] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, [2179] = {.lex_state = 0, .external_lex_state = 3}, - [2180] = {.lex_state = 17, .external_lex_state = 3}, - [2181] = {.lex_state = 57, .external_lex_state = 3}, + [2180] = {.lex_state = 57, .external_lex_state = 3}, + [2181] = {.lex_state = 7, .external_lex_state = 3}, [2182] = {.lex_state = 0, .external_lex_state = 3}, - [2183] = {.lex_state = 17, .external_lex_state = 3}, + [2183] = {.lex_state = 57, .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}, + [2185] = {.lex_state = 0, .external_lex_state = 3}, + [2186] = {.lex_state = 57, .external_lex_state = 3}, [2187] = {.lex_state = 0, .external_lex_state = 3}, [2188] = {.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 = 7, .external_lex_state = 3}, - [2193] = {.lex_state = 7, .external_lex_state = 3}, - [2194] = {.lex_state = 0, .external_lex_state = 3}, + [2189] = {.lex_state = 0, .external_lex_state = 3}, + [2190] = {.lex_state = 7, .external_lex_state = 3}, + [2191] = {.lex_state = 17, .external_lex_state = 3}, + [2192] = {.lex_state = 17, .external_lex_state = 3}, + [2193] = {.lex_state = 0, .external_lex_state = 3}, + [2194] = {.lex_state = 4, .external_lex_state = 3}, [2195] = {.lex_state = 57, .external_lex_state = 3}, - [2196] = {.lex_state = 7, .external_lex_state = 3}, + [2196] = {.lex_state = 57, .external_lex_state = 3}, [2197] = {.lex_state = 0, .external_lex_state = 3}, [2198] = {.lex_state = 0, .external_lex_state = 3}, - [2199] = {.lex_state = 0, .external_lex_state = 3}, + [2199] = {.lex_state = 7, .external_lex_state = 3}, [2200] = {.lex_state = 0, .external_lex_state = 3}, - [2201] = {.lex_state = 0, .external_lex_state = 3}, + [2201] = {.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}, + [2203] = {.lex_state = 7, .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}, [2207] = {.lex_state = 0, .external_lex_state = 3}, - [2208] = {.lex_state = 57, .external_lex_state = 3}, + [2208] = {.lex_state = 0, .external_lex_state = 3}, [2209] = {.lex_state = 0, .external_lex_state = 3}, [2210] = {.lex_state = 0, .external_lex_state = 3}, - [2211] = {.lex_state = 0, .external_lex_state = 3}, - [2212] = {.lex_state = 57, .external_lex_state = 3}, - [2213] = {.lex_state = 17, .external_lex_state = 3}, - [2214] = {.lex_state = 57, .external_lex_state = 3}, + [2211] = {.lex_state = 57, .external_lex_state = 3}, + [2212] = {.lex_state = 17, .external_lex_state = 3}, + [2213] = {.lex_state = 0, .external_lex_state = 3}, + [2214] = {.lex_state = 0, .external_lex_state = 3}, [2215] = {.lex_state = 0, .external_lex_state = 3}, [2216] = {.lex_state = 0, .external_lex_state = 3}, - [2217] = {.lex_state = 57, .external_lex_state = 3}, + [2217] = {.lex_state = 0, .external_lex_state = 3}, [2218] = {.lex_state = 0, .external_lex_state = 3}, - [2219] = {.lex_state = 7, .external_lex_state = 3}, + [2219] = {.lex_state = 57, .external_lex_state = 3}, [2220] = {.lex_state = 0, .external_lex_state = 3}, [2221] = {.lex_state = 0, .external_lex_state = 3}, [2222] = {.lex_state = 7, .external_lex_state = 3}, [2223] = {.lex_state = 0, .external_lex_state = 3}, [2224] = {.lex_state = 0, .external_lex_state = 3}, - [2225] = {.lex_state = 0, .external_lex_state = 3}, - [2226] = {.lex_state = 0, .external_lex_state = 3}, + [2225] = {.lex_state = 7, .external_lex_state = 3}, + [2226] = {.lex_state = 57, .external_lex_state = 3}, [2227] = {.lex_state = 0, .external_lex_state = 3}, - [2228] = {.lex_state = 4, .external_lex_state = 3}, - [2229] = {.lex_state = 0, .external_lex_state = 3}, + [2228] = {.lex_state = 57, .external_lex_state = 3}, + [2229] = {.lex_state = 7, .external_lex_state = 3}, [2230] = {.lex_state = 0, .external_lex_state = 3}, - [2231] = {.lex_state = 0, .external_lex_state = 3}, - [2232] = {.lex_state = 0, .external_lex_state = 3}, - [2233] = {.lex_state = 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}, + [2231] = {.lex_state = 17, .external_lex_state = 3}, + [2232] = {.lex_state = 7, .external_lex_state = 3}, + [2233] = {.lex_state = 0, .external_lex_state = 3}, + [2234] = {.lex_state = 57, .external_lex_state = 3}, + [2235] = {.lex_state = 7, .external_lex_state = 3}, + [2236] = {.lex_state = 57, .external_lex_state = 3}, [2237] = {.lex_state = 0, .external_lex_state = 3}, - [2238] = {.lex_state = 0, .external_lex_state = 3}, - [2239] = {.lex_state = 0, .external_lex_state = 3}, + [2238] = {.lex_state = 57, .external_lex_state = 3}, + [2239] = {.lex_state = 57, .external_lex_state = 3}, [2240] = {.lex_state = 0, .external_lex_state = 3}, - [2241] = {.lex_state = 0, .external_lex_state = 3}, - [2242] = {.lex_state = 57, .external_lex_state = 3}, + [2241] = {.lex_state = 4, .external_lex_state = 3}, + [2242] = {.lex_state = 0, .external_lex_state = 3}, [2243] = {.lex_state = 0, .external_lex_state = 3}, - [2244] = {.lex_state = 0, .external_lex_state = 3}, - [2245] = {.lex_state = 57, .external_lex_state = 3}, - [2246] = {.lex_state = 0, .external_lex_state = 5}, + [2244] = {.lex_state = 7, .external_lex_state = 3}, + [2245] = {.lex_state = 0, .external_lex_state = 3}, + [2246] = {.lex_state = 17, .external_lex_state = 3}, [2247] = {.lex_state = 0, .external_lex_state = 3}, - [2248] = {.lex_state = 7, .external_lex_state = 3}, + [2248] = {.lex_state = 0, .external_lex_state = 3}, [2249] = {.lex_state = 0, .external_lex_state = 3}, - [2250] = {.lex_state = 0, .external_lex_state = 3}, - [2251] = {.lex_state = 57, .external_lex_state = 3}, + [2250] = {.lex_state = 7, .external_lex_state = 3}, + [2251] = {.lex_state = 0, .external_lex_state = 3}, [2252] = {.lex_state = 0, .external_lex_state = 3}, [2253] = {.lex_state = 0, .external_lex_state = 3}, [2254] = {.lex_state = 57, .external_lex_state = 3}, [2255] = {.lex_state = 0, .external_lex_state = 3}, - [2256] = {.lex_state = 7, .external_lex_state = 3}, + [2256] = {.lex_state = 0, .external_lex_state = 3}, [2257] = {.lex_state = 0, .external_lex_state = 3}, - [2258] = {.lex_state = 7, .external_lex_state = 3}, + [2258] = {.lex_state = 0, .external_lex_state = 3}, [2259] = {.lex_state = 0, .external_lex_state = 3}, - [2260] = {.lex_state = 57, .external_lex_state = 3}, + [2260] = {.lex_state = 0, .external_lex_state = 3}, [2261] = {.lex_state = 0, .external_lex_state = 3}, [2262] = {.lex_state = 0, .external_lex_state = 3}, - [2263] = {.lex_state = 10, .external_lex_state = 3}, + [2263] = {.lex_state = 0, .external_lex_state = 3}, [2264] = {.lex_state = 0, .external_lex_state = 3}, - [2265] = {.lex_state = 17, .external_lex_state = 3}, + [2265] = {.lex_state = 0, .external_lex_state = 3}, [2266] = {.lex_state = 0, .external_lex_state = 3}, [2267] = {.lex_state = 0, .external_lex_state = 3}, [2268] = {.lex_state = 0, .external_lex_state = 3}, - [2269] = {.lex_state = 0, .external_lex_state = 3}, + [2269] = {.lex_state = 7, .external_lex_state = 3}, [2270] = {.lex_state = 0, .external_lex_state = 3}, [2271] = {.lex_state = 0, .external_lex_state = 3}, [2272] = {.lex_state = 0, .external_lex_state = 3}, - [2273] = {.lex_state = 57, .external_lex_state = 3}, + [2273] = {.lex_state = 0, .external_lex_state = 5}, [2274] = {.lex_state = 0, .external_lex_state = 3}, [2275] = {.lex_state = 0, .external_lex_state = 3}, - [2276] = {.lex_state = 57, .external_lex_state = 3}, + [2276] = {.lex_state = 0, .external_lex_state = 3}, [2277] = {.lex_state = 0, .external_lex_state = 3}, [2278] = {.lex_state = 0, .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 = 7, .external_lex_state = 3}, + [2280] = {.lex_state = 0, .external_lex_state = 3}, + [2281] = {.lex_state = 7, .external_lex_state = 3}, + [2282] = {.lex_state = 7, .external_lex_state = 3}, + [2283] = {.lex_state = 57, .external_lex_state = 3}, [2284] = {.lex_state = 0, .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}, + [2285] = {.lex_state = 0, .external_lex_state = 3}, + [2286] = {.lex_state = 0, .external_lex_state = 3}, + [2287] = {.lex_state = 57, .external_lex_state = 3}, + [2288] = {.lex_state = 57, .external_lex_state = 3}, [2289] = {.lex_state = 0, .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}, + [2291] = {.lex_state = 0, .external_lex_state = 3}, + [2292] = {.lex_state = 57, .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}, + [2295] = {.lex_state = 0, .external_lex_state = 3}, [2296] = {.lex_state = 0, .external_lex_state = 3}, - [2297] = {.lex_state = 57, .external_lex_state = 3}, - [2298] = {.lex_state = 7, .external_lex_state = 3}, - [2299] = {.lex_state = 7, .external_lex_state = 3}, - [2300] = {.lex_state = 0, .external_lex_state = 3}, - [2301] = {.lex_state = 0, .external_lex_state = 3}, + [2297] = {.lex_state = 0, .external_lex_state = 3}, + [2298] = {.lex_state = 0, .external_lex_state = 3}, + [2299] = {.lex_state = 0, .external_lex_state = 3}, + [2300] = {.lex_state = 57, .external_lex_state = 3}, + [2301] = {.lex_state = 57, .external_lex_state = 3}, [2302] = {.lex_state = 0, .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}, + [2303] = {.lex_state = 0, .external_lex_state = 3}, + [2304] = {.lex_state = 57, .external_lex_state = 3}, + [2305] = {.lex_state = 57, .external_lex_state = 3}, [2306] = {.lex_state = 0, .external_lex_state = 3}, - [2307] = {.lex_state = 57, .external_lex_state = 3}, + [2307] = {.lex_state = 0, .external_lex_state = 3}, [2308] = {.lex_state = 0, .external_lex_state = 3}, - [2309] = {.lex_state = 57, .external_lex_state = 3}, - [2310] = {.lex_state = 7, .external_lex_state = 3}, + [2309] = {.lex_state = 7, .external_lex_state = 3}, + [2310] = {.lex_state = 0, .external_lex_state = 3}, [2311] = {.lex_state = 0, .external_lex_state = 3}, [2312] = {.lex_state = 0, .external_lex_state = 3}, - [2313] = {.lex_state = 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}, + [2313] = {.lex_state = 57, .external_lex_state = 3}, + [2314] = {.lex_state = 57, .external_lex_state = 3}, + [2315] = {.lex_state = 57, .external_lex_state = 3}, + [2316] = {.lex_state = 10, .external_lex_state = 3}, + [2317] = {.lex_state = 17, .external_lex_state = 3}, [2318] = {.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 = 7, .external_lex_state = 3}, + [2321] = {.lex_state = 0, .external_lex_state = 3}, [2322] = {.lex_state = 7, .external_lex_state = 3}, - [2323] = {.lex_state = 0, .external_lex_state = 3}, - [2324] = {.lex_state = 7, .external_lex_state = 3}, + [2323] = {.lex_state = 7, .external_lex_state = 3}, + [2324] = {.lex_state = 0, .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}, + [2326] = {.lex_state = 0, .external_lex_state = 3}, + [2327] = {.lex_state = 0, .external_lex_state = 3}, + [2328] = {.lex_state = 0, .external_lex_state = 3}, + [2329] = {.lex_state = 0, .external_lex_state = 3}, [2330] = {.lex_state = 7, .external_lex_state = 3}, [2331] = {.lex_state = 7, .external_lex_state = 3}, [2332] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, + [2334] = {.lex_state = 0, .external_lex_state = 3}, + [2335] = {.lex_state = 0, .external_lex_state = 3}, + [2336] = {.lex_state = 7, .external_lex_state = 3}, + [2337] = {.lex_state = 7, .external_lex_state = 3}, [2338] = {.lex_state = 7, .external_lex_state = 3}, - [2339] = {.lex_state = 0, .external_lex_state = 3}, + [2339] = {.lex_state = 7, .external_lex_state = 3}, [2340] = {.lex_state = 7, .external_lex_state = 3}, - [2341] = {.lex_state = 0, .external_lex_state = 3}, + [2341] = {.lex_state = 7, .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}, + [2344] = {.lex_state = 7, .external_lex_state = 3}, + [2345] = {.lex_state = 7, .external_lex_state = 3}, [2346] = {.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 = 7, .external_lex_state = 3}, + [2347] = {.lex_state = 7, .external_lex_state = 3}, + [2348] = {.lex_state = 7, .external_lex_state = 3}, + [2349] = {.lex_state = 0, .external_lex_state = 3}, + [2350] = {.lex_state = 0, .external_lex_state = 3}, + [2351] = {.lex_state = 0, .external_lex_state = 3}, [2352] = {.lex_state = 7, .external_lex_state = 3}, [2353] = {.lex_state = 7, .external_lex_state = 3}, [2354] = {.lex_state = 0, .external_lex_state = 3}, @@ -14360,131 +14024,131 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2362] = {.lex_state = 57, .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 = 0, .external_lex_state = 3}, + [2366] = {.lex_state = 0, .external_lex_state = 3}, + [2367] = {.lex_state = 7, .external_lex_state = 3}, [2368] = {.lex_state = 7, .external_lex_state = 3}, - [2369] = {.lex_state = 0, .external_lex_state = 3}, - [2370] = {.lex_state = 0, .external_lex_state = 3}, - [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 = 7, .external_lex_state = 3}, - [2376] = {.lex_state = 0, .external_lex_state = 3}, + [2369] = {.lex_state = 7, .external_lex_state = 3}, + [2370] = {.lex_state = 7, .external_lex_state = 3}, + [2371] = {.lex_state = 0, .external_lex_state = 3}, + [2372] = {.lex_state = 0, .external_lex_state = 3}, + [2373] = {.lex_state = 0, .external_lex_state = 3}, + [2374] = {.lex_state = 0, .external_lex_state = 3}, + [2375] = {.lex_state = 0, .external_lex_state = 3}, + [2376] = {.lex_state = 7, .external_lex_state = 3}, [2377] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, + [2378] = {.lex_state = 10, .external_lex_state = 3}, + [2379] = {.lex_state = 0, .external_lex_state = 3}, + [2380] = {.lex_state = 0, .external_lex_state = 3}, + [2381] = {.lex_state = 0, .external_lex_state = 3}, + [2382] = {.lex_state = 57, .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 = 0, .external_lex_state = 3}, + [2388] = {.lex_state = 7, .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 = 57, .external_lex_state = 3}, - [2393] = {.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}, + [2392] = {.lex_state = 7, .external_lex_state = 3}, + [2393] = {.lex_state = 10, .external_lex_state = 3}, + [2394] = {.lex_state = 7, .external_lex_state = 3}, + [2395] = {.lex_state = 7, .external_lex_state = 3}, + [2396] = {.lex_state = 7, .external_lex_state = 3}, [2397] = {.lex_state = 0, .external_lex_state = 3}, - [2398] = {.lex_state = 0, .external_lex_state = 3}, + [2398] = {.lex_state = 7, .external_lex_state = 3}, [2399] = {.lex_state = 0, .external_lex_state = 3}, - [2400] = {.lex_state = 0, .external_lex_state = 3}, + [2400] = {.lex_state = 7, .external_lex_state = 3}, [2401] = {.lex_state = 7, .external_lex_state = 3}, [2402] = {.lex_state = 0, .external_lex_state = 3}, - [2403] = {.lex_state = 10, .external_lex_state = 3}, - [2404] = {.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 = 57, .external_lex_state = 3}, + [2403] = {.lex_state = 57, .external_lex_state = 3}, + [2404] = {.lex_state = 0, .external_lex_state = 3}, + [2405] = {.lex_state = 7, .external_lex_state = 3}, + [2406] = {.lex_state = 7, .external_lex_state = 3}, + [2407] = {.lex_state = 7, .external_lex_state = 3}, + [2408] = {.lex_state = 7, .external_lex_state = 3}, [2409] = {.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}, + [2412] = {.lex_state = 10, .external_lex_state = 3}, [2413] = {.lex_state = 7, .external_lex_state = 3}, [2414] = {.lex_state = 7, .external_lex_state = 3}, - [2415] = {.lex_state = 7, .external_lex_state = 3}, - [2416] = {.lex_state = 0, .external_lex_state = 3}, - [2417] = {.lex_state = 0, .external_lex_state = 3}, - [2418] = {.lex_state = 7, .external_lex_state = 3}, + [2415] = {.lex_state = 0, .external_lex_state = 3}, + [2416] = {.lex_state = 10, .external_lex_state = 3}, + [2417] = {.lex_state = 7, .external_lex_state = 3}, + [2418] = {.lex_state = 0, .external_lex_state = 3}, [2419] = {.lex_state = 0, .external_lex_state = 3}, [2420] = {.lex_state = 0, .external_lex_state = 3}, - [2421] = {.lex_state = 0, .external_lex_state = 3}, + [2421] = {.lex_state = 7, .external_lex_state = 3}, [2422] = {.lex_state = 0, .external_lex_state = 3}, - [2423] = {.lex_state = 0, .external_lex_state = 3}, + [2423] = {.lex_state = 57, .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}, + [2426] = {.lex_state = 7, .external_lex_state = 3}, [2427] = {.lex_state = 0, .external_lex_state = 3}, - [2428] = {.lex_state = 7, .external_lex_state = 3}, - [2429] = {.lex_state = 7, .external_lex_state = 3}, + [2428] = {.lex_state = 0, .external_lex_state = 3}, + [2429] = {.lex_state = 0, .external_lex_state = 3}, [2430] = {.lex_state = 7, .external_lex_state = 3}, - [2431] = {.lex_state = 0, .external_lex_state = 3}, + [2431] = {.lex_state = 7, .external_lex_state = 3}, [2432] = {.lex_state = 0, .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}, + [2433] = {.lex_state = 0, .external_lex_state = 3}, + [2434] = {.lex_state = 0, .external_lex_state = 3}, + [2435] = {.lex_state = 7, .external_lex_state = 3}, + [2436] = {.lex_state = 0, .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 = 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}, + [2442] = {.lex_state = 7, .external_lex_state = 3}, + [2443] = {.lex_state = 7, .external_lex_state = 3}, [2444] = {.lex_state = 7, .external_lex_state = 3}, - [2445] = {.lex_state = 0, .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 = 10, .external_lex_state = 3}, + [2445] = {.lex_state = 7, .external_lex_state = 3}, + [2446] = {.lex_state = 7, .external_lex_state = 3}, + [2447] = {.lex_state = 7, .external_lex_state = 3}, + [2448] = {.lex_state = 0, .external_lex_state = 3}, + [2449] = {.lex_state = 0, .external_lex_state = 3}, [2450] = {.lex_state = 0, .external_lex_state = 3}, - [2451] = {.lex_state = 7, .external_lex_state = 3}, - [2452] = {.lex_state = 0, .external_lex_state = 3}, - [2453] = {.lex_state = 0, .external_lex_state = 3}, - [2454] = {.lex_state = 7, .external_lex_state = 3}, - [2455] = {.lex_state = 0, .external_lex_state = 3}, + [2451] = {.lex_state = 0, .external_lex_state = 3}, + [2452] = {.lex_state = 10, .external_lex_state = 3}, + [2453] = {.lex_state = 7, .external_lex_state = 3}, + [2454] = {.lex_state = 0, .external_lex_state = 3}, + [2455] = {.lex_state = 7, .external_lex_state = 3}, [2456] = {.lex_state = 0, .external_lex_state = 3}, - [2457] = {.lex_state = 0, .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}, + [2457] = {.lex_state = 7, .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}, [2461] = {.lex_state = 0, .external_lex_state = 3}, [2462] = {.lex_state = 0, .external_lex_state = 3}, - [2463] = {.lex_state = 0, .external_lex_state = 3}, - [2464] = {.lex_state = 7, .external_lex_state = 3}, - [2465] = {.lex_state = 7, .external_lex_state = 3}, - [2466] = {.lex_state = 7, .external_lex_state = 3}, - [2467] = {.lex_state = 0, .external_lex_state = 3}, + [2463] = {.lex_state = 7, .external_lex_state = 3}, + [2464] = {.lex_state = 0, .external_lex_state = 3}, + [2465] = {.lex_state = 0, .external_lex_state = 3}, + [2466] = {.lex_state = 10, .external_lex_state = 3}, + [2467] = {.lex_state = 7, .external_lex_state = 3}, [2468] = {.lex_state = 0, .external_lex_state = 3}, - [2469] = {.lex_state = 7, .external_lex_state = 3}, + [2469] = {.lex_state = 0, .external_lex_state = 3}, [2470] = {.lex_state = 0, .external_lex_state = 3}, [2471] = {.lex_state = 0, .external_lex_state = 3}, [2472] = {.lex_state = 0, .external_lex_state = 3}, [2473] = {.lex_state = 0, .external_lex_state = 3}, [2474] = {.lex_state = 0, .external_lex_state = 3}, - [2475] = {.lex_state = 0, .external_lex_state = 3}, + [2475] = {.lex_state = 7, .external_lex_state = 3}, [2476] = {.lex_state = 0, .external_lex_state = 3}, - [2477] = {.lex_state = 7, .external_lex_state = 3}, + [2477] = {.lex_state = 0, .external_lex_state = 3}, [2478] = {.lex_state = 0, .external_lex_state = 3}, [2479] = {.lex_state = 0, .external_lex_state = 3}, [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 = 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}, + [2483] = {.lex_state = 7, .external_lex_state = 3}, + [2484] = {.lex_state = 7, .external_lex_state = 3}, + [2485] = {.lex_state = 10, .external_lex_state = 3}, + [2486] = {.lex_state = 0, .external_lex_state = 3}, [2487] = {.lex_state = 0, .external_lex_state = 3}, [2488] = {.lex_state = 0, .external_lex_state = 3}, [2489] = {.lex_state = 0, .external_lex_state = 3}, @@ -14492,56 +14156,73 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2494] = {.lex_state = 7, .external_lex_state = 3}, [2495] = {.lex_state = 0, .external_lex_state = 3}, [2496] = {.lex_state = 0, .external_lex_state = 3}, - [2497] = {.lex_state = 0, .external_lex_state = 3}, + [2497] = {.lex_state = 7, .external_lex_state = 3}, [2498] = {.lex_state = 0, .external_lex_state = 3}, - [2499] = {.lex_state = 0, .external_lex_state = 3}, - [2500] = {.lex_state = 10, .external_lex_state = 3}, - [2501] = {.lex_state = 0, .external_lex_state = 3}, + [2499] = {.lex_state = 7, .external_lex_state = 3}, + [2500] = {.lex_state = 7, .external_lex_state = 3}, + [2501] = {.lex_state = 10, .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}, + [2503] = {.lex_state = 10, .external_lex_state = 3}, + [2504] = {.lex_state = 7, .external_lex_state = 3}, + [2505] = {.lex_state = 7, .external_lex_state = 3}, [2506] = {.lex_state = 0, .external_lex_state = 3}, - [2507] = {.lex_state = 0, .external_lex_state = 3}, + [2507] = {.lex_state = 7, .external_lex_state = 3}, [2508] = {.lex_state = 10, .external_lex_state = 3}, [2509] = {.lex_state = 0, .external_lex_state = 3}, - [2510] = {.lex_state = 7, .external_lex_state = 3}, + [2510] = {.lex_state = 0, .external_lex_state = 3}, [2511] = {.lex_state = 0, .external_lex_state = 3}, [2512] = {.lex_state = 0, .external_lex_state = 3}, [2513] = {.lex_state = 0, .external_lex_state = 3}, - [2514] = {.lex_state = 10, .external_lex_state = 3}, - [2515] = {.lex_state = 0, .external_lex_state = 3}, - [2516] = {.lex_state = 10, .external_lex_state = 3}, - [2517] = {.lex_state = 0, .external_lex_state = 3}, + [2514] = {.lex_state = 0, .external_lex_state = 3}, + [2515] = {.lex_state = 7, .external_lex_state = 3}, + [2516] = {.lex_state = 0, .external_lex_state = 3}, + [2517] = {.lex_state = 10, .external_lex_state = 3}, [2518] = {.lex_state = 0, .external_lex_state = 3}, [2519] = {.lex_state = 0, .external_lex_state = 3}, - [2520] = {.lex_state = 7, .external_lex_state = 3}, - [2521] = {.lex_state = 7, .external_lex_state = 3}, - [2522] = {.lex_state = 0, .external_lex_state = 3}, - [2523] = {.lex_state = 7, .external_lex_state = 3}, + [2520] = {.lex_state = 0, .external_lex_state = 3}, + [2521] = {.lex_state = 0, .external_lex_state = 3}, + [2522] = {.lex_state = 10, .external_lex_state = 3}, + [2523] = {.lex_state = 0, .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}, + [2525] = {.lex_state = 10, .external_lex_state = 3}, + [2526] = {.lex_state = 0, .external_lex_state = 3}, [2527] = {.lex_state = 0, .external_lex_state = 3}, - [2528] = {.lex_state = 7, .external_lex_state = 3}, + [2528] = {.lex_state = 0, .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 = 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 = 7, .external_lex_state = 3}, - [2537] = {.lex_state = 7, .external_lex_state = 3}, + [2530] = {.lex_state = 0, .external_lex_state = 3}, + [2531] = {.lex_state = 10, .external_lex_state = 3}, + [2532] = {.lex_state = 0, .external_lex_state = 3}, + [2533] = {.lex_state = 10, .external_lex_state = 3}, + [2534] = {.lex_state = 0, .external_lex_state = 3}, + [2535] = {.lex_state = 0, .external_lex_state = 3}, + [2536] = {.lex_state = 0, .external_lex_state = 3}, + [2537] = {.lex_state = 0, .external_lex_state = 3}, [2538] = {.lex_state = 0, .external_lex_state = 3}, - [2539] = {.lex_state = 10, .external_lex_state = 3}, + [2539] = {.lex_state = 0, .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}, + [2544] = {.lex_state = 0, .external_lex_state = 3}, + [2545] = {.lex_state = 7, .external_lex_state = 3}, + [2546] = {.lex_state = 0, .external_lex_state = 3}, + [2547] = {.lex_state = 0, .external_lex_state = 3}, + [2548] = {.lex_state = 0, .external_lex_state = 3}, + [2549] = {.lex_state = 7, .external_lex_state = 3}, + [2550] = {.lex_state = 7, .external_lex_state = 3}, + [2551] = {.lex_state = 7, .external_lex_state = 3}, + [2552] = {.lex_state = 0, .external_lex_state = 3}, + [2553] = {.lex_state = 7, .external_lex_state = 3}, + [2554] = {.lex_state = 7, .external_lex_state = 3}, + [2555] = {.lex_state = 0, .external_lex_state = 3}, + [2556] = {.lex_state = 0, .external_lex_state = 3}, + [2557] = {.lex_state = 7, .external_lex_state = 3}, + [2558] = {.lex_state = 10, .external_lex_state = 3}, + [2559] = {.lex_state = 0, .external_lex_state = 3}, + [2560] = {.lex_state = 7, .external_lex_state = 3}, }; enum { @@ -14551,14 +14232,14 @@ enum { ts_external_token_block_comment = 3, }; -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { +static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__string_content] = sym__string_content, [ts_external_token_raw_string_literal] = sym_raw_string_literal, [ts_external_token_float_literal] = sym_float_literal, [ts_external_token_block_comment] = sym_block_comment, }; -static const bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { +static bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__string_content] = true, [ts_external_token_raw_string_literal] = true, @@ -14583,7 +14264,7 @@ static const bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { }, }; -static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { +static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), @@ -14724,80 +14405,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [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(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), + [sym_source_file] = STATE(2477), + [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(2475), + [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(1524), + [sym_visibility_modifier] = STATE(1344), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(78), + [sym_scoped_identifier] = STATE(1174), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(82), + [sym_if_let_expression] = STATE(82), + [sym_match_expression] = STATE(82), + [sym_while_expression] = STATE(82), + [sym_while_let_expression] = STATE(82), + [sym_loop_expression] = STATE(82), + [sym_for_expression] = STATE(82), + [sym_const_block] = STATE(82), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2466), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(82), + [sym_async_block] = STATE(82), + [sym_block] = STATE(82), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -14874,234 +14555,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [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(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__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(2475), + [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(1524), + [sym_visibility_modifier] = STATE(1344), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1204), + [sym_macro_invocation] = STATE(78), + [sym_scoped_identifier] = STATE(1174), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(82), + [sym_if_let_expression] = STATE(82), + [sym_match_expression] = STATE(82), + [sym_while_expression] = STATE(82), + [sym_while_let_expression] = STATE(82), + [sym_loop_expression] = STATE(82), + [sym_for_expression] = STATE(82), + [sym_const_block] = STATE(82), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2466), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(82), + [sym_async_block] = STATE(82), + [sym_block] = STATE(82), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [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(254), + [anon_sym_RBRACE] = ACTIONS(105), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15171,86 +14703,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(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(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), + [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(2475), + [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(1524), + [sym_visibility_modifier] = STATE(1344), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1205), + [sym_macro_invocation] = STATE(78), + [sym_scoped_identifier] = STATE(1174), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(82), + [sym_if_let_expression] = STATE(82), + [sym_match_expression] = STATE(82), + [sym_while_expression] = STATE(82), + [sym_while_let_expression] = STATE(82), + [sym_loop_expression] = STATE(82), + [sym_for_expression] = STATE(82), + [sym_const_block] = STATE(82), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2466), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(82), + [sym_async_block] = STATE(82), + [sym_block] = STATE(82), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [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(256), + [anon_sym_RBRACE] = ACTIONS(107), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15320,86 +14852,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [5] = { - [sym__statement] = STATE(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(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), + [4] = { + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_macro_definition] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_foreign_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_union_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_extern_crate_declaration] = STATE(12), + [sym_const_item] = STATE(12), + [sym_static_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2475), + [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(1524), + [sym_visibility_modifier] = STATE(1344), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(78), + [sym_scoped_identifier] = STATE(1174), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(82), + [sym_if_let_expression] = STATE(82), + [sym_match_expression] = STATE(82), + [sym_while_expression] = STATE(82), + [sym_while_let_expression] = STATE(82), + [sym_loop_expression] = STATE(82), + [sym_for_expression] = STATE(82), + [sym_const_block] = STATE(82), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2466), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(82), + [sym_async_block] = STATE(82), + [sym_block] = STATE(82), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(258), + [anon_sym_RBRACE] = ACTIONS(109), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15469,86 +15001,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [6] = { - [sym__statement] = STATE(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(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), + [5] = { + [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(2475), + [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(1524), + [sym_visibility_modifier] = STATE(1344), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1261), + [sym_macro_invocation] = STATE(78), + [sym_scoped_identifier] = STATE(1174), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(82), + [sym_if_let_expression] = STATE(82), + [sym_match_expression] = STATE(82), + [sym_while_expression] = STATE(82), + [sym_while_let_expression] = STATE(82), + [sym_loop_expression] = STATE(82), + [sym_for_expression] = STATE(82), + [sym_const_block] = STATE(82), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2466), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(82), + [sym_async_block] = STATE(82), + [sym_block] = STATE(82), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(260), + [anon_sym_RBRACE] = ACTIONS(111), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15618,86 +15150,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [7] = { - [sym__statement] = STATE(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(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), + [6] = { + [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(2475), + [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(1524), + [sym_visibility_modifier] = STATE(1344), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(78), + [sym_scoped_identifier] = STATE(1174), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(82), + [sym_if_let_expression] = STATE(82), + [sym_match_expression] = STATE(82), + [sym_while_expression] = STATE(82), + [sym_while_let_expression] = STATE(82), + [sym_loop_expression] = STATE(82), + [sym_for_expression] = STATE(82), + [sym_const_block] = STATE(82), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2466), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(82), + [sym_async_block] = STATE(82), + [sym_block] = STATE(82), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15767,235 +15299,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [8] = { - [sym__statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_macro_definition] = STATE(8), - [sym_attribute_item] = STATE(8), - [sym_inner_attribute_item] = STATE(8), - [sym_mod_item] = STATE(8), - [sym_foreign_mod_item] = STATE(8), - [sym_struct_item] = STATE(8), - [sym_union_item] = STATE(8), - [sym_enum_item] = STATE(8), - [sym_extern_crate_declaration] = STATE(8), - [sym_const_item] = STATE(8), - [sym_static_item] = STATE(8), - [sym_type_item] = STATE(8), - [sym_function_item] = STATE(8), - [sym_function_signature_item] = STATE(8), - [sym_function_modifiers] = STATE(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(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), + [7] = { + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2475), + [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(1524), + [sym_visibility_modifier] = STATE(1344), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(78), + [sym_scoped_identifier] = STATE(1174), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(82), + [sym_if_let_expression] = STATE(82), + [sym_match_expression] = STATE(82), + [sym_while_expression] = STATE(82), + [sym_while_let_expression] = STATE(82), + [sym_loop_expression] = STATE(82), + [sym_for_expression] = STATE(82), + [sym_const_block] = STATE(82), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2466), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(82), + [sym_async_block] = STATE(82), + [sym_block] = STATE(82), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [ts_builtin_sym_end] = ACTIONS(115), + [sym_identifier] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_macro_rules_BANG] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(132), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_u8] = ACTIONS(138), + [anon_sym_i8] = ACTIONS(138), + [anon_sym_u16] = ACTIONS(138), + [anon_sym_i16] = ACTIONS(138), + [anon_sym_u32] = ACTIONS(138), + [anon_sym_i32] = ACTIONS(138), + [anon_sym_u64] = ACTIONS(138), + [anon_sym_i64] = ACTIONS(138), + [anon_sym_u128] = ACTIONS(138), + [anon_sym_i128] = ACTIONS(138), + [anon_sym_isize] = ACTIONS(138), + [anon_sym_usize] = ACTIONS(138), + [anon_sym_f32] = ACTIONS(138), + [anon_sym_f64] = ACTIONS(138), + [anon_sym_bool] = ACTIONS(138), + [anon_sym_str] = ACTIONS(138), + [anon_sym_char] = ACTIONS(138), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_async] = ACTIONS(144), + [anon_sym_break] = ACTIONS(147), + [anon_sym_const] = ACTIONS(150), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_default] = ACTIONS(156), + [anon_sym_enum] = ACTIONS(159), + [anon_sym_fn] = ACTIONS(162), + [anon_sym_for] = ACTIONS(165), + [anon_sym_if] = ACTIONS(168), + [anon_sym_impl] = ACTIONS(171), + [anon_sym_let] = ACTIONS(174), + [anon_sym_loop] = ACTIONS(177), + [anon_sym_match] = ACTIONS(180), + [anon_sym_mod] = ACTIONS(183), + [anon_sym_pub] = ACTIONS(186), + [anon_sym_return] = ACTIONS(189), + [anon_sym_static] = ACTIONS(192), + [anon_sym_struct] = ACTIONS(195), + [anon_sym_trait] = ACTIONS(198), + [anon_sym_type] = ACTIONS(201), + [anon_sym_union] = ACTIONS(204), + [anon_sym_unsafe] = ACTIONS(207), + [anon_sym_use] = ACTIONS(210), + [anon_sym_while] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(216), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(222), + [anon_sym_COLON_COLON] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(228), + [anon_sym_DOT_DOT] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(234), + [anon_sym_yield] = ACTIONS(237), + [anon_sym_move] = ACTIONS(240), + [sym_integer_literal] = ACTIONS(243), + [aux_sym_string_literal_token1] = ACTIONS(246), + [sym_char_literal] = ACTIONS(243), + [anon_sym_true] = ACTIONS(249), + [anon_sym_false] = ACTIONS(249), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(252), + [sym_super] = ACTIONS(255), + [sym_crate] = ACTIONS(258), + [sym_metavariable] = ACTIONS(261), + [sym_raw_string_literal] = ACTIONS(243), + [sym_float_literal] = ACTIONS(243), [sym_block_comment] = ACTIONS(3), }, - [9] = { - [sym__statement] = STATE(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(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), + [8] = { + [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(2475), + [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(1524), + [sym_visibility_modifier] = STATE(1344), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(78), + [sym_scoped_identifier] = STATE(1174), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(82), + [sym_if_let_expression] = STATE(82), + [sym_match_expression] = STATE(82), + [sym_while_expression] = STATE(82), + [sym_while_let_expression] = STATE(82), + [sym_loop_expression] = STATE(82), + [sym_for_expression] = STATE(82), + [sym_const_block] = STATE(82), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2466), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(82), + [sym_async_block] = STATE(82), + [sym_block] = STATE(82), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [ts_builtin_sym_end] = ACTIONS(264), [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), @@ -16065,80 +15597,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [10] = { - [sym__statement] = STATE(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(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), + [9] = { + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function_modifiers] = STATE(2475), + [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(1524), + [sym_visibility_modifier] = STATE(1344), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1275), + [sym_macro_invocation] = STATE(78), + [sym_scoped_identifier] = STATE(1174), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(82), + [sym_if_let_expression] = STATE(82), + [sym_match_expression] = STATE(82), + [sym_while_expression] = STATE(82), + [sym_while_let_expression] = STATE(82), + [sym_loop_expression] = STATE(82), + [sym_for_expression] = STATE(82), + [sym_const_block] = STATE(82), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2466), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(82), + [sym_async_block] = STATE(82), + [sym_block] = STATE(82), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16214,80 +15746,80 @@ 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(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), + [10] = { + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_macro_definition] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_foreign_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_union_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_extern_crate_declaration] = STATE(12), + [sym_const_item] = STATE(12), + [sym_static_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2475), + [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(1524), + [sym_visibility_modifier] = STATE(1344), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1221), + [sym_macro_invocation] = STATE(78), + [sym_scoped_identifier] = STATE(1174), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(82), + [sym_if_let_expression] = STATE(82), + [sym_match_expression] = STATE(82), + [sym_while_expression] = STATE(82), + [sym_while_let_expression] = STATE(82), + [sym_loop_expression] = STATE(82), + [sym_for_expression] = STATE(82), + [sym_const_block] = STATE(82), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2466), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(82), + [sym_async_block] = STATE(82), + [sym_block] = STATE(82), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16363,80 +15895,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [12] = { - [sym__statement] = STATE(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(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), + [11] = { + [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(2475), + [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(1524), + [sym_visibility_modifier] = STATE(1344), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1222), + [sym_macro_invocation] = STATE(78), + [sym_scoped_identifier] = STATE(1174), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(82), + [sym_if_let_expression] = STATE(82), + [sym_match_expression] = STATE(82), + [sym_while_expression] = STATE(82), + [sym_while_let_expression] = STATE(82), + [sym_loop_expression] = STATE(82), + [sym_for_expression] = STATE(82), + [sym_const_block] = STATE(82), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2466), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(82), + [sym_async_block] = STATE(82), + [sym_block] = STATE(82), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16512,86 +16044,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [12] = { + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_macro_definition] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_foreign_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_union_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_extern_crate_declaration] = STATE(12), + [sym_const_item] = STATE(12), + [sym_static_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2475), + [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(1524), + [sym_visibility_modifier] = STATE(1344), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(183), + [sym_scoped_identifier] = STATE(1174), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(82), + [sym_if_let_expression] = STATE(82), + [sym_match_expression] = STATE(82), + [sym_while_expression] = STATE(82), + [sym_while_let_expression] = STATE(82), + [sym_loop_expression] = STATE(82), + [sym_for_expression] = STATE(82), + [sym_const_block] = STATE(82), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2466), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(82), + [sym_async_block] = STATE(82), + [sym_block] = STATE(82), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_macro_rules_BANG] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(132), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_u8] = ACTIONS(138), + [anon_sym_i8] = ACTIONS(138), + [anon_sym_u16] = ACTIONS(138), + [anon_sym_i16] = ACTIONS(138), + [anon_sym_u32] = ACTIONS(138), + [anon_sym_i32] = ACTIONS(138), + [anon_sym_u64] = ACTIONS(138), + [anon_sym_i64] = ACTIONS(138), + [anon_sym_u128] = ACTIONS(138), + [anon_sym_i128] = ACTIONS(138), + [anon_sym_isize] = ACTIONS(138), + [anon_sym_usize] = ACTIONS(138), + [anon_sym_f32] = ACTIONS(138), + [anon_sym_f64] = ACTIONS(138), + [anon_sym_bool] = ACTIONS(138), + [anon_sym_str] = ACTIONS(138), + [anon_sym_char] = ACTIONS(138), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_async] = ACTIONS(144), + [anon_sym_break] = ACTIONS(147), + [anon_sym_const] = ACTIONS(150), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_default] = ACTIONS(156), + [anon_sym_enum] = ACTIONS(159), + [anon_sym_fn] = ACTIONS(162), + [anon_sym_for] = ACTIONS(165), + [anon_sym_if] = ACTIONS(168), + [anon_sym_impl] = ACTIONS(171), + [anon_sym_let] = ACTIONS(174), + [anon_sym_loop] = ACTIONS(177), + [anon_sym_match] = ACTIONS(180), + [anon_sym_mod] = ACTIONS(183), + [anon_sym_pub] = ACTIONS(186), + [anon_sym_return] = ACTIONS(189), + [anon_sym_static] = ACTIONS(192), + [anon_sym_struct] = ACTIONS(195), + [anon_sym_trait] = ACTIONS(198), + [anon_sym_type] = ACTIONS(201), + [anon_sym_union] = ACTIONS(204), + [anon_sym_unsafe] = ACTIONS(207), + [anon_sym_use] = ACTIONS(210), + [anon_sym_while] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(216), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(222), + [anon_sym_COLON_COLON] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(228), + [anon_sym_DOT_DOT] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(234), + [anon_sym_yield] = ACTIONS(237), + [anon_sym_move] = ACTIONS(240), + [sym_integer_literal] = ACTIONS(243), + [aux_sym_string_literal_token1] = ACTIONS(246), + [sym_char_literal] = ACTIONS(243), + [anon_sym_true] = ACTIONS(249), + [anon_sym_false] = ACTIONS(249), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(252), + [sym_super] = ACTIONS(255), + [sym_crate] = ACTIONS(258), + [sym_metavariable] = ACTIONS(261), + [sym_raw_string_literal] = ACTIONS(243), + [sym_float_literal] = ACTIONS(243), + [sym_block_comment] = ACTIONS(3), + }, [13] = { - [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(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__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(2475), + [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(1524), + [sym_visibility_modifier] = STATE(1344), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(78), + [sym_scoped_identifier] = STATE(1174), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(82), + [sym_if_let_expression] = STATE(82), + [sym_match_expression] = STATE(82), + [sym_while_expression] = STATE(82), + [sym_while_let_expression] = STATE(82), + [sym_loop_expression] = STATE(82), + [sym_for_expression] = STATE(82), + [sym_const_block] = STATE(82), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2466), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(82), + [sym_async_block] = STATE(82), + [sym_block] = STATE(82), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [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), @@ -16662,79 +16343,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [14] = { - [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(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__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(2475), + [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(1524), + [sym_visibility_modifier] = STATE(1344), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1229), + [sym_macro_invocation] = STATE(78), + [sym_scoped_identifier] = STATE(1174), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(82), + [sym_if_let_expression] = STATE(82), + [sym_match_expression] = STATE(82), + [sym_while_expression] = STATE(82), + [sym_while_let_expression] = STATE(82), + [sym_loop_expression] = STATE(82), + [sym_for_expression] = STATE(82), + [sym_const_block] = STATE(82), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2466), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(82), + [sym_async_block] = STATE(82), + [sym_block] = STATE(82), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16811,79 +16492,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [15] = { - [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(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__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(2475), + [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(1524), + [sym_visibility_modifier] = STATE(1344), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1238), + [sym_macro_invocation] = STATE(78), + [sym_scoped_identifier] = STATE(1174), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(82), + [sym_if_let_expression] = STATE(82), + [sym_match_expression] = STATE(82), + [sym_while_expression] = STATE(82), + [sym_while_let_expression] = STATE(82), + [sym_loop_expression] = STATE(82), + [sym_for_expression] = STATE(82), + [sym_const_block] = STATE(82), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2466), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(82), + [sym_async_block] = STATE(82), + [sym_block] = STATE(82), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16960,79 +16641,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [16] = { - [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(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__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(2475), + [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(1524), + [sym_visibility_modifier] = STATE(1344), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1241), + [sym_macro_invocation] = STATE(78), + [sym_scoped_identifier] = STATE(1174), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(82), + [sym_if_let_expression] = STATE(82), + [sym_match_expression] = STATE(82), + [sym_while_expression] = STATE(82), + [sym_while_let_expression] = STATE(82), + [sym_loop_expression] = STATE(82), + [sym_for_expression] = STATE(82), + [sym_const_block] = STATE(82), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2466), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(82), + [sym_async_block] = STATE(82), + [sym_block] = STATE(82), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17109,52 +16790,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1157), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(282), [anon_sym_LPAREN] = ACTIONS(282), @@ -17251,52 +16932,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1105), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(310), [anon_sym_LPAREN] = ACTIONS(310), @@ -17392,193 +17073,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [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(314), - [anon_sym_LPAREN] = ACTIONS(314), - [anon_sym_RPAREN] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(314), - [anon_sym_EQ_GT] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(314), - [anon_sym_RBRACK] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(316), - [anon_sym_QMARK] = ACTIONS(314), - [anon_sym_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(318), - [anon_sym_as] = ACTIONS(316), - [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(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(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(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(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), - }, - [20] = { - [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1105), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(310), [anon_sym_LPAREN] = ACTIONS(13), @@ -17673,65 +17213,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [21] = { - [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), + [20] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1152), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(320), - [anon_sym_LPAREN] = ACTIONS(320), - [anon_sym_RPAREN] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(314), [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_RBRACE] = ACTIONS(314), + [anon_sym_EQ_GT] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(314), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(308), + [anon_sym_QMARK] = ACTIONS(314), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -17750,7 +17290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(322), + [anon_sym_as] = ACTIONS(316), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -17765,41 +17305,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_COMMA] = ACTIONS(320), - [anon_sym_LT] = ACTIONS(322), - [anon_sym_GT] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(316), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(314), [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_DOT_DOT_EQ] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_PIPE_PIPE] = ACTIONS(314), + [anon_sym_PIPE] = ACTIONS(324), + [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(322), + [anon_sym_DOT] = ACTIONS(316), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -17814,65 +17354,65 @@ 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(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), + [21] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1154), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(324), + [anon_sym_SEMI] = ACTIONS(326), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(324), + [anon_sym_RPAREN] = ACTIONS(326), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(324), - [anon_sym_EQ_GT] = ACTIONS(324), + [anon_sym_RBRACE] = ACTIONS(326), + [anon_sym_EQ_GT] = ACTIONS(326), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(324), - [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_RBRACK] = ACTIONS(326), + [anon_sym_PLUS] = ACTIONS(328), [anon_sym_STAR] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(324), + [anon_sym_QMARK] = ACTIONS(326), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -17891,7 +17431,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(326), + [anon_sym_as] = ACTIONS(328), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -17906,41 +17446,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(326), - [anon_sym_COMMA] = ACTIONS(324), - [anon_sym_LT] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(326), + [anon_sym_EQ] = ACTIONS(328), + [anon_sym_COMMA] = ACTIONS(326), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(328), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(324), - [anon_sym_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(324), + [anon_sym_AMP] = ACTIONS(320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(326), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(326), [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(324), - [anon_sym_PIPE_PIPE] = ACTIONS(324), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(326), - [anon_sym_EQ_EQ] = ACTIONS(324), - [anon_sym_BANG_EQ] = ACTIONS(324), - [anon_sym_LT_EQ] = ACTIONS(324), - [anon_sym_GT_EQ] = ACTIONS(324), - [anon_sym_LT_LT] = ACTIONS(326), - [anon_sym_GT_GT] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(326), - [anon_sym_PERCENT] = ACTIONS(326), - [anon_sym_PLUS_EQ] = ACTIONS(324), - [anon_sym_DASH_EQ] = ACTIONS(324), - [anon_sym_STAR_EQ] = ACTIONS(324), - [anon_sym_SLASH_EQ] = ACTIONS(324), - [anon_sym_PERCENT_EQ] = ACTIONS(324), - [anon_sym_AMP_EQ] = ACTIONS(324), - [anon_sym_PIPE_EQ] = ACTIONS(324), - [anon_sym_CARET_EQ] = ACTIONS(324), - [anon_sym_LT_LT_EQ] = ACTIONS(324), - [anon_sym_GT_GT_EQ] = ACTIONS(324), + [anon_sym_AMP_AMP] = ACTIONS(326), + [anon_sym_PIPE_PIPE] = ACTIONS(326), + [anon_sym_PIPE] = ACTIONS(324), + [anon_sym_CARET] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(326), + [anon_sym_BANG_EQ] = ACTIONS(326), + [anon_sym_LT_EQ] = ACTIONS(326), + [anon_sym_GT_EQ] = ACTIONS(326), + [anon_sym_LT_LT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(328), + [anon_sym_PERCENT] = ACTIONS(328), + [anon_sym_PLUS_EQ] = ACTIONS(326), + [anon_sym_DASH_EQ] = ACTIONS(326), + [anon_sym_STAR_EQ] = ACTIONS(326), + [anon_sym_SLASH_EQ] = ACTIONS(326), + [anon_sym_PERCENT_EQ] = ACTIONS(326), + [anon_sym_AMP_EQ] = ACTIONS(326), + [anon_sym_PIPE_EQ] = ACTIONS(326), + [anon_sym_CARET_EQ] = ACTIONS(326), + [anon_sym_LT_LT_EQ] = ACTIONS(326), + [anon_sym_GT_GT_EQ] = ACTIONS(326), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(326), + [anon_sym_DOT] = ACTIONS(328), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(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(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1146), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(17), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(330), + [anon_sym_LPAREN] = ACTIONS(330), + [anon_sym_RPAREN] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(330), + [anon_sym_EQ_GT] = ACTIONS(330), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_RBRACK] = ACTIONS(330), + [anon_sym_PLUS] = ACTIONS(332), + [anon_sym_STAR] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(330), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [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(334), + [anon_sym_as] = ACTIONS(332), + [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(332), + [anon_sym_COMMA] = ACTIONS(330), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT] = ACTIONS(332), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(332), + [anon_sym_DOT_DOT_DOT] = ACTIONS(330), + [anon_sym_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(330), + [anon_sym_DASH] = ACTIONS(332), + [anon_sym_AMP_AMP] = ACTIONS(330), + [anon_sym_PIPE_PIPE] = ACTIONS(330), + [anon_sym_PIPE] = ACTIONS(332), + [anon_sym_CARET] = ACTIONS(332), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(332), + [anon_sym_GT_GT] = ACTIONS(332), + [anon_sym_SLASH] = ACTIONS(332), + [anon_sym_PERCENT] = ACTIONS(332), + [anon_sym_PLUS_EQ] = ACTIONS(330), + [anon_sym_DASH_EQ] = ACTIONS(330), + [anon_sym_STAR_EQ] = ACTIONS(330), + [anon_sym_SLASH_EQ] = ACTIONS(330), + [anon_sym_PERCENT_EQ] = ACTIONS(330), + [anon_sym_AMP_EQ] = ACTIONS(330), + [anon_sym_PIPE_EQ] = ACTIONS(330), + [anon_sym_CARET_EQ] = ACTIONS(330), + [anon_sym_LT_LT_EQ] = ACTIONS(330), + [anon_sym_GT_GT_EQ] = ACTIONS(330), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(332), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -17956,52 +17637,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1082), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(336), [anon_sym_LPAREN] = ACTIONS(13), @@ -18009,10 +17690,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_RBRACE] = ACTIONS(336), [anon_sym_EQ_GT] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(336), [anon_sym_RBRACK] = ACTIONS(336), [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(338), [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -18049,17 +17730,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(328), + [anon_sym_LT] = ACTIONS(338), [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(330), + [anon_sym_AMP] = ACTIONS(338), [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT] = ACTIONS(338), [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(308), + [anon_sym_DASH] = ACTIONS(338), [anon_sym_AMP_AMP] = ACTIONS(336), [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_PIPE] = ACTIONS(338), [anon_sym_CARET] = ACTIONS(338), [anon_sym_EQ_EQ] = ACTIONS(336), [anon_sym_BANG_EQ] = ACTIONS(336), @@ -18097,64 +17778,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1082), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(320), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(336), + [anon_sym_LPAREN] = ACTIONS(336), + [anon_sym_RPAREN] = ACTIONS(336), [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_RBRACE] = ACTIONS(336), + [anon_sym_EQ_GT] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_RBRACK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -18173,7 +17854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(322), + [anon_sym_as] = ACTIONS(338), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -18188,41 +17869,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_COMMA] = ACTIONS(320), - [anon_sym_LT] = ACTIONS(322), - [anon_sym_GT] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_COMMA] = ACTIONS(336), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(338), [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_AMP] = ACTIONS(338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DOT] = ACTIONS(338), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18238,52 +17919,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1267), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(282), [anon_sym_LBRACE] = ACTIONS(282), @@ -18374,59 +18055,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1225), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(328), + [anon_sym_STAR] = ACTIONS(350), + [anon_sym_QMARK] = ACTIONS(326), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -18445,7 +18126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(312), + [anon_sym_as] = ACTIONS(328), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -18460,40 +18141,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(312), + [anon_sym_EQ] = ACTIONS(328), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(328), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_AMP_AMP] = ACTIONS(310), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_EQ_EQ] = ACTIONS(310), - [anon_sym_BANG_EQ] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(312), - [anon_sym_GT_GT] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(312), - [anon_sym_PERCENT] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(310), - [anon_sym_DASH_EQ] = ACTIONS(310), - [anon_sym_STAR_EQ] = ACTIONS(310), - [anon_sym_SLASH_EQ] = ACTIONS(310), - [anon_sym_PERCENT_EQ] = ACTIONS(310), - [anon_sym_AMP_EQ] = ACTIONS(310), - [anon_sym_PIPE_EQ] = ACTIONS(310), - [anon_sym_CARET_EQ] = ACTIONS(310), - [anon_sym_LT_LT_EQ] = ACTIONS(310), - [anon_sym_GT_GT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(326), + [anon_sym_DOT_DOT] = ACTIONS(366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(326), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(326), + [anon_sym_PIPE_PIPE] = ACTIONS(326), + [anon_sym_PIPE] = ACTIONS(324), + [anon_sym_CARET] = ACTIONS(328), + [anon_sym_EQ_EQ] = ACTIONS(326), + [anon_sym_BANG_EQ] = ACTIONS(326), + [anon_sym_LT_EQ] = ACTIONS(326), + [anon_sym_GT_EQ] = ACTIONS(326), + [anon_sym_LT_LT] = ACTIONS(328), + [anon_sym_GT_GT] = ACTIONS(328), + [anon_sym_SLASH] = ACTIONS(328), + [anon_sym_PERCENT] = ACTIONS(328), + [anon_sym_PLUS_EQ] = ACTIONS(326), + [anon_sym_DASH_EQ] = ACTIONS(326), + [anon_sym_STAR_EQ] = ACTIONS(326), + [anon_sym_SLASH_EQ] = ACTIONS(326), + [anon_sym_PERCENT_EQ] = ACTIONS(326), + [anon_sym_AMP_EQ] = ACTIONS(326), + [anon_sym_PIPE_EQ] = ACTIONS(326), + [anon_sym_CARET_EQ] = ACTIONS(326), + [anon_sym_LT_LT_EQ] = ACTIONS(326), + [anon_sym_GT_GT_EQ] = ACTIONS(326), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(328), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18509,59 +18190,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1105), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [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_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), @@ -18580,7 +18261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(322), + [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -18595,40 +18276,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_LT] = ACTIONS(322), - [anon_sym_GT] = ACTIONS(322), + [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(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_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(322), + [anon_sym_DOT] = ACTIONS(312), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18644,193 +18325,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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(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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1082), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(336), [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(350), + [anon_sym_STAR] = ACTIONS(338), [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), @@ -18866,17 +18412,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(328), + [anon_sym_LT] = ACTIONS(338), [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(338), [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(366), + [anon_sym_DOT_DOT] = ACTIONS(338), [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(350), + [anon_sym_DASH] = ACTIONS(338), [anon_sym_AMP_AMP] = ACTIONS(336), [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_PIPE] = ACTIONS(338), [anon_sym_CARET] = ACTIONS(338), [anon_sym_EQ_EQ] = ACTIONS(336), [anon_sym_BANG_EQ] = ACTIONS(336), @@ -18913,59 +18459,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [30] = { - [sym_bracketed_type] = STATE(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), + [29] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1231), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(350), [anon_sym_QMARK] = ACTIONS(314), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), @@ -18984,7 +18530,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(318), + [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_as] = ACTIONS(316), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), @@ -19001,17 +18547,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(316), - [anon_sym_LT] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(318), [anon_sym_GT] = ACTIONS(316), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(316), + [anon_sym_AMP] = ACTIONS(364), [anon_sym_DOT_DOT_DOT] = ACTIONS(314), - [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(366), [anon_sym_DOT_DOT_EQ] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(350), [anon_sym_AMP_AMP] = ACTIONS(314), [anon_sym_PIPE_PIPE] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(324), [anon_sym_CARET] = ACTIONS(316), [anon_sym_EQ_EQ] = ACTIONS(314), [anon_sym_BANG_EQ] = ACTIONS(314), @@ -19048,60 +18594,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [30] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1219), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(25), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(330), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_PLUS] = ACTIONS(332), + [anon_sym_STAR] = ACTIONS(332), + [anon_sym_QMARK] = ACTIONS(330), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [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(334), + [anon_sym_as] = ACTIONS(332), + [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(332), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT] = ACTIONS(332), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(332), + [anon_sym_DOT_DOT_DOT] = ACTIONS(330), + [anon_sym_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(330), + [anon_sym_DASH] = ACTIONS(332), + [anon_sym_AMP_AMP] = ACTIONS(330), + [anon_sym_PIPE_PIPE] = ACTIONS(330), + [anon_sym_PIPE] = ACTIONS(332), + [anon_sym_CARET] = ACTIONS(332), + [anon_sym_EQ_EQ] = ACTIONS(330), + [anon_sym_BANG_EQ] = ACTIONS(330), + [anon_sym_LT_EQ] = ACTIONS(330), + [anon_sym_GT_EQ] = ACTIONS(330), + [anon_sym_LT_LT] = ACTIONS(332), + [anon_sym_GT_GT] = ACTIONS(332), + [anon_sym_SLASH] = ACTIONS(332), + [anon_sym_PERCENT] = ACTIONS(332), + [anon_sym_PLUS_EQ] = ACTIONS(330), + [anon_sym_DASH_EQ] = ACTIONS(330), + [anon_sym_STAR_EQ] = ACTIONS(330), + [anon_sym_SLASH_EQ] = ACTIONS(330), + [anon_sym_PERCENT_EQ] = ACTIONS(330), + [anon_sym_AMP_EQ] = ACTIONS(330), + [anon_sym_PIPE_EQ] = ACTIONS(330), + [anon_sym_CARET_EQ] = ACTIONS(330), + [anon_sym_LT_LT_EQ] = ACTIONS(330), + [anon_sym_GT_GT_EQ] = ACTIONS(330), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [anon_sym_DOT] = ACTIONS(332), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1082), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(324), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -19120,7 +18801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(326), + [anon_sym_as] = ACTIONS(338), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -19135,40 +18816,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(326), - [anon_sym_LT] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(326), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(324), - [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(324), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(324), - [anon_sym_PIPE_PIPE] = ACTIONS(324), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(326), - [anon_sym_EQ_EQ] = ACTIONS(324), - [anon_sym_BANG_EQ] = ACTIONS(324), - [anon_sym_LT_EQ] = ACTIONS(324), - [anon_sym_GT_EQ] = ACTIONS(324), - [anon_sym_LT_LT] = ACTIONS(326), - [anon_sym_GT_GT] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(326), - [anon_sym_PERCENT] = ACTIONS(326), - [anon_sym_PLUS_EQ] = ACTIONS(324), - [anon_sym_DASH_EQ] = ACTIONS(324), - [anon_sym_STAR_EQ] = ACTIONS(324), - [anon_sym_SLASH_EQ] = ACTIONS(324), - [anon_sym_PERCENT_EQ] = ACTIONS(324), - [anon_sym_AMP_EQ] = ACTIONS(324), - [anon_sym_PIPE_EQ] = ACTIONS(324), - [anon_sym_CARET_EQ] = ACTIONS(324), - [anon_sym_LT_LT_EQ] = ACTIONS(324), - [anon_sym_GT_GT_EQ] = ACTIONS(324), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(326), + [anon_sym_DOT] = ACTIONS(338), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19184,54 +18865,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1105), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [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), @@ -19319,54 +19000,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_attribute_item] = STATE(623), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1191), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_enum_variant_list_repeat1] = STATE(623), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -19430,54 +19111,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_attribute_item] = STATE(41), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1201), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_enum_variant_list_repeat1] = STATE(41), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(374), @@ -19542,52 +19223,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1190), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [aux_sym_enum_variant_list_repeat1] = STATE(33), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), @@ -19653,52 +19334,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), @@ -19763,52 +19444,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), @@ -19872,54 +19553,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_attribute_item] = STATE(43), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(386), @@ -19982,54 +19663,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_attribute_item] = STATE(40), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1250), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_enum_variant_list_repeat1] = STATE(40), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(388), @@ -20092,54 +19773,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_attribute_item] = STATE(623), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1289), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_enum_variant_list_repeat1] = STATE(623), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20201,54 +19882,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_attribute_item] = STATE(623), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1197), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_enum_variant_list_repeat1] = STATE(623), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20310,54 +19991,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_attribute_item] = STATE(43), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20419,54 +20100,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_attribute_item] = STATE(623), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1265), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_enum_variant_list_repeat1] = STATE(623), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20528,272 +20209,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [44] = { - [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(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_else_clause] = STATE(182), + [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), }, [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(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), - }, - [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1211), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_tuple_expression_repeat1] = STATE(46), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(494), + [anon_sym_RPAREN] = ACTIONS(396), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -20851,8 +20424,116 @@ 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(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_tuple_expression_repeat1] = STATE(46), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_u8] = ACTIONS(415), + [anon_sym_i8] = ACTIONS(415), + [anon_sym_u16] = ACTIONS(415), + [anon_sym_i16] = ACTIONS(415), + [anon_sym_u32] = ACTIONS(415), + [anon_sym_i32] = ACTIONS(415), + [anon_sym_u64] = ACTIONS(415), + [anon_sym_i64] = ACTIONS(415), + [anon_sym_u128] = ACTIONS(415), + [anon_sym_i128] = ACTIONS(415), + [anon_sym_isize] = ACTIONS(415), + [anon_sym_usize] = ACTIONS(415), + [anon_sym_f32] = ACTIONS(415), + [anon_sym_f64] = ACTIONS(415), + [anon_sym_bool] = ACTIONS(415), + [anon_sym_str] = ACTIONS(415), + [anon_sym_char] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(418), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(424), + [anon_sym_const] = ACTIONS(427), + [anon_sym_continue] = ACTIONS(430), + [anon_sym_default] = ACTIONS(433), + [anon_sym_for] = ACTIONS(436), + [anon_sym_if] = ACTIONS(439), + [anon_sym_loop] = ACTIONS(442), + [anon_sym_match] = ACTIONS(445), + [anon_sym_return] = ACTIONS(448), + [anon_sym_union] = ACTIONS(433), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_while] = ACTIONS(454), + [anon_sym_BANG] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(457), + [anon_sym_COLON_COLON] = ACTIONS(460), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_DOT_DOT] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(475), + [sym_integer_literal] = ACTIONS(478), + [aux_sym_string_literal_token1] = ACTIONS(481), + [sym_char_literal] = ACTIONS(478), + [anon_sym_true] = ACTIONS(484), + [anon_sym_false] = ACTIONS(484), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(490), + [sym_crate] = ACTIONS(490), + [sym_metavariable] = ACTIONS(493), + [sym_raw_string_literal] = ACTIONS(478), + [sym_float_literal] = ACTIONS(478), + [sym_block_comment] = ACTIONS(3), + }, [47] = { - [sym_else_clause] = STATE(140), + [sym_else_clause] = STATE(76), [ts_builtin_sym_end] = ACTIONS(496), [sym_identifier] = ACTIONS(498), [anon_sym_SEMI] = ACTIONS(496), @@ -20942,7 +20623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_else] = ACTIONS(394), [anon_sym_move] = ACTIONS(498), [anon_sym_DOT] = ACTIONS(498), [sym_integer_literal] = ACTIONS(496), @@ -20960,56 +20641,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1211), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [aux_sym_tuple_expression_repeat1] = STATE(50), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(500), + [anon_sym_RPAREN] = ACTIONS(396), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -21068,56 +20749,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1215), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_tuple_expression_repeat1] = STATE(45), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(502), + [anon_sym_RPAREN] = ACTIONS(500), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -21176,53 +20857,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1255), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [aux_sym_tuple_expression_repeat1] = STATE(46), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(502), @@ -21284,266 +20965,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1148), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21581,12 +21048,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [sym_mutable_specifier] = ACTIONS(516), - [anon_sym_DOT_DOT] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(506), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -21604,58 +21071,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [54] = { - [sym_bracketed_type] = STATE(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), + [52] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1258), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -21681,19 +21148,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(520), + [anon_sym_let] = ACTIONS(510), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(512), [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -21711,272 +21178,486 @@ 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(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_else] = 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), + [sym_block_comment] = ACTIONS(3), + }, + [54] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(520), + [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), + }, [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), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_RBRACK] = ACTIONS(522), + [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(522), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [56] = { - [sym_bracketed_type] = STATE(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), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1153), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(524), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [sym_mutable_specifier] = ACTIONS(524), + [anon_sym_DOT_DOT] = ACTIONS(506), + [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), }, [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1268), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22009,12 +21690,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(512), [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22033,52 +21714,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1143), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22120,7 +21801,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(518), + [anon_sym_DOT_DOT] = ACTIONS(506), [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -22140,57 +21821,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22216,19 +21897,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(530), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_DASH_GT] = ACTIONS(528), + [anon_sym_BANG] = ACTIONS(508), [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_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22247,164 +21928,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1228), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22430,19 +22004,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(534), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [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_AMP] = ACTIONS(512), + [sym_mutable_specifier] = ACTIONS(532), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22460,58 +22034,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [62] = { - [sym_bracketed_type] = STATE(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), + [61] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1220), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22544,12 +22118,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(512), [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22567,272 +22141,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [63] = { - [sym_bracketed_type] = STATE(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), - [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_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_SQUOTE] = ACTIONS(542), - [anon_sym_as] = 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(542), - [anon_sym_EQ] = ACTIONS(542), - [anon_sym_extern] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_COLON_COLON] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(542), - [anon_sym_DOT_DOT_DOT] = ACTIONS(540), - [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_yield] = ACTIONS(542), - [anon_sym_else] = ACTIONS(542), - [anon_sym_move] = 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), - }, - [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), + [62] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1274), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22858,19 +22218,126 @@ 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(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_BANG] = ACTIONS(508), + [anon_sym_DASH_GT] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(534), + [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), + }, + [63] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(508), + [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(538), + [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(508), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(512), [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22888,58 +22355,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [64] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1217), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22965,19 +22432,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(540), [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_BANG] = ACTIONS(508), [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_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22995,165 +22462,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [65] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1239), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(340), [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_STAR] = ACTIONS(508), + [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(508), + [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(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(350), [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), }, - [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), + [66] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1278), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23179,19 +22646,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(548), + [anon_sym_let] = ACTIONS(542), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(512), [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23209,58 +22676,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [69] = { - [sym_bracketed_type] = STATE(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), + [67] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [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_RBRACK] = ACTIONS(544), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -23316,109 +22783,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [68] = { + [ts_builtin_sym_end] = ACTIONS(546), + [sym_identifier] = ACTIONS(548), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_macro_rules_BANG] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(546), + [anon_sym_RBRACE] = ACTIONS(546), + [anon_sym_LBRACK] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(546), + [anon_sym_u8] = ACTIONS(548), + [anon_sym_i8] = ACTIONS(548), + [anon_sym_u16] = ACTIONS(548), + [anon_sym_i16] = ACTIONS(548), + [anon_sym_u32] = ACTIONS(548), + [anon_sym_i32] = ACTIONS(548), + [anon_sym_u64] = ACTIONS(548), + [anon_sym_i64] = ACTIONS(548), + [anon_sym_u128] = ACTIONS(548), + [anon_sym_i128] = ACTIONS(548), + [anon_sym_isize] = ACTIONS(548), + [anon_sym_usize] = ACTIONS(548), + [anon_sym_f32] = ACTIONS(548), + [anon_sym_f64] = ACTIONS(548), + [anon_sym_bool] = ACTIONS(548), + [anon_sym_str] = ACTIONS(548), + [anon_sym_char] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(548), + [anon_sym_as] = ACTIONS(548), + [anon_sym_async] = ACTIONS(548), + [anon_sym_break] = ACTIONS(548), + [anon_sym_const] = ACTIONS(548), + [anon_sym_continue] = ACTIONS(548), + [anon_sym_default] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(548), + [anon_sym_fn] = ACTIONS(548), + [anon_sym_for] = ACTIONS(548), + [anon_sym_if] = ACTIONS(548), + [anon_sym_impl] = ACTIONS(548), + [anon_sym_let] = ACTIONS(548), + [anon_sym_loop] = ACTIONS(548), + [anon_sym_match] = ACTIONS(548), + [anon_sym_mod] = ACTIONS(548), + [anon_sym_pub] = ACTIONS(548), + [anon_sym_return] = ACTIONS(548), + [anon_sym_static] = ACTIONS(548), + [anon_sym_struct] = ACTIONS(548), + [anon_sym_trait] = ACTIONS(548), + [anon_sym_type] = ACTIONS(548), + [anon_sym_union] = ACTIONS(548), + [anon_sym_unsafe] = ACTIONS(548), + [anon_sym_use] = ACTIONS(548), + [anon_sym_while] = ACTIONS(548), + [anon_sym_POUND] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(548), + [anon_sym_extern] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(548), + [anon_sym_GT] = ACTIONS(548), + [anon_sym_COLON_COLON] = ACTIONS(546), + [anon_sym_AMP] = ACTIONS(548), + [anon_sym_DOT_DOT_DOT] = ACTIONS(546), + [anon_sym_DOT_DOT] = ACTIONS(548), + [anon_sym_DOT_DOT_EQ] = ACTIONS(546), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(546), + [anon_sym_PIPE_PIPE] = ACTIONS(546), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_EQ_EQ] = ACTIONS(546), + [anon_sym_BANG_EQ] = ACTIONS(546), + [anon_sym_LT_EQ] = ACTIONS(546), + [anon_sym_GT_EQ] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(548), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(548), + [anon_sym_PERCENT] = ACTIONS(548), + [anon_sym_PLUS_EQ] = ACTIONS(546), + [anon_sym_DASH_EQ] = ACTIONS(546), + [anon_sym_STAR_EQ] = ACTIONS(546), + [anon_sym_SLASH_EQ] = ACTIONS(546), + [anon_sym_PERCENT_EQ] = ACTIONS(546), + [anon_sym_AMP_EQ] = ACTIONS(546), + [anon_sym_PIPE_EQ] = ACTIONS(546), + [anon_sym_CARET_EQ] = ACTIONS(546), + [anon_sym_LT_LT_EQ] = ACTIONS(546), + [anon_sym_GT_GT_EQ] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(548), + [anon_sym_else] = ACTIONS(548), + [anon_sym_move] = ACTIONS(548), + [anon_sym_DOT] = ACTIONS(548), + [sym_integer_literal] = ACTIONS(546), + [aux_sym_string_literal_token1] = ACTIONS(546), + [sym_char_literal] = ACTIONS(546), + [anon_sym_true] = ACTIONS(548), + [anon_sym_false] = ACTIONS(548), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(548), + [sym_super] = ACTIONS(548), + [sym_crate] = ACTIONS(548), + [sym_metavariable] = ACTIONS(546), + [sym_raw_string_literal] = ACTIONS(546), + [sym_float_literal] = ACTIONS(546), + [sym_block_comment] = ACTIONS(3), + }, + [69] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1276), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(508), + [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(550), + [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(508), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(508), + [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), + }, [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), + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(340), [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_STAR] = ACTIONS(508), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(552), [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(508), [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(512), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(508), [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), @@ -23531,52 +23212,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1307), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23637,6 +23318,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [73] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(508), + [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(508), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(508), + [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), + }, + [74] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1300), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [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), + }, + [75] = { [ts_builtin_sym_end] = ACTIONS(558), [sym_identifier] = ACTIONS(560), [anon_sym_SEMI] = ACTIONS(558), @@ -23742,58 +23635,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(558), [sym_block_comment] = ACTIONS(3), }, - [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), + [76] = { + [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), + }, + [77] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1249), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23825,12 +23824,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(512), [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23848,53 +23847,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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), + [78] = { + [ts_builtin_sym_end] = ACTIONS(566), + [sym_identifier] = ACTIONS(568), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_macro_rules_BANG] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [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(572), + [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(572), + [anon_sym_extern] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_move] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(572), + [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), + }, + [79] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1252), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23954,53 +24059,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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), + [80] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1282), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24060,159 +24165,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [77] = { - [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(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), + [81] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24272,219 +24271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [79] = { - [ts_builtin_sym_end] = ACTIONS(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(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), - }, - [81] = { + [82] = { [ts_builtin_sym_end] = ACTIONS(574), [sym_identifier] = ACTIONS(576), [anon_sym_SEMI] = ACTIONS(574), @@ -24493,9 +24280,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(574), [anon_sym_RBRACE] = ACTIONS(574), [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_PLUS] = ACTIONS(572), [anon_sym_STAR] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_QMARK] = ACTIONS(570), [anon_sym_u8] = ACTIONS(576), [anon_sym_i8] = ACTIONS(576), [anon_sym_u16] = ACTIONS(576), @@ -24514,7 +24301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(576), [anon_sym_char] = ACTIONS(576), [anon_sym_SQUOTE] = ACTIONS(576), - [anon_sym_as] = ACTIONS(576), + [anon_sym_as] = ACTIONS(572), [anon_sym_async] = ACTIONS(576), [anon_sym_break] = ACTIONS(576), [anon_sym_const] = ACTIONS(576), @@ -24541,41 +24328,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(576), [anon_sym_POUND] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(572), [anon_sym_extern] = ACTIONS(576), [anon_sym_LT] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(572), [anon_sym_COLON_COLON] = ACTIONS(574), [anon_sym_AMP] = ACTIONS(576), - [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), [anon_sym_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(574), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), [anon_sym_DASH] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(574), - [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), [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_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), [anon_sym_yield] = ACTIONS(576), [anon_sym_move] = ACTIONS(576), - [anon_sym_DOT] = ACTIONS(576), + [anon_sym_DOT] = ACTIONS(572), [sym_integer_literal] = ACTIONS(574), [aux_sym_string_literal_token1] = ACTIONS(574), [sym_char_literal] = ACTIONS(574), @@ -24590,53 +24377,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [83] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1284), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24696,58 +24483,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [83] = { - [sym_bracketed_type] = STATE(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), + [84] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1271), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -24779,12 +24566,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(512), [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -24802,113 +24589,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [sym_bracketed_type] = STATE(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), + [85] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [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(508), + [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(508), [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(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(508), [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), }, - [85] = { + [86] = { [ts_builtin_sym_end] = ACTIONS(578), [sym_identifier] = ACTIONS(580), [anon_sym_SEMI] = ACTIONS(578), @@ -25014,53 +24801,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [87] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1298), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25120,53 +24907,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [87] = { - [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), + [88] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1286), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25226,53 +25013,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [88] = { - [sym_bracketed_type] = STATE(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), + [89] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25332,159 +25119,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [89] = { - [sym_bracketed_type] = STATE(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(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), - }, [90] = { - [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25545,52 +25226,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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(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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1296), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25651,158 +25332,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [92] = { - [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(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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1283), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25862,53 +25437,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [93] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1308), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(236), + [sym_if_let_expression] = STATE(236), + [sym_match_expression] = STATE(236), + [sym_while_expression] = STATE(236), + [sym_while_let_expression] = STATE(236), + [sym_loop_expression] = STATE(236), + [sym_for_expression] = STATE(236), + [sym_const_block] = STATE(236), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2533), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(236), + [sym_async_block] = STATE(236), + [sym_block] = STATE(236), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(582), + [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(584), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(586), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(590), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(594), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(596), + [anon_sym_while] = ACTIONS(598), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, [94] = { - [sym_bracketed_type] = STATE(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), + [ts_builtin_sym_end] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_macro_rules_BANG] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_RBRACE] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(602), + [anon_sym_i8] = ACTIONS(602), + [anon_sym_u16] = ACTIONS(602), + [anon_sym_i16] = ACTIONS(602), + [anon_sym_u32] = ACTIONS(602), + [anon_sym_i32] = ACTIONS(602), + [anon_sym_u64] = ACTIONS(602), + [anon_sym_i64] = ACTIONS(602), + [anon_sym_u128] = ACTIONS(602), + [anon_sym_i128] = ACTIONS(602), + [anon_sym_isize] = ACTIONS(602), + [anon_sym_usize] = ACTIONS(602), + [anon_sym_f32] = ACTIONS(602), + [anon_sym_f64] = ACTIONS(602), + [anon_sym_bool] = ACTIONS(602), + [anon_sym_str] = ACTIONS(602), + [anon_sym_char] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(602), + [anon_sym_as] = ACTIONS(602), + [anon_sym_async] = ACTIONS(602), + [anon_sym_break] = ACTIONS(602), + [anon_sym_const] = ACTIONS(602), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_default] = ACTIONS(602), + [anon_sym_enum] = ACTIONS(602), + [anon_sym_fn] = ACTIONS(602), + [anon_sym_for] = ACTIONS(602), + [anon_sym_if] = ACTIONS(602), + [anon_sym_impl] = ACTIONS(602), + [anon_sym_let] = ACTIONS(602), + [anon_sym_loop] = ACTIONS(602), + [anon_sym_match] = ACTIONS(602), + [anon_sym_mod] = ACTIONS(602), + [anon_sym_pub] = ACTIONS(602), + [anon_sym_return] = ACTIONS(602), + [anon_sym_static] = ACTIONS(602), + [anon_sym_struct] = ACTIONS(602), + [anon_sym_trait] = ACTIONS(602), + [anon_sym_type] = ACTIONS(602), + [anon_sym_union] = ACTIONS(602), + [anon_sym_unsafe] = ACTIONS(602), + [anon_sym_use] = ACTIONS(602), + [anon_sym_while] = ACTIONS(602), + [anon_sym_POUND] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_EQ] = ACTIONS(602), + [anon_sym_extern] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(600), + [anon_sym_AMP] = ACTIONS(602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_DOT_DOT] = ACTIONS(602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_EQ_EQ] = ACTIONS(600), + [anon_sym_BANG_EQ] = ACTIONS(600), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(602), + [anon_sym_PERCENT] = ACTIONS(602), + [anon_sym_PLUS_EQ] = ACTIONS(600), + [anon_sym_DASH_EQ] = ACTIONS(600), + [anon_sym_STAR_EQ] = ACTIONS(600), + [anon_sym_SLASH_EQ] = ACTIONS(600), + [anon_sym_PERCENT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(600), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_yield] = ACTIONS(602), + [anon_sym_move] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(602), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(600), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(602), + [anon_sym_false] = ACTIONS(602), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(602), + [sym_super] = ACTIONS(602), + [sym_crate] = ACTIONS(602), + [sym_metavariable] = ACTIONS(600), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), + [sym_block_comment] = ACTIONS(3), + }, + [95] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1290), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25968,270 +25755,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), + [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), }, [97] = { - [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), + [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), + }, + [98] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1233), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -26263,12 +26050,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(512), [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -26286,265 +26073,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [98] = { - [sym_bracketed_type] = STATE(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(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(518), - [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), - }, [99] = { - [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), + [ts_builtin_sym_end] = ACTIONS(612), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(612), + [anon_sym_macro_rules_BANG] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [anon_sym_POUND] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_extern] = ACTIONS(614), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(612), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_DOT_DOT] = ACTIONS(614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_LT_EQ] = ACTIONS(612), + [anon_sym_GT_EQ] = ACTIONS(612), + [anon_sym_LT_LT] = ACTIONS(614), + [anon_sym_GT_GT] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(614), + [anon_sym_PERCENT] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(612), + [anon_sym_DASH_EQ] = ACTIONS(612), + [anon_sym_STAR_EQ] = ACTIONS(612), + [anon_sym_SLASH_EQ] = ACTIONS(612), + [anon_sym_PERCENT_EQ] = ACTIONS(612), + [anon_sym_AMP_EQ] = ACTIONS(612), + [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_CARET_EQ] = ACTIONS(612), + [anon_sym_LT_LT_EQ] = ACTIONS(612), + [anon_sym_GT_GT_EQ] = ACTIONS(612), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_move] = ACTIONS(614), + [anon_sym_DOT] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(612), + [aux_sym_string_literal_token1] = ACTIONS(612), + [sym_char_literal] = ACTIONS(612), + [anon_sym_true] = ACTIONS(614), + [anon_sym_false] = ACTIONS(614), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(612), + [sym_raw_string_literal] = ACTIONS(612), + [sym_float_literal] = ACTIONS(612), [sym_block_comment] = ACTIONS(3), }, [100] = { - [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1145), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26585,7 +26266,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(518), + [anon_sym_DOT_DOT] = ACTIONS(506), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -26605,52 +26286,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [101] = { - [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), + [ts_builtin_sym_end] = ACTIONS(616), + [sym_identifier] = ACTIONS(618), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_macro_rules_BANG] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(616), + [anon_sym_RBRACE] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(618), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(618), + [anon_sym_i8] = ACTIONS(618), + [anon_sym_u16] = ACTIONS(618), + [anon_sym_i16] = ACTIONS(618), + [anon_sym_u32] = ACTIONS(618), + [anon_sym_i32] = ACTIONS(618), + [anon_sym_u64] = ACTIONS(618), + [anon_sym_i64] = ACTIONS(618), + [anon_sym_u128] = ACTIONS(618), + [anon_sym_i128] = ACTIONS(618), + [anon_sym_isize] = ACTIONS(618), + [anon_sym_usize] = ACTIONS(618), + [anon_sym_f32] = ACTIONS(618), + [anon_sym_f64] = ACTIONS(618), + [anon_sym_bool] = ACTIONS(618), + [anon_sym_str] = ACTIONS(618), + [anon_sym_char] = ACTIONS(618), + [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_as] = ACTIONS(618), + [anon_sym_async] = ACTIONS(618), + [anon_sym_break] = ACTIONS(618), + [anon_sym_const] = ACTIONS(618), + [anon_sym_continue] = ACTIONS(618), + [anon_sym_default] = ACTIONS(618), + [anon_sym_enum] = ACTIONS(618), + [anon_sym_fn] = ACTIONS(618), + [anon_sym_for] = ACTIONS(618), + [anon_sym_if] = ACTIONS(618), + [anon_sym_impl] = ACTIONS(618), + [anon_sym_let] = ACTIONS(618), + [anon_sym_loop] = ACTIONS(618), + [anon_sym_match] = ACTIONS(618), + [anon_sym_mod] = ACTIONS(618), + [anon_sym_pub] = ACTIONS(618), + [anon_sym_return] = ACTIONS(618), + [anon_sym_static] = ACTIONS(618), + [anon_sym_struct] = ACTIONS(618), + [anon_sym_trait] = ACTIONS(618), + [anon_sym_type] = ACTIONS(618), + [anon_sym_union] = ACTIONS(618), + [anon_sym_unsafe] = ACTIONS(618), + [anon_sym_use] = ACTIONS(618), + [anon_sym_while] = ACTIONS(618), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_BANG] = ACTIONS(618), + [anon_sym_EQ] = ACTIONS(618), + [anon_sym_extern] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_GT] = ACTIONS(618), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_AMP] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(618), + [anon_sym_CARET] = ACTIONS(618), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_GT_GT] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(618), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_yield] = ACTIONS(618), + [anon_sym_move] = ACTIONS(618), + [anon_sym_DOT] = ACTIONS(618), + [sym_integer_literal] = ACTIONS(616), + [aux_sym_string_literal_token1] = ACTIONS(616), + [sym_char_literal] = ACTIONS(616), + [anon_sym_true] = ACTIONS(618), + [anon_sym_false] = ACTIONS(618), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(618), + [sym_super] = ACTIONS(618), + [sym_crate] = ACTIONS(618), + [sym_metavariable] = ACTIONS(616), + [sym_raw_string_literal] = ACTIONS(616), + [sym_float_literal] = ACTIONS(616), + [sym_block_comment] = ACTIONS(3), + }, + [102] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1160), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26691,7 +26478,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(518), + [anon_sym_DOT_DOT] = ACTIONS(506), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -26710,164 +26497,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [102] = { - [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), - }, [103] = { - [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_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1224), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -26899,12 +26580,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [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_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -26923,264 +26604,370 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [104] = { - [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), + [ts_builtin_sym_end] = ACTIONS(620), + [sym_identifier] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(620), + [anon_sym_macro_rules_BANG] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_u8] = ACTIONS(622), + [anon_sym_i8] = ACTIONS(622), + [anon_sym_u16] = ACTIONS(622), + [anon_sym_i16] = ACTIONS(622), + [anon_sym_u32] = ACTIONS(622), + [anon_sym_i32] = ACTIONS(622), + [anon_sym_u64] = ACTIONS(622), + [anon_sym_i64] = ACTIONS(622), + [anon_sym_u128] = ACTIONS(622), + [anon_sym_i128] = ACTIONS(622), + [anon_sym_isize] = ACTIONS(622), + [anon_sym_usize] = ACTIONS(622), + [anon_sym_f32] = ACTIONS(622), + [anon_sym_f64] = ACTIONS(622), + [anon_sym_bool] = ACTIONS(622), + [anon_sym_str] = ACTIONS(622), + [anon_sym_char] = ACTIONS(622), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_async] = ACTIONS(622), + [anon_sym_break] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_continue] = ACTIONS(622), + [anon_sym_default] = ACTIONS(622), + [anon_sym_enum] = ACTIONS(622), + [anon_sym_fn] = ACTIONS(622), + [anon_sym_for] = ACTIONS(622), + [anon_sym_if] = ACTIONS(622), + [anon_sym_impl] = ACTIONS(622), + [anon_sym_let] = ACTIONS(622), + [anon_sym_loop] = ACTIONS(622), + [anon_sym_match] = ACTIONS(622), + [anon_sym_mod] = ACTIONS(622), + [anon_sym_pub] = ACTIONS(622), + [anon_sym_return] = ACTIONS(622), + [anon_sym_static] = ACTIONS(622), + [anon_sym_struct] = ACTIONS(622), + [anon_sym_trait] = ACTIONS(622), + [anon_sym_type] = ACTIONS(622), + [anon_sym_union] = ACTIONS(622), + [anon_sym_unsafe] = ACTIONS(622), + [anon_sym_use] = ACTIONS(622), + [anon_sym_while] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(620), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_extern] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_COLON_COLON] = ACTIONS(620), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT_EQ] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(620), + [anon_sym_PIPE_PIPE] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(620), + [anon_sym_BANG_EQ] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(620), + [anon_sym_GT_EQ] = ACTIONS(620), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_PLUS_EQ] = ACTIONS(620), + [anon_sym_DASH_EQ] = ACTIONS(620), + [anon_sym_STAR_EQ] = ACTIONS(620), + [anon_sym_SLASH_EQ] = ACTIONS(620), + [anon_sym_PERCENT_EQ] = ACTIONS(620), + [anon_sym_AMP_EQ] = ACTIONS(620), + [anon_sym_PIPE_EQ] = ACTIONS(620), + [anon_sym_CARET_EQ] = ACTIONS(620), + [anon_sym_LT_LT_EQ] = ACTIONS(620), + [anon_sym_GT_GT_EQ] = ACTIONS(620), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_move] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(622), + [sym_integer_literal] = ACTIONS(620), + [aux_sym_string_literal_token1] = ACTIONS(620), + [sym_char_literal] = ACTIONS(620), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(622), + [sym_super] = ACTIONS(622), + [sym_crate] = ACTIONS(622), + [sym_metavariable] = ACTIONS(620), + [sym_raw_string_literal] = ACTIONS(620), + [sym_float_literal] = ACTIONS(620), + [sym_block_comment] = ACTIONS(3), + }, + [105] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [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(508), + [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(508), [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(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(508), [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), }, - [105] = { - [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), + [106] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1244), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [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(508), + [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(508), [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(512), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(508), [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), }, - [106] = { - [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), + [107] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1292), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27221,7 +27008,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(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27240,371 +27027,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [107] = { - [sym_bracketed_type] = STATE(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), + [108] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1248), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [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(508), + [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(508), [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(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(508), [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), }, - [108] = { - [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), + [109] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1256), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(508), + [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(508), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(508), + [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), }, - [109] = { - [sym_bracketed_type] = STATE(2453), - [sym_generic_function] = STATE(772), - [sym_generic_type_with_turbofish] = STATE(1895), - [sym__expression_except_range] = STATE(772), + [110] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), [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), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [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(508), + [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(508), [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(512), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(508), [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), }, - [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), + [111] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1293), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27664,53 +27451,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [111] = { - [sym_bracketed_type] = STATE(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), + [112] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1082), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27751,7 +27538,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(506), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27770,53 +27557,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [112] = { - [sym_bracketed_type] = STATE(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), + [113] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1294), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27876,53 +27663,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [113] = { - [sym_bracketed_type] = STATE(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), + [114] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1161), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27963,7 +27750,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(506), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27982,53 +27769,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [114] = { - [sym_bracketed_type] = STATE(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), + [115] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1162), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28069,7 +27856,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(518), + [anon_sym_DOT_DOT] = ACTIONS(506), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28088,53 +27875,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [115] = { - [sym_bracketed_type] = STATE(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), + [116] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1163), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28175,7 +27962,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(518), + [anon_sym_DOT_DOT] = ACTIONS(506), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28194,58 +27981,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [116] = { - [sym_bracketed_type] = STATE(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), + [117] = { + [ts_builtin_sym_end] = ACTIONS(624), + [sym_identifier] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(624), + [anon_sym_macro_rules_BANG] = ACTIONS(624), + [anon_sym_LPAREN] = ACTIONS(624), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(624), + [anon_sym_u8] = ACTIONS(626), + [anon_sym_i8] = ACTIONS(626), + [anon_sym_u16] = ACTIONS(626), + [anon_sym_i16] = ACTIONS(626), + [anon_sym_u32] = ACTIONS(626), + [anon_sym_i32] = ACTIONS(626), + [anon_sym_u64] = ACTIONS(626), + [anon_sym_i64] = ACTIONS(626), + [anon_sym_u128] = ACTIONS(626), + [anon_sym_i128] = ACTIONS(626), + [anon_sym_isize] = ACTIONS(626), + [anon_sym_usize] = ACTIONS(626), + [anon_sym_f32] = ACTIONS(626), + [anon_sym_f64] = ACTIONS(626), + [anon_sym_bool] = ACTIONS(626), + [anon_sym_str] = ACTIONS(626), + [anon_sym_char] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(626), + [anon_sym_as] = ACTIONS(626), + [anon_sym_async] = ACTIONS(626), + [anon_sym_break] = ACTIONS(626), + [anon_sym_const] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [anon_sym_enum] = ACTIONS(626), + [anon_sym_fn] = ACTIONS(626), + [anon_sym_for] = ACTIONS(626), + [anon_sym_if] = ACTIONS(626), + [anon_sym_impl] = ACTIONS(626), + [anon_sym_let] = ACTIONS(626), + [anon_sym_loop] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_mod] = ACTIONS(626), + [anon_sym_pub] = ACTIONS(626), + [anon_sym_return] = ACTIONS(626), + [anon_sym_static] = ACTIONS(626), + [anon_sym_struct] = ACTIONS(626), + [anon_sym_trait] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_union] = ACTIONS(626), + [anon_sym_unsafe] = ACTIONS(626), + [anon_sym_use] = ACTIONS(626), + [anon_sym_while] = ACTIONS(626), + [anon_sym_POUND] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_extern] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_COLON_COLON] = ACTIONS(624), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(624), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(624), + [anon_sym_BANG_EQ] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(624), + [anon_sym_DASH_EQ] = ACTIONS(624), + [anon_sym_STAR_EQ] = ACTIONS(624), + [anon_sym_SLASH_EQ] = ACTIONS(624), + [anon_sym_PERCENT_EQ] = ACTIONS(624), + [anon_sym_AMP_EQ] = ACTIONS(624), + [anon_sym_PIPE_EQ] = ACTIONS(624), + [anon_sym_CARET_EQ] = ACTIONS(624), + [anon_sym_LT_LT_EQ] = ACTIONS(624), + [anon_sym_GT_GT_EQ] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_move] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [sym_integer_literal] = ACTIONS(624), + [aux_sym_string_literal_token1] = ACTIONS(624), + [sym_char_literal] = ACTIONS(624), + [anon_sym_true] = ACTIONS(626), + [anon_sym_false] = ACTIONS(626), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_crate] = ACTIONS(626), + [sym_metavariable] = ACTIONS(624), + [sym_raw_string_literal] = ACTIONS(624), + [sym_float_literal] = ACTIONS(624), + [sym_block_comment] = ACTIONS(3), + }, + [118] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1082), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -28277,12 +28170,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(512), [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -28300,53 +28193,159 @@ 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(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), + [119] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1253), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(508), + [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(508), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(508), + [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), + }, + [120] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1287), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28387,7 +28386,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(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28406,53 +28405,53 @@ 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(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), + [121] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1141), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28493,7 +28492,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(518), + [anon_sym_DOT_DOT] = ACTIONS(506), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28512,53 +28511,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [119] = { - [sym_bracketed_type] = STATE(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), + [122] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(508), + [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(508), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [123] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1280), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28599,7 +28704,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(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28618,53 +28723,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [120] = { - [sym_bracketed_type] = STATE(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), + [124] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1270), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(508), + [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(508), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [125] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1159), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28705,7 +28916,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(506), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28724,53 +28935,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(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), + [126] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1082), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28830,53 +29041,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(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), + [127] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1158), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28917,7 +29128,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(506), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28936,162 +29147,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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), + [128] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(508), + [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(508), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [124] = { - [sym_bracketed_type] = STATE(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), + [129] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1309), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -29112,19 +29323,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(612), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(614), + [anon_sym_const] = ACTIONS(292), [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_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(624), - [anon_sym_while] = ACTIONS(626), + [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), @@ -29148,56 +29359,162 @@ 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(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), + [130] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1247), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(508), + [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(508), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(508), + [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), + }, + [131] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1155), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -29218,24 +29535,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(612), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(614), + [anon_sym_const] = ACTIONS(292), [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_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(624), - [anon_sym_while] = ACTIONS(626), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(506), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29254,159 +29571,53 @@ 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(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), + [132] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1151), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29447,7 +29658,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(506), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29466,53 +29677,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [128] = { - [sym_bracketed_type] = STATE(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), + [133] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1208), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29572,58 +29783,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [129] = { - [sym_bracketed_type] = STATE(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), + [134] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -29655,12 +29866,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [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_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -29678,53 +29889,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [130] = { - [sym_bracketed_type] = STATE(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), + [135] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1213), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(508), + [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(508), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [136] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1281), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29784,60 +30101,590 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [131] = { - [ts_builtin_sym_end] = ACTIONS(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), + [137] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1150), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [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(506), + [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), + }, + [138] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1310), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(234), + [sym_if_let_expression] = STATE(234), + [sym_match_expression] = STATE(234), + [sym_while_expression] = STATE(234), + [sym_while_let_expression] = STATE(234), + [sym_loop_expression] = STATE(234), + [sym_for_expression] = STATE(234), + [sym_const_block] = STATE(234), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2533), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(234), + [sym_async_block] = STATE(234), + [sym_block] = STATE(234), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(582), + [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(584), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(586), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(590), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(594), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(596), + [anon_sym_while] = ACTIONS(598), + [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), + }, + [139] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(234), + [sym_if_let_expression] = STATE(234), + [sym_match_expression] = STATE(234), + [sym_while_expression] = STATE(234), + [sym_while_let_expression] = STATE(234), + [sym_loop_expression] = STATE(234), + [sym_for_expression] = STATE(234), + [sym_const_block] = STATE(234), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2533), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(234), + [sym_async_block] = STATE(234), + [sym_block] = STATE(234), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(582), + [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(584), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(586), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(590), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(594), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(596), + [anon_sym_while] = ACTIONS(598), + [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), + }, + [140] = { + [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), + }, + [141] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1312), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [142] = { + [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), @@ -29890,58 +30737,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [143] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -29973,12 +30820,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [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_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -29996,482 +30843,376 @@ 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(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), + [144] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1302), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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), + [145] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1147), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(506), + [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), }, - [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), + [146] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1301), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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), + [147] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1207), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -30503,12 +31244,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(512), [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -30526,53 +31267,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [138] = { - [sym_bracketed_type] = STATE(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), + [148] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30632,113 +31373,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [139] = { - [sym_bracketed_type] = STATE(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(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), + [149] = { + [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(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(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), }, - [140] = { + [150] = { [ts_builtin_sym_end] = ACTIONS(640), [sym_identifier] = ACTIONS(642), [anon_sym_SEMI] = ACTIONS(640), @@ -30844,58 +31585,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [151] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1240), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -30927,12 +31668,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [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_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -30950,7 +31691,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [142] = { + [152] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [153] = { [ts_builtin_sym_end] = ACTIONS(644), [sym_identifier] = ACTIONS(646), [anon_sym_SEMI] = ACTIONS(644), @@ -31056,58 +31903,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [154] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1264), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -31139,12 +31986,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(512), [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -31162,164 +32009,58 @@ 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(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), - [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), - }, - [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), + [155] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1257), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -31351,12 +32092,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [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_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -31374,219 +32115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [146] = { - [sym_bracketed_type] = STATE(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] = { + [156] = { [ts_builtin_sym_end] = ACTIONS(648), [sym_identifier] = ACTIONS(650), [anon_sym_SEMI] = ACTIONS(648), @@ -31692,371 +32221,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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), - }, - [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), + [157] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1246), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [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(508), + [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(508), [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(512), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(508), [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(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), + [158] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1210), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32116,53 +32433,53 @@ 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(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), + [159] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1306), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32222,164 +32539,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [154] = { - [sym_bracketed_type] = STATE(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), + [160] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [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(508), + [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(508), [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(512), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(508), [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), }, - [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(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), + [161] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1245), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -32411,12 +32728,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [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_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -32434,58 +32751,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [156] = { - [sym_bracketed_type] = STATE(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), + [162] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -32517,12 +32834,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(512), [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -32540,56 +32857,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [157] = { - [sym_bracketed_type] = STATE(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), + [163] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1305), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -32610,19 +32927,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(612), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(614), + [anon_sym_const] = ACTIONS(292), [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_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(624), - [anon_sym_while] = ACTIONS(626), + [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), @@ -32646,219 +32963,113 @@ 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(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(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), - }, - [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(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), + [164] = { + [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(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(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), }, - [160] = { + [165] = { [ts_builtin_sym_end] = ACTIONS(656), [sym_identifier] = ACTIONS(658), [anon_sym_SEMI] = ACTIONS(656), @@ -32964,58 +33175,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [166] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1295), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [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), + }, + [167] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [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), + }, + [168] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1209), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -33047,12 +33470,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(512), [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -33070,53 +33493,159 @@ 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(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), + [169] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(236), + [sym_if_let_expression] = STATE(236), + [sym_match_expression] = STATE(236), + [sym_while_expression] = STATE(236), + [sym_while_let_expression] = STATE(236), + [sym_loop_expression] = STATE(236), + [sym_for_expression] = STATE(236), + [sym_const_block] = STATE(236), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2533), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(236), + [sym_async_block] = STATE(236), + [sym_block] = STATE(236), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(582), + [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(584), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(586), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(590), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(594), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(596), + [anon_sym_while] = ACTIONS(598), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [170] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1303), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33157,7 +33686,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(518), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33176,7 +33705,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [163] = { + [171] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1285), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [172] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(508), + [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(508), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [173] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1243), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(508), + [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(508), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [174] = { [ts_builtin_sym_end] = ACTIONS(660), [sym_identifier] = ACTIONS(662), [anon_sym_SEMI] = ACTIONS(660), @@ -33282,159 +34129,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [175] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1297), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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), + [176] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1914), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1142), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(807), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(51), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33475,7 +34322,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(506), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33494,7 +34341,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [166] = { + [177] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1082), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(508), + [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(508), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [178] = { [ts_builtin_sym_end] = ACTIONS(664), [sym_identifier] = ACTIONS(666), [anon_sym_SEMI] = ACTIONS(664), @@ -33600,643 +34553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), - }, - [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(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), - }, - [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(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), - }, - [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(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [171] = { - [sym_bracketed_type] = STATE(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(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), - }, - [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(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), - }, - [173] = { + [179] = { [ts_builtin_sym_end] = ACTIONS(668), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(668), @@ -34342,431 +34659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), - [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), - }, - [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(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), - }, - [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), - [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(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(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), - }, - [178] = { + [180] = { [ts_builtin_sym_end] = ACTIONS(672), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(672), @@ -34872,164 +34765,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(672), [sym_block_comment] = ACTIONS(3), }, - [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), - [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(518), - [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), - }, - [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), + [181] = { + [sym_bracketed_type] = STATE(2470), + [sym_generic_function] = STATE(798), + [sym_generic_type_with_turbofish] = STATE(1971), + [sym__expression_except_range] = STATE(798), + [sym__expression] = STATE(1218), + [sym_macro_invocation] = STATE(798), + [sym_scoped_identifier] = STATE(1194), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1060), + [sym_unary_expression] = STATE(798), + [sym_try_expression] = STATE(798), + [sym_reference_expression] = STATE(798), + [sym_binary_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_compound_assignment_expr] = STATE(798), + [sym_type_cast_expression] = STATE(798), + [sym_return_expression] = STATE(798), + [sym_yield_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_array_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_tuple_expression] = STATE(798), + [sym_unit_expression] = STATE(798), + [sym_struct_expression] = STATE(798), + [sym_if_expression] = STATE(798), + [sym_if_let_expression] = STATE(798), + [sym_match_expression] = STATE(798), + [sym_while_expression] = STATE(798), + [sym_while_let_expression] = STATE(798), + [sym_loop_expression] = STATE(798), + [sym_for_expression] = STATE(798), + [sym_const_block] = STATE(798), + [sym_closure_expression] = STATE(798), + [sym_closure_parameters] = STATE(62), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(798), + [sym_continue_expression] = STATE(798), + [sym_index_expression] = STATE(798), + [sym_await_expression] = STATE(798), + [sym_field_expression] = STATE(801), + [sym_unsafe_block] = STATE(798), + [sym_async_block] = STATE(798), + [sym_block] = STATE(798), + [sym__literal] = STATE(798), + [sym_string_literal] = STATE(1075), + [sym_boolean_literal] = STATE(1075), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(508), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -35061,12 +34848,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(508), [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_AMP] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(508), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -35084,112 +34871,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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), - [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), - }, [182] = { [ts_builtin_sym_end] = ACTIONS(676), [sym_identifier] = ACTIONS(678), @@ -35297,154 +34978,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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(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_identifier] = ACTIONS(568), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_macro_rules_BANG] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [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(572), + [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(572), + [anon_sym_extern] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_move] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(572), + [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), }, [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(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_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2405), + [sym_self_parameter] = STATE(2074), + [sym_variadic_parameter] = STATE(2074), + [sym_parameter] = STATE(2074), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1836), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(2075), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1527), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1738), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(684), @@ -35506,48 +35187,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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(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), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [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_function_modifiers] = STATE(2405), + [sym_self_parameter] = STATE(2074), + [sym_variadic_parameter] = STATE(2074), + [sym_parameter] = STATE(2074), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1836), + [sym_bracketed_type] = STATE(2489), + [sym_lifetime] = STATE(2075), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1609), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2231), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(750), @@ -35609,48 +35290,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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(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), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [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_function_modifiers] = STATE(2405), + [sym_self_parameter] = STATE(2069), + [sym_variadic_parameter] = STATE(2069), + [sym_parameter] = STATE(2069), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1837), + [sym_bracketed_type] = STATE(2489), + [sym_lifetime] = STATE(2075), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1609), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2231), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(772), @@ -35711,49 +35392,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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(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_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2405), + [sym_self_parameter] = STATE(2074), + [sym_variadic_parameter] = STATE(2074), + [sym_parameter] = STATE(2074), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1836), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(2075), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1527), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1738), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(778), @@ -35814,49 +35495,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2405), + [sym_self_parameter] = STATE(2074), + [sym_variadic_parameter] = STATE(2074), + [sym_parameter] = STATE(2074), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1836), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(2075), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1527), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1738), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(782), @@ -35918,48 +35599,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [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_function_modifiers] = STATE(2405), + [sym_self_parameter] = STATE(2240), + [sym_variadic_parameter] = STATE(2240), + [sym_parameter] = STATE(2240), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(2489), + [sym_lifetime] = STATE(2075), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1609), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2231), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(786), @@ -36020,48 +35701,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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(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), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [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_function_modifiers] = STATE(2405), + [sym_self_parameter] = STATE(2240), + [sym_variadic_parameter] = STATE(2240), + [sym_parameter] = STATE(2240), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(2489), + [sym_lifetime] = STATE(2075), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1609), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2231), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(790), @@ -36122,48 +35803,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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(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), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [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_function_modifiers] = STATE(2405), + [sym_self_parameter] = STATE(2240), + [sym_variadic_parameter] = STATE(2240), + [sym_parameter] = STATE(2240), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(2489), + [sym_lifetime] = STATE(2075), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1609), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2231), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(792), @@ -36224,48 +35905,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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(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), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [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_function_modifiers] = STATE(2405), + [sym_self_parameter] = STATE(2240), + [sym_variadic_parameter] = STATE(2240), + [sym_parameter] = STATE(2240), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(2489), + [sym_lifetime] = STATE(2075), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1609), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2231), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(794), @@ -36326,48 +36007,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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(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), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [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_function_modifiers] = STATE(2405), + [sym_self_parameter] = STATE(2240), + [sym_variadic_parameter] = STATE(2240), + [sym_parameter] = STATE(2240), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(2489), + [sym_lifetime] = STATE(2075), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1609), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2231), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(796), @@ -36428,48 +36109,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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(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), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [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_function_modifiers] = STATE(2405), + [sym_self_parameter] = STATE(2240), + [sym_variadic_parameter] = STATE(2240), + [sym_parameter] = STATE(2240), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(2489), + [sym_lifetime] = STATE(2075), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1609), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2231), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_RPAREN] = ACTIONS(798), @@ -36530,48 +36211,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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(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), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [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_function_modifiers] = STATE(2405), + [sym_self_parameter] = STATE(2240), + [sym_variadic_parameter] = STATE(2240), + [sym_parameter] = STATE(2240), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(2489), + [sym_lifetime] = STATE(2075), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1609), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2231), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -36630,48 +36311,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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(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), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [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_function_modifiers] = STATE(2405), + [sym_self_parameter] = STATE(2137), + [sym_variadic_parameter] = STATE(2137), + [sym_parameter] = STATE(2137), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1821), + [sym_bracketed_type] = STATE(2489), + [sym_lifetime] = STATE(2075), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1609), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2231), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -36729,48 +36410,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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(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), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [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_function_modifiers] = STATE(2405), + [sym_self_parameter] = STATE(2266), + [sym_variadic_parameter] = STATE(2266), + [sym_parameter] = STATE(2266), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1930), + [sym_bracketed_type] = STATE(2489), + [sym_lifetime] = STATE(2075), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1609), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2231), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -36828,48 +36509,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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(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), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [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_function_modifiers] = STATE(2405), + [sym_self_parameter] = STATE(1967), + [sym_variadic_parameter] = STATE(1967), + [sym_parameter] = STATE(1967), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1857), + [sym_bracketed_type] = STATE(2489), + [sym_lifetime] = STATE(2075), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1609), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2231), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -36927,87 +36608,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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(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(2479), - [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(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), + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1815), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1527), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1808), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(806), [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_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(814), + [anon_sym_default] = ACTIONS(808), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(816), + [anon_sym_union] = ACTIONS(810), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(812), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(820), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37015,57 +36696,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), }, [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(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(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_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1815), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1527), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1808), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(690), @@ -37088,23 +36769,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(836), + [anon_sym_default] = ACTIONS(808), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(838), + [anon_sym_union] = ACTIONS(810), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_COMMA] = ACTIONS(812), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37121,87 +36802,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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(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(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), + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(2104), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1811), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(824), + [anon_sym_LPAREN] = ACTIONS(826), [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(828), [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_u8] = ACTIONS(830), + [anon_sym_i8] = ACTIONS(830), + [anon_sym_u16] = ACTIONS(830), + [anon_sym_i16] = ACTIONS(830), + [anon_sym_u32] = ACTIONS(830), + [anon_sym_i32] = ACTIONS(830), + [anon_sym_u64] = ACTIONS(830), + [anon_sym_i64] = ACTIONS(830), + [anon_sym_u128] = ACTIONS(830), + [anon_sym_i128] = ACTIONS(830), + [anon_sym_isize] = ACTIONS(830), + [anon_sym_usize] = ACTIONS(830), + [anon_sym_f32] = ACTIONS(830), + [anon_sym_f64] = ACTIONS(830), + [anon_sym_bool] = ACTIONS(830), + [anon_sym_str] = ACTIONS(830), + [anon_sym_char] = ACTIONS(830), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(836), + [anon_sym_default] = ACTIONS(832), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(838), + [anon_sym_union] = ACTIONS(834), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_COMMA] = ACTIONS(836), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(838), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(840), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37209,54 +36890,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(842), + [sym_super] = ACTIONS(842), + [sym_crate] = ACTIONS(842), + [sym_metavariable] = ACTIONS(844), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [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(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(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_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1815), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1527), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1808), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(846), @@ -37282,23 +36963,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(836), + [anon_sym_default] = ACTIONS(808), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(838), + [anon_sym_union] = ACTIONS(810), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_COMMA] = ACTIONS(812), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37411,85 +37092,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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(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(2479), - [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(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), + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1415), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(607), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1527), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1456), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [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_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(814), + [anon_sym_default] = ACTIONS(808), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(816), + [anon_sym_union] = ACTIONS(810), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(820), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37497,94 +37178,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), }, [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(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(2479), - [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(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), + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1390), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1458), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(824), + [anon_sym_LPAREN] = ACTIONS(826), [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_u8] = ACTIONS(830), + [anon_sym_i8] = ACTIONS(830), + [anon_sym_u16] = ACTIONS(830), + [anon_sym_i16] = ACTIONS(830), + [anon_sym_u32] = ACTIONS(830), + [anon_sym_i32] = ACTIONS(830), + [anon_sym_u64] = ACTIONS(830), + [anon_sym_i64] = ACTIONS(830), + [anon_sym_u128] = ACTIONS(830), + [anon_sym_i128] = ACTIONS(830), + [anon_sym_isize] = ACTIONS(830), + [anon_sym_usize] = ACTIONS(830), + [anon_sym_f32] = ACTIONS(830), + [anon_sym_f64] = ACTIONS(830), + [anon_sym_bool] = ACTIONS(830), + [anon_sym_str] = ACTIONS(830), + [anon_sym_char] = ACTIONS(830), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(814), + [anon_sym_default] = ACTIONS(832), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(816), + [anon_sym_union] = ACTIONS(834), [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(820), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(824), + [anon_sym_COLON_COLON] = ACTIONS(838), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(840), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37592,54 +37273,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(842), + [sym_super] = ACTIONS(842), + [sym_crate] = ACTIONS(842), + [sym_metavariable] = ACTIONS(844), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [206] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1383), - [sym_bracketed_type] = STATE(2472), - [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(2473), - [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(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_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1415), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(607), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1456), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(824), + [anon_sym_LPAREN] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(830), + [anon_sym_i8] = ACTIONS(830), + [anon_sym_u16] = ACTIONS(830), + [anon_sym_i16] = ACTIONS(830), + [anon_sym_u32] = ACTIONS(830), + [anon_sym_i32] = ACTIONS(830), + [anon_sym_u64] = ACTIONS(830), + [anon_sym_i64] = ACTIONS(830), + [anon_sym_u128] = ACTIONS(830), + [anon_sym_i128] = ACTIONS(830), + [anon_sym_isize] = ACTIONS(830), + [anon_sym_usize] = ACTIONS(830), + [anon_sym_f32] = ACTIONS(830), + [anon_sym_f64] = ACTIONS(830), + [anon_sym_bool] = ACTIONS(830), + [anon_sym_str] = ACTIONS(830), + [anon_sym_char] = ACTIONS(830), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(832), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(834), + [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(838), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(840), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(856), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(842), + [sym_super] = ACTIONS(842), + [sym_crate] = ACTIONS(842), + [sym_metavariable] = ACTIONS(844), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [207] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1415), + [sym_bracketed_type] = STATE(2489), + [sym_lifetime] = STATE(614), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1609), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1456), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -37661,25 +37437,25 @@ 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(692), + [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(856), + [anon_sym_default] = ACTIONS(858), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(858), + [anon_sym_union] = ACTIONS(860), [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(822), - [anon_sym_AMP] = ACTIONS(860), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(862), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(864), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37687,7 +37463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), + [sym_self] = ACTIONS(866), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), @@ -37695,46 +37471,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [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(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), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [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), + [208] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1415), + [sym_bracketed_type] = STATE(2489), + [sym_lifetime] = STATE(607), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1609), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1456), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -37759,22 +37535,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(856), + [anon_sym_default] = ACTIONS(858), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(858), + [anon_sym_union] = ACTIONS(860), [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(822), - [anon_sym_AMP] = ACTIONS(860), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(862), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(862), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(868), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37782,7 +37558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -37790,46 +37566,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [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(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(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), + [209] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1390), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1527), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1458), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -37854,22 +37630,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(836), + [anon_sym_default] = ACTIONS(808), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(838), + [anon_sym_union] = ACTIONS(810), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37885,46 +37661,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [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(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(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), + [210] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1390), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1527), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1458), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -37949,22 +37725,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(836), + [anon_sym_default] = ACTIONS(808), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(838), + [anon_sym_union] = ACTIONS(810), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37972,7 +37748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(866), + [sym_self] = ACTIONS(870), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), [sym_metavariable] = ACTIONS(744), @@ -37980,86 +37756,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [210] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1383), - [sym_bracketed_type] = STATE(2472), - [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(2473), - [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(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), + [211] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1415), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(614), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1527), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1456), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [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_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(856), + [anon_sym_default] = ACTIONS(808), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(858), + [anon_sym_union] = ACTIONS(810), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(860), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(816), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(872), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -38067,54 +37843,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(874), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [211] = { - [sym_function_modifiers] = STATE(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(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), - [sym_empty_type] = STATE(1392), - [sym_abstract_type] = STATE(1392), - [sym_dynamic_type] = STATE(1392), - [sym_macro_invocation] = STATE(1392), - [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), + [212] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1390), + [sym_bracketed_type] = STATE(2489), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1609), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1458), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -38136,25 +37912,25 @@ 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(852), + [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(856), + [anon_sym_default] = ACTIONS(858), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(858), + [anon_sym_union] = ACTIONS(860), [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(822), - [anon_sym_AMP] = ACTIONS(860), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(862), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(870), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -38170,181 +37946,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [212] = { - [sym_function_modifiers] = STATE(2404), - [sym_extern_modifier] = STATE(1549), - [sym__type] = STATE(1391), - [sym_bracketed_type] = STATE(2475), - [sym_lifetime] = STATE(583), - [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(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(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(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_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(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(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), + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1390), + [sym_bracketed_type] = STATE(2489), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2490), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(1609), + [sym_scoped_type_identifier] = STATE(1501), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1458), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), [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_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(836), + [anon_sym_default] = ACTIONS(858), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(838), + [anon_sym_union] = ACTIONS(860), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(842), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(862), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(874), - [anon_sym_DOT_DOT] = ACTIONS(828), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -38353,36 +38034,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), }, [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_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1476), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), [sym_identifier] = ACTIONS(878), [anon_sym_LPAREN] = ACTIONS(880), [anon_sym_LBRACE] = ACTIONS(880), @@ -38424,9 +38105,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(880), [anon_sym_LT] = ACTIONS(880), [anon_sym_COLON_COLON] = ACTIONS(880), - [anon_sym__] = ACTIONS(822), + [anon_sym__] = ACTIONS(814), [anon_sym_AMP] = ACTIONS(880), - [sym_mutable_specifier] = ACTIONS(826), + [sym_mutable_specifier] = ACTIONS(818), [anon_sym_DOT_DOT] = ACTIONS(880), [anon_sym_DASH] = ACTIONS(878), [anon_sym_PIPE] = ACTIONS(880), @@ -38447,7 +38128,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [215] = { - [sym_else_clause] = STATE(232), + [sym_else_clause] = STATE(235), + [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(882), + [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), + }, + [216] = { + [sym_else_clause] = STATE(231), [sym_identifier] = ACTIONS(498), [anon_sym_LPAREN] = ACTIONS(496), [anon_sym_RBRACE] = ACTIONS(496), @@ -38528,89 +38291,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [217] = { + [sym_identifier] = ACTIONS(548), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_RBRACE] = ACTIONS(546), + [anon_sym_LBRACK] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(546), + [anon_sym_u8] = ACTIONS(548), + [anon_sym_i8] = ACTIONS(548), + [anon_sym_u16] = ACTIONS(548), + [anon_sym_i16] = ACTIONS(548), + [anon_sym_u32] = ACTIONS(548), + [anon_sym_i32] = ACTIONS(548), + [anon_sym_u64] = ACTIONS(548), + [anon_sym_i64] = ACTIONS(548), + [anon_sym_u128] = ACTIONS(548), + [anon_sym_i128] = ACTIONS(548), + [anon_sym_isize] = ACTIONS(548), + [anon_sym_usize] = ACTIONS(548), + [anon_sym_f32] = ACTIONS(548), + [anon_sym_f64] = ACTIONS(548), + [anon_sym_bool] = ACTIONS(548), + [anon_sym_str] = ACTIONS(548), + [anon_sym_char] = ACTIONS(548), + [anon_sym_as] = ACTIONS(548), + [anon_sym_const] = ACTIONS(548), + [anon_sym_default] = ACTIONS(548), + [anon_sym_union] = ACTIONS(548), + [anon_sym_POUND] = ACTIONS(546), + [anon_sym_EQ] = ACTIONS(548), + [anon_sym_COMMA] = ACTIONS(546), + [anon_sym_ref] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(548), + [anon_sym_GT] = ACTIONS(548), + [anon_sym_COLON_COLON] = ACTIONS(546), + [anon_sym__] = ACTIONS(548), + [anon_sym_AMP] = ACTIONS(548), + [anon_sym_DOT_DOT_DOT] = ACTIONS(546), + [sym_mutable_specifier] = ACTIONS(548), + [anon_sym_DOT_DOT] = ACTIONS(548), + [anon_sym_DOT_DOT_EQ] = ACTIONS(546), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(546), + [anon_sym_PIPE_PIPE] = ACTIONS(546), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_EQ_EQ] = ACTIONS(546), + [anon_sym_BANG_EQ] = ACTIONS(546), + [anon_sym_LT_EQ] = ACTIONS(546), + [anon_sym_GT_EQ] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(548), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(548), + [anon_sym_PERCENT] = ACTIONS(548), + [anon_sym_PLUS_EQ] = ACTIONS(546), + [anon_sym_DASH_EQ] = ACTIONS(546), + [anon_sym_STAR_EQ] = ACTIONS(546), + [anon_sym_SLASH_EQ] = ACTIONS(546), + [anon_sym_PERCENT_EQ] = ACTIONS(546), + [anon_sym_AMP_EQ] = ACTIONS(546), + [anon_sym_PIPE_EQ] = ACTIONS(546), + [anon_sym_CARET_EQ] = ACTIONS(546), + [anon_sym_LT_LT_EQ] = ACTIONS(546), + [anon_sym_GT_GT_EQ] = ACTIONS(546), + [anon_sym_else] = ACTIONS(548), + [anon_sym_DOT] = ACTIONS(548), + [sym_integer_literal] = ACTIONS(546), + [aux_sym_string_literal_token1] = ACTIONS(546), + [sym_char_literal] = ACTIONS(546), + [anon_sym_true] = ACTIONS(548), + [anon_sym_false] = ACTIONS(548), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(548), + [sym_super] = ACTIONS(548), + [sym_crate] = ACTIONS(548), + [sym_metavariable] = ACTIONS(546), + [sym_raw_string_literal] = ACTIONS(546), + [sym_float_literal] = ACTIONS(546), [sym_block_comment] = ACTIONS(3), }, - [217] = { + [218] = { + [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_else] = 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), + [sym_block_comment] = ACTIONS(3), + }, + [219] = { [sym_identifier] = ACTIONS(556), [anon_sym_LPAREN] = ACTIONS(554), [anon_sym_RBRACE] = ACTIONS(554), @@ -38691,566 +38534,404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_u8] = ACTIONS(600), - [anon_sym_i8] = ACTIONS(600), - [anon_sym_u16] = ACTIONS(600), - [anon_sym_i16] = ACTIONS(600), - [anon_sym_u32] = ACTIONS(600), - [anon_sym_i32] = ACTIONS(600), - [anon_sym_u64] = ACTIONS(600), - [anon_sym_i64] = ACTIONS(600), - [anon_sym_u128] = ACTIONS(600), - [anon_sym_i128] = ACTIONS(600), - [anon_sym_isize] = ACTIONS(600), - [anon_sym_usize] = ACTIONS(600), - [anon_sym_f32] = ACTIONS(600), - [anon_sym_f64] = ACTIONS(600), - [anon_sym_bool] = ACTIONS(600), - [anon_sym_str] = ACTIONS(600), - [anon_sym_char] = ACTIONS(600), - [anon_sym_as] = ACTIONS(600), - [anon_sym_const] = ACTIONS(600), - [anon_sym_default] = ACTIONS(600), - [anon_sym_union] = ACTIONS(600), - [anon_sym_POUND] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(600), - [anon_sym_COMMA] = ACTIONS(598), - [anon_sym_ref] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(600), - [anon_sym_GT] = ACTIONS(600), - [anon_sym_COLON_COLON] = ACTIONS(598), - [anon_sym__] = ACTIONS(600), - [anon_sym_AMP] = ACTIONS(600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [sym_mutable_specifier] = ACTIONS(600), - [anon_sym_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT_EQ] = ACTIONS(598), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_PIPE] = ACTIONS(600), - [anon_sym_CARET] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(598), - [anon_sym_BANG_EQ] = ACTIONS(598), - [anon_sym_LT_EQ] = ACTIONS(598), - [anon_sym_GT_EQ] = ACTIONS(598), - [anon_sym_LT_LT] = ACTIONS(600), - [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_PERCENT] = ACTIONS(600), - [anon_sym_PLUS_EQ] = ACTIONS(598), - [anon_sym_DASH_EQ] = ACTIONS(598), - [anon_sym_STAR_EQ] = ACTIONS(598), - [anon_sym_SLASH_EQ] = ACTIONS(598), - [anon_sym_PERCENT_EQ] = ACTIONS(598), - [anon_sym_AMP_EQ] = ACTIONS(598), - [anon_sym_PIPE_EQ] = ACTIONS(598), - [anon_sym_CARET_EQ] = ACTIONS(598), - [anon_sym_LT_LT_EQ] = ACTIONS(598), - [anon_sym_GT_GT_EQ] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(600), - [sym_integer_literal] = ACTIONS(598), - [aux_sym_string_literal_token1] = ACTIONS(598), - [sym_char_literal] = ACTIONS(598), - [anon_sym_true] = ACTIONS(600), - [anon_sym_false] = ACTIONS(600), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_crate] = ACTIONS(600), - [sym_metavariable] = ACTIONS(598), - [sym_raw_string_literal] = ACTIONS(598), - [sym_float_literal] = ACTIONS(598), + [sym_identifier] = ACTIONS(606), + [anon_sym_LPAREN] = ACTIONS(604), + [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(604), + [anon_sym_u8] = ACTIONS(606), + [anon_sym_i8] = ACTIONS(606), + [anon_sym_u16] = ACTIONS(606), + [anon_sym_i16] = ACTIONS(606), + [anon_sym_u32] = ACTIONS(606), + [anon_sym_i32] = ACTIONS(606), + [anon_sym_u64] = ACTIONS(606), + [anon_sym_i64] = ACTIONS(606), + [anon_sym_u128] = ACTIONS(606), + [anon_sym_i128] = ACTIONS(606), + [anon_sym_isize] = ACTIONS(606), + [anon_sym_usize] = ACTIONS(606), + [anon_sym_f32] = ACTIONS(606), + [anon_sym_f64] = ACTIONS(606), + [anon_sym_bool] = ACTIONS(606), + [anon_sym_str] = ACTIONS(606), + [anon_sym_char] = ACTIONS(606), + [anon_sym_as] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_default] = ACTIONS(606), + [anon_sym_union] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [anon_sym_EQ] = ACTIONS(606), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_ref] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(604), + [anon_sym__] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(604), + [sym_mutable_specifier] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_AMP_AMP] = ACTIONS(604), + [anon_sym_PIPE_PIPE] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_CARET] = ACTIONS(606), + [anon_sym_EQ_EQ] = ACTIONS(604), + [anon_sym_BANG_EQ] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_LT_LT] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(606), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(606), + [anon_sym_PLUS_EQ] = ACTIONS(604), + [anon_sym_DASH_EQ] = ACTIONS(604), + [anon_sym_STAR_EQ] = ACTIONS(604), + [anon_sym_SLASH_EQ] = ACTIONS(604), + [anon_sym_PERCENT_EQ] = ACTIONS(604), + [anon_sym_AMP_EQ] = ACTIONS(604), + [anon_sym_PIPE_EQ] = ACTIONS(604), + [anon_sym_CARET_EQ] = ACTIONS(604), + [anon_sym_LT_LT_EQ] = ACTIONS(604), + [anon_sym_GT_GT_EQ] = ACTIONS(604), + [anon_sym_DOT] = ACTIONS(606), + [sym_integer_literal] = ACTIONS(604), + [aux_sym_string_literal_token1] = ACTIONS(604), + [sym_char_literal] = ACTIONS(604), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(606), + [sym_super] = ACTIONS(606), + [sym_crate] = ACTIONS(606), + [sym_metavariable] = ACTIONS(604), + [sym_raw_string_literal] = ACTIONS(604), + [sym_float_literal] = ACTIONS(604), [sym_block_comment] = ACTIONS(3), }, [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_identifier] = ACTIONS(618), + [anon_sym_LPAREN] = ACTIONS(616), + [anon_sym_RBRACE] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(618), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(618), + [anon_sym_i8] = ACTIONS(618), + [anon_sym_u16] = ACTIONS(618), + [anon_sym_i16] = ACTIONS(618), + [anon_sym_u32] = ACTIONS(618), + [anon_sym_i32] = ACTIONS(618), + [anon_sym_u64] = ACTIONS(618), + [anon_sym_i64] = ACTIONS(618), + [anon_sym_u128] = ACTIONS(618), + [anon_sym_i128] = ACTIONS(618), + [anon_sym_isize] = ACTIONS(618), + [anon_sym_usize] = ACTIONS(618), + [anon_sym_f32] = ACTIONS(618), + [anon_sym_f64] = ACTIONS(618), + [anon_sym_bool] = ACTIONS(618), + [anon_sym_str] = ACTIONS(618), + [anon_sym_char] = ACTIONS(618), + [anon_sym_as] = ACTIONS(618), + [anon_sym_const] = ACTIONS(618), + [anon_sym_default] = ACTIONS(618), + [anon_sym_union] = ACTIONS(618), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(618), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_ref] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_GT] = ACTIONS(618), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym__] = ACTIONS(618), + [anon_sym_AMP] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [sym_mutable_specifier] = ACTIONS(618), + [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(618), + [anon_sym_CARET] = ACTIONS(618), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_GT_GT] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(618), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [sym_integer_literal] = ACTIONS(616), + [aux_sym_string_literal_token1] = ACTIONS(616), + [sym_char_literal] = ACTIONS(616), + [anon_sym_true] = ACTIONS(618), + [anon_sym_false] = ACTIONS(618), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(618), + [sym_super] = ACTIONS(618), + [sym_crate] = ACTIONS(618), + [sym_metavariable] = ACTIONS(616), + [sym_raw_string_literal] = ACTIONS(616), + [sym_float_literal] = ACTIONS(616), [sym_block_comment] = ACTIONS(3), }, [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_identifier] = ACTIONS(580), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(580), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(580), + [anon_sym_i8] = ACTIONS(580), + [anon_sym_u16] = ACTIONS(580), + [anon_sym_i16] = ACTIONS(580), + [anon_sym_u32] = ACTIONS(580), + [anon_sym_i32] = ACTIONS(580), + [anon_sym_u64] = ACTIONS(580), + [anon_sym_i64] = ACTIONS(580), + [anon_sym_u128] = ACTIONS(580), + [anon_sym_i128] = ACTIONS(580), + [anon_sym_isize] = ACTIONS(580), + [anon_sym_usize] = ACTIONS(580), + [anon_sym_f32] = ACTIONS(580), + [anon_sym_f64] = ACTIONS(580), + [anon_sym_bool] = ACTIONS(580), + [anon_sym_str] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [anon_sym_as] = ACTIONS(580), + [anon_sym_const] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_union] = ACTIONS(580), + [anon_sym_POUND] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(580), + [anon_sym_COMMA] = ACTIONS(578), + [anon_sym_ref] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_COLON_COLON] = ACTIONS(578), + [anon_sym__] = ACTIONS(580), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [sym_mutable_specifier] = ACTIONS(580), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_EQ_EQ] = ACTIONS(578), + [anon_sym_BANG_EQ] = ACTIONS(578), + [anon_sym_LT_EQ] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(580), + [anon_sym_GT_GT] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(580), + [anon_sym_PLUS_EQ] = ACTIONS(578), + [anon_sym_DASH_EQ] = ACTIONS(578), + [anon_sym_STAR_EQ] = ACTIONS(578), + [anon_sym_SLASH_EQ] = ACTIONS(578), + [anon_sym_PERCENT_EQ] = ACTIONS(578), + [anon_sym_AMP_EQ] = ACTIONS(578), + [anon_sym_PIPE_EQ] = ACTIONS(578), + [anon_sym_CARET_EQ] = ACTIONS(578), + [anon_sym_LT_LT_EQ] = ACTIONS(578), + [anon_sym_GT_GT_EQ] = ACTIONS(578), + [anon_sym_DOT] = ACTIONS(580), + [sym_integer_literal] = ACTIONS(578), + [aux_sym_string_literal_token1] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(580), + [anon_sym_false] = ACTIONS(580), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(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_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), }, [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_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(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_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), }, [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_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(648), + [anon_sym_u8] = ACTIONS(650), + [anon_sym_i8] = ACTIONS(650), + [anon_sym_u16] = ACTIONS(650), + [anon_sym_i16] = ACTIONS(650), + [anon_sym_u32] = ACTIONS(650), + [anon_sym_i32] = ACTIONS(650), + [anon_sym_u64] = ACTIONS(650), + [anon_sym_i64] = ACTIONS(650), + [anon_sym_u128] = ACTIONS(650), + [anon_sym_i128] = ACTIONS(650), + [anon_sym_isize] = ACTIONS(650), + [anon_sym_usize] = ACTIONS(650), + [anon_sym_f32] = ACTIONS(650), + [anon_sym_f64] = ACTIONS(650), + [anon_sym_bool] = ACTIONS(650), + [anon_sym_str] = ACTIONS(650), + [anon_sym_char] = ACTIONS(650), + [anon_sym_as] = ACTIONS(650), + [anon_sym_const] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_union] = ACTIONS(650), + [anon_sym_POUND] = ACTIONS(648), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_COMMA] = ACTIONS(648), + [anon_sym_ref] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym__] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(648), + [sym_mutable_specifier] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(648), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(648), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(648), + [anon_sym_DASH_EQ] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(648), + [anon_sym_SLASH_EQ] = ACTIONS(648), + [anon_sym_PERCENT_EQ] = ACTIONS(648), + [anon_sym_AMP_EQ] = ACTIONS(648), + [anon_sym_PIPE_EQ] = ACTIONS(648), + [anon_sym_CARET_EQ] = ACTIONS(648), + [anon_sym_LT_LT_EQ] = ACTIONS(648), + [anon_sym_GT_GT_EQ] = ACTIONS(648), + [anon_sym_DOT] = ACTIONS(650), + [sym_integer_literal] = ACTIONS(648), + [aux_sym_string_literal_token1] = ACTIONS(648), + [sym_char_literal] = ACTIONS(648), + [anon_sym_true] = ACTIONS(650), + [anon_sym_false] = ACTIONS(650), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(650), + [sym_super] = ACTIONS(650), + [sym_crate] = ACTIONS(650), + [sym_metavariable] = ACTIONS(648), + [sym_raw_string_literal] = ACTIONS(648), + [sym_float_literal] = ACTIONS(648), [sym_block_comment] = ACTIONS(3), }, [225] = { @@ -39334,193 +39015,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_identifier] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_RBRACE] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(602), + [anon_sym_i8] = ACTIONS(602), + [anon_sym_u16] = ACTIONS(602), + [anon_sym_i16] = ACTIONS(602), + [anon_sym_u32] = ACTIONS(602), + [anon_sym_i32] = ACTIONS(602), + [anon_sym_u64] = ACTIONS(602), + [anon_sym_i64] = ACTIONS(602), + [anon_sym_u128] = ACTIONS(602), + [anon_sym_i128] = ACTIONS(602), + [anon_sym_isize] = ACTIONS(602), + [anon_sym_usize] = ACTIONS(602), + [anon_sym_f32] = ACTIONS(602), + [anon_sym_f64] = ACTIONS(602), + [anon_sym_bool] = ACTIONS(602), + [anon_sym_str] = ACTIONS(602), + [anon_sym_char] = ACTIONS(602), + [anon_sym_as] = ACTIONS(602), + [anon_sym_const] = ACTIONS(602), + [anon_sym_default] = ACTIONS(602), + [anon_sym_union] = ACTIONS(602), + [anon_sym_POUND] = ACTIONS(600), + [anon_sym_EQ] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(600), + [anon_sym_ref] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(600), + [anon_sym__] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [sym_mutable_specifier] = ACTIONS(602), + [anon_sym_DOT_DOT] = ACTIONS(602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_EQ_EQ] = ACTIONS(600), + [anon_sym_BANG_EQ] = ACTIONS(600), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(602), + [anon_sym_PERCENT] = ACTIONS(602), + [anon_sym_PLUS_EQ] = ACTIONS(600), + [anon_sym_DASH_EQ] = ACTIONS(600), + [anon_sym_STAR_EQ] = ACTIONS(600), + [anon_sym_SLASH_EQ] = ACTIONS(600), + [anon_sym_PERCENT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(600), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_DOT] = ACTIONS(602), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(600), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(602), + [anon_sym_false] = ACTIONS(602), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(602), + [sym_super] = ACTIONS(602), + [sym_crate] = ACTIONS(602), + [sym_metavariable] = ACTIONS(600), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), [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_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(2026), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2023), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_type_binding] = STATE(2287), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [sym_block] = STATE(2287), + [sym__literal] = STATE(2287), + [sym_string_literal] = STATE(2315), + [sym_boolean_literal] = STATE(2315), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(884), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACE] = ACTIONS(888), @@ -39555,7 +39156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(914), + [anon_sym_GT] = ACTIONS(898), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -39573,34 +39174,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [228] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(2026), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2023), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_type_binding] = STATE(2287), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [sym_block] = STATE(2287), + [sym__literal] = STATE(2287), + [sym_string_literal] = STATE(2315), + [sym_boolean_literal] = STATE(2315), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(884), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACE] = ACTIONS(888), @@ -39635,7 +39236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(916), + [anon_sym_GT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -39653,87 +39254,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(578), - [anon_sym_ref] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym__] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [sym_mutable_specifier] = ACTIONS(580), - [anon_sym_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(580), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_PLUS_EQ] = ACTIONS(578), - [anon_sym_DASH_EQ] = ACTIONS(578), - [anon_sym_STAR_EQ] = ACTIONS(578), - [anon_sym_SLASH_EQ] = ACTIONS(578), - [anon_sym_PERCENT_EQ] = ACTIONS(578), - [anon_sym_AMP_EQ] = ACTIONS(578), - [anon_sym_PIPE_EQ] = ACTIONS(578), - [anon_sym_CARET_EQ] = ACTIONS(578), - [anon_sym_LT_LT_EQ] = ACTIONS(578), - [anon_sym_GT_GT_EQ] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), + [229] = { + [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(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_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), }, - [231] = { + [230] = { [sym_identifier] = ACTIONS(638), [anon_sym_LPAREN] = ACTIONS(636), [anon_sym_RBRACE] = ACTIONS(636), @@ -39813,167 +39414,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(636), [sym_block_comment] = ACTIONS(3), }, - [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), - }, - [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(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(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), + [231] = { + [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(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_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), }, - [234] = { + [232] = { [sym_identifier] = ACTIONS(670), [anon_sym_LPAREN] = ACTIONS(668), [anon_sym_RBRACE] = ACTIONS(668), @@ -40053,6 +39574,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(668), [sym_block_comment] = ACTIONS(3), }, + [233] = { + [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), + }, + [234] = { + [sym_identifier] = ACTIONS(912), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [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(572), + [anon_sym_const] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_union] = ACTIONS(912), + [anon_sym_POUND] = ACTIONS(914), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_ref] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(912), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(914), + [anon_sym__] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(912), + [anon_sym_DOT_DOT] = ACTIONS(912), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_DOT] = ACTIONS(572), + [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), + [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_block_comment] = ACTIONS(3), + }, [235] = { [sym_identifier] = ACTIONS(678), [anon_sym_LPAREN] = ACTIONS(676), @@ -40134,6 +39815,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [236] = { + [sym_identifier] = ACTIONS(916), + [anon_sym_LPAREN] = ACTIONS(918), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [anon_sym_u8] = ACTIONS(916), + [anon_sym_i8] = ACTIONS(916), + [anon_sym_u16] = ACTIONS(916), + [anon_sym_i16] = ACTIONS(916), + [anon_sym_u32] = ACTIONS(916), + [anon_sym_i32] = ACTIONS(916), + [anon_sym_u64] = ACTIONS(916), + [anon_sym_i64] = ACTIONS(916), + [anon_sym_u128] = ACTIONS(916), + [anon_sym_i128] = ACTIONS(916), + [anon_sym_isize] = ACTIONS(916), + [anon_sym_usize] = ACTIONS(916), + [anon_sym_f32] = ACTIONS(916), + [anon_sym_f64] = ACTIONS(916), + [anon_sym_bool] = ACTIONS(916), + [anon_sym_str] = ACTIONS(916), + [anon_sym_char] = ACTIONS(916), + [anon_sym_as] = ACTIONS(572), + [anon_sym_const] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), + [anon_sym_union] = ACTIONS(916), + [anon_sym_POUND] = ACTIONS(918), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_ref] = ACTIONS(916), + [anon_sym_LT] = ACTIONS(916), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(918), + [anon_sym__] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(916), + [anon_sym_DOT_DOT] = ACTIONS(916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_DOT] = ACTIONS(572), + [sym_integer_literal] = ACTIONS(918), + [aux_sym_string_literal_token1] = ACTIONS(918), + [sym_char_literal] = ACTIONS(918), + [anon_sym_true] = ACTIONS(916), + [anon_sym_false] = ACTIONS(916), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(916), + [sym_super] = ACTIONS(916), + [sym_crate] = ACTIONS(916), + [sym_metavariable] = ACTIONS(918), + [sym_raw_string_literal] = ACTIONS(918), + [sym_float_literal] = ACTIONS(918), + [sym_block_comment] = ACTIONS(3), + }, + [237] = { [sym_identifier] = ACTIONS(630), [anon_sym_LPAREN] = ACTIONS(628), [anon_sym_RBRACE] = ACTIONS(628), @@ -40213,753 +39974,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(628), [sym_block_comment] = ACTIONS(3), }, - [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), - }, - [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), + [238] = { + [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), }, [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_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(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_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), }, [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), - }, - [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), - }, - [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), - }, - [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(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_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), - }, - [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(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(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(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_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(2026), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2023), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_type_binding] = STATE(2287), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [sym_block] = STATE(2287), + [sym__literal] = STATE(2287), + [sym_string_literal] = STATE(2315), + [sym_boolean_literal] = STATE(2315), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(884), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACE] = ACTIONS(888), @@ -40994,6 +40196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(920), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -41011,34 +40214,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [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(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(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(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), + [241] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(2026), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2023), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_type_binding] = STATE(2287), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [sym_block] = STATE(2287), + [sym__literal] = STATE(2287), + [sym_string_literal] = STATE(2315), + [sym_boolean_literal] = STATE(2315), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(884), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACE] = ACTIONS(888), @@ -41073,6 +40276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(922), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -41090,36 +40294,513 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [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), + [242] = { + [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), + }, + [243] = { + [sym_identifier] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_u8] = ACTIONS(622), + [anon_sym_i8] = ACTIONS(622), + [anon_sym_u16] = ACTIONS(622), + [anon_sym_i16] = ACTIONS(622), + [anon_sym_u32] = ACTIONS(622), + [anon_sym_i32] = ACTIONS(622), + [anon_sym_u64] = ACTIONS(622), + [anon_sym_i64] = ACTIONS(622), + [anon_sym_u128] = ACTIONS(622), + [anon_sym_i128] = ACTIONS(622), + [anon_sym_isize] = ACTIONS(622), + [anon_sym_usize] = ACTIONS(622), + [anon_sym_f32] = ACTIONS(622), + [anon_sym_f64] = ACTIONS(622), + [anon_sym_bool] = ACTIONS(622), + [anon_sym_str] = ACTIONS(622), + [anon_sym_char] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_default] = ACTIONS(622), + [anon_sym_union] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(620), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(620), + [anon_sym_ref] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_COLON_COLON] = ACTIONS(620), + [anon_sym__] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(620), + [sym_mutable_specifier] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT_EQ] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(620), + [anon_sym_PIPE_PIPE] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(620), + [anon_sym_BANG_EQ] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(620), + [anon_sym_GT_EQ] = ACTIONS(620), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_PLUS_EQ] = ACTIONS(620), + [anon_sym_DASH_EQ] = ACTIONS(620), + [anon_sym_STAR_EQ] = ACTIONS(620), + [anon_sym_SLASH_EQ] = ACTIONS(620), + [anon_sym_PERCENT_EQ] = ACTIONS(620), + [anon_sym_AMP_EQ] = ACTIONS(620), + [anon_sym_PIPE_EQ] = ACTIONS(620), + [anon_sym_CARET_EQ] = ACTIONS(620), + [anon_sym_LT_LT_EQ] = ACTIONS(620), + [anon_sym_GT_GT_EQ] = ACTIONS(620), + [anon_sym_DOT] = ACTIONS(622), + [sym_integer_literal] = ACTIONS(620), + [aux_sym_string_literal_token1] = ACTIONS(620), + [sym_char_literal] = ACTIONS(620), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(622), + [sym_super] = ACTIONS(622), + [sym_crate] = ACTIONS(622), + [sym_metavariable] = ACTIONS(620), + [sym_raw_string_literal] = ACTIONS(620), + [sym_float_literal] = ACTIONS(620), + [sym_block_comment] = ACTIONS(3), + }, + [244] = { + [sym_identifier] = ACTIONS(614), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_POUND] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(612), + [anon_sym_ref] = ACTIONS(614), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(612), + [anon_sym__] = ACTIONS(614), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [sym_mutable_specifier] = ACTIONS(614), + [anon_sym_DOT_DOT] = ACTIONS(614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_LT_EQ] = ACTIONS(612), + [anon_sym_GT_EQ] = ACTIONS(612), + [anon_sym_LT_LT] = ACTIONS(614), + [anon_sym_GT_GT] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(614), + [anon_sym_PERCENT] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(612), + [anon_sym_DASH_EQ] = ACTIONS(612), + [anon_sym_STAR_EQ] = ACTIONS(612), + [anon_sym_SLASH_EQ] = ACTIONS(612), + [anon_sym_PERCENT_EQ] = ACTIONS(612), + [anon_sym_AMP_EQ] = ACTIONS(612), + [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_CARET_EQ] = ACTIONS(612), + [anon_sym_LT_LT_EQ] = ACTIONS(612), + [anon_sym_GT_GT_EQ] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(612), + [aux_sym_string_literal_token1] = ACTIONS(612), + [sym_char_literal] = ACTIONS(612), + [anon_sym_true] = ACTIONS(614), + [anon_sym_false] = ACTIONS(614), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(612), + [sym_raw_string_literal] = ACTIONS(612), + [sym_float_literal] = ACTIONS(612), + [sym_block_comment] = ACTIONS(3), + }, + [245] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1803), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(1802), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_type_binding] = STATE(2006), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [sym_block] = STATE(2006), + [sym__literal] = STATE(2006), + [sym_string_literal] = STATE(2315), + [sym_boolean_literal] = STATE(2315), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [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(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), + }, + [246] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(2026), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2023), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_type_binding] = STATE(2287), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [sym_block] = STATE(2287), + [sym__literal] = STATE(2287), + [sym_string_literal] = STATE(2315), + [sym_boolean_literal] = STATE(2315), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [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(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), + }, + [247] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1835), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(1834), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_type_binding] = STATE(2076), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [sym_block] = STATE(2076), + [sym__literal] = STATE(2076), + [sym_string_literal] = STATE(2315), + [sym_boolean_literal] = STATE(2315), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [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(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), + }, + [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_function_modifiers] = STATE(2542), [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_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1345), + [sym_bracketed_type] = STATE(2375), + [sym_generic_type_with_turbofish] = STATE(2372), [sym_macro_invocation] = STATE(249), - [sym_scoped_identifier] = STATE(2242), + [sym_scoped_identifier] = STATE(2236), [aux_sym_declaration_list_repeat1] = STATE(249), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(924), [anon_sym_SEMI] = ACTIONS(926), [anon_sym_macro_rules_BANG] = ACTIONS(928), @@ -41169,35 +40850,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_empty_statement] = STATE(251), + [sym_macro_definition] = STATE(251), + [sym_attribute_item] = STATE(251), + [sym_inner_attribute_item] = STATE(251), + [sym_mod_item] = STATE(251), + [sym_foreign_mod_item] = STATE(251), + [sym_struct_item] = STATE(251), + [sym_union_item] = STATE(251), + [sym_enum_item] = STATE(251), + [sym_extern_crate_declaration] = STATE(251), + [sym_const_item] = STATE(251), + [sym_static_item] = STATE(251), + [sym_type_item] = STATE(251), + [sym_function_item] = STATE(251), + [sym_function_signature_item] = STATE(251), + [sym_function_modifiers] = STATE(2542), + [sym_impl_item] = STATE(251), + [sym_trait_item] = STATE(251), + [sym_associated_type] = STATE(251), + [sym_let_declaration] = STATE(251), + [sym_use_declaration] = STATE(251), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1345), + [sym_bracketed_type] = STATE(2375), + [sym_generic_type_with_turbofish] = STATE(2372), + [sym_macro_invocation] = STATE(251), + [sym_scoped_identifier] = STATE(2236), + [aux_sym_declaration_list_repeat1] = STATE(251), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(924), [anon_sym_SEMI] = ACTIONS(926), [anon_sym_macro_rules_BANG] = ACTIONS(928), @@ -41247,35 +40928,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_empty_statement] = STATE(251), + [sym_macro_definition] = STATE(251), + [sym_attribute_item] = STATE(251), + [sym_inner_attribute_item] = STATE(251), + [sym_mod_item] = STATE(251), + [sym_foreign_mod_item] = STATE(251), + [sym_struct_item] = STATE(251), + [sym_union_item] = STATE(251), + [sym_enum_item] = STATE(251), + [sym_extern_crate_declaration] = STATE(251), + [sym_const_item] = STATE(251), + [sym_static_item] = STATE(251), + [sym_type_item] = STATE(251), + [sym_function_item] = STATE(251), + [sym_function_signature_item] = STATE(251), + [sym_function_modifiers] = STATE(2542), + [sym_impl_item] = STATE(251), + [sym_trait_item] = STATE(251), + [sym_associated_type] = STATE(251), + [sym_let_declaration] = STATE(251), + [sym_use_declaration] = STATE(251), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1345), + [sym_bracketed_type] = STATE(2375), + [sym_generic_type_with_turbofish] = STATE(2372), + [sym_macro_invocation] = STATE(251), + [sym_scoped_identifier] = STATE(2236), + [aux_sym_declaration_list_repeat1] = STATE(251), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(924), [anon_sym_SEMI] = ACTIONS(926), [anon_sym_macro_rules_BANG] = ACTIONS(928), @@ -41325,81 +41006,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [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_empty_statement] = STATE(251), + [sym_macro_definition] = STATE(251), + [sym_attribute_item] = STATE(251), + [sym_inner_attribute_item] = STATE(251), + [sym_mod_item] = STATE(251), + [sym_foreign_mod_item] = STATE(251), + [sym_struct_item] = STATE(251), + [sym_union_item] = STATE(251), + [sym_enum_item] = STATE(251), + [sym_extern_crate_declaration] = STATE(251), + [sym_const_item] = STATE(251), + [sym_static_item] = STATE(251), + [sym_type_item] = STATE(251), + [sym_function_item] = STATE(251), + [sym_function_signature_item] = STATE(251), + [sym_function_modifiers] = STATE(2542), + [sym_impl_item] = STATE(251), + [sym_trait_item] = STATE(251), + [sym_associated_type] = STATE(251), + [sym_let_declaration] = STATE(251), + [sym_use_declaration] = STATE(251), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1345), + [sym_bracketed_type] = STATE(2375), + [sym_generic_type_with_turbofish] = STATE(2372), + [sym_macro_invocation] = STATE(251), + [sym_scoped_identifier] = STATE(2236), + [aux_sym_declaration_list_repeat1] = STATE(251), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [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), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_macro_rules_BANG] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(989), + [anon_sym_i8] = ACTIONS(989), + [anon_sym_u16] = ACTIONS(989), + [anon_sym_i16] = ACTIONS(989), + [anon_sym_u32] = ACTIONS(989), + [anon_sym_i32] = ACTIONS(989), + [anon_sym_u64] = ACTIONS(989), + [anon_sym_i64] = ACTIONS(989), + [anon_sym_u128] = ACTIONS(989), + [anon_sym_i128] = ACTIONS(989), + [anon_sym_isize] = ACTIONS(989), + [anon_sym_usize] = ACTIONS(989), + [anon_sym_f32] = ACTIONS(989), + [anon_sym_f64] = ACTIONS(989), + [anon_sym_bool] = ACTIONS(989), + [anon_sym_str] = ACTIONS(989), + [anon_sym_char] = ACTIONS(989), + [anon_sym_async] = ACTIONS(992), + [anon_sym_const] = ACTIONS(995), + [anon_sym_default] = ACTIONS(998), + [anon_sym_enum] = ACTIONS(1001), + [anon_sym_fn] = ACTIONS(1004), + [anon_sym_impl] = ACTIONS(1007), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_mod] = ACTIONS(1013), + [anon_sym_pub] = ACTIONS(1016), + [anon_sym_static] = ACTIONS(1019), + [anon_sym_struct] = ACTIONS(1022), + [anon_sym_trait] = ACTIONS(1025), + [anon_sym_type] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1031), + [anon_sym_unsafe] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_POUND] = ACTIONS(1040), + [anon_sym_extern] = ACTIONS(1043), + [anon_sym_LT] = ACTIONS(1046), + [anon_sym_COLON_COLON] = ACTIONS(1049), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1052), + [sym_super] = ACTIONS(1052), + [sym_crate] = ACTIONS(1055), + [sym_metavariable] = ACTIONS(1058), [sym_block_comment] = ACTIONS(3), }, [252] = { @@ -41418,24 +41099,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(250), [sym_function_item] = STATE(250), [sym_function_signature_item] = STATE(250), - [sym_function_modifiers] = STATE(2525), + [sym_function_modifiers] = STATE(2542), [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_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1345), + [sym_bracketed_type] = STATE(2375), + [sym_generic_type_with_turbofish] = STATE(2372), [sym_macro_invocation] = STATE(250), - [sym_scoped_identifier] = STATE(2242), + [sym_scoped_identifier] = STATE(2236), [aux_sym_declaration_list_repeat1] = STATE(250), - [aux_sym_function_modifiers_repeat1] = STATE(1549), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(924), [anon_sym_SEMI] = ACTIONS(926), [anon_sym_macro_rules_BANG] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(1009), + [anon_sym_RBRACE] = ACTIONS(1061), [anon_sym_u8] = ACTIONS(932), [anon_sym_i8] = ACTIONS(932), [anon_sym_u16] = ACTIONS(932), @@ -41481,81 +41162,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [253] = { - [sym_empty_statement] = STATE(253), - [sym_macro_definition] = STATE(253), - [sym_attribute_item] = STATE(253), - [sym_inner_attribute_item] = STATE(253), - [sym_mod_item] = STATE(253), - [sym_foreign_mod_item] = STATE(253), - [sym_struct_item] = STATE(253), - [sym_union_item] = STATE(253), - [sym_enum_item] = STATE(253), - [sym_extern_crate_declaration] = STATE(253), - [sym_const_item] = STATE(253), - [sym_static_item] = STATE(253), - [sym_type_item] = STATE(253), - [sym_function_item] = STATE(253), - [sym_function_signature_item] = STATE(253), - [sym_function_modifiers] = STATE(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__token_pattern] = STATE(253), + [sym_token_tree_pattern] = STATE(253), + [sym_token_binding_pattern] = STATE(253), + [sym_token_repetition_pattern] = STATE(253), + [sym__literal] = STATE(253), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1069), + [anon_sym_LBRACE] = ACTIONS(1071), + [anon_sym_RBRACE] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1069), + [anon_sym_DOLLAR] = ACTIONS(1077), + [anon_sym_u8] = ACTIONS(1063), + [anon_sym_i8] = ACTIONS(1063), + [anon_sym_u16] = ACTIONS(1063), + [anon_sym_i16] = ACTIONS(1063), + [anon_sym_u32] = ACTIONS(1063), + [anon_sym_i32] = ACTIONS(1063), + [anon_sym_u64] = ACTIONS(1063), + [anon_sym_i64] = ACTIONS(1063), + [anon_sym_u128] = ACTIONS(1063), + [anon_sym_i128] = ACTIONS(1063), + [anon_sym_isize] = ACTIONS(1063), + [anon_sym_usize] = ACTIONS(1063), + [anon_sym_f32] = ACTIONS(1063), + [anon_sym_f64] = ACTIONS(1063), + [anon_sym_bool] = ACTIONS(1063), + [anon_sym_str] = ACTIONS(1063), + [anon_sym_char] = ACTIONS(1063), + [aux_sym__non_special_token_token1] = ACTIONS(1063), + [anon_sym_SQUOTE] = ACTIONS(1063), + [anon_sym_as] = ACTIONS(1063), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_await] = ACTIONS(1063), + [anon_sym_break] = ACTIONS(1063), + [anon_sym_const] = ACTIONS(1063), + [anon_sym_continue] = ACTIONS(1063), + [anon_sym_default] = ACTIONS(1063), + [anon_sym_enum] = ACTIONS(1063), + [anon_sym_fn] = ACTIONS(1063), + [anon_sym_for] = ACTIONS(1063), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_impl] = ACTIONS(1063), + [anon_sym_let] = ACTIONS(1063), + [anon_sym_loop] = ACTIONS(1063), + [anon_sym_match] = ACTIONS(1063), + [anon_sym_mod] = ACTIONS(1063), + [anon_sym_pub] = ACTIONS(1063), + [anon_sym_return] = ACTIONS(1063), + [anon_sym_static] = ACTIONS(1063), + [anon_sym_struct] = ACTIONS(1063), + [anon_sym_trait] = ACTIONS(1063), + [anon_sym_type] = ACTIONS(1063), + [anon_sym_union] = ACTIONS(1063), + [anon_sym_unsafe] = ACTIONS(1063), + [anon_sym_use] = ACTIONS(1063), + [anon_sym_where] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1063), + [sym_mutable_specifier] = ACTIONS(1063), + [sym_integer_literal] = ACTIONS(1080), + [aux_sym_string_literal_token1] = ACTIONS(1083), + [sym_char_literal] = ACTIONS(1080), + [anon_sym_true] = ACTIONS(1086), + [anon_sym_false] = ACTIONS(1086), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(1063), + [sym_super] = ACTIONS(1063), + [sym_crate] = ACTIONS(1063), [sym_metavariable] = ACTIONS(1091), + [sym_raw_string_literal] = ACTIONS(1080), + [sym_float_literal] = ACTIONS(1080), [sym_block_comment] = ACTIONS(3), }, [254] = { @@ -42945,655 +42626,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [272] = { - [ts_builtin_sym_end] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1168), - [anon_sym_SEMI] = ACTIONS(1166), - [anon_sym_macro_rules_BANG] = ACTIONS(1166), - [anon_sym_LPAREN] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_RBRACE] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1166), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_SQUOTE] = ACTIONS(1168), - [anon_sym_async] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_const] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_default] = ACTIONS(1168), - [anon_sym_enum] = ACTIONS(1168), - [anon_sym_fn] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_impl] = ACTIONS(1168), - [anon_sym_let] = ACTIONS(1168), - [anon_sym_loop] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_mod] = ACTIONS(1168), - [anon_sym_pub] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1168), - [anon_sym_trait] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_union] = ACTIONS(1168), - [anon_sym_unsafe] = ACTIONS(1168), - [anon_sym_use] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(1166), - [anon_sym_BANG] = ACTIONS(1166), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_LT] = ACTIONS(1166), - [anon_sym_COLON_COLON] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1166), - [anon_sym_DOT_DOT] = ACTIONS(1166), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_PIPE] = ACTIONS(1166), - [anon_sym_yield] = ACTIONS(1168), - [anon_sym_move] = ACTIONS(1168), - [sym_integer_literal] = ACTIONS(1166), - [aux_sym_string_literal_token1] = ACTIONS(1166), - [sym_char_literal] = ACTIONS(1166), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1168), - [sym_super] = ACTIONS(1168), - [sym_crate] = ACTIONS(1168), - [sym_metavariable] = ACTIONS(1166), - [sym_raw_string_literal] = ACTIONS(1166), - [sym_float_literal] = ACTIONS(1166), - [sym_block_comment] = ACTIONS(3), - }, - [273] = { - [ts_builtin_sym_end] = ACTIONS(1170), - [sym_identifier] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym_macro_rules_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1170), + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_macro_invocation] = STATE(2506), + [sym_scoped_identifier] = STATE(1571), + [sym_scoped_type_identifier] = STATE(1936), + [sym_match_arm] = STATE(490), + [sym_last_match_arm] = STATE(2427), + [sym_match_pattern] = STATE(2451), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1924), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_LBRACK] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_u8] = ACTIONS(1172), - [anon_sym_i8] = ACTIONS(1172), - [anon_sym_u16] = ACTIONS(1172), - [anon_sym_i16] = ACTIONS(1172), - [anon_sym_u32] = ACTIONS(1172), - [anon_sym_i32] = ACTIONS(1172), - [anon_sym_u64] = ACTIONS(1172), - [anon_sym_i64] = ACTIONS(1172), - [anon_sym_u128] = ACTIONS(1172), - [anon_sym_i128] = ACTIONS(1172), - [anon_sym_isize] = ACTIONS(1172), - [anon_sym_usize] = ACTIONS(1172), - [anon_sym_f32] = ACTIONS(1172), - [anon_sym_f64] = ACTIONS(1172), - [anon_sym_bool] = ACTIONS(1172), - [anon_sym_str] = ACTIONS(1172), - [anon_sym_char] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_async] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_fn] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_impl] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_pub] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1172), - [anon_sym_struct] = ACTIONS(1172), - [anon_sym_trait] = ACTIONS(1172), - [anon_sym_type] = ACTIONS(1172), - [anon_sym_union] = ACTIONS(1172), - [anon_sym_unsafe] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_LT] = ACTIONS(1170), - [anon_sym_COLON_COLON] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1170), - [anon_sym_yield] = ACTIONS(1172), - [anon_sym_move] = ACTIONS(1172), - [sym_integer_literal] = ACTIONS(1170), - [aux_sym_string_literal_token1] = ACTIONS(1170), - [sym_char_literal] = ACTIONS(1170), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1172), - [sym_super] = ACTIONS(1172), - [sym_crate] = ACTIONS(1172), - [sym_metavariable] = ACTIONS(1170), - [sym_raw_string_literal] = ACTIONS(1170), - [sym_float_literal] = ACTIONS(1170), - [sym_block_comment] = ACTIONS(3), - }, - [274] = { - [ts_builtin_sym_end] = ACTIONS(1174), - [sym_identifier] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_macro_rules_BANG] = ACTIONS(1174), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_RBRACE] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_u8] = ACTIONS(1176), - [anon_sym_i8] = ACTIONS(1176), - [anon_sym_u16] = ACTIONS(1176), - [anon_sym_i16] = ACTIONS(1176), - [anon_sym_u32] = ACTIONS(1176), - [anon_sym_i32] = ACTIONS(1176), - [anon_sym_u64] = ACTIONS(1176), - [anon_sym_i64] = ACTIONS(1176), - [anon_sym_u128] = ACTIONS(1176), - [anon_sym_i128] = ACTIONS(1176), - [anon_sym_isize] = ACTIONS(1176), - [anon_sym_usize] = ACTIONS(1176), - [anon_sym_f32] = ACTIONS(1176), - [anon_sym_f64] = ACTIONS(1176), - [anon_sym_bool] = ACTIONS(1176), - [anon_sym_str] = ACTIONS(1176), - [anon_sym_char] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_async] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), [anon_sym_const] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1176), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_fn] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_impl] = ACTIONS(1176), - [anon_sym_let] = ACTIONS(1176), - [anon_sym_loop] = ACTIONS(1176), - [anon_sym_match] = ACTIONS(1176), - [anon_sym_mod] = ACTIONS(1176), - [anon_sym_pub] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1176), - [anon_sym_struct] = ACTIONS(1176), - [anon_sym_trait] = ACTIONS(1176), - [anon_sym_type] = ACTIONS(1176), - [anon_sym_union] = ACTIONS(1176), - [anon_sym_unsafe] = ACTIONS(1176), - [anon_sym_use] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_POUND] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1176), - [anon_sym_LT] = ACTIONS(1174), - [anon_sym_COLON_COLON] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_DOT_DOT] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PIPE] = ACTIONS(1174), - [anon_sym_yield] = ACTIONS(1176), - [anon_sym_move] = ACTIONS(1176), - [sym_integer_literal] = ACTIONS(1174), - [aux_sym_string_literal_token1] = ACTIONS(1174), - [sym_char_literal] = ACTIONS(1174), - [anon_sym_true] = ACTIONS(1176), - [anon_sym_false] = ACTIONS(1176), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1176), - [sym_super] = ACTIONS(1176), - [sym_crate] = ACTIONS(1176), - [sym_metavariable] = ACTIONS(1174), - [sym_raw_string_literal] = ACTIONS(1174), - [sym_float_literal] = ACTIONS(1174), - [sym_block_comment] = ACTIONS(3), - }, - [275] = { - [ts_builtin_sym_end] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym_macro_rules_BANG] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1178), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_u8] = ACTIONS(1180), - [anon_sym_i8] = ACTIONS(1180), - [anon_sym_u16] = ACTIONS(1180), - [anon_sym_i16] = ACTIONS(1180), - [anon_sym_u32] = ACTIONS(1180), - [anon_sym_i32] = ACTIONS(1180), - [anon_sym_u64] = ACTIONS(1180), - [anon_sym_i64] = ACTIONS(1180), - [anon_sym_u128] = ACTIONS(1180), - [anon_sym_i128] = ACTIONS(1180), - [anon_sym_isize] = ACTIONS(1180), - [anon_sym_usize] = ACTIONS(1180), - [anon_sym_f32] = ACTIONS(1180), - [anon_sym_f64] = ACTIONS(1180), - [anon_sym_bool] = ACTIONS(1180), - [anon_sym_str] = ACTIONS(1180), - [anon_sym_char] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_async] = ACTIONS(1180), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_const] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_default] = ACTIONS(1180), - [anon_sym_enum] = ACTIONS(1180), - [anon_sym_fn] = ACTIONS(1180), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1180), - [anon_sym_let] = ACTIONS(1180), - [anon_sym_loop] = ACTIONS(1180), - [anon_sym_match] = ACTIONS(1180), - [anon_sym_mod] = ACTIONS(1180), - [anon_sym_pub] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_static] = ACTIONS(1180), - [anon_sym_struct] = ACTIONS(1180), - [anon_sym_trait] = ACTIONS(1180), - [anon_sym_type] = ACTIONS(1180), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1180), - [anon_sym_use] = ACTIONS(1180), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_POUND] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_extern] = ACTIONS(1180), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_COLON_COLON] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_move] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1178), - [aux_sym_string_literal_token1] = ACTIONS(1178), - [sym_char_literal] = ACTIONS(1178), - [anon_sym_true] = ACTIONS(1180), - [anon_sym_false] = ACTIONS(1180), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1178), - [sym_raw_string_literal] = ACTIONS(1178), - [sym_float_literal] = ACTIONS(1178), - [sym_block_comment] = ACTIONS(3), - }, - [276] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1184), - [anon_sym_SEMI] = ACTIONS(1182), - [anon_sym_macro_rules_BANG] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1182), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_RBRACE] = ACTIONS(1182), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_STAR] = ACTIONS(1182), - [anon_sym_u8] = ACTIONS(1184), - [anon_sym_i8] = ACTIONS(1184), - [anon_sym_u16] = ACTIONS(1184), - [anon_sym_i16] = ACTIONS(1184), - [anon_sym_u32] = ACTIONS(1184), - [anon_sym_i32] = ACTIONS(1184), - [anon_sym_u64] = ACTIONS(1184), - [anon_sym_i64] = ACTIONS(1184), - [anon_sym_u128] = ACTIONS(1184), - [anon_sym_i128] = ACTIONS(1184), - [anon_sym_isize] = ACTIONS(1184), - [anon_sym_usize] = ACTIONS(1184), - [anon_sym_f32] = ACTIONS(1184), - [anon_sym_f64] = ACTIONS(1184), - [anon_sym_bool] = ACTIONS(1184), - [anon_sym_str] = ACTIONS(1184), - [anon_sym_char] = ACTIONS(1184), - [anon_sym_SQUOTE] = ACTIONS(1184), - [anon_sym_async] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_const] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_default] = ACTIONS(1184), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_fn] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_impl] = ACTIONS(1184), - [anon_sym_let] = ACTIONS(1184), - [anon_sym_loop] = ACTIONS(1184), - [anon_sym_match] = ACTIONS(1184), - [anon_sym_mod] = ACTIONS(1184), - [anon_sym_pub] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_static] = ACTIONS(1184), - [anon_sym_struct] = ACTIONS(1184), - [anon_sym_trait] = ACTIONS(1184), - [anon_sym_type] = ACTIONS(1184), - [anon_sym_union] = ACTIONS(1184), - [anon_sym_unsafe] = ACTIONS(1184), - [anon_sym_use] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1182), - [anon_sym_extern] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1182), - [anon_sym_COLON_COLON] = ACTIONS(1182), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), [anon_sym_AMP] = ACTIONS(1182), - [anon_sym_DOT_DOT] = ACTIONS(1182), - [anon_sym_DASH] = ACTIONS(1182), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_move] = ACTIONS(1184), - [sym_integer_literal] = ACTIONS(1182), - [aux_sym_string_literal_token1] = ACTIONS(1182), - [sym_char_literal] = ACTIONS(1182), - [anon_sym_true] = ACTIONS(1184), - [anon_sym_false] = ACTIONS(1184), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1184), [sym_super] = ACTIONS(1184), [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1182), - [sym_raw_string_literal] = ACTIONS(1182), - [sym_float_literal] = ACTIONS(1182), - [sym_block_comment] = ACTIONS(3), - }, - [277] = { - [ts_builtin_sym_end] = ACTIONS(1186), - [sym_identifier] = ACTIONS(1188), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_macro_rules_BANG] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_u8] = ACTIONS(1188), - [anon_sym_i8] = ACTIONS(1188), - [anon_sym_u16] = ACTIONS(1188), - [anon_sym_i16] = ACTIONS(1188), - [anon_sym_u32] = ACTIONS(1188), - [anon_sym_i32] = ACTIONS(1188), - [anon_sym_u64] = ACTIONS(1188), - [anon_sym_i64] = ACTIONS(1188), - [anon_sym_u128] = ACTIONS(1188), - [anon_sym_i128] = ACTIONS(1188), - [anon_sym_isize] = ACTIONS(1188), - [anon_sym_usize] = ACTIONS(1188), - [anon_sym_f32] = ACTIONS(1188), - [anon_sym_f64] = ACTIONS(1188), - [anon_sym_bool] = ACTIONS(1188), - [anon_sym_str] = ACTIONS(1188), - [anon_sym_char] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_async] = ACTIONS(1188), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_const] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1188), - [anon_sym_default] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1188), - [anon_sym_for] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1188), - [anon_sym_impl] = ACTIONS(1188), - [anon_sym_let] = ACTIONS(1188), - [anon_sym_loop] = ACTIONS(1188), - [anon_sym_match] = ACTIONS(1188), - [anon_sym_mod] = ACTIONS(1188), - [anon_sym_pub] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1188), - [anon_sym_static] = ACTIONS(1188), - [anon_sym_struct] = ACTIONS(1188), - [anon_sym_trait] = ACTIONS(1188), - [anon_sym_type] = ACTIONS(1188), - [anon_sym_union] = ACTIONS(1188), - [anon_sym_unsafe] = ACTIONS(1188), - [anon_sym_use] = ACTIONS(1188), - [anon_sym_while] = ACTIONS(1188), - [anon_sym_POUND] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_COLON_COLON] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_yield] = ACTIONS(1188), - [anon_sym_move] = ACTIONS(1188), - [sym_integer_literal] = ACTIONS(1186), - [aux_sym_string_literal_token1] = ACTIONS(1186), - [sym_char_literal] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1188), - [anon_sym_false] = ACTIONS(1188), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1188), - [sym_super] = ACTIONS(1188), - [sym_crate] = ACTIONS(1188), [sym_metavariable] = ACTIONS(1186), - [sym_raw_string_literal] = ACTIONS(1186), - [sym_float_literal] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [278] = { - [ts_builtin_sym_end] = ACTIONS(1190), - [sym_identifier] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym_macro_rules_BANG] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1190), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1192), - [anon_sym_i8] = ACTIONS(1192), - [anon_sym_u16] = ACTIONS(1192), - [anon_sym_i16] = ACTIONS(1192), - [anon_sym_u32] = ACTIONS(1192), - [anon_sym_i32] = ACTIONS(1192), - [anon_sym_u64] = ACTIONS(1192), - [anon_sym_i64] = ACTIONS(1192), - [anon_sym_u128] = ACTIONS(1192), - [anon_sym_i128] = ACTIONS(1192), - [anon_sym_isize] = ACTIONS(1192), - [anon_sym_usize] = ACTIONS(1192), - [anon_sym_f32] = ACTIONS(1192), - [anon_sym_f64] = ACTIONS(1192), - [anon_sym_bool] = ACTIONS(1192), - [anon_sym_str] = ACTIONS(1192), - [anon_sym_char] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_async] = ACTIONS(1192), - [anon_sym_break] = ACTIONS(1192), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_continue] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1192), - [anon_sym_enum] = ACTIONS(1192), - [anon_sym_fn] = ACTIONS(1192), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1192), - [anon_sym_impl] = ACTIONS(1192), - [anon_sym_let] = ACTIONS(1192), - [anon_sym_loop] = ACTIONS(1192), - [anon_sym_match] = ACTIONS(1192), - [anon_sym_mod] = ACTIONS(1192), - [anon_sym_pub] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1192), - [anon_sym_static] = ACTIONS(1192), - [anon_sym_struct] = ACTIONS(1192), - [anon_sym_trait] = ACTIONS(1192), - [anon_sym_type] = ACTIONS(1192), - [anon_sym_union] = ACTIONS(1192), - [anon_sym_unsafe] = ACTIONS(1192), - [anon_sym_use] = ACTIONS(1192), - [anon_sym_while] = ACTIONS(1192), - [anon_sym_POUND] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_COLON_COLON] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_move] = ACTIONS(1192), - [sym_integer_literal] = ACTIONS(1190), - [aux_sym_string_literal_token1] = ACTIONS(1190), - [sym_char_literal] = ACTIONS(1190), - [anon_sym_true] = ACTIONS(1192), - [anon_sym_false] = ACTIONS(1192), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1192), - [sym_super] = ACTIONS(1192), - [sym_crate] = ACTIONS(1192), - [sym_metavariable] = ACTIONS(1190), - [sym_raw_string_literal] = ACTIONS(1190), - [sym_float_literal] = ACTIONS(1190), + [273] = { + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_identifier] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym_macro_rules_BANG] = ACTIONS(1188), + [anon_sym_LPAREN] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1188), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_SQUOTE] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_fn] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_impl] = ACTIONS(1190), + [anon_sym_let] = ACTIONS(1190), + [anon_sym_loop] = ACTIONS(1190), + [anon_sym_match] = ACTIONS(1190), + [anon_sym_mod] = ACTIONS(1190), + [anon_sym_pub] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_trait] = ACTIONS(1190), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_unsafe] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_POUND] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_COLON_COLON] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_DOT_DOT] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_move] = ACTIONS(1190), + [sym_integer_literal] = ACTIONS(1188), + [aux_sym_string_literal_token1] = ACTIONS(1188), + [sym_char_literal] = ACTIONS(1188), + [anon_sym_true] = ACTIONS(1190), + [anon_sym_false] = ACTIONS(1190), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1190), + [sym_super] = ACTIONS(1190), + [sym_crate] = ACTIONS(1190), + [sym_metavariable] = ACTIONS(1188), + [sym_raw_string_literal] = ACTIONS(1188), + [sym_float_literal] = ACTIONS(1188), [sym_block_comment] = ACTIONS(3), }, - [279] = { - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_identifier] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1194), - [anon_sym_macro_rules_BANG] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_u8] = ACTIONS(1196), - [anon_sym_i8] = ACTIONS(1196), - [anon_sym_u16] = ACTIONS(1196), - [anon_sym_i16] = ACTIONS(1196), - [anon_sym_u32] = ACTIONS(1196), - [anon_sym_i32] = ACTIONS(1196), - [anon_sym_u64] = ACTIONS(1196), - [anon_sym_i64] = ACTIONS(1196), - [anon_sym_u128] = ACTIONS(1196), - [anon_sym_i128] = ACTIONS(1196), - [anon_sym_isize] = ACTIONS(1196), - [anon_sym_usize] = ACTIONS(1196), - [anon_sym_f32] = ACTIONS(1196), - [anon_sym_f64] = ACTIONS(1196), - [anon_sym_bool] = ACTIONS(1196), - [anon_sym_str] = ACTIONS(1196), - [anon_sym_char] = ACTIONS(1196), - [anon_sym_SQUOTE] = ACTIONS(1196), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_fn] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_impl] = ACTIONS(1196), - [anon_sym_let] = ACTIONS(1196), - [anon_sym_loop] = ACTIONS(1196), - [anon_sym_match] = ACTIONS(1196), - [anon_sym_mod] = ACTIONS(1196), - [anon_sym_pub] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_trait] = ACTIONS(1196), - [anon_sym_type] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_unsafe] = ACTIONS(1196), - [anon_sym_use] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_POUND] = ACTIONS(1194), - [anon_sym_BANG] = ACTIONS(1194), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_COLON_COLON] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_yield] = ACTIONS(1196), - [anon_sym_move] = ACTIONS(1196), - [sym_integer_literal] = ACTIONS(1194), - [aux_sym_string_literal_token1] = ACTIONS(1194), - [sym_char_literal] = ACTIONS(1194), - [anon_sym_true] = ACTIONS(1196), - [anon_sym_false] = ACTIONS(1196), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1196), - [sym_super] = ACTIONS(1196), - [sym_crate] = ACTIONS(1196), - [sym_metavariable] = ACTIONS(1194), - [sym_raw_string_literal] = ACTIONS(1194), - [sym_float_literal] = ACTIONS(1194), + [274] = { + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_macro_rules_BANG] = ACTIONS(1192), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_u8] = ACTIONS(1194), + [anon_sym_i8] = ACTIONS(1194), + [anon_sym_u16] = ACTIONS(1194), + [anon_sym_i16] = ACTIONS(1194), + [anon_sym_u32] = ACTIONS(1194), + [anon_sym_i32] = ACTIONS(1194), + [anon_sym_u64] = ACTIONS(1194), + [anon_sym_i64] = ACTIONS(1194), + [anon_sym_u128] = ACTIONS(1194), + [anon_sym_i128] = ACTIONS(1194), + [anon_sym_isize] = ACTIONS(1194), + [anon_sym_usize] = ACTIONS(1194), + [anon_sym_f32] = ACTIONS(1194), + [anon_sym_f64] = ACTIONS(1194), + [anon_sym_bool] = ACTIONS(1194), + [anon_sym_str] = ACTIONS(1194), + [anon_sym_char] = ACTIONS(1194), + [anon_sym_SQUOTE] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_fn] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_impl] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_loop] = ACTIONS(1194), + [anon_sym_match] = ACTIONS(1194), + [anon_sym_mod] = ACTIONS(1194), + [anon_sym_pub] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_trait] = ACTIONS(1194), + [anon_sym_type] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_unsafe] = ACTIONS(1194), + [anon_sym_use] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_POUND] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_extern] = ACTIONS(1194), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_COLON_COLON] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_DOT_DOT] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [anon_sym_yield] = ACTIONS(1194), + [anon_sym_move] = ACTIONS(1194), + [sym_integer_literal] = ACTIONS(1192), + [aux_sym_string_literal_token1] = ACTIONS(1192), + [sym_char_literal] = ACTIONS(1192), + [anon_sym_true] = ACTIONS(1194), + [anon_sym_false] = ACTIONS(1194), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1194), + [sym_super] = ACTIONS(1194), + [sym_crate] = ACTIONS(1194), + [sym_metavariable] = ACTIONS(1192), + [sym_raw_string_literal] = ACTIONS(1192), + [sym_float_literal] = ACTIONS(1192), [sym_block_comment] = ACTIONS(3), }, - [280] = { - [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), + [275] = { + [ts_builtin_sym_end] = ACTIONS(1196), [sym_identifier] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_macro_rules_BANG] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_u8] = ACTIONS(1198), + [anon_sym_i8] = ACTIONS(1198), + [anon_sym_u16] = ACTIONS(1198), + [anon_sym_i16] = ACTIONS(1198), + [anon_sym_u32] = ACTIONS(1198), + [anon_sym_i32] = ACTIONS(1198), + [anon_sym_u64] = ACTIONS(1198), + [anon_sym_i64] = ACTIONS(1198), + [anon_sym_u128] = ACTIONS(1198), + [anon_sym_i128] = ACTIONS(1198), + [anon_sym_isize] = ACTIONS(1198), + [anon_sym_usize] = ACTIONS(1198), + [anon_sym_f32] = ACTIONS(1198), + [anon_sym_f64] = ACTIONS(1198), + [anon_sym_bool] = ACTIONS(1198), + [anon_sym_str] = ACTIONS(1198), + [anon_sym_char] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_async] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_default] = ACTIONS(1198), + [anon_sym_enum] = ACTIONS(1198), + [anon_sym_fn] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_impl] = ACTIONS(1198), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_loop] = ACTIONS(1198), + [anon_sym_match] = ACTIONS(1198), + [anon_sym_mod] = ACTIONS(1198), + [anon_sym_pub] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_struct] = ACTIONS(1198), + [anon_sym_trait] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_union] = ACTIONS(1198), + [anon_sym_unsafe] = ACTIONS(1198), + [anon_sym_use] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_POUND] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_extern] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_move] = ACTIONS(1198), + [sym_integer_literal] = ACTIONS(1196), + [aux_sym_string_literal_token1] = ACTIONS(1196), + [sym_char_literal] = ACTIONS(1196), + [anon_sym_true] = ACTIONS(1198), + [anon_sym_false] = ACTIONS(1198), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1198), + [sym_super] = ACTIONS(1198), + [sym_crate] = ACTIONS(1198), + [sym_metavariable] = ACTIONS(1196), + [sym_raw_string_literal] = ACTIONS(1196), + [sym_float_literal] = ACTIONS(1196), + [sym_block_comment] = ACTIONS(3), + }, + [276] = { + [ts_builtin_sym_end] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym_macro_rules_BANG] = ACTIONS(1200), [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_RBRACE] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1200), + [anon_sym_u8] = ACTIONS(1202), + [anon_sym_i8] = ACTIONS(1202), + [anon_sym_u16] = ACTIONS(1202), + [anon_sym_i16] = ACTIONS(1202), + [anon_sym_u32] = ACTIONS(1202), + [anon_sym_i32] = ACTIONS(1202), + [anon_sym_u64] = ACTIONS(1202), + [anon_sym_i64] = ACTIONS(1202), + [anon_sym_u128] = ACTIONS(1202), + [anon_sym_i128] = ACTIONS(1202), + [anon_sym_isize] = ACTIONS(1202), + [anon_sym_usize] = ACTIONS(1202), + [anon_sym_f32] = ACTIONS(1202), + [anon_sym_f64] = ACTIONS(1202), + [anon_sym_bool] = ACTIONS(1202), + [anon_sym_str] = ACTIONS(1202), + [anon_sym_char] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_async] = ACTIONS(1202), + [anon_sym_break] = ACTIONS(1202), + [anon_sym_const] = ACTIONS(1202), + [anon_sym_continue] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1202), + [anon_sym_enum] = ACTIONS(1202), + [anon_sym_fn] = ACTIONS(1202), + [anon_sym_for] = ACTIONS(1202), + [anon_sym_if] = ACTIONS(1202), + [anon_sym_impl] = ACTIONS(1202), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_loop] = ACTIONS(1202), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_mod] = ACTIONS(1202), + [anon_sym_pub] = ACTIONS(1202), + [anon_sym_return] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_struct] = ACTIONS(1202), + [anon_sym_trait] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_union] = ACTIONS(1202), + [anon_sym_unsafe] = ACTIONS(1202), + [anon_sym_use] = ACTIONS(1202), + [anon_sym_while] = ACTIONS(1202), + [anon_sym_POUND] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PIPE] = ACTIONS(1200), + [anon_sym_yield] = ACTIONS(1202), + [anon_sym_move] = ACTIONS(1202), + [sym_integer_literal] = ACTIONS(1200), + [aux_sym_string_literal_token1] = ACTIONS(1200), + [sym_char_literal] = ACTIONS(1200), + [anon_sym_true] = ACTIONS(1202), + [anon_sym_false] = ACTIONS(1202), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_crate] = ACTIONS(1202), + [sym_metavariable] = ACTIONS(1200), + [sym_raw_string_literal] = ACTIONS(1200), + [sym_float_literal] = ACTIONS(1200), + [sym_block_comment] = ACTIONS(3), + }, + [277] = { + [ts_builtin_sym_end] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1206), + [anon_sym_SEMI] = ACTIONS(1204), + [anon_sym_macro_rules_BANG] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1204), [anon_sym_u8] = ACTIONS(1206), [anon_sym_i8] = ACTIONS(1206), [anon_sym_u16] = ACTIONS(1206), @@ -43611,6270 +43037,6063 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1206), [anon_sym_str] = ACTIONS(1206), [anon_sym_char] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1208), + [anon_sym_SQUOTE] = ACTIONS(1206), + [anon_sym_async] = ACTIONS(1206), + [anon_sym_break] = ACTIONS(1206), + [anon_sym_const] = ACTIONS(1206), + [anon_sym_continue] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1206), + [anon_sym_enum] = ACTIONS(1206), + [anon_sym_fn] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1206), + [anon_sym_impl] = ACTIONS(1206), + [anon_sym_let] = ACTIONS(1206), + [anon_sym_loop] = ACTIONS(1206), + [anon_sym_match] = ACTIONS(1206), + [anon_sym_mod] = ACTIONS(1206), + [anon_sym_pub] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1206), + [anon_sym_struct] = ACTIONS(1206), + [anon_sym_trait] = ACTIONS(1206), + [anon_sym_type] = ACTIONS(1206), + [anon_sym_union] = ACTIONS(1206), + [anon_sym_unsafe] = ACTIONS(1206), + [anon_sym_use] = ACTIONS(1206), + [anon_sym_while] = ACTIONS(1206), + [anon_sym_POUND] = ACTIONS(1204), + [anon_sym_BANG] = ACTIONS(1204), + [anon_sym_extern] = ACTIONS(1206), + [anon_sym_LT] = ACTIONS(1204), + [anon_sym_COLON_COLON] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1204), + [anon_sym_DOT_DOT] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_PIPE] = ACTIONS(1204), + [anon_sym_yield] = ACTIONS(1206), + [anon_sym_move] = ACTIONS(1206), + [sym_integer_literal] = ACTIONS(1204), + [aux_sym_string_literal_token1] = ACTIONS(1204), + [sym_char_literal] = ACTIONS(1204), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1206), + [sym_super] = ACTIONS(1206), + [sym_crate] = ACTIONS(1206), + [sym_metavariable] = ACTIONS(1204), + [sym_raw_string_literal] = ACTIONS(1204), + [sym_float_literal] = ACTIONS(1204), + [sym_block_comment] = ACTIONS(3), + }, + [278] = { + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_identifier] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym_macro_rules_BANG] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1208), + [anon_sym_u8] = ACTIONS(1210), + [anon_sym_i8] = ACTIONS(1210), + [anon_sym_u16] = ACTIONS(1210), + [anon_sym_i16] = ACTIONS(1210), + [anon_sym_u32] = ACTIONS(1210), + [anon_sym_i32] = ACTIONS(1210), + [anon_sym_u64] = ACTIONS(1210), + [anon_sym_i64] = ACTIONS(1210), + [anon_sym_u128] = ACTIONS(1210), + [anon_sym_i128] = ACTIONS(1210), + [anon_sym_isize] = ACTIONS(1210), + [anon_sym_usize] = ACTIONS(1210), + [anon_sym_f32] = ACTIONS(1210), + [anon_sym_f64] = ACTIONS(1210), + [anon_sym_bool] = ACTIONS(1210), + [anon_sym_str] = ACTIONS(1210), + [anon_sym_char] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [anon_sym_async] = ACTIONS(1210), + [anon_sym_break] = ACTIONS(1210), + [anon_sym_const] = ACTIONS(1210), + [anon_sym_continue] = ACTIONS(1210), [anon_sym_default] = ACTIONS(1210), + [anon_sym_enum] = ACTIONS(1210), + [anon_sym_fn] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1210), + [anon_sym_if] = ACTIONS(1210), + [anon_sym_impl] = ACTIONS(1210), + [anon_sym_let] = ACTIONS(1210), + [anon_sym_loop] = ACTIONS(1210), + [anon_sym_match] = ACTIONS(1210), + [anon_sym_mod] = ACTIONS(1210), + [anon_sym_pub] = ACTIONS(1210), + [anon_sym_return] = ACTIONS(1210), + [anon_sym_static] = ACTIONS(1210), + [anon_sym_struct] = ACTIONS(1210), + [anon_sym_trait] = ACTIONS(1210), + [anon_sym_type] = ACTIONS(1210), [anon_sym_union] = ACTIONS(1210), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(1210), + [anon_sym_use] = ACTIONS(1210), + [anon_sym_while] = ACTIONS(1210), + [anon_sym_POUND] = ACTIONS(1208), + [anon_sym_BANG] = ACTIONS(1208), + [anon_sym_extern] = ACTIONS(1210), + [anon_sym_LT] = ACTIONS(1208), + [anon_sym_COLON_COLON] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_PIPE] = ACTIONS(1208), + [anon_sym_yield] = ACTIONS(1210), + [anon_sym_move] = ACTIONS(1210), + [sym_integer_literal] = ACTIONS(1208), + [aux_sym_string_literal_token1] = ACTIONS(1208), + [sym_char_literal] = ACTIONS(1208), + [anon_sym_true] = ACTIONS(1210), + [anon_sym_false] = ACTIONS(1210), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1210), + [sym_super] = ACTIONS(1210), + [sym_crate] = ACTIONS(1210), + [sym_metavariable] = ACTIONS(1208), + [sym_raw_string_literal] = ACTIONS(1208), + [sym_float_literal] = ACTIONS(1208), + [sym_block_comment] = ACTIONS(3), + }, + [279] = { + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_macro_rules_BANG] = ACTIONS(1212), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_u8] = ACTIONS(1214), + [anon_sym_i8] = ACTIONS(1214), + [anon_sym_u16] = ACTIONS(1214), + [anon_sym_i16] = ACTIONS(1214), + [anon_sym_u32] = ACTIONS(1214), + [anon_sym_i32] = ACTIONS(1214), + [anon_sym_u64] = ACTIONS(1214), + [anon_sym_i64] = ACTIONS(1214), + [anon_sym_u128] = ACTIONS(1214), + [anon_sym_i128] = ACTIONS(1214), + [anon_sym_isize] = ACTIONS(1214), + [anon_sym_usize] = ACTIONS(1214), + [anon_sym_f32] = ACTIONS(1214), + [anon_sym_f64] = ACTIONS(1214), + [anon_sym_bool] = ACTIONS(1214), + [anon_sym_str] = ACTIONS(1214), + [anon_sym_char] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_async] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_default] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_fn] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_impl] = ACTIONS(1214), + [anon_sym_let] = ACTIONS(1214), + [anon_sym_loop] = ACTIONS(1214), + [anon_sym_match] = ACTIONS(1214), + [anon_sym_mod] = ACTIONS(1214), + [anon_sym_pub] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_struct] = ACTIONS(1214), + [anon_sym_trait] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_union] = ACTIONS(1214), + [anon_sym_unsafe] = ACTIONS(1214), + [anon_sym_use] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1214), + [anon_sym_LT] = ACTIONS(1212), [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym__] = 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), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_DOT_DOT] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1212), + [anon_sym_yield] = ACTIONS(1214), + [anon_sym_move] = ACTIONS(1214), + [sym_integer_literal] = ACTIONS(1212), + [aux_sym_string_literal_token1] = ACTIONS(1212), + [sym_char_literal] = ACTIONS(1212), + [anon_sym_true] = ACTIONS(1214), + [anon_sym_false] = ACTIONS(1214), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1214), + [sym_super] = ACTIONS(1214), + [sym_crate] = ACTIONS(1214), + [sym_metavariable] = ACTIONS(1212), + [sym_raw_string_literal] = ACTIONS(1212), + [sym_float_literal] = ACTIONS(1212), + [sym_block_comment] = ACTIONS(3), + }, + [280] = { + [ts_builtin_sym_end] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym_macro_rules_BANG] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_RBRACE] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(1216), + [anon_sym_u8] = ACTIONS(1218), + [anon_sym_i8] = ACTIONS(1218), + [anon_sym_u16] = ACTIONS(1218), + [anon_sym_i16] = ACTIONS(1218), + [anon_sym_u32] = ACTIONS(1218), + [anon_sym_i32] = ACTIONS(1218), + [anon_sym_u64] = ACTIONS(1218), + [anon_sym_i64] = ACTIONS(1218), + [anon_sym_u128] = ACTIONS(1218), + [anon_sym_i128] = ACTIONS(1218), + [anon_sym_isize] = ACTIONS(1218), + [anon_sym_usize] = ACTIONS(1218), + [anon_sym_f32] = ACTIONS(1218), + [anon_sym_f64] = ACTIONS(1218), + [anon_sym_bool] = ACTIONS(1218), + [anon_sym_str] = ACTIONS(1218), + [anon_sym_char] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_async] = ACTIONS(1218), + [anon_sym_break] = ACTIONS(1218), + [anon_sym_const] = ACTIONS(1218), + [anon_sym_continue] = ACTIONS(1218), + [anon_sym_default] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1218), + [anon_sym_fn] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_impl] = ACTIONS(1218), + [anon_sym_let] = ACTIONS(1218), + [anon_sym_loop] = ACTIONS(1218), + [anon_sym_match] = ACTIONS(1218), + [anon_sym_mod] = ACTIONS(1218), + [anon_sym_pub] = ACTIONS(1218), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1218), + [anon_sym_struct] = ACTIONS(1218), + [anon_sym_trait] = ACTIONS(1218), + [anon_sym_type] = ACTIONS(1218), + [anon_sym_union] = ACTIONS(1218), + [anon_sym_unsafe] = ACTIONS(1218), + [anon_sym_use] = ACTIONS(1218), + [anon_sym_while] = ACTIONS(1218), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1216), + [anon_sym_extern] = ACTIONS(1218), + [anon_sym_LT] = ACTIONS(1216), + [anon_sym_COLON_COLON] = ACTIONS(1216), + [anon_sym_AMP] = ACTIONS(1216), + [anon_sym_DOT_DOT] = ACTIONS(1216), + [anon_sym_DASH] = ACTIONS(1216), + [anon_sym_PIPE] = ACTIONS(1216), + [anon_sym_yield] = ACTIONS(1218), + [anon_sym_move] = ACTIONS(1218), + [sym_integer_literal] = ACTIONS(1216), + [aux_sym_string_literal_token1] = ACTIONS(1216), + [sym_char_literal] = ACTIONS(1216), + [anon_sym_true] = ACTIONS(1218), + [anon_sym_false] = ACTIONS(1218), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1218), + [sym_super] = ACTIONS(1218), + [sym_crate] = ACTIONS(1218), + [sym_metavariable] = ACTIONS(1216), + [sym_raw_string_literal] = ACTIONS(1216), + [sym_float_literal] = ACTIONS(1216), [sym_block_comment] = ACTIONS(3), }, [281] = { - [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_delim_token_tree] = STATE(281), + [sym__delim_tokens] = STATE(281), + [sym__non_delim_token] = STATE(281), + [sym__literal] = STATE(281), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(1220), + [anon_sym_LPAREN] = ACTIONS(1223), + [anon_sym_RPAREN] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(1226), + [anon_sym_DOLLAR] = ACTIONS(1220), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_as] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1220), + [anon_sym_await] = 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_where] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [sym_mutable_specifier] = ACTIONS(1220), + [sym_integer_literal] = ACTIONS(1234), + [aux_sym_string_literal_token1] = ACTIONS(1237), + [sym_char_literal] = ACTIONS(1234), + [anon_sym_true] = ACTIONS(1240), + [anon_sym_false] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(1220), + [sym_super] = ACTIONS(1220), + [sym_crate] = ACTIONS(1220), + [sym_metavariable] = ACTIONS(1243), + [sym_raw_string_literal] = ACTIONS(1234), + [sym_float_literal] = ACTIONS(1234), [sym_block_comment] = ACTIONS(3), }, [282] = { - [ts_builtin_sym_end] = ACTIONS(1224), - [sym_identifier] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_macro_rules_BANG] = ACTIONS(1224), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_RBRACE] = ACTIONS(1224), - [anon_sym_LBRACK] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_u8] = ACTIONS(1226), - [anon_sym_i8] = ACTIONS(1226), - [anon_sym_u16] = ACTIONS(1226), - [anon_sym_i16] = ACTIONS(1226), - [anon_sym_u32] = ACTIONS(1226), - [anon_sym_i32] = ACTIONS(1226), - [anon_sym_u64] = ACTIONS(1226), - [anon_sym_i64] = ACTIONS(1226), - [anon_sym_u128] = ACTIONS(1226), - [anon_sym_i128] = ACTIONS(1226), - [anon_sym_isize] = ACTIONS(1226), - [anon_sym_usize] = ACTIONS(1226), - [anon_sym_f32] = ACTIONS(1226), - [anon_sym_f64] = ACTIONS(1226), - [anon_sym_bool] = ACTIONS(1226), - [anon_sym_str] = ACTIONS(1226), - [anon_sym_char] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_async] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_fn] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_impl] = ACTIONS(1226), - [anon_sym_let] = ACTIONS(1226), - [anon_sym_loop] = ACTIONS(1226), - [anon_sym_match] = ACTIONS(1226), - [anon_sym_mod] = ACTIONS(1226), - [anon_sym_pub] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_trait] = ACTIONS(1226), - [anon_sym_type] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_unsafe] = ACTIONS(1226), - [anon_sym_use] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_POUND] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_COLON_COLON] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_DOT_DOT] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_yield] = ACTIONS(1226), - [anon_sym_move] = ACTIONS(1226), - [sym_integer_literal] = ACTIONS(1224), - [aux_sym_string_literal_token1] = ACTIONS(1224), - [sym_char_literal] = ACTIONS(1224), - [anon_sym_true] = ACTIONS(1226), - [anon_sym_false] = ACTIONS(1226), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1226), - [sym_super] = ACTIONS(1226), - [sym_crate] = ACTIONS(1226), - [sym_metavariable] = ACTIONS(1224), - [sym_raw_string_literal] = ACTIONS(1224), - [sym_float_literal] = ACTIONS(1224), + [ts_builtin_sym_end] = ACTIONS(1246), + [sym_identifier] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_macro_rules_BANG] = ACTIONS(1246), + [anon_sym_LPAREN] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_RBRACE] = ACTIONS(1246), + [anon_sym_LBRACK] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_u8] = ACTIONS(1248), + [anon_sym_i8] = ACTIONS(1248), + [anon_sym_u16] = ACTIONS(1248), + [anon_sym_i16] = ACTIONS(1248), + [anon_sym_u32] = ACTIONS(1248), + [anon_sym_i32] = ACTIONS(1248), + [anon_sym_u64] = ACTIONS(1248), + [anon_sym_i64] = ACTIONS(1248), + [anon_sym_u128] = ACTIONS(1248), + [anon_sym_i128] = ACTIONS(1248), + [anon_sym_isize] = ACTIONS(1248), + [anon_sym_usize] = ACTIONS(1248), + [anon_sym_f32] = ACTIONS(1248), + [anon_sym_f64] = ACTIONS(1248), + [anon_sym_bool] = ACTIONS(1248), + [anon_sym_str] = ACTIONS(1248), + [anon_sym_char] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_async] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [anon_sym_fn] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_impl] = ACTIONS(1248), + [anon_sym_let] = ACTIONS(1248), + [anon_sym_loop] = ACTIONS(1248), + [anon_sym_match] = ACTIONS(1248), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_pub] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_struct] = ACTIONS(1248), + [anon_sym_trait] = ACTIONS(1248), + [anon_sym_type] = ACTIONS(1248), + [anon_sym_union] = ACTIONS(1248), + [anon_sym_unsafe] = ACTIONS(1248), + [anon_sym_use] = ACTIONS(1248), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_POUND] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_COLON_COLON] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_DOT_DOT] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_move] = ACTIONS(1248), + [sym_integer_literal] = ACTIONS(1246), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1246), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1248), + [sym_super] = ACTIONS(1248), + [sym_crate] = ACTIONS(1248), + [sym_metavariable] = ACTIONS(1246), + [sym_raw_string_literal] = ACTIONS(1246), + [sym_float_literal] = ACTIONS(1246), [sym_block_comment] = ACTIONS(3), }, [283] = { - [ts_builtin_sym_end] = ACTIONS(1228), - [sym_identifier] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_macro_rules_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_u8] = ACTIONS(1230), - [anon_sym_i8] = ACTIONS(1230), - [anon_sym_u16] = ACTIONS(1230), - [anon_sym_i16] = ACTIONS(1230), - [anon_sym_u32] = ACTIONS(1230), - [anon_sym_i32] = ACTIONS(1230), - [anon_sym_u64] = ACTIONS(1230), - [anon_sym_i64] = ACTIONS(1230), - [anon_sym_u128] = ACTIONS(1230), - [anon_sym_i128] = ACTIONS(1230), - [anon_sym_isize] = ACTIONS(1230), - [anon_sym_usize] = ACTIONS(1230), - [anon_sym_f32] = ACTIONS(1230), - [anon_sym_f64] = ACTIONS(1230), - [anon_sym_bool] = ACTIONS(1230), - [anon_sym_str] = ACTIONS(1230), - [anon_sym_char] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_async] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_default] = ACTIONS(1230), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_fn] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_impl] = ACTIONS(1230), - [anon_sym_let] = ACTIONS(1230), - [anon_sym_loop] = ACTIONS(1230), - [anon_sym_match] = ACTIONS(1230), - [anon_sym_mod] = ACTIONS(1230), - [anon_sym_pub] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_struct] = ACTIONS(1230), - [anon_sym_trait] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_union] = ACTIONS(1230), - [anon_sym_unsafe] = ACTIONS(1230), - [anon_sym_use] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_POUND] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_COLON_COLON] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_DOT_DOT] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [sym_integer_literal] = ACTIONS(1228), - [aux_sym_string_literal_token1] = ACTIONS(1228), - [sym_char_literal] = ACTIONS(1228), - [anon_sym_true] = ACTIONS(1230), - [anon_sym_false] = ACTIONS(1230), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1230), - [sym_super] = ACTIONS(1230), - [sym_crate] = ACTIONS(1230), - [sym_metavariable] = ACTIONS(1228), - [sym_raw_string_literal] = ACTIONS(1228), - [sym_float_literal] = ACTIONS(1228), + [ts_builtin_sym_end] = ACTIONS(1250), + [sym_identifier] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_macro_rules_BANG] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_RBRACE] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_u8] = ACTIONS(1252), + [anon_sym_i8] = ACTIONS(1252), + [anon_sym_u16] = ACTIONS(1252), + [anon_sym_i16] = ACTIONS(1252), + [anon_sym_u32] = ACTIONS(1252), + [anon_sym_i32] = ACTIONS(1252), + [anon_sym_u64] = ACTIONS(1252), + [anon_sym_i64] = ACTIONS(1252), + [anon_sym_u128] = ACTIONS(1252), + [anon_sym_i128] = ACTIONS(1252), + [anon_sym_isize] = ACTIONS(1252), + [anon_sym_usize] = ACTIONS(1252), + [anon_sym_f32] = ACTIONS(1252), + [anon_sym_f64] = ACTIONS(1252), + [anon_sym_bool] = ACTIONS(1252), + [anon_sym_str] = ACTIONS(1252), + [anon_sym_char] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_async] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_const] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_fn] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_impl] = ACTIONS(1252), + [anon_sym_let] = ACTIONS(1252), + [anon_sym_loop] = ACTIONS(1252), + [anon_sym_match] = ACTIONS(1252), + [anon_sym_mod] = ACTIONS(1252), + [anon_sym_pub] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_trait] = ACTIONS(1252), + [anon_sym_type] = ACTIONS(1252), + [anon_sym_union] = ACTIONS(1252), + [anon_sym_unsafe] = ACTIONS(1252), + [anon_sym_use] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_COLON_COLON] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_DOT_DOT] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(1250), + [anon_sym_yield] = ACTIONS(1252), + [anon_sym_move] = ACTIONS(1252), + [sym_integer_literal] = ACTIONS(1250), + [aux_sym_string_literal_token1] = ACTIONS(1250), + [sym_char_literal] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1252), + [anon_sym_false] = ACTIONS(1252), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1252), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1250), + [sym_raw_string_literal] = ACTIONS(1250), + [sym_float_literal] = ACTIONS(1250), [sym_block_comment] = ACTIONS(3), }, [284] = { - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym_macro_rules_BANG] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_u8] = ACTIONS(1234), - [anon_sym_i8] = ACTIONS(1234), - [anon_sym_u16] = ACTIONS(1234), - [anon_sym_i16] = ACTIONS(1234), - [anon_sym_u32] = ACTIONS(1234), - [anon_sym_i32] = ACTIONS(1234), - [anon_sym_u64] = ACTIONS(1234), - [anon_sym_i64] = ACTIONS(1234), - [anon_sym_u128] = ACTIONS(1234), - [anon_sym_i128] = ACTIONS(1234), - [anon_sym_isize] = ACTIONS(1234), - [anon_sym_usize] = ACTIONS(1234), - [anon_sym_f32] = ACTIONS(1234), - [anon_sym_f64] = ACTIONS(1234), - [anon_sym_bool] = ACTIONS(1234), - [anon_sym_str] = ACTIONS(1234), - [anon_sym_char] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_fn] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_impl] = ACTIONS(1234), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_loop] = ACTIONS(1234), - [anon_sym_match] = ACTIONS(1234), - [anon_sym_mod] = ACTIONS(1234), - [anon_sym_pub] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_trait] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_unsafe] = ACTIONS(1234), - [anon_sym_use] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_POUND] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_COLON_COLON] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_DOT_DOT] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PIPE] = ACTIONS(1232), - [anon_sym_yield] = ACTIONS(1234), - [anon_sym_move] = ACTIONS(1234), - [sym_integer_literal] = ACTIONS(1232), - [aux_sym_string_literal_token1] = ACTIONS(1232), - [sym_char_literal] = ACTIONS(1232), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1234), - [sym_super] = ACTIONS(1234), - [sym_crate] = ACTIONS(1234), - [sym_metavariable] = ACTIONS(1232), - [sym_raw_string_literal] = ACTIONS(1232), - [sym_float_literal] = ACTIONS(1232), + [ts_builtin_sym_end] = ACTIONS(1254), + [sym_identifier] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_macro_rules_BANG] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_RBRACE] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_u8] = ACTIONS(1256), + [anon_sym_i8] = ACTIONS(1256), + [anon_sym_u16] = ACTIONS(1256), + [anon_sym_i16] = ACTIONS(1256), + [anon_sym_u32] = ACTIONS(1256), + [anon_sym_i32] = ACTIONS(1256), + [anon_sym_u64] = ACTIONS(1256), + [anon_sym_i64] = ACTIONS(1256), + [anon_sym_u128] = ACTIONS(1256), + [anon_sym_i128] = ACTIONS(1256), + [anon_sym_isize] = ACTIONS(1256), + [anon_sym_usize] = ACTIONS(1256), + [anon_sym_f32] = ACTIONS(1256), + [anon_sym_f64] = ACTIONS(1256), + [anon_sym_bool] = ACTIONS(1256), + [anon_sym_str] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_async] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_fn] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_impl] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1256), + [anon_sym_loop] = ACTIONS(1256), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_mod] = ACTIONS(1256), + [anon_sym_pub] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_trait] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_unsafe] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_POUND] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_yield] = ACTIONS(1256), + [anon_sym_move] = ACTIONS(1256), + [sym_integer_literal] = ACTIONS(1254), + [aux_sym_string_literal_token1] = ACTIONS(1254), + [sym_char_literal] = ACTIONS(1254), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1256), + [sym_super] = ACTIONS(1256), + [sym_crate] = ACTIONS(1256), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1254), + [sym_float_literal] = ACTIONS(1254), [sym_block_comment] = ACTIONS(3), }, [285] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_macro_rules_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_u8] = ACTIONS(1238), - [anon_sym_i8] = ACTIONS(1238), - [anon_sym_u16] = ACTIONS(1238), - [anon_sym_i16] = ACTIONS(1238), - [anon_sym_u32] = ACTIONS(1238), - [anon_sym_i32] = ACTIONS(1238), - [anon_sym_u64] = ACTIONS(1238), - [anon_sym_i64] = ACTIONS(1238), - [anon_sym_u128] = ACTIONS(1238), - [anon_sym_i128] = ACTIONS(1238), - [anon_sym_isize] = ACTIONS(1238), - [anon_sym_usize] = ACTIONS(1238), - [anon_sym_f32] = ACTIONS(1238), - [anon_sym_f64] = ACTIONS(1238), - [anon_sym_bool] = ACTIONS(1238), - [anon_sym_str] = ACTIONS(1238), - [anon_sym_char] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_async] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_fn] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_impl] = ACTIONS(1238), - [anon_sym_let] = ACTIONS(1238), - [anon_sym_loop] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [anon_sym_mod] = ACTIONS(1238), - [anon_sym_pub] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_trait] = ACTIONS(1238), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_unsafe] = ACTIONS(1238), - [anon_sym_use] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1236), - [anon_sym_COLON_COLON] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PIPE] = ACTIONS(1236), - [anon_sym_yield] = ACTIONS(1238), - [anon_sym_move] = ACTIONS(1238), - [sym_integer_literal] = ACTIONS(1236), - [aux_sym_string_literal_token1] = ACTIONS(1236), - [sym_char_literal] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1238), - [sym_super] = ACTIONS(1238), - [sym_crate] = ACTIONS(1238), - [sym_metavariable] = ACTIONS(1236), - [sym_raw_string_literal] = ACTIONS(1236), - [sym_float_literal] = ACTIONS(1236), + [ts_builtin_sym_end] = ACTIONS(1258), + [sym_identifier] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_macro_rules_BANG] = ACTIONS(1258), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1260), + [anon_sym_i8] = ACTIONS(1260), + [anon_sym_u16] = ACTIONS(1260), + [anon_sym_i16] = ACTIONS(1260), + [anon_sym_u32] = ACTIONS(1260), + [anon_sym_i32] = ACTIONS(1260), + [anon_sym_u64] = ACTIONS(1260), + [anon_sym_i64] = ACTIONS(1260), + [anon_sym_u128] = ACTIONS(1260), + [anon_sym_i128] = ACTIONS(1260), + [anon_sym_isize] = ACTIONS(1260), + [anon_sym_usize] = ACTIONS(1260), + [anon_sym_f32] = ACTIONS(1260), + [anon_sym_f64] = ACTIONS(1260), + [anon_sym_bool] = ACTIONS(1260), + [anon_sym_str] = ACTIONS(1260), + [anon_sym_char] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_async] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_enum] = ACTIONS(1260), + [anon_sym_fn] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_impl] = ACTIONS(1260), + [anon_sym_let] = ACTIONS(1260), + [anon_sym_loop] = ACTIONS(1260), + [anon_sym_match] = ACTIONS(1260), + [anon_sym_mod] = ACTIONS(1260), + [anon_sym_pub] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_struct] = ACTIONS(1260), + [anon_sym_trait] = ACTIONS(1260), + [anon_sym_type] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1260), + [anon_sym_unsafe] = ACTIONS(1260), + [anon_sym_use] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_POUND] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_COLON_COLON] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_DOT_DOT] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_move] = ACTIONS(1260), + [sym_integer_literal] = ACTIONS(1258), + [aux_sym_string_literal_token1] = ACTIONS(1258), + [sym_char_literal] = ACTIONS(1258), + [anon_sym_true] = ACTIONS(1260), + [anon_sym_false] = ACTIONS(1260), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1260), + [sym_super] = ACTIONS(1260), + [sym_crate] = ACTIONS(1260), + [sym_metavariable] = ACTIONS(1258), + [sym_raw_string_literal] = ACTIONS(1258), + [sym_float_literal] = ACTIONS(1258), [sym_block_comment] = ACTIONS(3), }, [286] = { - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_macro_rules_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u128] = ACTIONS(1242), - [anon_sym_i128] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_str] = ACTIONS(1242), - [anon_sym_char] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_fn] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_impl] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1242), - [anon_sym_loop] = ACTIONS(1242), - [anon_sym_match] = ACTIONS(1242), - [anon_sym_mod] = ACTIONS(1242), - [anon_sym_pub] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_trait] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_unsafe] = ACTIONS(1242), - [anon_sym_use] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1240), - [anon_sym_COLON_COLON] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_DOT_DOT] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1242), - [anon_sym_move] = ACTIONS(1242), - [sym_integer_literal] = ACTIONS(1240), - [aux_sym_string_literal_token1] = ACTIONS(1240), - [sym_char_literal] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1242), - [sym_super] = ACTIONS(1242), - [sym_crate] = ACTIONS(1242), - [sym_metavariable] = ACTIONS(1240), - [sym_raw_string_literal] = ACTIONS(1240), - [sym_float_literal] = ACTIONS(1240), + [ts_builtin_sym_end] = ACTIONS(1262), + [sym_identifier] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_macro_rules_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_RBRACE] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_u8] = ACTIONS(1264), + [anon_sym_i8] = ACTIONS(1264), + [anon_sym_u16] = ACTIONS(1264), + [anon_sym_i16] = ACTIONS(1264), + [anon_sym_u32] = ACTIONS(1264), + [anon_sym_i32] = ACTIONS(1264), + [anon_sym_u64] = ACTIONS(1264), + [anon_sym_i64] = ACTIONS(1264), + [anon_sym_u128] = ACTIONS(1264), + [anon_sym_i128] = ACTIONS(1264), + [anon_sym_isize] = ACTIONS(1264), + [anon_sym_usize] = ACTIONS(1264), + [anon_sym_f32] = ACTIONS(1264), + [anon_sym_f64] = ACTIONS(1264), + [anon_sym_bool] = ACTIONS(1264), + [anon_sym_str] = ACTIONS(1264), + [anon_sym_char] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_async] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_fn] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_impl] = ACTIONS(1264), + [anon_sym_let] = ACTIONS(1264), + [anon_sym_loop] = ACTIONS(1264), + [anon_sym_match] = ACTIONS(1264), + [anon_sym_mod] = ACTIONS(1264), + [anon_sym_pub] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_trait] = ACTIONS(1264), + [anon_sym_type] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_unsafe] = ACTIONS(1264), + [anon_sym_use] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [anon_sym_POUND] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_COLON_COLON] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_DOT_DOT] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [anon_sym_yield] = ACTIONS(1264), + [anon_sym_move] = ACTIONS(1264), + [sym_integer_literal] = ACTIONS(1262), + [aux_sym_string_literal_token1] = ACTIONS(1262), + [sym_char_literal] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1264), + [anon_sym_false] = ACTIONS(1264), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1264), + [sym_super] = ACTIONS(1264), + [sym_crate] = ACTIONS(1264), + [sym_metavariable] = ACTIONS(1262), + [sym_raw_string_literal] = ACTIONS(1262), + [sym_float_literal] = ACTIONS(1262), [sym_block_comment] = ACTIONS(3), }, [287] = { - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_macro_rules_BANG] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_u8] = ACTIONS(1246), - [anon_sym_i8] = ACTIONS(1246), - [anon_sym_u16] = ACTIONS(1246), - [anon_sym_i16] = ACTIONS(1246), - [anon_sym_u32] = ACTIONS(1246), - [anon_sym_i32] = ACTIONS(1246), - [anon_sym_u64] = ACTIONS(1246), - [anon_sym_i64] = ACTIONS(1246), - [anon_sym_u128] = ACTIONS(1246), - [anon_sym_i128] = ACTIONS(1246), - [anon_sym_isize] = ACTIONS(1246), - [anon_sym_usize] = ACTIONS(1246), - [anon_sym_f32] = ACTIONS(1246), - [anon_sym_f64] = ACTIONS(1246), - [anon_sym_bool] = ACTIONS(1246), - [anon_sym_str] = ACTIONS(1246), - [anon_sym_char] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_fn] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_impl] = ACTIONS(1246), - [anon_sym_let] = ACTIONS(1246), - [anon_sym_loop] = ACTIONS(1246), - [anon_sym_match] = ACTIONS(1246), - [anon_sym_mod] = ACTIONS(1246), - [anon_sym_pub] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_trait] = ACTIONS(1246), - [anon_sym_type] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_unsafe] = ACTIONS(1246), - [anon_sym_use] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_POUND] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_COLON_COLON] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_DOT_DOT] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_yield] = ACTIONS(1246), - [anon_sym_move] = ACTIONS(1246), - [sym_integer_literal] = ACTIONS(1244), - [aux_sym_string_literal_token1] = ACTIONS(1244), - [sym_char_literal] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1246), - [sym_super] = ACTIONS(1246), - [sym_crate] = ACTIONS(1246), - [sym_metavariable] = ACTIONS(1244), - [sym_raw_string_literal] = ACTIONS(1244), - [sym_float_literal] = ACTIONS(1244), + [ts_builtin_sym_end] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_macro_rules_BANG] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_u8] = ACTIONS(1268), + [anon_sym_i8] = ACTIONS(1268), + [anon_sym_u16] = ACTIONS(1268), + [anon_sym_i16] = ACTIONS(1268), + [anon_sym_u32] = ACTIONS(1268), + [anon_sym_i32] = ACTIONS(1268), + [anon_sym_u64] = ACTIONS(1268), + [anon_sym_i64] = ACTIONS(1268), + [anon_sym_u128] = ACTIONS(1268), + [anon_sym_i128] = ACTIONS(1268), + [anon_sym_isize] = ACTIONS(1268), + [anon_sym_usize] = ACTIONS(1268), + [anon_sym_f32] = ACTIONS(1268), + [anon_sym_f64] = ACTIONS(1268), + [anon_sym_bool] = ACTIONS(1268), + [anon_sym_str] = ACTIONS(1268), + [anon_sym_char] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1268), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_const] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1268), + [anon_sym_enum] = ACTIONS(1268), + [anon_sym_fn] = ACTIONS(1268), + [anon_sym_for] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1268), + [anon_sym_impl] = ACTIONS(1268), + [anon_sym_let] = ACTIONS(1268), + [anon_sym_loop] = ACTIONS(1268), + [anon_sym_match] = ACTIONS(1268), + [anon_sym_mod] = ACTIONS(1268), + [anon_sym_pub] = ACTIONS(1268), + [anon_sym_return] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1268), + [anon_sym_struct] = ACTIONS(1268), + [anon_sym_trait] = ACTIONS(1268), + [anon_sym_type] = ACTIONS(1268), + [anon_sym_union] = ACTIONS(1268), + [anon_sym_unsafe] = ACTIONS(1268), + [anon_sym_use] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1268), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_COLON_COLON] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_DOT_DOT] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_yield] = ACTIONS(1268), + [anon_sym_move] = ACTIONS(1268), + [sym_integer_literal] = ACTIONS(1266), + [aux_sym_string_literal_token1] = ACTIONS(1266), + [sym_char_literal] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1268), + [anon_sym_false] = ACTIONS(1268), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1268), + [sym_super] = ACTIONS(1268), + [sym_crate] = ACTIONS(1268), + [sym_metavariable] = ACTIONS(1266), + [sym_raw_string_literal] = ACTIONS(1266), + [sym_float_literal] = ACTIONS(1266), [sym_block_comment] = ACTIONS(3), }, [288] = { - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_identifier] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym_macro_rules_BANG] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_RBRACE] = ACTIONS(1248), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_u8] = ACTIONS(1250), - [anon_sym_i8] = ACTIONS(1250), - [anon_sym_u16] = ACTIONS(1250), - [anon_sym_i16] = ACTIONS(1250), - [anon_sym_u32] = ACTIONS(1250), - [anon_sym_i32] = ACTIONS(1250), - [anon_sym_u64] = ACTIONS(1250), - [anon_sym_i64] = ACTIONS(1250), - [anon_sym_u128] = ACTIONS(1250), - [anon_sym_i128] = ACTIONS(1250), - [anon_sym_isize] = ACTIONS(1250), - [anon_sym_usize] = ACTIONS(1250), - [anon_sym_f32] = ACTIONS(1250), - [anon_sym_f64] = ACTIONS(1250), - [anon_sym_bool] = ACTIONS(1250), - [anon_sym_str] = ACTIONS(1250), - [anon_sym_char] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_async] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_fn] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_impl] = ACTIONS(1250), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_loop] = ACTIONS(1250), - [anon_sym_match] = ACTIONS(1250), - [anon_sym_mod] = ACTIONS(1250), - [anon_sym_pub] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_trait] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_unsafe] = ACTIONS(1250), - [anon_sym_use] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_POUND] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1248), - [anon_sym_COLON_COLON] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_DOT_DOT] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PIPE] = ACTIONS(1248), - [anon_sym_yield] = ACTIONS(1250), - [anon_sym_move] = ACTIONS(1250), - [sym_integer_literal] = ACTIONS(1248), - [aux_sym_string_literal_token1] = ACTIONS(1248), - [sym_char_literal] = ACTIONS(1248), - [anon_sym_true] = ACTIONS(1250), - [anon_sym_false] = ACTIONS(1250), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1250), - [sym_super] = ACTIONS(1250), - [sym_crate] = ACTIONS(1250), - [sym_metavariable] = ACTIONS(1248), - [sym_raw_string_literal] = ACTIONS(1248), - [sym_float_literal] = ACTIONS(1248), + [ts_builtin_sym_end] = ACTIONS(1270), + [sym_identifier] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym_macro_rules_BANG] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [anon_sym_async] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_fn] = ACTIONS(1272), + [anon_sym_for] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_impl] = ACTIONS(1272), + [anon_sym_let] = ACTIONS(1272), + [anon_sym_loop] = ACTIONS(1272), + [anon_sym_match] = ACTIONS(1272), + [anon_sym_mod] = ACTIONS(1272), + [anon_sym_pub] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_trait] = ACTIONS(1272), + [anon_sym_type] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_unsafe] = ACTIONS(1272), + [anon_sym_use] = ACTIONS(1272), + [anon_sym_while] = ACTIONS(1272), + [anon_sym_POUND] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1272), + [anon_sym_LT] = ACTIONS(1270), + [anon_sym_COLON_COLON] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_DOT_DOT] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_PIPE] = ACTIONS(1270), + [anon_sym_yield] = ACTIONS(1272), + [anon_sym_move] = ACTIONS(1272), + [sym_integer_literal] = ACTIONS(1270), + [aux_sym_string_literal_token1] = ACTIONS(1270), + [sym_char_literal] = ACTIONS(1270), + [anon_sym_true] = ACTIONS(1272), + [anon_sym_false] = ACTIONS(1272), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1272), + [sym_super] = ACTIONS(1272), + [sym_crate] = ACTIONS(1272), + [sym_metavariable] = ACTIONS(1270), + [sym_raw_string_literal] = ACTIONS(1270), + [sym_float_literal] = ACTIONS(1270), [sym_block_comment] = ACTIONS(3), }, [289] = { - [ts_builtin_sym_end] = ACTIONS(1252), - [sym_identifier] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_macro_rules_BANG] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_u8] = ACTIONS(1254), - [anon_sym_i8] = ACTIONS(1254), - [anon_sym_u16] = ACTIONS(1254), - [anon_sym_i16] = ACTIONS(1254), - [anon_sym_u32] = ACTIONS(1254), - [anon_sym_i32] = ACTIONS(1254), - [anon_sym_u64] = ACTIONS(1254), - [anon_sym_i64] = ACTIONS(1254), - [anon_sym_u128] = ACTIONS(1254), - [anon_sym_i128] = ACTIONS(1254), - [anon_sym_isize] = ACTIONS(1254), - [anon_sym_usize] = ACTIONS(1254), - [anon_sym_f32] = ACTIONS(1254), - [anon_sym_f64] = ACTIONS(1254), - [anon_sym_bool] = ACTIONS(1254), - [anon_sym_str] = ACTIONS(1254), - [anon_sym_char] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_async] = ACTIONS(1254), - [anon_sym_break] = ACTIONS(1254), - [anon_sym_const] = ACTIONS(1254), - [anon_sym_continue] = ACTIONS(1254), - [anon_sym_default] = ACTIONS(1254), - [anon_sym_enum] = ACTIONS(1254), - [anon_sym_fn] = ACTIONS(1254), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_if] = ACTIONS(1254), - [anon_sym_impl] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(1254), - [anon_sym_loop] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1254), - [anon_sym_mod] = ACTIONS(1254), - [anon_sym_pub] = ACTIONS(1254), - [anon_sym_return] = ACTIONS(1254), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_struct] = ACTIONS(1254), - [anon_sym_trait] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_union] = ACTIONS(1254), - [anon_sym_unsafe] = ACTIONS(1254), - [anon_sym_use] = ACTIONS(1254), - [anon_sym_while] = ACTIONS(1254), - [anon_sym_POUND] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_COLON_COLON] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_DOT_DOT] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_yield] = ACTIONS(1254), - [anon_sym_move] = ACTIONS(1254), - [sym_integer_literal] = ACTIONS(1252), - [aux_sym_string_literal_token1] = ACTIONS(1252), - [sym_char_literal] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1254), - [anon_sym_false] = ACTIONS(1254), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1254), - [sym_super] = ACTIONS(1254), - [sym_crate] = ACTIONS(1254), - [sym_metavariable] = ACTIONS(1252), - [sym_raw_string_literal] = ACTIONS(1252), - [sym_float_literal] = ACTIONS(1252), + [ts_builtin_sym_end] = ACTIONS(1274), + [sym_identifier] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym_macro_rules_BANG] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_u8] = ACTIONS(1276), + [anon_sym_i8] = ACTIONS(1276), + [anon_sym_u16] = ACTIONS(1276), + [anon_sym_i16] = ACTIONS(1276), + [anon_sym_u32] = ACTIONS(1276), + [anon_sym_i32] = ACTIONS(1276), + [anon_sym_u64] = ACTIONS(1276), + [anon_sym_i64] = ACTIONS(1276), + [anon_sym_u128] = ACTIONS(1276), + [anon_sym_i128] = ACTIONS(1276), + [anon_sym_isize] = ACTIONS(1276), + [anon_sym_usize] = ACTIONS(1276), + [anon_sym_f32] = ACTIONS(1276), + [anon_sym_f64] = ACTIONS(1276), + [anon_sym_bool] = ACTIONS(1276), + [anon_sym_str] = ACTIONS(1276), + [anon_sym_char] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_async] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_impl] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1276), + [anon_sym_loop] = ACTIONS(1276), + [anon_sym_match] = ACTIONS(1276), + [anon_sym_mod] = ACTIONS(1276), + [anon_sym_pub] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_trait] = ACTIONS(1276), + [anon_sym_type] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_unsafe] = ACTIONS(1276), + [anon_sym_use] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_POUND] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym_LT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_DOT_DOT] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PIPE] = ACTIONS(1274), + [anon_sym_yield] = ACTIONS(1276), + [anon_sym_move] = ACTIONS(1276), + [sym_integer_literal] = ACTIONS(1274), + [aux_sym_string_literal_token1] = ACTIONS(1274), + [sym_char_literal] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1276), + [anon_sym_false] = ACTIONS(1276), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1276), + [sym_super] = ACTIONS(1276), + [sym_crate] = ACTIONS(1276), + [sym_metavariable] = ACTIONS(1274), + [sym_raw_string_literal] = ACTIONS(1274), + [sym_float_literal] = ACTIONS(1274), [sym_block_comment] = ACTIONS(3), }, [290] = { - [ts_builtin_sym_end] = ACTIONS(1256), - [sym_identifier] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym_macro_rules_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_RBRACE] = ACTIONS(1256), - [anon_sym_LBRACK] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_u8] = ACTIONS(1258), - [anon_sym_i8] = ACTIONS(1258), - [anon_sym_u16] = ACTIONS(1258), - [anon_sym_i16] = ACTIONS(1258), - [anon_sym_u32] = ACTIONS(1258), - [anon_sym_i32] = ACTIONS(1258), - [anon_sym_u64] = ACTIONS(1258), - [anon_sym_i64] = ACTIONS(1258), - [anon_sym_u128] = ACTIONS(1258), - [anon_sym_i128] = ACTIONS(1258), - [anon_sym_isize] = ACTIONS(1258), - [anon_sym_usize] = ACTIONS(1258), - [anon_sym_f32] = ACTIONS(1258), - [anon_sym_f64] = ACTIONS(1258), - [anon_sym_bool] = ACTIONS(1258), - [anon_sym_str] = ACTIONS(1258), - [anon_sym_char] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_async] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_default] = ACTIONS(1258), - [anon_sym_enum] = ACTIONS(1258), - [anon_sym_fn] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_impl] = ACTIONS(1258), - [anon_sym_let] = ACTIONS(1258), - [anon_sym_loop] = ACTIONS(1258), - [anon_sym_match] = ACTIONS(1258), - [anon_sym_mod] = ACTIONS(1258), - [anon_sym_pub] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1258), - [anon_sym_struct] = ACTIONS(1258), - [anon_sym_trait] = ACTIONS(1258), - [anon_sym_type] = ACTIONS(1258), - [anon_sym_union] = ACTIONS(1258), - [anon_sym_unsafe] = ACTIONS(1258), - [anon_sym_use] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_POUND] = ACTIONS(1256), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_COLON_COLON] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_DOT_DOT] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_yield] = ACTIONS(1258), - [anon_sym_move] = ACTIONS(1258), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1256), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1256), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [ts_builtin_sym_end] = ACTIONS(1278), + [sym_identifier] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym_macro_rules_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_RBRACE] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_u8] = ACTIONS(1280), + [anon_sym_i8] = ACTIONS(1280), + [anon_sym_u16] = ACTIONS(1280), + [anon_sym_i16] = ACTIONS(1280), + [anon_sym_u32] = ACTIONS(1280), + [anon_sym_i32] = ACTIONS(1280), + [anon_sym_u64] = ACTIONS(1280), + [anon_sym_i64] = ACTIONS(1280), + [anon_sym_u128] = ACTIONS(1280), + [anon_sym_i128] = ACTIONS(1280), + [anon_sym_isize] = ACTIONS(1280), + [anon_sym_usize] = ACTIONS(1280), + [anon_sym_f32] = ACTIONS(1280), + [anon_sym_f64] = ACTIONS(1280), + [anon_sym_bool] = ACTIONS(1280), + [anon_sym_str] = ACTIONS(1280), + [anon_sym_char] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_break] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_continue] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1280), + [anon_sym_enum] = ACTIONS(1280), + [anon_sym_fn] = ACTIONS(1280), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_impl] = ACTIONS(1280), + [anon_sym_let] = ACTIONS(1280), + [anon_sym_loop] = ACTIONS(1280), + [anon_sym_match] = ACTIONS(1280), + [anon_sym_mod] = ACTIONS(1280), + [anon_sym_pub] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_struct] = ACTIONS(1280), + [anon_sym_trait] = ACTIONS(1280), + [anon_sym_type] = ACTIONS(1280), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_unsafe] = ACTIONS(1280), + [anon_sym_use] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_POUND] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(1278), + [anon_sym_COLON_COLON] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_DOT_DOT] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), + [anon_sym_move] = ACTIONS(1280), + [sym_integer_literal] = ACTIONS(1278), + [aux_sym_string_literal_token1] = ACTIONS(1278), + [sym_char_literal] = ACTIONS(1278), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1280), + [sym_super] = ACTIONS(1280), + [sym_crate] = ACTIONS(1280), + [sym_metavariable] = ACTIONS(1278), + [sym_raw_string_literal] = ACTIONS(1278), + [sym_float_literal] = ACTIONS(1278), [sym_block_comment] = ACTIONS(3), }, [291] = { - [ts_builtin_sym_end] = ACTIONS(1260), - [sym_identifier] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym_macro_rules_BANG] = ACTIONS(1260), - [anon_sym_LPAREN] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_RBRACE] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_u8] = ACTIONS(1262), - [anon_sym_i8] = ACTIONS(1262), - [anon_sym_u16] = ACTIONS(1262), - [anon_sym_i16] = ACTIONS(1262), - [anon_sym_u32] = ACTIONS(1262), - [anon_sym_i32] = ACTIONS(1262), - [anon_sym_u64] = ACTIONS(1262), - [anon_sym_i64] = ACTIONS(1262), - [anon_sym_u128] = ACTIONS(1262), - [anon_sym_i128] = ACTIONS(1262), - [anon_sym_isize] = ACTIONS(1262), - [anon_sym_usize] = ACTIONS(1262), - [anon_sym_f32] = ACTIONS(1262), - [anon_sym_f64] = ACTIONS(1262), - [anon_sym_bool] = ACTIONS(1262), - [anon_sym_str] = ACTIONS(1262), - [anon_sym_char] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1262), - [anon_sym_enum] = ACTIONS(1262), - [anon_sym_fn] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_impl] = ACTIONS(1262), - [anon_sym_let] = ACTIONS(1262), - [anon_sym_loop] = ACTIONS(1262), - [anon_sym_match] = ACTIONS(1262), - [anon_sym_mod] = ACTIONS(1262), - [anon_sym_pub] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_static] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1262), - [anon_sym_trait] = ACTIONS(1262), - [anon_sym_type] = ACTIONS(1262), - [anon_sym_union] = ACTIONS(1262), - [anon_sym_unsafe] = ACTIONS(1262), - [anon_sym_use] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_POUND] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1262), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_COLON_COLON] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_DOT_DOT] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_yield] = ACTIONS(1262), - [anon_sym_move] = ACTIONS(1262), - [sym_integer_literal] = ACTIONS(1260), - [aux_sym_string_literal_token1] = ACTIONS(1260), - [sym_char_literal] = ACTIONS(1260), - [anon_sym_true] = ACTIONS(1262), - [anon_sym_false] = ACTIONS(1262), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1262), - [sym_super] = ACTIONS(1262), - [sym_crate] = ACTIONS(1262), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(1260), - [sym_float_literal] = ACTIONS(1260), + [ts_builtin_sym_end] = ACTIONS(1282), + [sym_identifier] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_macro_rules_BANG] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_u8] = ACTIONS(1284), + [anon_sym_i8] = ACTIONS(1284), + [anon_sym_u16] = ACTIONS(1284), + [anon_sym_i16] = ACTIONS(1284), + [anon_sym_u32] = ACTIONS(1284), + [anon_sym_i32] = ACTIONS(1284), + [anon_sym_u64] = ACTIONS(1284), + [anon_sym_i64] = ACTIONS(1284), + [anon_sym_u128] = ACTIONS(1284), + [anon_sym_i128] = ACTIONS(1284), + [anon_sym_isize] = ACTIONS(1284), + [anon_sym_usize] = ACTIONS(1284), + [anon_sym_f32] = ACTIONS(1284), + [anon_sym_f64] = ACTIONS(1284), + [anon_sym_bool] = ACTIONS(1284), + [anon_sym_str] = ACTIONS(1284), + [anon_sym_char] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_fn] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_impl] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_loop] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1284), + [anon_sym_mod] = ACTIONS(1284), + [anon_sym_pub] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_trait] = ACTIONS(1284), + [anon_sym_type] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_use] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_POUND] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1282), + [anon_sym_COLON_COLON] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_DOT_DOT] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_PIPE] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_move] = ACTIONS(1284), + [sym_integer_literal] = ACTIONS(1282), + [aux_sym_string_literal_token1] = ACTIONS(1282), + [sym_char_literal] = ACTIONS(1282), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1284), + [sym_super] = ACTIONS(1284), + [sym_crate] = ACTIONS(1284), + [sym_metavariable] = ACTIONS(1282), + [sym_raw_string_literal] = ACTIONS(1282), + [sym_float_literal] = ACTIONS(1282), [sym_block_comment] = ACTIONS(3), }, [292] = { - [ts_builtin_sym_end] = ACTIONS(1264), - [sym_identifier] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym_macro_rules_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_RBRACE] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_u8] = ACTIONS(1266), - [anon_sym_i8] = ACTIONS(1266), - [anon_sym_u16] = ACTIONS(1266), - [anon_sym_i16] = ACTIONS(1266), - [anon_sym_u32] = ACTIONS(1266), - [anon_sym_i32] = ACTIONS(1266), - [anon_sym_u64] = ACTIONS(1266), - [anon_sym_i64] = ACTIONS(1266), - [anon_sym_u128] = ACTIONS(1266), - [anon_sym_i128] = ACTIONS(1266), - [anon_sym_isize] = ACTIONS(1266), - [anon_sym_usize] = ACTIONS(1266), - [anon_sym_f32] = ACTIONS(1266), - [anon_sym_f64] = ACTIONS(1266), - [anon_sym_bool] = ACTIONS(1266), - [anon_sym_str] = ACTIONS(1266), - [anon_sym_char] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_async] = ACTIONS(1266), - [anon_sym_break] = ACTIONS(1266), - [anon_sym_const] = ACTIONS(1266), - [anon_sym_continue] = ACTIONS(1266), - [anon_sym_default] = ACTIONS(1266), - [anon_sym_enum] = ACTIONS(1266), - [anon_sym_fn] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_impl] = ACTIONS(1266), - [anon_sym_let] = ACTIONS(1266), - [anon_sym_loop] = ACTIONS(1266), - [anon_sym_match] = ACTIONS(1266), - [anon_sym_mod] = ACTIONS(1266), - [anon_sym_pub] = ACTIONS(1266), - [anon_sym_return] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(1266), - [anon_sym_struct] = ACTIONS(1266), - [anon_sym_trait] = ACTIONS(1266), - [anon_sym_type] = ACTIONS(1266), - [anon_sym_union] = ACTIONS(1266), - [anon_sym_unsafe] = ACTIONS(1266), - [anon_sym_use] = ACTIONS(1266), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_POUND] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_COLON_COLON] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_DOT_DOT] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_yield] = ACTIONS(1266), - [anon_sym_move] = ACTIONS(1266), - [sym_integer_literal] = ACTIONS(1264), - [aux_sym_string_literal_token1] = ACTIONS(1264), - [sym_char_literal] = ACTIONS(1264), - [anon_sym_true] = ACTIONS(1266), - [anon_sym_false] = ACTIONS(1266), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1266), - [sym_super] = ACTIONS(1266), - [sym_crate] = ACTIONS(1266), - [sym_metavariable] = ACTIONS(1264), - [sym_raw_string_literal] = ACTIONS(1264), - [sym_float_literal] = ACTIONS(1264), + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_identifier] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_macro_rules_BANG] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_u8] = ACTIONS(1288), + [anon_sym_i8] = ACTIONS(1288), + [anon_sym_u16] = ACTIONS(1288), + [anon_sym_i16] = ACTIONS(1288), + [anon_sym_u32] = ACTIONS(1288), + [anon_sym_i32] = ACTIONS(1288), + [anon_sym_u64] = ACTIONS(1288), + [anon_sym_i64] = ACTIONS(1288), + [anon_sym_u128] = ACTIONS(1288), + [anon_sym_i128] = ACTIONS(1288), + [anon_sym_isize] = ACTIONS(1288), + [anon_sym_usize] = ACTIONS(1288), + [anon_sym_f32] = ACTIONS(1288), + [anon_sym_f64] = ACTIONS(1288), + [anon_sym_bool] = ACTIONS(1288), + [anon_sym_str] = ACTIONS(1288), + [anon_sym_char] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_fn] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_impl] = ACTIONS(1288), + [anon_sym_let] = ACTIONS(1288), + [anon_sym_loop] = ACTIONS(1288), + [anon_sym_match] = ACTIONS(1288), + [anon_sym_mod] = ACTIONS(1288), + [anon_sym_pub] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_trait] = ACTIONS(1288), + [anon_sym_type] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_unsafe] = ACTIONS(1288), + [anon_sym_use] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_POUND] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_DOT_DOT] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1286), + [anon_sym_yield] = ACTIONS(1288), + [anon_sym_move] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1286), + [aux_sym_string_literal_token1] = ACTIONS(1286), + [sym_char_literal] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1288), + [anon_sym_false] = ACTIONS(1288), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1286), + [sym_raw_string_literal] = ACTIONS(1286), + [sym_float_literal] = ACTIONS(1286), [sym_block_comment] = ACTIONS(3), }, [293] = { - [ts_builtin_sym_end] = ACTIONS(1268), - [sym_identifier] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_macro_rules_BANG] = ACTIONS(1268), - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_u8] = ACTIONS(1270), - [anon_sym_i8] = ACTIONS(1270), - [anon_sym_u16] = ACTIONS(1270), - [anon_sym_i16] = ACTIONS(1270), - [anon_sym_u32] = ACTIONS(1270), - [anon_sym_i32] = ACTIONS(1270), - [anon_sym_u64] = ACTIONS(1270), - [anon_sym_i64] = ACTIONS(1270), - [anon_sym_u128] = ACTIONS(1270), - [anon_sym_i128] = ACTIONS(1270), - [anon_sym_isize] = ACTIONS(1270), - [anon_sym_usize] = ACTIONS(1270), - [anon_sym_f32] = ACTIONS(1270), - [anon_sym_f64] = ACTIONS(1270), - [anon_sym_bool] = ACTIONS(1270), - [anon_sym_str] = ACTIONS(1270), - [anon_sym_char] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_async] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_fn] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_impl] = ACTIONS(1270), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_loop] = ACTIONS(1270), - [anon_sym_match] = ACTIONS(1270), - [anon_sym_mod] = ACTIONS(1270), - [anon_sym_pub] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_trait] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_unsafe] = ACTIONS(1270), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_POUND] = ACTIONS(1268), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_COLON_COLON] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_DOT_DOT] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_move] = ACTIONS(1270), - [sym_integer_literal] = ACTIONS(1268), - [aux_sym_string_literal_token1] = ACTIONS(1268), - [sym_char_literal] = ACTIONS(1268), - [anon_sym_true] = ACTIONS(1270), - [anon_sym_false] = ACTIONS(1270), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1268), - [sym_raw_string_literal] = ACTIONS(1268), - [sym_float_literal] = ACTIONS(1268), + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_identifier] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_macro_rules_BANG] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u128] = ACTIONS(1292), + [anon_sym_i128] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_str] = ACTIONS(1292), + [anon_sym_char] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_async] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_fn] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_loop] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_mod] = ACTIONS(1292), + [anon_sym_pub] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_trait] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_unsafe] = ACTIONS(1292), + [anon_sym_use] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_POUND] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_PIPE] = ACTIONS(1290), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_move] = ACTIONS(1292), + [sym_integer_literal] = ACTIONS(1290), + [aux_sym_string_literal_token1] = ACTIONS(1290), + [sym_char_literal] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1292), + [sym_super] = ACTIONS(1292), + [sym_crate] = ACTIONS(1292), + [sym_metavariable] = ACTIONS(1290), + [sym_raw_string_literal] = ACTIONS(1290), + [sym_float_literal] = ACTIONS(1290), [sym_block_comment] = ACTIONS(3), }, [294] = { - [ts_builtin_sym_end] = ACTIONS(1272), - [sym_identifier] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_macro_rules_BANG] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_RBRACE] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_u8] = ACTIONS(1274), - [anon_sym_i8] = ACTIONS(1274), - [anon_sym_u16] = ACTIONS(1274), - [anon_sym_i16] = ACTIONS(1274), - [anon_sym_u32] = ACTIONS(1274), - [anon_sym_i32] = ACTIONS(1274), - [anon_sym_u64] = ACTIONS(1274), - [anon_sym_i64] = ACTIONS(1274), - [anon_sym_u128] = ACTIONS(1274), - [anon_sym_i128] = ACTIONS(1274), - [anon_sym_isize] = ACTIONS(1274), - [anon_sym_usize] = ACTIONS(1274), - [anon_sym_f32] = ACTIONS(1274), - [anon_sym_f64] = ACTIONS(1274), - [anon_sym_bool] = ACTIONS(1274), - [anon_sym_str] = ACTIONS(1274), - [anon_sym_char] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_async] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_fn] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_impl] = ACTIONS(1274), - [anon_sym_let] = ACTIONS(1274), - [anon_sym_loop] = ACTIONS(1274), - [anon_sym_match] = ACTIONS(1274), - [anon_sym_mod] = ACTIONS(1274), - [anon_sym_pub] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_trait] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_unsafe] = ACTIONS(1274), - [anon_sym_use] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_POUND] = ACTIONS(1272), - [anon_sym_BANG] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_COLON_COLON] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_yield] = ACTIONS(1274), - [anon_sym_move] = ACTIONS(1274), - [sym_integer_literal] = ACTIONS(1272), - [aux_sym_string_literal_token1] = ACTIONS(1272), - [sym_char_literal] = ACTIONS(1272), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1274), - [sym_super] = ACTIONS(1274), - [sym_crate] = ACTIONS(1274), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(1272), - [sym_float_literal] = ACTIONS(1272), + [ts_builtin_sym_end] = ACTIONS(1294), + [sym_identifier] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_macro_rules_BANG] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_u8] = ACTIONS(1296), + [anon_sym_i8] = ACTIONS(1296), + [anon_sym_u16] = ACTIONS(1296), + [anon_sym_i16] = ACTIONS(1296), + [anon_sym_u32] = ACTIONS(1296), + [anon_sym_i32] = ACTIONS(1296), + [anon_sym_u64] = ACTIONS(1296), + [anon_sym_i64] = ACTIONS(1296), + [anon_sym_u128] = ACTIONS(1296), + [anon_sym_i128] = ACTIONS(1296), + [anon_sym_isize] = ACTIONS(1296), + [anon_sym_usize] = ACTIONS(1296), + [anon_sym_f32] = ACTIONS(1296), + [anon_sym_f64] = ACTIONS(1296), + [anon_sym_bool] = ACTIONS(1296), + [anon_sym_str] = ACTIONS(1296), + [anon_sym_char] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_fn] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_impl] = ACTIONS(1296), + [anon_sym_let] = ACTIONS(1296), + [anon_sym_loop] = ACTIONS(1296), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_mod] = ACTIONS(1296), + [anon_sym_pub] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_trait] = ACTIONS(1296), + [anon_sym_type] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_use] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_COLON_COLON] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_DOT_DOT] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_move] = ACTIONS(1296), + [sym_integer_literal] = ACTIONS(1294), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1294), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1296), + [sym_super] = ACTIONS(1296), + [sym_crate] = ACTIONS(1296), + [sym_metavariable] = ACTIONS(1294), + [sym_raw_string_literal] = ACTIONS(1294), + [sym_float_literal] = ACTIONS(1294), [sym_block_comment] = ACTIONS(3), }, [295] = { - [ts_builtin_sym_end] = ACTIONS(1276), - [sym_identifier] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_macro_rules_BANG] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_RBRACE] = ACTIONS(1276), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_u8] = ACTIONS(1278), - [anon_sym_i8] = ACTIONS(1278), - [anon_sym_u16] = ACTIONS(1278), - [anon_sym_i16] = ACTIONS(1278), - [anon_sym_u32] = ACTIONS(1278), - [anon_sym_i32] = ACTIONS(1278), - [anon_sym_u64] = ACTIONS(1278), - [anon_sym_i64] = ACTIONS(1278), - [anon_sym_u128] = ACTIONS(1278), - [anon_sym_i128] = ACTIONS(1278), - [anon_sym_isize] = ACTIONS(1278), - [anon_sym_usize] = ACTIONS(1278), - [anon_sym_f32] = ACTIONS(1278), - [anon_sym_f64] = ACTIONS(1278), - [anon_sym_bool] = ACTIONS(1278), - [anon_sym_str] = ACTIONS(1278), - [anon_sym_char] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1278), - [anon_sym_enum] = ACTIONS(1278), - [anon_sym_fn] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_impl] = ACTIONS(1278), - [anon_sym_let] = ACTIONS(1278), - [anon_sym_loop] = ACTIONS(1278), - [anon_sym_match] = ACTIONS(1278), - [anon_sym_mod] = ACTIONS(1278), - [anon_sym_pub] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_struct] = ACTIONS(1278), - [anon_sym_trait] = ACTIONS(1278), - [anon_sym_type] = ACTIONS(1278), - [anon_sym_union] = ACTIONS(1278), - [anon_sym_unsafe] = ACTIONS(1278), - [anon_sym_use] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_COLON_COLON] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_yield] = ACTIONS(1278), - [anon_sym_move] = ACTIONS(1278), - [sym_integer_literal] = ACTIONS(1276), - [aux_sym_string_literal_token1] = ACTIONS(1276), - [sym_char_literal] = ACTIONS(1276), - [anon_sym_true] = ACTIONS(1278), - [anon_sym_false] = ACTIONS(1278), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1278), - [sym_super] = ACTIONS(1278), - [sym_crate] = ACTIONS(1278), - [sym_metavariable] = ACTIONS(1276), - [sym_raw_string_literal] = ACTIONS(1276), - [sym_float_literal] = ACTIONS(1276), + [ts_builtin_sym_end] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym_macro_rules_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_RBRACE] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_u8] = ACTIONS(1300), + [anon_sym_i8] = ACTIONS(1300), + [anon_sym_u16] = ACTIONS(1300), + [anon_sym_i16] = ACTIONS(1300), + [anon_sym_u32] = ACTIONS(1300), + [anon_sym_i32] = ACTIONS(1300), + [anon_sym_u64] = ACTIONS(1300), + [anon_sym_i64] = ACTIONS(1300), + [anon_sym_u128] = ACTIONS(1300), + [anon_sym_i128] = ACTIONS(1300), + [anon_sym_isize] = ACTIONS(1300), + [anon_sym_usize] = ACTIONS(1300), + [anon_sym_f32] = ACTIONS(1300), + [anon_sym_f64] = ACTIONS(1300), + [anon_sym_bool] = ACTIONS(1300), + [anon_sym_str] = ACTIONS(1300), + [anon_sym_char] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_async] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_impl] = ACTIONS(1300), + [anon_sym_let] = ACTIONS(1300), + [anon_sym_loop] = ACTIONS(1300), + [anon_sym_match] = ACTIONS(1300), + [anon_sym_mod] = ACTIONS(1300), + [anon_sym_pub] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_trait] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_unsafe] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_POUND] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1298), + [anon_sym_COLON_COLON] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_DOT_DOT] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1298), + [anon_sym_yield] = ACTIONS(1300), + [anon_sym_move] = ACTIONS(1300), + [sym_integer_literal] = ACTIONS(1298), + [aux_sym_string_literal_token1] = ACTIONS(1298), + [sym_char_literal] = ACTIONS(1298), + [anon_sym_true] = ACTIONS(1300), + [anon_sym_false] = ACTIONS(1300), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1300), + [sym_super] = ACTIONS(1300), + [sym_crate] = ACTIONS(1300), + [sym_metavariable] = ACTIONS(1298), + [sym_raw_string_literal] = ACTIONS(1298), + [sym_float_literal] = ACTIONS(1298), [sym_block_comment] = ACTIONS(3), }, [296] = { - [ts_builtin_sym_end] = ACTIONS(1280), - [sym_identifier] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_macro_rules_BANG] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_u8] = ACTIONS(1282), - [anon_sym_i8] = ACTIONS(1282), - [anon_sym_u16] = ACTIONS(1282), - [anon_sym_i16] = ACTIONS(1282), - [anon_sym_u32] = ACTIONS(1282), - [anon_sym_i32] = ACTIONS(1282), - [anon_sym_u64] = ACTIONS(1282), - [anon_sym_i64] = ACTIONS(1282), - [anon_sym_u128] = ACTIONS(1282), - [anon_sym_i128] = ACTIONS(1282), - [anon_sym_isize] = ACTIONS(1282), - [anon_sym_usize] = ACTIONS(1282), - [anon_sym_f32] = ACTIONS(1282), - [anon_sym_f64] = ACTIONS(1282), - [anon_sym_bool] = ACTIONS(1282), - [anon_sym_str] = ACTIONS(1282), - [anon_sym_char] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_default] = ACTIONS(1282), - [anon_sym_enum] = ACTIONS(1282), - [anon_sym_fn] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_impl] = ACTIONS(1282), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_loop] = ACTIONS(1282), - [anon_sym_match] = ACTIONS(1282), - [anon_sym_mod] = ACTIONS(1282), - [anon_sym_pub] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_struct] = ACTIONS(1282), - [anon_sym_trait] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_union] = ACTIONS(1282), - [anon_sym_unsafe] = ACTIONS(1282), - [anon_sym_use] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_COLON_COLON] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_yield] = ACTIONS(1282), - [anon_sym_move] = ACTIONS(1282), - [sym_integer_literal] = ACTIONS(1280), - [aux_sym_string_literal_token1] = ACTIONS(1280), - [sym_char_literal] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1282), - [sym_super] = ACTIONS(1282), - [sym_crate] = ACTIONS(1282), - [sym_metavariable] = ACTIONS(1280), - [sym_raw_string_literal] = ACTIONS(1280), - [sym_float_literal] = ACTIONS(1280), + [ts_builtin_sym_end] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_macro_rules_BANG] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_RBRACE] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_u8] = ACTIONS(1304), + [anon_sym_i8] = ACTIONS(1304), + [anon_sym_u16] = ACTIONS(1304), + [anon_sym_i16] = ACTIONS(1304), + [anon_sym_u32] = ACTIONS(1304), + [anon_sym_i32] = ACTIONS(1304), + [anon_sym_u64] = ACTIONS(1304), + [anon_sym_i64] = ACTIONS(1304), + [anon_sym_u128] = ACTIONS(1304), + [anon_sym_i128] = ACTIONS(1304), + [anon_sym_isize] = ACTIONS(1304), + [anon_sym_usize] = ACTIONS(1304), + [anon_sym_f32] = ACTIONS(1304), + [anon_sym_f64] = ACTIONS(1304), + [anon_sym_bool] = ACTIONS(1304), + [anon_sym_str] = ACTIONS(1304), + [anon_sym_char] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_async] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_fn] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1304), + [anon_sym_let] = ACTIONS(1304), + [anon_sym_loop] = ACTIONS(1304), + [anon_sym_match] = ACTIONS(1304), + [anon_sym_mod] = ACTIONS(1304), + [anon_sym_pub] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_trait] = ACTIONS(1304), + [anon_sym_type] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_unsafe] = ACTIONS(1304), + [anon_sym_use] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_POUND] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1302), + [anon_sym_COLON_COLON] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_DOT_DOT] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_yield] = ACTIONS(1304), + [anon_sym_move] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1302), + [aux_sym_string_literal_token1] = ACTIONS(1302), + [sym_char_literal] = ACTIONS(1302), + [anon_sym_true] = ACTIONS(1304), + [anon_sym_false] = ACTIONS(1304), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1304), + [sym_super] = ACTIONS(1304), + [sym_crate] = ACTIONS(1304), + [sym_metavariable] = ACTIONS(1302), + [sym_raw_string_literal] = ACTIONS(1302), + [sym_float_literal] = ACTIONS(1302), [sym_block_comment] = ACTIONS(3), }, [297] = { - [ts_builtin_sym_end] = ACTIONS(1284), - [sym_identifier] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_macro_rules_BANG] = ACTIONS(1284), - [anon_sym_LPAREN] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_u8] = ACTIONS(1286), - [anon_sym_i8] = ACTIONS(1286), - [anon_sym_u16] = ACTIONS(1286), - [anon_sym_i16] = ACTIONS(1286), - [anon_sym_u32] = ACTIONS(1286), - [anon_sym_i32] = ACTIONS(1286), - [anon_sym_u64] = ACTIONS(1286), - [anon_sym_i64] = ACTIONS(1286), - [anon_sym_u128] = ACTIONS(1286), - [anon_sym_i128] = ACTIONS(1286), - [anon_sym_isize] = ACTIONS(1286), - [anon_sym_usize] = ACTIONS(1286), - [anon_sym_f32] = ACTIONS(1286), - [anon_sym_f64] = ACTIONS(1286), - [anon_sym_bool] = ACTIONS(1286), - [anon_sym_str] = ACTIONS(1286), - [anon_sym_char] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1286), - [anon_sym_enum] = ACTIONS(1286), - [anon_sym_fn] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_impl] = ACTIONS(1286), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_loop] = ACTIONS(1286), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_mod] = ACTIONS(1286), - [anon_sym_pub] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_struct] = ACTIONS(1286), - [anon_sym_trait] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_union] = ACTIONS(1286), - [anon_sym_unsafe] = ACTIONS(1286), - [anon_sym_use] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_COLON_COLON] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_DOT_DOT] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_yield] = ACTIONS(1286), - [anon_sym_move] = ACTIONS(1286), - [sym_integer_literal] = ACTIONS(1284), - [aux_sym_string_literal_token1] = ACTIONS(1284), - [sym_char_literal] = ACTIONS(1284), - [anon_sym_true] = ACTIONS(1286), - [anon_sym_false] = ACTIONS(1286), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1284), - [sym_raw_string_literal] = ACTIONS(1284), - [sym_float_literal] = ACTIONS(1284), + [ts_builtin_sym_end] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_macro_rules_BANG] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(1308), + [anon_sym_i8] = ACTIONS(1308), + [anon_sym_u16] = ACTIONS(1308), + [anon_sym_i16] = ACTIONS(1308), + [anon_sym_u32] = ACTIONS(1308), + [anon_sym_i32] = ACTIONS(1308), + [anon_sym_u64] = ACTIONS(1308), + [anon_sym_i64] = ACTIONS(1308), + [anon_sym_u128] = ACTIONS(1308), + [anon_sym_i128] = ACTIONS(1308), + [anon_sym_isize] = ACTIONS(1308), + [anon_sym_usize] = ACTIONS(1308), + [anon_sym_f32] = ACTIONS(1308), + [anon_sym_f64] = ACTIONS(1308), + [anon_sym_bool] = ACTIONS(1308), + [anon_sym_str] = ACTIONS(1308), + [anon_sym_char] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_impl] = ACTIONS(1308), + [anon_sym_let] = ACTIONS(1308), + [anon_sym_loop] = ACTIONS(1308), + [anon_sym_match] = ACTIONS(1308), + [anon_sym_mod] = ACTIONS(1308), + [anon_sym_pub] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_trait] = ACTIONS(1308), + [anon_sym_type] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1308), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_COLON_COLON] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1306), + [anon_sym_yield] = ACTIONS(1308), + [anon_sym_move] = ACTIONS(1308), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1306), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1308), + [anon_sym_false] = ACTIONS(1308), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1308), + [sym_super] = ACTIONS(1308), + [sym_crate] = ACTIONS(1308), + [sym_metavariable] = ACTIONS(1306), + [sym_raw_string_literal] = ACTIONS(1306), + [sym_float_literal] = ACTIONS(1306), [sym_block_comment] = ACTIONS(3), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(1288), - [sym_identifier] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_macro_rules_BANG] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_u8] = ACTIONS(1290), - [anon_sym_i8] = ACTIONS(1290), - [anon_sym_u16] = ACTIONS(1290), - [anon_sym_i16] = ACTIONS(1290), - [anon_sym_u32] = ACTIONS(1290), - [anon_sym_i32] = ACTIONS(1290), - [anon_sym_u64] = ACTIONS(1290), - [anon_sym_i64] = ACTIONS(1290), - [anon_sym_u128] = ACTIONS(1290), - [anon_sym_i128] = ACTIONS(1290), - [anon_sym_isize] = ACTIONS(1290), - [anon_sym_usize] = ACTIONS(1290), - [anon_sym_f32] = ACTIONS(1290), - [anon_sym_f64] = ACTIONS(1290), - [anon_sym_bool] = ACTIONS(1290), - [anon_sym_str] = ACTIONS(1290), - [anon_sym_char] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_async] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1290), - [anon_sym_enum] = ACTIONS(1290), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_impl] = ACTIONS(1290), - [anon_sym_let] = ACTIONS(1290), - [anon_sym_loop] = ACTIONS(1290), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_mod] = ACTIONS(1290), - [anon_sym_pub] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_static] = ACTIONS(1290), - [anon_sym_struct] = ACTIONS(1290), - [anon_sym_trait] = ACTIONS(1290), - [anon_sym_type] = ACTIONS(1290), - [anon_sym_union] = ACTIONS(1290), - [anon_sym_unsafe] = ACTIONS(1290), - [anon_sym_use] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_POUND] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1288), - [anon_sym_COLON_COLON] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_DOT_DOT] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_yield] = ACTIONS(1290), - [anon_sym_move] = ACTIONS(1290), - [sym_integer_literal] = ACTIONS(1288), - [aux_sym_string_literal_token1] = ACTIONS(1288), - [sym_char_literal] = ACTIONS(1288), - [anon_sym_true] = ACTIONS(1290), - [anon_sym_false] = ACTIONS(1290), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1290), - [sym_super] = ACTIONS(1290), - [sym_crate] = ACTIONS(1290), - [sym_metavariable] = ACTIONS(1288), - [sym_raw_string_literal] = ACTIONS(1288), - [sym_float_literal] = ACTIONS(1288), + [ts_builtin_sym_end] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_macro_rules_BANG] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_async] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_impl] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(1312), + [anon_sym_loop] = ACTIONS(1312), + [anon_sym_match] = ACTIONS(1312), + [anon_sym_mod] = ACTIONS(1312), + [anon_sym_pub] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_trait] = ACTIONS(1312), + [anon_sym_type] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_unsafe] = ACTIONS(1312), + [anon_sym_use] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_move] = ACTIONS(1312), + [sym_integer_literal] = ACTIONS(1310), + [aux_sym_string_literal_token1] = ACTIONS(1310), + [sym_char_literal] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1312), + [anon_sym_false] = ACTIONS(1312), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1312), + [sym_super] = ACTIONS(1312), + [sym_crate] = ACTIONS(1312), + [sym_metavariable] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1310), + [sym_float_literal] = ACTIONS(1310), [sym_block_comment] = ACTIONS(3), }, [299] = { - [ts_builtin_sym_end] = ACTIONS(1292), - [sym_identifier] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_macro_rules_BANG] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_LBRACK] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_u8] = ACTIONS(1294), - [anon_sym_i8] = ACTIONS(1294), - [anon_sym_u16] = ACTIONS(1294), - [anon_sym_i16] = ACTIONS(1294), - [anon_sym_u32] = ACTIONS(1294), - [anon_sym_i32] = ACTIONS(1294), - [anon_sym_u64] = ACTIONS(1294), - [anon_sym_i64] = ACTIONS(1294), - [anon_sym_u128] = ACTIONS(1294), - [anon_sym_i128] = ACTIONS(1294), - [anon_sym_isize] = ACTIONS(1294), - [anon_sym_usize] = ACTIONS(1294), - [anon_sym_f32] = ACTIONS(1294), - [anon_sym_f64] = ACTIONS(1294), - [anon_sym_bool] = ACTIONS(1294), - [anon_sym_str] = ACTIONS(1294), - [anon_sym_char] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_async] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_let] = ACTIONS(1294), - [anon_sym_loop] = ACTIONS(1294), - [anon_sym_match] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_trait] = ACTIONS(1294), - [anon_sym_type] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_unsafe] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1292), - [anon_sym_COLON_COLON] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_DOT_DOT] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_move] = ACTIONS(1294), - [sym_integer_literal] = ACTIONS(1292), - [aux_sym_string_literal_token1] = ACTIONS(1292), - [sym_char_literal] = ACTIONS(1292), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1294), - [sym_super] = ACTIONS(1294), - [sym_crate] = ACTIONS(1294), - [sym_metavariable] = ACTIONS(1292), - [sym_raw_string_literal] = ACTIONS(1292), - [sym_float_literal] = ACTIONS(1292), + [ts_builtin_sym_end] = ACTIONS(1314), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_macro_rules_BANG] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_RBRACE] = ACTIONS(1314), + [anon_sym_LBRACK] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [anon_sym_POUND] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym_LT] = ACTIONS(1314), + [anon_sym_COLON_COLON] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_yield] = ACTIONS(1316), + [anon_sym_move] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1314), + [aux_sym_string_literal_token1] = ACTIONS(1314), + [sym_char_literal] = ACTIONS(1314), + [anon_sym_true] = ACTIONS(1316), + [anon_sym_false] = ACTIONS(1316), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1314), + [sym_raw_string_literal] = ACTIONS(1314), + [sym_float_literal] = ACTIONS(1314), [sym_block_comment] = ACTIONS(3), }, [300] = { - [ts_builtin_sym_end] = ACTIONS(1296), - [sym_identifier] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_macro_rules_BANG] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_u8] = ACTIONS(1298), - [anon_sym_i8] = ACTIONS(1298), - [anon_sym_u16] = ACTIONS(1298), - [anon_sym_i16] = ACTIONS(1298), - [anon_sym_u32] = ACTIONS(1298), - [anon_sym_i32] = ACTIONS(1298), - [anon_sym_u64] = ACTIONS(1298), - [anon_sym_i64] = ACTIONS(1298), - [anon_sym_u128] = ACTIONS(1298), - [anon_sym_i128] = ACTIONS(1298), - [anon_sym_isize] = ACTIONS(1298), - [anon_sym_usize] = ACTIONS(1298), - [anon_sym_f32] = ACTIONS(1298), - [anon_sym_f64] = ACTIONS(1298), - [anon_sym_bool] = ACTIONS(1298), - [anon_sym_str] = ACTIONS(1298), - [anon_sym_char] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_async] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_fn] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_pub] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_trait] = ACTIONS(1298), - [anon_sym_type] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_unsafe] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_POUND] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_COLON_COLON] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_DOT_DOT] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_yield] = ACTIONS(1298), - [anon_sym_move] = ACTIONS(1298), - [sym_integer_literal] = ACTIONS(1296), - [aux_sym_string_literal_token1] = ACTIONS(1296), - [sym_char_literal] = ACTIONS(1296), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1298), - [sym_super] = ACTIONS(1298), - [sym_crate] = ACTIONS(1298), - [sym_metavariable] = ACTIONS(1296), - [sym_raw_string_literal] = ACTIONS(1296), - [sym_float_literal] = ACTIONS(1296), + [ts_builtin_sym_end] = ACTIONS(1318), + [sym_identifier] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_macro_rules_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_u8] = ACTIONS(1320), + [anon_sym_i8] = ACTIONS(1320), + [anon_sym_u16] = ACTIONS(1320), + [anon_sym_i16] = ACTIONS(1320), + [anon_sym_u32] = ACTIONS(1320), + [anon_sym_i32] = ACTIONS(1320), + [anon_sym_u64] = ACTIONS(1320), + [anon_sym_i64] = ACTIONS(1320), + [anon_sym_u128] = ACTIONS(1320), + [anon_sym_i128] = ACTIONS(1320), + [anon_sym_isize] = ACTIONS(1320), + [anon_sym_usize] = ACTIONS(1320), + [anon_sym_f32] = ACTIONS(1320), + [anon_sym_f64] = ACTIONS(1320), + [anon_sym_bool] = ACTIONS(1320), + [anon_sym_str] = ACTIONS(1320), + [anon_sym_char] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_async] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_fn] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_impl] = ACTIONS(1320), + [anon_sym_let] = ACTIONS(1320), + [anon_sym_loop] = ACTIONS(1320), + [anon_sym_match] = ACTIONS(1320), + [anon_sym_mod] = ACTIONS(1320), + [anon_sym_pub] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_trait] = ACTIONS(1320), + [anon_sym_type] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_unsafe] = ACTIONS(1320), + [anon_sym_use] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_COLON_COLON] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_DOT_DOT] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PIPE] = ACTIONS(1318), + [anon_sym_yield] = ACTIONS(1320), + [anon_sym_move] = ACTIONS(1320), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = ACTIONS(1320), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1320), + [sym_super] = ACTIONS(1320), + [sym_crate] = ACTIONS(1320), + [sym_metavariable] = ACTIONS(1318), + [sym_raw_string_literal] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1318), [sym_block_comment] = ACTIONS(3), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_macro_rules_BANG] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_u8] = ACTIONS(1302), - [anon_sym_i8] = ACTIONS(1302), - [anon_sym_u16] = ACTIONS(1302), - [anon_sym_i16] = ACTIONS(1302), - [anon_sym_u32] = ACTIONS(1302), - [anon_sym_i32] = ACTIONS(1302), - [anon_sym_u64] = ACTIONS(1302), - [anon_sym_i64] = ACTIONS(1302), - [anon_sym_u128] = ACTIONS(1302), - [anon_sym_i128] = ACTIONS(1302), - [anon_sym_isize] = ACTIONS(1302), - [anon_sym_usize] = ACTIONS(1302), - [anon_sym_f32] = ACTIONS(1302), - [anon_sym_f64] = ACTIONS(1302), - [anon_sym_bool] = ACTIONS(1302), - [anon_sym_str] = ACTIONS(1302), - [anon_sym_char] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_async] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_fn] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_impl] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_loop] = ACTIONS(1302), - [anon_sym_match] = ACTIONS(1302), - [anon_sym_mod] = ACTIONS(1302), - [anon_sym_pub] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_trait] = ACTIONS(1302), - [anon_sym_type] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_unsafe] = ACTIONS(1302), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_COLON_COLON] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_DOT_DOT] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_yield] = ACTIONS(1302), - [anon_sym_move] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1300), - [aux_sym_string_literal_token1] = ACTIONS(1300), - [sym_char_literal] = ACTIONS(1300), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1302), - [sym_super] = ACTIONS(1302), - [sym_crate] = ACTIONS(1302), - [sym_metavariable] = ACTIONS(1300), - [sym_raw_string_literal] = ACTIONS(1300), - [sym_float_literal] = ACTIONS(1300), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_macro_rules_BANG] = ACTIONS(1322), + [anon_sym_LPAREN] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_u8] = ACTIONS(1324), + [anon_sym_i8] = ACTIONS(1324), + [anon_sym_u16] = ACTIONS(1324), + [anon_sym_i16] = ACTIONS(1324), + [anon_sym_u32] = ACTIONS(1324), + [anon_sym_i32] = ACTIONS(1324), + [anon_sym_u64] = ACTIONS(1324), + [anon_sym_i64] = ACTIONS(1324), + [anon_sym_u128] = ACTIONS(1324), + [anon_sym_i128] = ACTIONS(1324), + [anon_sym_isize] = ACTIONS(1324), + [anon_sym_usize] = ACTIONS(1324), + [anon_sym_f32] = ACTIONS(1324), + [anon_sym_f64] = ACTIONS(1324), + [anon_sym_bool] = ACTIONS(1324), + [anon_sym_str] = ACTIONS(1324), + [anon_sym_char] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_async] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_fn] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1324), + [anon_sym_let] = ACTIONS(1324), + [anon_sym_loop] = ACTIONS(1324), + [anon_sym_match] = ACTIONS(1324), + [anon_sym_mod] = ACTIONS(1324), + [anon_sym_pub] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_trait] = ACTIONS(1324), + [anon_sym_type] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1324), + [anon_sym_use] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_POUND] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym_LT] = ACTIONS(1322), + [anon_sym_COLON_COLON] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_DOT_DOT] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_yield] = ACTIONS(1324), + [anon_sym_move] = ACTIONS(1324), + [sym_integer_literal] = ACTIONS(1322), + [aux_sym_string_literal_token1] = ACTIONS(1322), + [sym_char_literal] = ACTIONS(1322), + [anon_sym_true] = ACTIONS(1324), + [anon_sym_false] = ACTIONS(1324), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1324), + [sym_crate] = ACTIONS(1324), + [sym_metavariable] = ACTIONS(1322), + [sym_raw_string_literal] = ACTIONS(1322), + [sym_float_literal] = ACTIONS(1322), [sym_block_comment] = ACTIONS(3), }, [302] = { - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_identifier] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_macro_rules_BANG] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_u8] = ACTIONS(1306), - [anon_sym_i8] = ACTIONS(1306), - [anon_sym_u16] = ACTIONS(1306), - [anon_sym_i16] = ACTIONS(1306), - [anon_sym_u32] = ACTIONS(1306), - [anon_sym_i32] = ACTIONS(1306), - [anon_sym_u64] = ACTIONS(1306), - [anon_sym_i64] = ACTIONS(1306), - [anon_sym_u128] = ACTIONS(1306), - [anon_sym_i128] = ACTIONS(1306), - [anon_sym_isize] = ACTIONS(1306), - [anon_sym_usize] = ACTIONS(1306), - [anon_sym_f32] = ACTIONS(1306), - [anon_sym_f64] = ACTIONS(1306), - [anon_sym_bool] = ACTIONS(1306), - [anon_sym_str] = ACTIONS(1306), - [anon_sym_char] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_async] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_impl] = ACTIONS(1306), - [anon_sym_let] = ACTIONS(1306), - [anon_sym_loop] = ACTIONS(1306), - [anon_sym_match] = ACTIONS(1306), - [anon_sym_mod] = ACTIONS(1306), - [anon_sym_pub] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_trait] = ACTIONS(1306), - [anon_sym_type] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_unsafe] = ACTIONS(1306), - [anon_sym_use] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_POUND] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_COLON_COLON] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_DOT_DOT] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_move] = ACTIONS(1306), - [sym_integer_literal] = ACTIONS(1304), - [aux_sym_string_literal_token1] = ACTIONS(1304), - [sym_char_literal] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1306), - [sym_super] = ACTIONS(1306), - [sym_crate] = ACTIONS(1306), - [sym_metavariable] = ACTIONS(1304), - [sym_raw_string_literal] = ACTIONS(1304), - [sym_float_literal] = ACTIONS(1304), + [ts_builtin_sym_end] = ACTIONS(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), [sym_block_comment] = ACTIONS(3), }, [303] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_macro_rules_BANG] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_u8] = ACTIONS(1310), - [anon_sym_i8] = ACTIONS(1310), - [anon_sym_u16] = ACTIONS(1310), - [anon_sym_i16] = ACTIONS(1310), - [anon_sym_u32] = ACTIONS(1310), - [anon_sym_i32] = ACTIONS(1310), - [anon_sym_u64] = ACTIONS(1310), - [anon_sym_i64] = ACTIONS(1310), - [anon_sym_u128] = ACTIONS(1310), - [anon_sym_i128] = ACTIONS(1310), - [anon_sym_isize] = ACTIONS(1310), - [anon_sym_usize] = ACTIONS(1310), - [anon_sym_f32] = ACTIONS(1310), - [anon_sym_f64] = ACTIONS(1310), - [anon_sym_bool] = ACTIONS(1310), - [anon_sym_str] = ACTIONS(1310), - [anon_sym_char] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_fn] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_impl] = ACTIONS(1310), - [anon_sym_let] = ACTIONS(1310), - [anon_sym_loop] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_mod] = ACTIONS(1310), - [anon_sym_pub] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_trait] = ACTIONS(1310), - [anon_sym_type] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_unsafe] = ACTIONS(1310), - [anon_sym_use] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_POUND] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_COLON_COLON] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_yield] = ACTIONS(1310), - [anon_sym_move] = ACTIONS(1310), - [sym_integer_literal] = ACTIONS(1308), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1310), - [sym_super] = ACTIONS(1310), - [sym_crate] = ACTIONS(1310), - [sym_metavariable] = ACTIONS(1308), - [sym_raw_string_literal] = ACTIONS(1308), - [sym_float_literal] = ACTIONS(1308), + [ts_builtin_sym_end] = ACTIONS(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), [sym_block_comment] = ACTIONS(3), }, [304] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_macro_rules_BANG] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_POUND] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym_LT] = ACTIONS(1312), - [anon_sym_COLON_COLON] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_yield] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1312), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1312), - [sym_raw_string_literal] = ACTIONS(1312), - [sym_float_literal] = ACTIONS(1312), + [ts_builtin_sym_end] = ACTIONS(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), [sym_block_comment] = ACTIONS(3), }, [305] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_macro_rules_BANG] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1318), - [anon_sym_i8] = ACTIONS(1318), - [anon_sym_u16] = ACTIONS(1318), - [anon_sym_i16] = ACTIONS(1318), - [anon_sym_u32] = ACTIONS(1318), - [anon_sym_i32] = ACTIONS(1318), - [anon_sym_u64] = ACTIONS(1318), - [anon_sym_i64] = ACTIONS(1318), - [anon_sym_u128] = ACTIONS(1318), - [anon_sym_i128] = ACTIONS(1318), - [anon_sym_isize] = ACTIONS(1318), - [anon_sym_usize] = ACTIONS(1318), - [anon_sym_f32] = ACTIONS(1318), - [anon_sym_f64] = ACTIONS(1318), - [anon_sym_bool] = ACTIONS(1318), - [anon_sym_str] = ACTIONS(1318), - [anon_sym_char] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_async] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_fn] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_impl] = ACTIONS(1318), - [anon_sym_let] = ACTIONS(1318), - [anon_sym_loop] = ACTIONS(1318), - [anon_sym_match] = ACTIONS(1318), - [anon_sym_mod] = ACTIONS(1318), - [anon_sym_pub] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_trait] = ACTIONS(1318), - [anon_sym_type] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_unsafe] = ACTIONS(1318), - [anon_sym_use] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_yield] = ACTIONS(1318), - [anon_sym_move] = ACTIONS(1318), - [sym_integer_literal] = ACTIONS(1316), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1316), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1318), - [sym_super] = ACTIONS(1318), - [sym_crate] = ACTIONS(1318), - [sym_metavariable] = ACTIONS(1316), - [sym_raw_string_literal] = ACTIONS(1316), - [sym_float_literal] = ACTIONS(1316), + [ts_builtin_sym_end] = ACTIONS(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), [sym_block_comment] = ACTIONS(3), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_macro_rules_BANG] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_u8] = ACTIONS(1322), - [anon_sym_i8] = ACTIONS(1322), - [anon_sym_u16] = ACTIONS(1322), - [anon_sym_i16] = ACTIONS(1322), - [anon_sym_u32] = ACTIONS(1322), - [anon_sym_i32] = ACTIONS(1322), - [anon_sym_u64] = ACTIONS(1322), - [anon_sym_i64] = ACTIONS(1322), - [anon_sym_u128] = ACTIONS(1322), - [anon_sym_i128] = ACTIONS(1322), - [anon_sym_isize] = ACTIONS(1322), - [anon_sym_usize] = ACTIONS(1322), - [anon_sym_f32] = ACTIONS(1322), - [anon_sym_f64] = ACTIONS(1322), - [anon_sym_bool] = ACTIONS(1322), - [anon_sym_str] = ACTIONS(1322), - [anon_sym_char] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_async] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_fn] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_impl] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_loop] = ACTIONS(1322), - [anon_sym_match] = ACTIONS(1322), - [anon_sym_mod] = ACTIONS(1322), - [anon_sym_pub] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_trait] = ACTIONS(1322), - [anon_sym_type] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_unsafe] = ACTIONS(1322), - [anon_sym_use] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_POUND] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_COLON_COLON] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_DOT_DOT] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1320), - [anon_sym_yield] = ACTIONS(1322), - [anon_sym_move] = ACTIONS(1322), - [sym_integer_literal] = ACTIONS(1320), - [aux_sym_string_literal_token1] = ACTIONS(1320), - [sym_char_literal] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1322), - [sym_super] = ACTIONS(1322), - [sym_crate] = ACTIONS(1322), - [sym_metavariable] = ACTIONS(1320), - [sym_raw_string_literal] = ACTIONS(1320), - [sym_float_literal] = ACTIONS(1320), + [ts_builtin_sym_end] = ACTIONS(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), [sym_block_comment] = ACTIONS(3), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_macro_rules_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1326), - [anon_sym_i8] = ACTIONS(1326), - [anon_sym_u16] = ACTIONS(1326), - [anon_sym_i16] = ACTIONS(1326), - [anon_sym_u32] = ACTIONS(1326), - [anon_sym_i32] = ACTIONS(1326), - [anon_sym_u64] = ACTIONS(1326), - [anon_sym_i64] = ACTIONS(1326), - [anon_sym_u128] = ACTIONS(1326), - [anon_sym_i128] = ACTIONS(1326), - [anon_sym_isize] = ACTIONS(1326), - [anon_sym_usize] = ACTIONS(1326), - [anon_sym_f32] = ACTIONS(1326), - [anon_sym_f64] = ACTIONS(1326), - [anon_sym_bool] = ACTIONS(1326), - [anon_sym_str] = ACTIONS(1326), - [anon_sym_char] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_async] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_fn] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_impl] = ACTIONS(1326), - [anon_sym_let] = ACTIONS(1326), - [anon_sym_loop] = ACTIONS(1326), - [anon_sym_match] = ACTIONS(1326), - [anon_sym_mod] = ACTIONS(1326), - [anon_sym_pub] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_trait] = ACTIONS(1326), - [anon_sym_type] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_unsafe] = ACTIONS(1326), - [anon_sym_use] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_DOT_DOT] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_yield] = ACTIONS(1326), - [anon_sym_move] = ACTIONS(1326), - [sym_integer_literal] = ACTIONS(1324), - [aux_sym_string_literal_token1] = ACTIONS(1324), - [sym_char_literal] = ACTIONS(1324), - [anon_sym_true] = ACTIONS(1326), - [anon_sym_false] = ACTIONS(1326), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1326), - [sym_super] = ACTIONS(1326), - [sym_crate] = ACTIONS(1326), - [sym_metavariable] = ACTIONS(1324), - [sym_raw_string_literal] = ACTIONS(1324), - [sym_float_literal] = ACTIONS(1324), + [ts_builtin_sym_end] = ACTIONS(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), [sym_block_comment] = ACTIONS(3), }, [308] = { - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_identifier] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_macro_rules_BANG] = ACTIONS(1328), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_async] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_fn] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_impl] = ACTIONS(1330), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_loop] = ACTIONS(1330), - [anon_sym_match] = ACTIONS(1330), - [anon_sym_mod] = ACTIONS(1330), - [anon_sym_pub] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_trait] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_unsafe] = ACTIONS(1330), - [anon_sym_use] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_POUND] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym_LT] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_DOT_DOT] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PIPE] = ACTIONS(1328), - [anon_sym_yield] = ACTIONS(1330), - [anon_sym_move] = ACTIONS(1330), - [sym_integer_literal] = ACTIONS(1328), - [aux_sym_string_literal_token1] = ACTIONS(1328), - [sym_char_literal] = ACTIONS(1328), - [anon_sym_true] = ACTIONS(1330), - [anon_sym_false] = ACTIONS(1330), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1330), - [sym_super] = ACTIONS(1330), - [sym_crate] = ACTIONS(1330), - [sym_metavariable] = ACTIONS(1328), - [sym_raw_string_literal] = ACTIONS(1328), - [sym_float_literal] = ACTIONS(1328), + [ts_builtin_sym_end] = ACTIONS(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), [sym_block_comment] = ACTIONS(3), }, [309] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [310] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [311] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [312] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [313] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [314] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [315] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [316] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [317] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [318] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [319] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [320] = { - [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), + [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), }, [321] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_macro_rules_BANG] = ACTIONS(1402), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_u8] = ACTIONS(1404), + [anon_sym_i8] = ACTIONS(1404), + [anon_sym_u16] = ACTIONS(1404), + [anon_sym_i16] = ACTIONS(1404), + [anon_sym_u32] = ACTIONS(1404), + [anon_sym_i32] = ACTIONS(1404), + [anon_sym_u64] = ACTIONS(1404), + [anon_sym_i64] = ACTIONS(1404), + [anon_sym_u128] = ACTIONS(1404), + [anon_sym_i128] = ACTIONS(1404), + [anon_sym_isize] = ACTIONS(1404), + [anon_sym_usize] = ACTIONS(1404), + [anon_sym_f32] = ACTIONS(1404), + [anon_sym_f64] = ACTIONS(1404), + [anon_sym_bool] = ACTIONS(1404), + [anon_sym_str] = ACTIONS(1404), + [anon_sym_char] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_async] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_fn] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_impl] = ACTIONS(1404), + [anon_sym_let] = ACTIONS(1404), + [anon_sym_loop] = ACTIONS(1404), + [anon_sym_match] = ACTIONS(1404), + [anon_sym_mod] = ACTIONS(1404), + [anon_sym_pub] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_trait] = ACTIONS(1404), + [anon_sym_type] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_unsafe] = ACTIONS(1404), + [anon_sym_use] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_POUND] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym_LT] = ACTIONS(1402), + [anon_sym_COLON_COLON] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_DOT_DOT] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_move] = ACTIONS(1404), + [sym_integer_literal] = ACTIONS(1402), + [aux_sym_string_literal_token1] = ACTIONS(1402), + [sym_char_literal] = ACTIONS(1402), + [anon_sym_true] = ACTIONS(1404), + [anon_sym_false] = ACTIONS(1404), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1404), + [sym_super] = ACTIONS(1404), + [sym_crate] = ACTIONS(1404), + [sym_metavariable] = ACTIONS(1402), + [sym_raw_string_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1402), [sym_block_comment] = ACTIONS(3), }, [322] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1406), + [sym_identifier] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym_macro_rules_BANG] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_u8] = ACTIONS(1408), + [anon_sym_i8] = ACTIONS(1408), + [anon_sym_u16] = ACTIONS(1408), + [anon_sym_i16] = ACTIONS(1408), + [anon_sym_u32] = ACTIONS(1408), + [anon_sym_i32] = ACTIONS(1408), + [anon_sym_u64] = ACTIONS(1408), + [anon_sym_i64] = ACTIONS(1408), + [anon_sym_u128] = ACTIONS(1408), + [anon_sym_i128] = ACTIONS(1408), + [anon_sym_isize] = ACTIONS(1408), + [anon_sym_usize] = ACTIONS(1408), + [anon_sym_f32] = ACTIONS(1408), + [anon_sym_f64] = ACTIONS(1408), + [anon_sym_bool] = ACTIONS(1408), + [anon_sym_str] = ACTIONS(1408), + [anon_sym_char] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_impl] = ACTIONS(1408), + [anon_sym_let] = ACTIONS(1408), + [anon_sym_loop] = ACTIONS(1408), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_mod] = ACTIONS(1408), + [anon_sym_pub] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_trait] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_unsafe] = ACTIONS(1408), + [anon_sym_use] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_POUND] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym_LT] = ACTIONS(1406), + [anon_sym_COLON_COLON] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_DOT_DOT] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PIPE] = ACTIONS(1406), + [anon_sym_yield] = ACTIONS(1408), + [anon_sym_move] = ACTIONS(1408), + [sym_integer_literal] = ACTIONS(1406), + [aux_sym_string_literal_token1] = ACTIONS(1406), + [sym_char_literal] = ACTIONS(1406), + [anon_sym_true] = ACTIONS(1408), + [anon_sym_false] = ACTIONS(1408), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1408), + [sym_super] = ACTIONS(1408), + [sym_crate] = ACTIONS(1408), + [sym_metavariable] = ACTIONS(1406), + [sym_raw_string_literal] = ACTIONS(1406), + [sym_float_literal] = ACTIONS(1406), [sym_block_comment] = ACTIONS(3), }, [323] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_macro_rules_BANG] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_u8] = ACTIONS(1412), + [anon_sym_i8] = ACTIONS(1412), + [anon_sym_u16] = ACTIONS(1412), + [anon_sym_i16] = ACTIONS(1412), + [anon_sym_u32] = ACTIONS(1412), + [anon_sym_i32] = ACTIONS(1412), + [anon_sym_u64] = ACTIONS(1412), + [anon_sym_i64] = ACTIONS(1412), + [anon_sym_u128] = ACTIONS(1412), + [anon_sym_i128] = ACTIONS(1412), + [anon_sym_isize] = ACTIONS(1412), + [anon_sym_usize] = ACTIONS(1412), + [anon_sym_f32] = ACTIONS(1412), + [anon_sym_f64] = ACTIONS(1412), + [anon_sym_bool] = ACTIONS(1412), + [anon_sym_str] = ACTIONS(1412), + [anon_sym_char] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_async] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_fn] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_impl] = ACTIONS(1412), + [anon_sym_let] = ACTIONS(1412), + [anon_sym_loop] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1412), + [anon_sym_mod] = ACTIONS(1412), + [anon_sym_pub] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_trait] = ACTIONS(1412), + [anon_sym_type] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_POUND] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_COLON_COLON] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_DOT_DOT] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_yield] = ACTIONS(1412), + [anon_sym_move] = ACTIONS(1412), + [sym_integer_literal] = ACTIONS(1410), + [aux_sym_string_literal_token1] = ACTIONS(1410), + [sym_char_literal] = ACTIONS(1410), + [anon_sym_true] = ACTIONS(1412), + [anon_sym_false] = ACTIONS(1412), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1412), + [sym_super] = ACTIONS(1412), + [sym_crate] = ACTIONS(1412), + [sym_metavariable] = ACTIONS(1410), + [sym_raw_string_literal] = ACTIONS(1410), + [sym_float_literal] = ACTIONS(1410), [sym_block_comment] = ACTIONS(3), }, [324] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1414), + [sym_identifier] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_macro_rules_BANG] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_u8] = ACTIONS(1416), + [anon_sym_i8] = ACTIONS(1416), + [anon_sym_u16] = ACTIONS(1416), + [anon_sym_i16] = ACTIONS(1416), + [anon_sym_u32] = ACTIONS(1416), + [anon_sym_i32] = ACTIONS(1416), + [anon_sym_u64] = ACTIONS(1416), + [anon_sym_i64] = ACTIONS(1416), + [anon_sym_u128] = ACTIONS(1416), + [anon_sym_i128] = ACTIONS(1416), + [anon_sym_isize] = ACTIONS(1416), + [anon_sym_usize] = ACTIONS(1416), + [anon_sym_f32] = ACTIONS(1416), + [anon_sym_f64] = ACTIONS(1416), + [anon_sym_bool] = ACTIONS(1416), + [anon_sym_str] = ACTIONS(1416), + [anon_sym_char] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_async] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_fn] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_impl] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), + [anon_sym_loop] = ACTIONS(1416), + [anon_sym_match] = ACTIONS(1416), + [anon_sym_mod] = ACTIONS(1416), + [anon_sym_pub] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_trait] = ACTIONS(1416), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_unsafe] = ACTIONS(1416), + [anon_sym_use] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_POUND] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1414), + [anon_sym_COLON_COLON] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_yield] = ACTIONS(1416), + [anon_sym_move] = ACTIONS(1416), + [sym_integer_literal] = ACTIONS(1414), + [aux_sym_string_literal_token1] = ACTIONS(1414), + [sym_char_literal] = ACTIONS(1414), + [anon_sym_true] = ACTIONS(1416), + [anon_sym_false] = ACTIONS(1416), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1416), + [sym_super] = ACTIONS(1416), + [sym_crate] = ACTIONS(1416), + [sym_metavariable] = ACTIONS(1414), + [sym_raw_string_literal] = ACTIONS(1414), + [sym_float_literal] = ACTIONS(1414), [sym_block_comment] = ACTIONS(3), }, [325] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1418), + [sym_identifier] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_macro_rules_BANG] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_u8] = ACTIONS(1420), + [anon_sym_i8] = ACTIONS(1420), + [anon_sym_u16] = ACTIONS(1420), + [anon_sym_i16] = ACTIONS(1420), + [anon_sym_u32] = ACTIONS(1420), + [anon_sym_i32] = ACTIONS(1420), + [anon_sym_u64] = ACTIONS(1420), + [anon_sym_i64] = ACTIONS(1420), + [anon_sym_u128] = ACTIONS(1420), + [anon_sym_i128] = ACTIONS(1420), + [anon_sym_isize] = ACTIONS(1420), + [anon_sym_usize] = ACTIONS(1420), + [anon_sym_f32] = ACTIONS(1420), + [anon_sym_f64] = ACTIONS(1420), + [anon_sym_bool] = ACTIONS(1420), + [anon_sym_str] = ACTIONS(1420), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_async] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_fn] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_impl] = ACTIONS(1420), + [anon_sym_let] = ACTIONS(1420), + [anon_sym_loop] = ACTIONS(1420), + [anon_sym_match] = ACTIONS(1420), + [anon_sym_mod] = ACTIONS(1420), + [anon_sym_pub] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_trait] = ACTIONS(1420), + [anon_sym_type] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_unsafe] = ACTIONS(1420), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_DOT_DOT] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PIPE] = ACTIONS(1418), + [anon_sym_yield] = ACTIONS(1420), + [anon_sym_move] = ACTIONS(1420), + [sym_integer_literal] = ACTIONS(1418), + [aux_sym_string_literal_token1] = ACTIONS(1418), + [sym_char_literal] = ACTIONS(1418), + [anon_sym_true] = ACTIONS(1420), + [anon_sym_false] = ACTIONS(1420), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1420), + [sym_super] = ACTIONS(1420), + [sym_crate] = ACTIONS(1420), + [sym_metavariable] = ACTIONS(1418), + [sym_raw_string_literal] = ACTIONS(1418), + [sym_float_literal] = ACTIONS(1418), [sym_block_comment] = ACTIONS(3), }, [326] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1422), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym_macro_rules_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_u8] = ACTIONS(1424), + [anon_sym_i8] = ACTIONS(1424), + [anon_sym_u16] = ACTIONS(1424), + [anon_sym_i16] = ACTIONS(1424), + [anon_sym_u32] = ACTIONS(1424), + [anon_sym_i32] = ACTIONS(1424), + [anon_sym_u64] = ACTIONS(1424), + [anon_sym_i64] = ACTIONS(1424), + [anon_sym_u128] = ACTIONS(1424), + [anon_sym_i128] = ACTIONS(1424), + [anon_sym_isize] = ACTIONS(1424), + [anon_sym_usize] = ACTIONS(1424), + [anon_sym_f32] = ACTIONS(1424), + [anon_sym_f64] = ACTIONS(1424), + [anon_sym_bool] = ACTIONS(1424), + [anon_sym_str] = ACTIONS(1424), + [anon_sym_char] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_fn] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_impl] = ACTIONS(1424), + [anon_sym_let] = ACTIONS(1424), + [anon_sym_loop] = ACTIONS(1424), + [anon_sym_match] = ACTIONS(1424), + [anon_sym_mod] = ACTIONS(1424), + [anon_sym_pub] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_trait] = ACTIONS(1424), + [anon_sym_type] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_unsafe] = ACTIONS(1424), + [anon_sym_use] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_COLON_COLON] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PIPE] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_move] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1422), + [aux_sym_string_literal_token1] = ACTIONS(1422), + [sym_char_literal] = ACTIONS(1422), + [anon_sym_true] = ACTIONS(1424), + [anon_sym_false] = ACTIONS(1424), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1424), + [sym_super] = ACTIONS(1424), + [sym_crate] = ACTIONS(1424), + [sym_metavariable] = ACTIONS(1422), + [sym_raw_string_literal] = ACTIONS(1422), + [sym_float_literal] = ACTIONS(1422), [sym_block_comment] = ACTIONS(3), }, [327] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1426), + [sym_identifier] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_macro_rules_BANG] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_u8] = ACTIONS(1428), + [anon_sym_i8] = ACTIONS(1428), + [anon_sym_u16] = ACTIONS(1428), + [anon_sym_i16] = ACTIONS(1428), + [anon_sym_u32] = ACTIONS(1428), + [anon_sym_i32] = ACTIONS(1428), + [anon_sym_u64] = ACTIONS(1428), + [anon_sym_i64] = ACTIONS(1428), + [anon_sym_u128] = ACTIONS(1428), + [anon_sym_i128] = ACTIONS(1428), + [anon_sym_isize] = ACTIONS(1428), + [anon_sym_usize] = ACTIONS(1428), + [anon_sym_f32] = ACTIONS(1428), + [anon_sym_f64] = ACTIONS(1428), + [anon_sym_bool] = ACTIONS(1428), + [anon_sym_str] = ACTIONS(1428), + [anon_sym_char] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_async] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_fn] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_impl] = ACTIONS(1428), + [anon_sym_let] = ACTIONS(1428), + [anon_sym_loop] = ACTIONS(1428), + [anon_sym_match] = ACTIONS(1428), + [anon_sym_mod] = ACTIONS(1428), + [anon_sym_pub] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_trait] = ACTIONS(1428), + [anon_sym_type] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_unsafe] = ACTIONS(1428), + [anon_sym_use] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_COLON_COLON] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_DOT_DOT] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_yield] = ACTIONS(1428), + [anon_sym_move] = ACTIONS(1428), + [sym_integer_literal] = ACTIONS(1426), + [aux_sym_string_literal_token1] = ACTIONS(1426), + [sym_char_literal] = ACTIONS(1426), + [anon_sym_true] = ACTIONS(1428), + [anon_sym_false] = ACTIONS(1428), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1428), + [sym_super] = ACTIONS(1428), + [sym_crate] = ACTIONS(1428), + [sym_metavariable] = ACTIONS(1426), + [sym_raw_string_literal] = ACTIONS(1426), + [sym_float_literal] = ACTIONS(1426), [sym_block_comment] = ACTIONS(3), }, [328] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_macro_rules_BANG] = ACTIONS(1408), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_impl] = ACTIONS(1410), - [anon_sym_let] = ACTIONS(1410), - [anon_sym_loop] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_mod] = ACTIONS(1410), - [anon_sym_pub] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_trait] = ACTIONS(1410), - [anon_sym_type] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_unsafe] = ACTIONS(1410), - [anon_sym_use] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1408), - [anon_sym_COLON_COLON] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_DOT_DOT] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_PIPE] = ACTIONS(1408), - [anon_sym_yield] = ACTIONS(1410), - [anon_sym_move] = ACTIONS(1410), - [sym_integer_literal] = ACTIONS(1408), - [aux_sym_string_literal_token1] = ACTIONS(1408), - [sym_char_literal] = ACTIONS(1408), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1410), - [sym_super] = ACTIONS(1410), - [sym_crate] = ACTIONS(1410), - [sym_metavariable] = ACTIONS(1408), - [sym_raw_string_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1408), + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_macro_rules_BANG] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u128] = ACTIONS(1432), + [anon_sym_i128] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_impl] = ACTIONS(1432), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_loop] = ACTIONS(1432), + [anon_sym_match] = ACTIONS(1432), + [anon_sym_mod] = ACTIONS(1432), + [anon_sym_pub] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_trait] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_unsafe] = ACTIONS(1432), + [anon_sym_use] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1430), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_DOT_DOT] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1432), + [sym_integer_literal] = ACTIONS(1430), + [aux_sym_string_literal_token1] = ACTIONS(1430), + [sym_char_literal] = ACTIONS(1430), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1432), + [sym_super] = ACTIONS(1432), + [sym_crate] = ACTIONS(1432), + [sym_metavariable] = ACTIONS(1430), + [sym_raw_string_literal] = ACTIONS(1430), + [sym_float_literal] = ACTIONS(1430), [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_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), + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_macro_rules_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_u8] = ACTIONS(1436), + [anon_sym_i8] = ACTIONS(1436), + [anon_sym_u16] = ACTIONS(1436), + [anon_sym_i16] = ACTIONS(1436), + [anon_sym_u32] = ACTIONS(1436), + [anon_sym_i32] = ACTIONS(1436), + [anon_sym_u64] = ACTIONS(1436), + [anon_sym_i64] = ACTIONS(1436), + [anon_sym_u128] = ACTIONS(1436), + [anon_sym_i128] = ACTIONS(1436), + [anon_sym_isize] = ACTIONS(1436), + [anon_sym_usize] = ACTIONS(1436), + [anon_sym_f32] = ACTIONS(1436), + [anon_sym_f64] = ACTIONS(1436), + [anon_sym_bool] = ACTIONS(1436), + [anon_sym_str] = ACTIONS(1436), + [anon_sym_char] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_async] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_impl] = ACTIONS(1436), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_loop] = ACTIONS(1436), + [anon_sym_match] = ACTIONS(1436), + [anon_sym_mod] = ACTIONS(1436), + [anon_sym_pub] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_trait] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1436), + [anon_sym_use] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_COLON_COLON] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_DOT_DOT] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_yield] = ACTIONS(1436), + [anon_sym_move] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1434), + [aux_sym_string_literal_token1] = ACTIONS(1434), + [sym_char_literal] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1436), + [sym_super] = ACTIONS(1436), + [sym_crate] = ACTIONS(1436), + [sym_metavariable] = ACTIONS(1434), + [sym_raw_string_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1434), [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), + [ts_builtin_sym_end] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_macro_rules_BANG] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_u8] = ACTIONS(1440), + [anon_sym_i8] = ACTIONS(1440), + [anon_sym_u16] = ACTIONS(1440), + [anon_sym_i16] = ACTIONS(1440), + [anon_sym_u32] = ACTIONS(1440), + [anon_sym_i32] = ACTIONS(1440), + [anon_sym_u64] = ACTIONS(1440), + [anon_sym_i64] = ACTIONS(1440), + [anon_sym_u128] = ACTIONS(1440), + [anon_sym_i128] = ACTIONS(1440), + [anon_sym_isize] = ACTIONS(1440), + [anon_sym_usize] = ACTIONS(1440), + [anon_sym_f32] = ACTIONS(1440), + [anon_sym_f64] = ACTIONS(1440), + [anon_sym_bool] = ACTIONS(1440), + [anon_sym_str] = ACTIONS(1440), + [anon_sym_char] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_fn] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_impl] = ACTIONS(1440), + [anon_sym_let] = ACTIONS(1440), + [anon_sym_loop] = ACTIONS(1440), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_mod] = ACTIONS(1440), + [anon_sym_pub] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_trait] = ACTIONS(1440), + [anon_sym_type] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_unsafe] = ACTIONS(1440), + [anon_sym_use] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_COLON_COLON] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_DOT_DOT] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_yield] = ACTIONS(1440), + [anon_sym_move] = ACTIONS(1440), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1438), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1440), + [anon_sym_false] = ACTIONS(1440), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1438), + [sym_raw_string_literal] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), [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), + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_macro_rules_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_u8] = ACTIONS(1444), + [anon_sym_i8] = ACTIONS(1444), + [anon_sym_u16] = ACTIONS(1444), + [anon_sym_i16] = ACTIONS(1444), + [anon_sym_u32] = ACTIONS(1444), + [anon_sym_i32] = ACTIONS(1444), + [anon_sym_u64] = ACTIONS(1444), + [anon_sym_i64] = ACTIONS(1444), + [anon_sym_u128] = ACTIONS(1444), + [anon_sym_i128] = ACTIONS(1444), + [anon_sym_isize] = ACTIONS(1444), + [anon_sym_usize] = ACTIONS(1444), + [anon_sym_f32] = ACTIONS(1444), + [anon_sym_f64] = ACTIONS(1444), + [anon_sym_bool] = ACTIONS(1444), + [anon_sym_str] = ACTIONS(1444), + [anon_sym_char] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_fn] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_impl] = ACTIONS(1444), + [anon_sym_let] = ACTIONS(1444), + [anon_sym_loop] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_mod] = ACTIONS(1444), + [anon_sym_pub] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_trait] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1444), + [anon_sym_use] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_COLON_COLON] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_DOT_DOT] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_yield] = ACTIONS(1444), + [anon_sym_move] = ACTIONS(1444), + [sym_integer_literal] = ACTIONS(1442), + [aux_sym_string_literal_token1] = ACTIONS(1442), + [sym_char_literal] = ACTIONS(1442), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1444), + [sym_super] = ACTIONS(1444), + [sym_crate] = ACTIONS(1444), + [sym_metavariable] = ACTIONS(1442), + [sym_raw_string_literal] = ACTIONS(1442), + [sym_float_literal] = ACTIONS(1442), [sym_block_comment] = ACTIONS(3), }, [332] = { - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_macro_rules_BANG] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_u8] = ACTIONS(1426), - [anon_sym_i8] = ACTIONS(1426), - [anon_sym_u16] = ACTIONS(1426), - [anon_sym_i16] = ACTIONS(1426), - [anon_sym_u32] = ACTIONS(1426), - [anon_sym_i32] = ACTIONS(1426), - [anon_sym_u64] = ACTIONS(1426), - [anon_sym_i64] = ACTIONS(1426), - [anon_sym_u128] = ACTIONS(1426), - [anon_sym_i128] = ACTIONS(1426), - [anon_sym_isize] = ACTIONS(1426), - [anon_sym_usize] = ACTIONS(1426), - [anon_sym_f32] = ACTIONS(1426), - [anon_sym_f64] = ACTIONS(1426), - [anon_sym_bool] = ACTIONS(1426), - [anon_sym_str] = ACTIONS(1426), - [anon_sym_char] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_fn] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_impl] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_pub] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_trait] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_unsafe] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_POUND] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_LT] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_DOT_DOT] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PIPE] = ACTIONS(1424), - [anon_sym_yield] = ACTIONS(1426), - [anon_sym_move] = ACTIONS(1426), - [sym_integer_literal] = ACTIONS(1424), - [aux_sym_string_literal_token1] = ACTIONS(1424), - [sym_char_literal] = ACTIONS(1424), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1426), - [sym_super] = ACTIONS(1426), - [sym_crate] = ACTIONS(1426), - [sym_metavariable] = ACTIONS(1424), - [sym_raw_string_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_macro_rules_BANG] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_u8] = ACTIONS(1448), + [anon_sym_i8] = ACTIONS(1448), + [anon_sym_u16] = ACTIONS(1448), + [anon_sym_i16] = ACTIONS(1448), + [anon_sym_u32] = ACTIONS(1448), + [anon_sym_i32] = ACTIONS(1448), + [anon_sym_u64] = ACTIONS(1448), + [anon_sym_i64] = ACTIONS(1448), + [anon_sym_u128] = ACTIONS(1448), + [anon_sym_i128] = ACTIONS(1448), + [anon_sym_isize] = ACTIONS(1448), + [anon_sym_usize] = ACTIONS(1448), + [anon_sym_f32] = ACTIONS(1448), + [anon_sym_f64] = ACTIONS(1448), + [anon_sym_bool] = ACTIONS(1448), + [anon_sym_str] = ACTIONS(1448), + [anon_sym_char] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_fn] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_impl] = ACTIONS(1448), + [anon_sym_let] = ACTIONS(1448), + [anon_sym_loop] = ACTIONS(1448), + [anon_sym_match] = ACTIONS(1448), + [anon_sym_mod] = ACTIONS(1448), + [anon_sym_pub] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_trait] = ACTIONS(1448), + [anon_sym_type] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_unsafe] = ACTIONS(1448), + [anon_sym_use] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym_LT] = ACTIONS(1446), + [anon_sym_COLON_COLON] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_yield] = ACTIONS(1448), + [anon_sym_move] = ACTIONS(1448), + [sym_integer_literal] = ACTIONS(1446), + [aux_sym_string_literal_token1] = ACTIONS(1446), + [sym_char_literal] = ACTIONS(1446), + [anon_sym_true] = ACTIONS(1448), + [anon_sym_false] = ACTIONS(1448), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1448), + [sym_super] = ACTIONS(1448), + [sym_crate] = ACTIONS(1448), + [sym_metavariable] = ACTIONS(1446), + [sym_raw_string_literal] = ACTIONS(1446), + [sym_float_literal] = ACTIONS(1446), [sym_block_comment] = ACTIONS(3), }, [333] = { - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_macro_rules_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_u8] = ACTIONS(1430), - [anon_sym_i8] = ACTIONS(1430), - [anon_sym_u16] = ACTIONS(1430), - [anon_sym_i16] = ACTIONS(1430), - [anon_sym_u32] = ACTIONS(1430), - [anon_sym_i32] = ACTIONS(1430), - [anon_sym_u64] = ACTIONS(1430), - [anon_sym_i64] = ACTIONS(1430), - [anon_sym_u128] = ACTIONS(1430), - [anon_sym_i128] = ACTIONS(1430), - [anon_sym_isize] = ACTIONS(1430), - [anon_sym_usize] = ACTIONS(1430), - [anon_sym_f32] = ACTIONS(1430), - [anon_sym_f64] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_str] = ACTIONS(1430), - [anon_sym_char] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_async] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_fn] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_impl] = ACTIONS(1430), - [anon_sym_let] = ACTIONS(1430), - [anon_sym_loop] = ACTIONS(1430), - [anon_sym_match] = ACTIONS(1430), - [anon_sym_mod] = ACTIONS(1430), - [anon_sym_pub] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_trait] = ACTIONS(1430), - [anon_sym_type] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_unsafe] = ACTIONS(1430), - [anon_sym_use] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_POUND] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_DOT_DOT] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_move] = ACTIONS(1430), - [sym_integer_literal] = ACTIONS(1428), - [aux_sym_string_literal_token1] = ACTIONS(1428), - [sym_char_literal] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1430), - [anon_sym_false] = ACTIONS(1430), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1430), - [sym_super] = ACTIONS(1430), - [sym_crate] = ACTIONS(1430), - [sym_metavariable] = ACTIONS(1428), - [sym_raw_string_literal] = ACTIONS(1428), - [sym_float_literal] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_macro_rules_BANG] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_u8] = ACTIONS(1452), + [anon_sym_i8] = ACTIONS(1452), + [anon_sym_u16] = ACTIONS(1452), + [anon_sym_i16] = ACTIONS(1452), + [anon_sym_u32] = ACTIONS(1452), + [anon_sym_i32] = ACTIONS(1452), + [anon_sym_u64] = ACTIONS(1452), + [anon_sym_i64] = ACTIONS(1452), + [anon_sym_u128] = ACTIONS(1452), + [anon_sym_i128] = ACTIONS(1452), + [anon_sym_isize] = ACTIONS(1452), + [anon_sym_usize] = ACTIONS(1452), + [anon_sym_f32] = ACTIONS(1452), + [anon_sym_f64] = ACTIONS(1452), + [anon_sym_bool] = ACTIONS(1452), + [anon_sym_str] = ACTIONS(1452), + [anon_sym_char] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_async] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_fn] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_impl] = ACTIONS(1452), + [anon_sym_let] = ACTIONS(1452), + [anon_sym_loop] = ACTIONS(1452), + [anon_sym_match] = ACTIONS(1452), + [anon_sym_mod] = ACTIONS(1452), + [anon_sym_pub] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_trait] = ACTIONS(1452), + [anon_sym_type] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_unsafe] = ACTIONS(1452), + [anon_sym_use] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_COLON_COLON] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_DOT_DOT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_yield] = ACTIONS(1452), + [anon_sym_move] = ACTIONS(1452), + [sym_integer_literal] = ACTIONS(1450), + [aux_sym_string_literal_token1] = ACTIONS(1450), + [sym_char_literal] = ACTIONS(1450), + [anon_sym_true] = ACTIONS(1452), + [anon_sym_false] = ACTIONS(1452), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1452), + [sym_super] = ACTIONS(1452), + [sym_crate] = ACTIONS(1452), + [sym_metavariable] = ACTIONS(1450), + [sym_raw_string_literal] = ACTIONS(1450), + [sym_float_literal] = ACTIONS(1450), [sym_block_comment] = ACTIONS(3), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_macro_rules_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_u8] = ACTIONS(1434), - [anon_sym_i8] = ACTIONS(1434), - [anon_sym_u16] = ACTIONS(1434), - [anon_sym_i16] = ACTIONS(1434), - [anon_sym_u32] = ACTIONS(1434), - [anon_sym_i32] = ACTIONS(1434), - [anon_sym_u64] = ACTIONS(1434), - [anon_sym_i64] = ACTIONS(1434), - [anon_sym_u128] = ACTIONS(1434), - [anon_sym_i128] = ACTIONS(1434), - [anon_sym_isize] = ACTIONS(1434), - [anon_sym_usize] = ACTIONS(1434), - [anon_sym_f32] = ACTIONS(1434), - [anon_sym_f64] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_str] = ACTIONS(1434), - [anon_sym_char] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_impl] = ACTIONS(1434), - [anon_sym_let] = ACTIONS(1434), - [anon_sym_loop] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1434), - [anon_sym_mod] = ACTIONS(1434), - [anon_sym_pub] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_trait] = ACTIONS(1434), - [anon_sym_type] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_unsafe] = ACTIONS(1434), - [anon_sym_use] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym_LT] = ACTIONS(1432), - [anon_sym_COLON_COLON] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_DOT_DOT] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_yield] = ACTIONS(1434), - [anon_sym_move] = ACTIONS(1434), - [sym_integer_literal] = ACTIONS(1432), - [aux_sym_string_literal_token1] = ACTIONS(1432), - [sym_char_literal] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1434), - [sym_super] = ACTIONS(1434), - [sym_crate] = ACTIONS(1434), - [sym_metavariable] = ACTIONS(1432), - [sym_raw_string_literal] = ACTIONS(1432), - [sym_float_literal] = ACTIONS(1432), + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_macro_rules_BANG] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_u8] = ACTIONS(1456), + [anon_sym_i8] = ACTIONS(1456), + [anon_sym_u16] = ACTIONS(1456), + [anon_sym_i16] = ACTIONS(1456), + [anon_sym_u32] = ACTIONS(1456), + [anon_sym_i32] = ACTIONS(1456), + [anon_sym_u64] = ACTIONS(1456), + [anon_sym_i64] = ACTIONS(1456), + [anon_sym_u128] = ACTIONS(1456), + [anon_sym_i128] = ACTIONS(1456), + [anon_sym_isize] = ACTIONS(1456), + [anon_sym_usize] = ACTIONS(1456), + [anon_sym_f32] = ACTIONS(1456), + [anon_sym_f64] = ACTIONS(1456), + [anon_sym_bool] = ACTIONS(1456), + [anon_sym_str] = ACTIONS(1456), + [anon_sym_char] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_async] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_fn] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_impl] = ACTIONS(1456), + [anon_sym_let] = ACTIONS(1456), + [anon_sym_loop] = ACTIONS(1456), + [anon_sym_match] = ACTIONS(1456), + [anon_sym_mod] = ACTIONS(1456), + [anon_sym_pub] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_trait] = ACTIONS(1456), + [anon_sym_type] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_unsafe] = ACTIONS(1456), + [anon_sym_use] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_COLON_COLON] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_DOT_DOT] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_move] = ACTIONS(1456), + [sym_integer_literal] = ACTIONS(1454), + [aux_sym_string_literal_token1] = ACTIONS(1454), + [sym_char_literal] = ACTIONS(1454), + [anon_sym_true] = ACTIONS(1456), + [anon_sym_false] = ACTIONS(1456), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1456), + [sym_super] = ACTIONS(1456), + [sym_crate] = ACTIONS(1456), + [sym_metavariable] = ACTIONS(1454), + [sym_raw_string_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1454), [sym_block_comment] = ACTIONS(3), }, [335] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_macro_rules_BANG] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_u8] = ACTIONS(1438), - [anon_sym_i8] = ACTIONS(1438), - [anon_sym_u16] = ACTIONS(1438), - [anon_sym_i16] = ACTIONS(1438), - [anon_sym_u32] = ACTIONS(1438), - [anon_sym_i32] = ACTIONS(1438), - [anon_sym_u64] = ACTIONS(1438), - [anon_sym_i64] = ACTIONS(1438), - [anon_sym_u128] = ACTIONS(1438), - [anon_sym_i128] = ACTIONS(1438), - [anon_sym_isize] = ACTIONS(1438), - [anon_sym_usize] = ACTIONS(1438), - [anon_sym_f32] = ACTIONS(1438), - [anon_sym_f64] = ACTIONS(1438), - [anon_sym_bool] = ACTIONS(1438), - [anon_sym_str] = ACTIONS(1438), - [anon_sym_char] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_async] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_impl] = ACTIONS(1438), - [anon_sym_let] = ACTIONS(1438), - [anon_sym_loop] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1438), - [anon_sym_mod] = ACTIONS(1438), - [anon_sym_pub] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_trait] = ACTIONS(1438), - [anon_sym_type] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_unsafe] = ACTIONS(1438), - [anon_sym_use] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(1436), - [anon_sym_COLON_COLON] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_DOT_DOT] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_yield] = ACTIONS(1438), - [anon_sym_move] = ACTIONS(1438), - [sym_integer_literal] = ACTIONS(1436), - [aux_sym_string_literal_token1] = ACTIONS(1436), - [sym_char_literal] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1438), - [anon_sym_false] = ACTIONS(1438), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1438), - [sym_super] = ACTIONS(1438), - [sym_crate] = ACTIONS(1438), - [sym_metavariable] = ACTIONS(1436), - [sym_raw_string_literal] = ACTIONS(1436), - [sym_float_literal] = ACTIONS(1436), + [ts_builtin_sym_end] = ACTIONS(1458), + [sym_identifier] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_macro_rules_BANG] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_u8] = ACTIONS(1460), + [anon_sym_i8] = ACTIONS(1460), + [anon_sym_u16] = ACTIONS(1460), + [anon_sym_i16] = ACTIONS(1460), + [anon_sym_u32] = ACTIONS(1460), + [anon_sym_i32] = ACTIONS(1460), + [anon_sym_u64] = ACTIONS(1460), + [anon_sym_i64] = ACTIONS(1460), + [anon_sym_u128] = ACTIONS(1460), + [anon_sym_i128] = ACTIONS(1460), + [anon_sym_isize] = ACTIONS(1460), + [anon_sym_usize] = ACTIONS(1460), + [anon_sym_f32] = ACTIONS(1460), + [anon_sym_f64] = ACTIONS(1460), + [anon_sym_bool] = ACTIONS(1460), + [anon_sym_str] = ACTIONS(1460), + [anon_sym_char] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_async] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_fn] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_impl] = ACTIONS(1460), + [anon_sym_let] = ACTIONS(1460), + [anon_sym_loop] = ACTIONS(1460), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_mod] = ACTIONS(1460), + [anon_sym_pub] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_trait] = ACTIONS(1460), + [anon_sym_type] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_unsafe] = ACTIONS(1460), + [anon_sym_use] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_POUND] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_COLON_COLON] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_DOT_DOT] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_yield] = ACTIONS(1460), + [anon_sym_move] = ACTIONS(1460), + [sym_integer_literal] = ACTIONS(1458), + [aux_sym_string_literal_token1] = ACTIONS(1458), + [sym_char_literal] = ACTIONS(1458), + [anon_sym_true] = ACTIONS(1460), + [anon_sym_false] = ACTIONS(1460), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1460), + [sym_super] = ACTIONS(1460), + [sym_crate] = ACTIONS(1460), + [sym_metavariable] = ACTIONS(1458), + [sym_raw_string_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1458), [sym_block_comment] = ACTIONS(3), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_macro_rules_BANG] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_u8] = ACTIONS(1442), - [anon_sym_i8] = ACTIONS(1442), - [anon_sym_u16] = ACTIONS(1442), - [anon_sym_i16] = ACTIONS(1442), - [anon_sym_u32] = ACTIONS(1442), - [anon_sym_i32] = ACTIONS(1442), - [anon_sym_u64] = ACTIONS(1442), - [anon_sym_i64] = ACTIONS(1442), - [anon_sym_u128] = ACTIONS(1442), - [anon_sym_i128] = ACTIONS(1442), - [anon_sym_isize] = ACTIONS(1442), - [anon_sym_usize] = ACTIONS(1442), - [anon_sym_f32] = ACTIONS(1442), - [anon_sym_f64] = ACTIONS(1442), - [anon_sym_bool] = ACTIONS(1442), - [anon_sym_str] = ACTIONS(1442), - [anon_sym_char] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_async] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_impl] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1442), - [anon_sym_loop] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1442), - [anon_sym_mod] = ACTIONS(1442), - [anon_sym_pub] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_trait] = ACTIONS(1442), - [anon_sym_type] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_unsafe] = ACTIONS(1442), - [anon_sym_use] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym_LT] = ACTIONS(1440), - [anon_sym_COLON_COLON] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_DOT_DOT] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_yield] = ACTIONS(1442), - [anon_sym_move] = ACTIONS(1442), - [sym_integer_literal] = ACTIONS(1440), - [aux_sym_string_literal_token1] = ACTIONS(1440), - [sym_char_literal] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1442), - [anon_sym_false] = ACTIONS(1442), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1442), - [sym_super] = ACTIONS(1442), - [sym_crate] = ACTIONS(1442), - [sym_metavariable] = ACTIONS(1440), - [sym_raw_string_literal] = ACTIONS(1440), - [sym_float_literal] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(1462), + [sym_identifier] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_macro_rules_BANG] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_u8] = ACTIONS(1464), + [anon_sym_i8] = ACTIONS(1464), + [anon_sym_u16] = ACTIONS(1464), + [anon_sym_i16] = ACTIONS(1464), + [anon_sym_u32] = ACTIONS(1464), + [anon_sym_i32] = ACTIONS(1464), + [anon_sym_u64] = ACTIONS(1464), + [anon_sym_i64] = ACTIONS(1464), + [anon_sym_u128] = ACTIONS(1464), + [anon_sym_i128] = ACTIONS(1464), + [anon_sym_isize] = ACTIONS(1464), + [anon_sym_usize] = ACTIONS(1464), + [anon_sym_f32] = ACTIONS(1464), + [anon_sym_f64] = ACTIONS(1464), + [anon_sym_bool] = ACTIONS(1464), + [anon_sym_str] = ACTIONS(1464), + [anon_sym_char] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_fn] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_impl] = ACTIONS(1464), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_loop] = ACTIONS(1464), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_mod] = ACTIONS(1464), + [anon_sym_pub] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_trait] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1464), + [anon_sym_use] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym_LT] = ACTIONS(1462), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_DOT_DOT] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_yield] = ACTIONS(1464), + [anon_sym_move] = ACTIONS(1464), + [sym_integer_literal] = ACTIONS(1462), + [aux_sym_string_literal_token1] = ACTIONS(1462), + [sym_char_literal] = ACTIONS(1462), + [anon_sym_true] = ACTIONS(1464), + [anon_sym_false] = ACTIONS(1464), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1464), + [sym_super] = ACTIONS(1464), + [sym_crate] = ACTIONS(1464), + [sym_metavariable] = ACTIONS(1462), + [sym_raw_string_literal] = ACTIONS(1462), + [sym_float_literal] = ACTIONS(1462), [sym_block_comment] = ACTIONS(3), }, [337] = { - [ts_builtin_sym_end] = ACTIONS(1444), - [sym_identifier] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_macro_rules_BANG] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_u8] = ACTIONS(1446), - [anon_sym_i8] = ACTIONS(1446), - [anon_sym_u16] = ACTIONS(1446), - [anon_sym_i16] = ACTIONS(1446), - [anon_sym_u32] = ACTIONS(1446), - [anon_sym_i32] = ACTIONS(1446), - [anon_sym_u64] = ACTIONS(1446), - [anon_sym_i64] = ACTIONS(1446), - [anon_sym_u128] = ACTIONS(1446), - [anon_sym_i128] = ACTIONS(1446), - [anon_sym_isize] = ACTIONS(1446), - [anon_sym_usize] = ACTIONS(1446), - [anon_sym_f32] = ACTIONS(1446), - [anon_sym_f64] = ACTIONS(1446), - [anon_sym_bool] = ACTIONS(1446), - [anon_sym_str] = ACTIONS(1446), - [anon_sym_char] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_async] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_fn] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_impl] = ACTIONS(1446), - [anon_sym_let] = ACTIONS(1446), - [anon_sym_loop] = ACTIONS(1446), - [anon_sym_match] = ACTIONS(1446), - [anon_sym_mod] = ACTIONS(1446), - [anon_sym_pub] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_trait] = ACTIONS(1446), - [anon_sym_type] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_unsafe] = ACTIONS(1446), - [anon_sym_use] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_COLON_COLON] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_DOT_DOT] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_move] = ACTIONS(1446), - [sym_integer_literal] = ACTIONS(1444), - [aux_sym_string_literal_token1] = ACTIONS(1444), - [sym_char_literal] = ACTIONS(1444), - [anon_sym_true] = ACTIONS(1446), - [anon_sym_false] = ACTIONS(1446), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1446), - [sym_super] = ACTIONS(1446), - [sym_crate] = ACTIONS(1446), - [sym_metavariable] = ACTIONS(1444), - [sym_raw_string_literal] = ACTIONS(1444), - [sym_float_literal] = ACTIONS(1444), + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_macro_rules_BANG] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_u8] = ACTIONS(1468), + [anon_sym_i8] = ACTIONS(1468), + [anon_sym_u16] = ACTIONS(1468), + [anon_sym_i16] = ACTIONS(1468), + [anon_sym_u32] = ACTIONS(1468), + [anon_sym_i32] = ACTIONS(1468), + [anon_sym_u64] = ACTIONS(1468), + [anon_sym_i64] = ACTIONS(1468), + [anon_sym_u128] = ACTIONS(1468), + [anon_sym_i128] = ACTIONS(1468), + [anon_sym_isize] = ACTIONS(1468), + [anon_sym_usize] = ACTIONS(1468), + [anon_sym_f32] = ACTIONS(1468), + [anon_sym_f64] = ACTIONS(1468), + [anon_sym_bool] = ACTIONS(1468), + [anon_sym_str] = ACTIONS(1468), + [anon_sym_char] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_async] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_fn] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_impl] = ACTIONS(1468), + [anon_sym_let] = ACTIONS(1468), + [anon_sym_loop] = ACTIONS(1468), + [anon_sym_match] = ACTIONS(1468), + [anon_sym_mod] = ACTIONS(1468), + [anon_sym_pub] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_trait] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1468), + [anon_sym_use] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_COLON_COLON] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_DOT_DOT] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_yield] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [sym_integer_literal] = ACTIONS(1466), + [aux_sym_string_literal_token1] = ACTIONS(1466), + [sym_char_literal] = ACTIONS(1466), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1468), + [sym_super] = ACTIONS(1468), + [sym_crate] = ACTIONS(1468), + [sym_metavariable] = ACTIONS(1466), + [sym_raw_string_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1466), [sym_block_comment] = ACTIONS(3), }, [338] = { - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_identifier] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_macro_rules_BANG] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_u8] = ACTIONS(1450), - [anon_sym_i8] = ACTIONS(1450), - [anon_sym_u16] = ACTIONS(1450), - [anon_sym_i16] = ACTIONS(1450), - [anon_sym_u32] = ACTIONS(1450), - [anon_sym_i32] = ACTIONS(1450), - [anon_sym_u64] = ACTIONS(1450), - [anon_sym_i64] = ACTIONS(1450), - [anon_sym_u128] = ACTIONS(1450), - [anon_sym_i128] = ACTIONS(1450), - [anon_sym_isize] = ACTIONS(1450), - [anon_sym_usize] = ACTIONS(1450), - [anon_sym_f32] = ACTIONS(1450), - [anon_sym_f64] = ACTIONS(1450), - [anon_sym_bool] = ACTIONS(1450), - [anon_sym_str] = ACTIONS(1450), - [anon_sym_char] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_async] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_default] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_fn] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_impl] = ACTIONS(1450), - [anon_sym_let] = ACTIONS(1450), - [anon_sym_loop] = ACTIONS(1450), - [anon_sym_match] = ACTIONS(1450), - [anon_sym_mod] = ACTIONS(1450), - [anon_sym_pub] = ACTIONS(1450), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_trait] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_union] = ACTIONS(1450), - [anon_sym_unsafe] = ACTIONS(1450), - [anon_sym_use] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_COLON_COLON] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_DOT_DOT] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_yield] = ACTIONS(1450), - [anon_sym_move] = ACTIONS(1450), - [sym_integer_literal] = ACTIONS(1448), - [aux_sym_string_literal_token1] = ACTIONS(1448), - [sym_char_literal] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1450), - [anon_sym_false] = ACTIONS(1450), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1450), - [sym_super] = ACTIONS(1450), - [sym_crate] = ACTIONS(1450), - [sym_metavariable] = ACTIONS(1448), - [sym_raw_string_literal] = ACTIONS(1448), - [sym_float_literal] = ACTIONS(1448), + [ts_builtin_sym_end] = ACTIONS(1470), + [sym_identifier] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_macro_rules_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_u8] = ACTIONS(1472), + [anon_sym_i8] = ACTIONS(1472), + [anon_sym_u16] = ACTIONS(1472), + [anon_sym_i16] = ACTIONS(1472), + [anon_sym_u32] = ACTIONS(1472), + [anon_sym_i32] = ACTIONS(1472), + [anon_sym_u64] = ACTIONS(1472), + [anon_sym_i64] = ACTIONS(1472), + [anon_sym_u128] = ACTIONS(1472), + [anon_sym_i128] = ACTIONS(1472), + [anon_sym_isize] = ACTIONS(1472), + [anon_sym_usize] = ACTIONS(1472), + [anon_sym_f32] = ACTIONS(1472), + [anon_sym_f64] = ACTIONS(1472), + [anon_sym_bool] = ACTIONS(1472), + [anon_sym_str] = ACTIONS(1472), + [anon_sym_char] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_async] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_fn] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_impl] = ACTIONS(1472), + [anon_sym_let] = ACTIONS(1472), + [anon_sym_loop] = ACTIONS(1472), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_mod] = ACTIONS(1472), + [anon_sym_pub] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_trait] = ACTIONS(1472), + [anon_sym_type] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_unsafe] = ACTIONS(1472), + [anon_sym_use] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_COLON_COLON] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), + [anon_sym_move] = ACTIONS(1472), + [sym_integer_literal] = ACTIONS(1470), + [aux_sym_string_literal_token1] = ACTIONS(1470), + [sym_char_literal] = ACTIONS(1470), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1472), + [sym_super] = ACTIONS(1472), + [sym_crate] = ACTIONS(1472), + [sym_metavariable] = ACTIONS(1470), + [sym_raw_string_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1470), [sym_block_comment] = ACTIONS(3), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(1452), - [sym_identifier] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_macro_rules_BANG] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_u8] = ACTIONS(1454), - [anon_sym_i8] = ACTIONS(1454), - [anon_sym_u16] = ACTIONS(1454), - [anon_sym_i16] = ACTIONS(1454), - [anon_sym_u32] = ACTIONS(1454), - [anon_sym_i32] = ACTIONS(1454), - [anon_sym_u64] = ACTIONS(1454), - [anon_sym_i64] = ACTIONS(1454), - [anon_sym_u128] = ACTIONS(1454), - [anon_sym_i128] = ACTIONS(1454), - [anon_sym_isize] = ACTIONS(1454), - [anon_sym_usize] = ACTIONS(1454), - [anon_sym_f32] = ACTIONS(1454), - [anon_sym_f64] = ACTIONS(1454), - [anon_sym_bool] = ACTIONS(1454), - [anon_sym_str] = ACTIONS(1454), - [anon_sym_char] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_async] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_fn] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_impl] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(1454), - [anon_sym_loop] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_mod] = ACTIONS(1454), - [anon_sym_pub] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_trait] = ACTIONS(1454), - [anon_sym_type] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_unsafe] = ACTIONS(1454), - [anon_sym_use] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_COLON_COLON] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_DOT_DOT] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_yield] = ACTIONS(1454), - [anon_sym_move] = ACTIONS(1454), - [sym_integer_literal] = ACTIONS(1452), - [aux_sym_string_literal_token1] = ACTIONS(1452), - [sym_char_literal] = ACTIONS(1452), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1454), - [sym_super] = ACTIONS(1454), - [sym_crate] = ACTIONS(1454), - [sym_metavariable] = ACTIONS(1452), - [sym_raw_string_literal] = ACTIONS(1452), - [sym_float_literal] = ACTIONS(1452), + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_identifier] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_macro_rules_BANG] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_u8] = ACTIONS(1476), + [anon_sym_i8] = ACTIONS(1476), + [anon_sym_u16] = ACTIONS(1476), + [anon_sym_i16] = ACTIONS(1476), + [anon_sym_u32] = ACTIONS(1476), + [anon_sym_i32] = ACTIONS(1476), + [anon_sym_u64] = ACTIONS(1476), + [anon_sym_i64] = ACTIONS(1476), + [anon_sym_u128] = ACTIONS(1476), + [anon_sym_i128] = ACTIONS(1476), + [anon_sym_isize] = ACTIONS(1476), + [anon_sym_usize] = ACTIONS(1476), + [anon_sym_f32] = ACTIONS(1476), + [anon_sym_f64] = ACTIONS(1476), + [anon_sym_bool] = ACTIONS(1476), + [anon_sym_str] = ACTIONS(1476), + [anon_sym_char] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_fn] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_impl] = ACTIONS(1476), + [anon_sym_let] = ACTIONS(1476), + [anon_sym_loop] = ACTIONS(1476), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_mod] = ACTIONS(1476), + [anon_sym_pub] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_trait] = ACTIONS(1476), + [anon_sym_type] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1476), + [anon_sym_use] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_COLON_COLON] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_DOT_DOT] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_move] = ACTIONS(1476), + [sym_integer_literal] = ACTIONS(1474), + [aux_sym_string_literal_token1] = ACTIONS(1474), + [sym_char_literal] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1476), + [sym_super] = ACTIONS(1476), + [sym_crate] = ACTIONS(1476), + [sym_metavariable] = ACTIONS(1474), + [sym_raw_string_literal] = ACTIONS(1474), + [sym_float_literal] = ACTIONS(1474), [sym_block_comment] = ACTIONS(3), }, [340] = { - [ts_builtin_sym_end] = ACTIONS(1456), - [sym_identifier] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_macro_rules_BANG] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_u8] = ACTIONS(1458), - [anon_sym_i8] = ACTIONS(1458), - [anon_sym_u16] = ACTIONS(1458), - [anon_sym_i16] = ACTIONS(1458), - [anon_sym_u32] = ACTIONS(1458), - [anon_sym_i32] = ACTIONS(1458), - [anon_sym_u64] = ACTIONS(1458), - [anon_sym_i64] = ACTIONS(1458), - [anon_sym_u128] = ACTIONS(1458), - [anon_sym_i128] = ACTIONS(1458), - [anon_sym_isize] = ACTIONS(1458), - [anon_sym_usize] = ACTIONS(1458), - [anon_sym_f32] = ACTIONS(1458), - [anon_sym_f64] = ACTIONS(1458), - [anon_sym_bool] = ACTIONS(1458), - [anon_sym_str] = ACTIONS(1458), - [anon_sym_char] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_async] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_fn] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_impl] = ACTIONS(1458), - [anon_sym_let] = ACTIONS(1458), - [anon_sym_loop] = ACTIONS(1458), - [anon_sym_match] = ACTIONS(1458), - [anon_sym_mod] = ACTIONS(1458), - [anon_sym_pub] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_trait] = ACTIONS(1458), - [anon_sym_type] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_unsafe] = ACTIONS(1458), - [anon_sym_use] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_COLON_COLON] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1458), - [anon_sym_move] = ACTIONS(1458), - [sym_integer_literal] = ACTIONS(1456), - [aux_sym_string_literal_token1] = ACTIONS(1456), - [sym_char_literal] = ACTIONS(1456), - [anon_sym_true] = ACTIONS(1458), - [anon_sym_false] = ACTIONS(1458), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1458), - [sym_super] = ACTIONS(1458), - [sym_crate] = ACTIONS(1458), - [sym_metavariable] = ACTIONS(1456), - [sym_raw_string_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1456), + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_identifier] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_macro_rules_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_u8] = ACTIONS(1480), + [anon_sym_i8] = ACTIONS(1480), + [anon_sym_u16] = ACTIONS(1480), + [anon_sym_i16] = ACTIONS(1480), + [anon_sym_u32] = ACTIONS(1480), + [anon_sym_i32] = ACTIONS(1480), + [anon_sym_u64] = ACTIONS(1480), + [anon_sym_i64] = ACTIONS(1480), + [anon_sym_u128] = ACTIONS(1480), + [anon_sym_i128] = ACTIONS(1480), + [anon_sym_isize] = ACTIONS(1480), + [anon_sym_usize] = ACTIONS(1480), + [anon_sym_f32] = ACTIONS(1480), + [anon_sym_f64] = ACTIONS(1480), + [anon_sym_bool] = ACTIONS(1480), + [anon_sym_str] = ACTIONS(1480), + [anon_sym_char] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_async] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_fn] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_impl] = ACTIONS(1480), + [anon_sym_let] = ACTIONS(1480), + [anon_sym_loop] = ACTIONS(1480), + [anon_sym_match] = ACTIONS(1480), + [anon_sym_mod] = ACTIONS(1480), + [anon_sym_pub] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_trait] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1480), + [anon_sym_use] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_COLON_COLON] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_yield] = ACTIONS(1480), + [anon_sym_move] = ACTIONS(1480), + [sym_integer_literal] = ACTIONS(1478), + [aux_sym_string_literal_token1] = ACTIONS(1478), + [sym_char_literal] = ACTIONS(1478), + [anon_sym_true] = ACTIONS(1480), + [anon_sym_false] = ACTIONS(1480), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1480), + [sym_super] = ACTIONS(1480), + [sym_crate] = ACTIONS(1480), + [sym_metavariable] = ACTIONS(1478), + [sym_raw_string_literal] = ACTIONS(1478), + [sym_float_literal] = ACTIONS(1478), [sym_block_comment] = ACTIONS(3), }, [341] = { - [ts_builtin_sym_end] = ACTIONS(1460), - [sym_identifier] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_macro_rules_BANG] = ACTIONS(1460), - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_u8] = ACTIONS(1462), - [anon_sym_i8] = ACTIONS(1462), - [anon_sym_u16] = ACTIONS(1462), - [anon_sym_i16] = ACTIONS(1462), - [anon_sym_u32] = ACTIONS(1462), - [anon_sym_i32] = ACTIONS(1462), - [anon_sym_u64] = ACTIONS(1462), - [anon_sym_i64] = ACTIONS(1462), - [anon_sym_u128] = ACTIONS(1462), - [anon_sym_i128] = ACTIONS(1462), - [anon_sym_isize] = ACTIONS(1462), - [anon_sym_usize] = ACTIONS(1462), - [anon_sym_f32] = ACTIONS(1462), - [anon_sym_f64] = ACTIONS(1462), - [anon_sym_bool] = ACTIONS(1462), - [anon_sym_str] = ACTIONS(1462), - [anon_sym_char] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_const] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_enum] = ACTIONS(1462), - [anon_sym_fn] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_impl] = ACTIONS(1462), - [anon_sym_let] = ACTIONS(1462), - [anon_sym_loop] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_mod] = ACTIONS(1462), - [anon_sym_pub] = ACTIONS(1462), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_static] = ACTIONS(1462), - [anon_sym_struct] = ACTIONS(1462), - [anon_sym_trait] = ACTIONS(1462), - [anon_sym_type] = ACTIONS(1462), - [anon_sym_union] = ACTIONS(1462), - [anon_sym_unsafe] = ACTIONS(1462), - [anon_sym_use] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_COLON_COLON] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_DOT_DOT] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_move] = ACTIONS(1462), - [sym_integer_literal] = ACTIONS(1460), - [aux_sym_string_literal_token1] = ACTIONS(1460), - [sym_char_literal] = ACTIONS(1460), - [anon_sym_true] = ACTIONS(1462), - [anon_sym_false] = ACTIONS(1462), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1462), - [sym_super] = ACTIONS(1462), - [sym_crate] = ACTIONS(1462), - [sym_metavariable] = ACTIONS(1460), - [sym_raw_string_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1460), + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_identifier] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_macro_rules_BANG] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_u8] = ACTIONS(1484), + [anon_sym_i8] = ACTIONS(1484), + [anon_sym_u16] = ACTIONS(1484), + [anon_sym_i16] = ACTIONS(1484), + [anon_sym_u32] = ACTIONS(1484), + [anon_sym_i32] = ACTIONS(1484), + [anon_sym_u64] = ACTIONS(1484), + [anon_sym_i64] = ACTIONS(1484), + [anon_sym_u128] = ACTIONS(1484), + [anon_sym_i128] = ACTIONS(1484), + [anon_sym_isize] = ACTIONS(1484), + [anon_sym_usize] = ACTIONS(1484), + [anon_sym_f32] = ACTIONS(1484), + [anon_sym_f64] = ACTIONS(1484), + [anon_sym_bool] = ACTIONS(1484), + [anon_sym_str] = ACTIONS(1484), + [anon_sym_char] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_async] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_fn] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_impl] = ACTIONS(1484), + [anon_sym_let] = ACTIONS(1484), + [anon_sym_loop] = ACTIONS(1484), + [anon_sym_match] = ACTIONS(1484), + [anon_sym_mod] = ACTIONS(1484), + [anon_sym_pub] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_trait] = ACTIONS(1484), + [anon_sym_type] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_unsafe] = ACTIONS(1484), + [anon_sym_use] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1482), + [anon_sym_yield] = ACTIONS(1484), + [anon_sym_move] = ACTIONS(1484), + [sym_integer_literal] = ACTIONS(1482), + [aux_sym_string_literal_token1] = ACTIONS(1482), + [sym_char_literal] = ACTIONS(1482), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1484), + [sym_super] = ACTIONS(1484), + [sym_crate] = ACTIONS(1484), + [sym_metavariable] = ACTIONS(1482), + [sym_raw_string_literal] = ACTIONS(1482), + [sym_float_literal] = ACTIONS(1482), [sym_block_comment] = ACTIONS(3), }, [342] = { - [ts_builtin_sym_end] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_macro_rules_BANG] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_u8] = ACTIONS(1466), - [anon_sym_i8] = ACTIONS(1466), - [anon_sym_u16] = ACTIONS(1466), - [anon_sym_i16] = ACTIONS(1466), - [anon_sym_u32] = ACTIONS(1466), - [anon_sym_i32] = ACTIONS(1466), - [anon_sym_u64] = ACTIONS(1466), - [anon_sym_i64] = ACTIONS(1466), - [anon_sym_u128] = ACTIONS(1466), - [anon_sym_i128] = ACTIONS(1466), - [anon_sym_isize] = ACTIONS(1466), - [anon_sym_usize] = ACTIONS(1466), - [anon_sym_f32] = ACTIONS(1466), - [anon_sym_f64] = ACTIONS(1466), - [anon_sym_bool] = ACTIONS(1466), - [anon_sym_str] = ACTIONS(1466), - [anon_sym_char] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1466), - [anon_sym_enum] = ACTIONS(1466), - [anon_sym_fn] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_impl] = ACTIONS(1466), - [anon_sym_let] = ACTIONS(1466), - [anon_sym_loop] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_mod] = ACTIONS(1466), - [anon_sym_pub] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_struct] = ACTIONS(1466), - [anon_sym_trait] = ACTIONS(1466), - [anon_sym_type] = ACTIONS(1466), - [anon_sym_union] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1466), - [anon_sym_use] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_COLON_COLON] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_DOT_DOT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_yield] = ACTIONS(1466), - [anon_sym_move] = ACTIONS(1466), - [sym_integer_literal] = ACTIONS(1464), - [aux_sym_string_literal_token1] = ACTIONS(1464), - [sym_char_literal] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1466), - [anon_sym_false] = ACTIONS(1466), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1466), - [sym_super] = ACTIONS(1466), - [sym_crate] = ACTIONS(1466), - [sym_metavariable] = ACTIONS(1464), - [sym_raw_string_literal] = ACTIONS(1464), - [sym_float_literal] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(1486), + [sym_identifier] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_macro_rules_BANG] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_u8] = ACTIONS(1488), + [anon_sym_i8] = ACTIONS(1488), + [anon_sym_u16] = ACTIONS(1488), + [anon_sym_i16] = ACTIONS(1488), + [anon_sym_u32] = ACTIONS(1488), + [anon_sym_i32] = ACTIONS(1488), + [anon_sym_u64] = ACTIONS(1488), + [anon_sym_i64] = ACTIONS(1488), + [anon_sym_u128] = ACTIONS(1488), + [anon_sym_i128] = ACTIONS(1488), + [anon_sym_isize] = ACTIONS(1488), + [anon_sym_usize] = ACTIONS(1488), + [anon_sym_f32] = ACTIONS(1488), + [anon_sym_f64] = ACTIONS(1488), + [anon_sym_bool] = ACTIONS(1488), + [anon_sym_str] = ACTIONS(1488), + [anon_sym_char] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_async] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_fn] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_impl] = ACTIONS(1488), + [anon_sym_let] = ACTIONS(1488), + [anon_sym_loop] = ACTIONS(1488), + [anon_sym_match] = ACTIONS(1488), + [anon_sym_mod] = ACTIONS(1488), + [anon_sym_pub] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_trait] = ACTIONS(1488), + [anon_sym_type] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_unsafe] = ACTIONS(1488), + [anon_sym_use] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_COLON_COLON] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1486), + [anon_sym_yield] = ACTIONS(1488), + [anon_sym_move] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1486), + [aux_sym_string_literal_token1] = ACTIONS(1486), + [sym_char_literal] = ACTIONS(1486), + [anon_sym_true] = ACTIONS(1488), + [anon_sym_false] = ACTIONS(1488), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1488), + [sym_super] = ACTIONS(1488), + [sym_crate] = ACTIONS(1488), + [sym_metavariable] = ACTIONS(1486), + [sym_raw_string_literal] = ACTIONS(1486), + [sym_float_literal] = ACTIONS(1486), [sym_block_comment] = ACTIONS(3), }, [343] = { - [ts_builtin_sym_end] = ACTIONS(1468), - [sym_identifier] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_macro_rules_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_u8] = ACTIONS(1470), - [anon_sym_i8] = ACTIONS(1470), - [anon_sym_u16] = ACTIONS(1470), - [anon_sym_i16] = ACTIONS(1470), - [anon_sym_u32] = ACTIONS(1470), - [anon_sym_i32] = ACTIONS(1470), - [anon_sym_u64] = ACTIONS(1470), - [anon_sym_i64] = ACTIONS(1470), - [anon_sym_u128] = ACTIONS(1470), - [anon_sym_i128] = ACTIONS(1470), - [anon_sym_isize] = ACTIONS(1470), - [anon_sym_usize] = ACTIONS(1470), - [anon_sym_f32] = ACTIONS(1470), - [anon_sym_f64] = ACTIONS(1470), - [anon_sym_bool] = ACTIONS(1470), - [anon_sym_str] = ACTIONS(1470), - [anon_sym_char] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_default] = ACTIONS(1470), - [anon_sym_enum] = ACTIONS(1470), - [anon_sym_fn] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_impl] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_mod] = ACTIONS(1470), - [anon_sym_pub] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_static] = ACTIONS(1470), - [anon_sym_struct] = ACTIONS(1470), - [anon_sym_trait] = ACTIONS(1470), - [anon_sym_type] = ACTIONS(1470), - [anon_sym_union] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1468), - [anon_sym_COLON_COLON] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_DOT_DOT] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_yield] = ACTIONS(1470), - [anon_sym_move] = ACTIONS(1470), - [sym_integer_literal] = ACTIONS(1468), - [aux_sym_string_literal_token1] = ACTIONS(1468), - [sym_char_literal] = ACTIONS(1468), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1470), - [sym_super] = ACTIONS(1470), - [sym_crate] = ACTIONS(1470), - [sym_metavariable] = ACTIONS(1468), - [sym_raw_string_literal] = ACTIONS(1468), - [sym_float_literal] = ACTIONS(1468), + [ts_builtin_sym_end] = ACTIONS(1490), + [sym_identifier] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_macro_rules_BANG] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_async] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_fn] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_impl] = ACTIONS(1492), + [anon_sym_let] = ACTIONS(1492), + [anon_sym_loop] = ACTIONS(1492), + [anon_sym_match] = ACTIONS(1492), + [anon_sym_mod] = ACTIONS(1492), + [anon_sym_pub] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_trait] = ACTIONS(1492), + [anon_sym_type] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_unsafe] = ACTIONS(1492), + [anon_sym_use] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1490), + [anon_sym_COLON_COLON] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_DOT_DOT] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_move] = ACTIONS(1492), + [sym_integer_literal] = ACTIONS(1490), + [aux_sym_string_literal_token1] = ACTIONS(1490), + [sym_char_literal] = ACTIONS(1490), + [anon_sym_true] = ACTIONS(1492), + [anon_sym_false] = ACTIONS(1492), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1492), + [sym_super] = ACTIONS(1492), + [sym_crate] = ACTIONS(1492), + [sym_metavariable] = ACTIONS(1490), + [sym_raw_string_literal] = ACTIONS(1490), + [sym_float_literal] = ACTIONS(1490), [sym_block_comment] = ACTIONS(3), }, [344] = { - [ts_builtin_sym_end] = ACTIONS(1472), - [sym_identifier] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_macro_rules_BANG] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_u8] = ACTIONS(1474), - [anon_sym_i8] = ACTIONS(1474), - [anon_sym_u16] = ACTIONS(1474), - [anon_sym_i16] = ACTIONS(1474), - [anon_sym_u32] = ACTIONS(1474), - [anon_sym_i32] = ACTIONS(1474), - [anon_sym_u64] = ACTIONS(1474), - [anon_sym_i64] = ACTIONS(1474), - [anon_sym_u128] = ACTIONS(1474), - [anon_sym_i128] = ACTIONS(1474), - [anon_sym_isize] = ACTIONS(1474), - [anon_sym_usize] = ACTIONS(1474), - [anon_sym_f32] = ACTIONS(1474), - [anon_sym_f64] = ACTIONS(1474), - [anon_sym_bool] = ACTIONS(1474), - [anon_sym_str] = ACTIONS(1474), - [anon_sym_char] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_async] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_enum] = ACTIONS(1474), - [anon_sym_fn] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_impl] = ACTIONS(1474), - [anon_sym_let] = ACTIONS(1474), - [anon_sym_loop] = ACTIONS(1474), - [anon_sym_match] = ACTIONS(1474), - [anon_sym_mod] = ACTIONS(1474), - [anon_sym_pub] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_static] = ACTIONS(1474), - [anon_sym_struct] = ACTIONS(1474), - [anon_sym_trait] = ACTIONS(1474), - [anon_sym_type] = ACTIONS(1474), - [anon_sym_union] = ACTIONS(1474), - [anon_sym_unsafe] = ACTIONS(1474), - [anon_sym_use] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(1472), - [anon_sym_COLON_COLON] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_move] = ACTIONS(1474), - [sym_integer_literal] = ACTIONS(1472), - [aux_sym_string_literal_token1] = ACTIONS(1472), - [sym_char_literal] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1474), - [anon_sym_false] = ACTIONS(1474), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1474), - [sym_super] = ACTIONS(1474), - [sym_crate] = ACTIONS(1474), - [sym_metavariable] = ACTIONS(1472), - [sym_raw_string_literal] = ACTIONS(1472), - [sym_float_literal] = ACTIONS(1472), + [ts_builtin_sym_end] = ACTIONS(1494), + [sym_identifier] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_macro_rules_BANG] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_u8] = ACTIONS(1496), + [anon_sym_i8] = ACTIONS(1496), + [anon_sym_u16] = ACTIONS(1496), + [anon_sym_i16] = ACTIONS(1496), + [anon_sym_u32] = ACTIONS(1496), + [anon_sym_i32] = ACTIONS(1496), + [anon_sym_u64] = ACTIONS(1496), + [anon_sym_i64] = ACTIONS(1496), + [anon_sym_u128] = ACTIONS(1496), + [anon_sym_i128] = ACTIONS(1496), + [anon_sym_isize] = ACTIONS(1496), + [anon_sym_usize] = ACTIONS(1496), + [anon_sym_f32] = ACTIONS(1496), + [anon_sym_f64] = ACTIONS(1496), + [anon_sym_bool] = ACTIONS(1496), + [anon_sym_str] = ACTIONS(1496), + [anon_sym_char] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_fn] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_impl] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_loop] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_mod] = ACTIONS(1496), + [anon_sym_pub] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_trait] = ACTIONS(1496), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_unsafe] = ACTIONS(1496), + [anon_sym_use] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1494), + [anon_sym_COLON_COLON] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_DOT_DOT] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_move] = ACTIONS(1496), + [sym_integer_literal] = ACTIONS(1494), + [aux_sym_string_literal_token1] = ACTIONS(1494), + [sym_char_literal] = ACTIONS(1494), + [anon_sym_true] = ACTIONS(1496), + [anon_sym_false] = ACTIONS(1496), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1496), + [sym_super] = ACTIONS(1496), + [sym_crate] = ACTIONS(1496), + [sym_metavariable] = ACTIONS(1494), + [sym_raw_string_literal] = ACTIONS(1494), + [sym_float_literal] = ACTIONS(1494), [sym_block_comment] = ACTIONS(3), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_identifier] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_macro_rules_BANG] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_u8] = ACTIONS(1478), - [anon_sym_i8] = ACTIONS(1478), - [anon_sym_u16] = ACTIONS(1478), - [anon_sym_i16] = ACTIONS(1478), - [anon_sym_u32] = ACTIONS(1478), - [anon_sym_i32] = ACTIONS(1478), - [anon_sym_u64] = ACTIONS(1478), - [anon_sym_i64] = ACTIONS(1478), - [anon_sym_u128] = ACTIONS(1478), - [anon_sym_i128] = ACTIONS(1478), - [anon_sym_isize] = ACTIONS(1478), - [anon_sym_usize] = ACTIONS(1478), - [anon_sym_f32] = ACTIONS(1478), - [anon_sym_f64] = ACTIONS(1478), - [anon_sym_bool] = ACTIONS(1478), - [anon_sym_str] = ACTIONS(1478), - [anon_sym_char] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_async] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_default] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [anon_sym_fn] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_impl] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1478), - [anon_sym_loop] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_pub] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [anon_sym_trait] = ACTIONS(1478), - [anon_sym_type] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_use] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_COLON_COLON] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_yield] = ACTIONS(1478), - [anon_sym_move] = ACTIONS(1478), - [sym_integer_literal] = ACTIONS(1476), - [aux_sym_string_literal_token1] = ACTIONS(1476), - [sym_char_literal] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1478), - [sym_super] = ACTIONS(1478), - [sym_crate] = ACTIONS(1478), - [sym_metavariable] = ACTIONS(1476), - [sym_raw_string_literal] = ACTIONS(1476), - [sym_float_literal] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1498), + [sym_identifier] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_macro_rules_BANG] = ACTIONS(1498), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_u8] = ACTIONS(1500), + [anon_sym_i8] = ACTIONS(1500), + [anon_sym_u16] = ACTIONS(1500), + [anon_sym_i16] = ACTIONS(1500), + [anon_sym_u32] = ACTIONS(1500), + [anon_sym_i32] = ACTIONS(1500), + [anon_sym_u64] = ACTIONS(1500), + [anon_sym_i64] = ACTIONS(1500), + [anon_sym_u128] = ACTIONS(1500), + [anon_sym_i128] = ACTIONS(1500), + [anon_sym_isize] = ACTIONS(1500), + [anon_sym_usize] = ACTIONS(1500), + [anon_sym_f32] = ACTIONS(1500), + [anon_sym_f64] = ACTIONS(1500), + [anon_sym_bool] = ACTIONS(1500), + [anon_sym_str] = ACTIONS(1500), + [anon_sym_char] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_async] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_fn] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_impl] = ACTIONS(1500), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_loop] = ACTIONS(1500), + [anon_sym_match] = ACTIONS(1500), + [anon_sym_mod] = ACTIONS(1500), + [anon_sym_pub] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_trait] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_unsafe] = ACTIONS(1500), + [anon_sym_use] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_move] = ACTIONS(1500), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1498), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1500), + [anon_sym_false] = ACTIONS(1500), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1500), + [sym_super] = ACTIONS(1500), + [sym_crate] = ACTIONS(1500), + [sym_metavariable] = ACTIONS(1498), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [346] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_macro_rules_BANG] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_u8] = ACTIONS(1482), - [anon_sym_i8] = ACTIONS(1482), - [anon_sym_u16] = ACTIONS(1482), - [anon_sym_i16] = ACTIONS(1482), - [anon_sym_u32] = ACTIONS(1482), - [anon_sym_i32] = ACTIONS(1482), - [anon_sym_u64] = ACTIONS(1482), - [anon_sym_i64] = ACTIONS(1482), - [anon_sym_u128] = ACTIONS(1482), - [anon_sym_i128] = ACTIONS(1482), - [anon_sym_isize] = ACTIONS(1482), - [anon_sym_usize] = ACTIONS(1482), - [anon_sym_f32] = ACTIONS(1482), - [anon_sym_f64] = ACTIONS(1482), - [anon_sym_bool] = ACTIONS(1482), - [anon_sym_str] = ACTIONS(1482), - [anon_sym_char] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_async] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [anon_sym_fn] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_impl] = ACTIONS(1482), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_loop] = ACTIONS(1482), - [anon_sym_match] = ACTIONS(1482), - [anon_sym_mod] = ACTIONS(1482), - [anon_sym_pub] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_struct] = ACTIONS(1482), - [anon_sym_trait] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_union] = ACTIONS(1482), - [anon_sym_unsafe] = ACTIONS(1482), - [anon_sym_use] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_POUND] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1482), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_COLON_COLON] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_yield] = ACTIONS(1482), - [anon_sym_move] = ACTIONS(1482), - [sym_integer_literal] = ACTIONS(1480), - [aux_sym_string_literal_token1] = ACTIONS(1480), - [sym_char_literal] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1482), - [sym_super] = ACTIONS(1482), - [sym_crate] = ACTIONS(1482), - [sym_metavariable] = ACTIONS(1480), - [sym_raw_string_literal] = ACTIONS(1480), - [sym_float_literal] = ACTIONS(1480), + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_macro_rules_BANG] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_u8] = ACTIONS(1504), + [anon_sym_i8] = ACTIONS(1504), + [anon_sym_u16] = ACTIONS(1504), + [anon_sym_i16] = ACTIONS(1504), + [anon_sym_u32] = ACTIONS(1504), + [anon_sym_i32] = ACTIONS(1504), + [anon_sym_u64] = ACTIONS(1504), + [anon_sym_i64] = ACTIONS(1504), + [anon_sym_u128] = ACTIONS(1504), + [anon_sym_i128] = ACTIONS(1504), + [anon_sym_isize] = ACTIONS(1504), + [anon_sym_usize] = ACTIONS(1504), + [anon_sym_f32] = ACTIONS(1504), + [anon_sym_f64] = ACTIONS(1504), + [anon_sym_bool] = ACTIONS(1504), + [anon_sym_str] = ACTIONS(1504), + [anon_sym_char] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_fn] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_impl] = ACTIONS(1504), + [anon_sym_let] = ACTIONS(1504), + [anon_sym_loop] = ACTIONS(1504), + [anon_sym_match] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1504), + [anon_sym_pub] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_trait] = ACTIONS(1504), + [anon_sym_type] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_unsafe] = ACTIONS(1504), + [anon_sym_use] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1502), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_DOT_DOT] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_yield] = ACTIONS(1504), + [anon_sym_move] = ACTIONS(1504), + [sym_integer_literal] = ACTIONS(1502), + [aux_sym_string_literal_token1] = ACTIONS(1502), + [sym_char_literal] = ACTIONS(1502), + [anon_sym_true] = ACTIONS(1504), + [anon_sym_false] = ACTIONS(1504), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1504), + [sym_super] = ACTIONS(1504), + [sym_crate] = ACTIONS(1504), + [sym_metavariable] = ACTIONS(1502), + [sym_raw_string_literal] = ACTIONS(1502), + [sym_float_literal] = ACTIONS(1502), [sym_block_comment] = ACTIONS(3), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_macro_rules_BANG] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_u8] = ACTIONS(1486), - [anon_sym_i8] = ACTIONS(1486), - [anon_sym_u16] = ACTIONS(1486), - [anon_sym_i16] = ACTIONS(1486), - [anon_sym_u32] = ACTIONS(1486), - [anon_sym_i32] = ACTIONS(1486), - [anon_sym_u64] = ACTIONS(1486), - [anon_sym_i64] = ACTIONS(1486), - [anon_sym_u128] = ACTIONS(1486), - [anon_sym_i128] = ACTIONS(1486), - [anon_sym_isize] = ACTIONS(1486), - [anon_sym_usize] = ACTIONS(1486), - [anon_sym_f32] = ACTIONS(1486), - [anon_sym_f64] = ACTIONS(1486), - [anon_sym_bool] = ACTIONS(1486), - [anon_sym_str] = ACTIONS(1486), - [anon_sym_char] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_async] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [anon_sym_fn] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_impl] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1486), - [anon_sym_match] = ACTIONS(1486), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_pub] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_trait] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1486), - [anon_sym_unsafe] = ACTIONS(1486), - [anon_sym_use] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_POUND] = ACTIONS(1484), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_yield] = ACTIONS(1486), - [anon_sym_move] = ACTIONS(1486), - [sym_integer_literal] = ACTIONS(1484), - [aux_sym_string_literal_token1] = ACTIONS(1484), - [sym_char_literal] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1486), - [sym_super] = ACTIONS(1486), - [sym_crate] = ACTIONS(1486), - [sym_metavariable] = ACTIONS(1484), - [sym_raw_string_literal] = ACTIONS(1484), - [sym_float_literal] = ACTIONS(1484), + [ts_builtin_sym_end] = ACTIONS(1506), + [sym_identifier] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_macro_rules_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_u8] = ACTIONS(1508), + [anon_sym_i8] = ACTIONS(1508), + [anon_sym_u16] = ACTIONS(1508), + [anon_sym_i16] = ACTIONS(1508), + [anon_sym_u32] = ACTIONS(1508), + [anon_sym_i32] = ACTIONS(1508), + [anon_sym_u64] = ACTIONS(1508), + [anon_sym_i64] = ACTIONS(1508), + [anon_sym_u128] = ACTIONS(1508), + [anon_sym_i128] = ACTIONS(1508), + [anon_sym_isize] = ACTIONS(1508), + [anon_sym_usize] = ACTIONS(1508), + [anon_sym_f32] = ACTIONS(1508), + [anon_sym_f64] = ACTIONS(1508), + [anon_sym_bool] = ACTIONS(1508), + [anon_sym_str] = ACTIONS(1508), + [anon_sym_char] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_fn] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_impl] = ACTIONS(1508), + [anon_sym_let] = ACTIONS(1508), + [anon_sym_loop] = ACTIONS(1508), + [anon_sym_match] = ACTIONS(1508), + [anon_sym_mod] = ACTIONS(1508), + [anon_sym_pub] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_trait] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_unsafe] = ACTIONS(1508), + [anon_sym_use] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym_LT] = ACTIONS(1506), + [anon_sym_COLON_COLON] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_DOT_DOT] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1506), + [anon_sym_yield] = ACTIONS(1508), + [anon_sym_move] = ACTIONS(1508), + [sym_integer_literal] = ACTIONS(1506), + [aux_sym_string_literal_token1] = ACTIONS(1506), + [sym_char_literal] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1508), + [anon_sym_false] = ACTIONS(1508), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1508), + [sym_super] = ACTIONS(1508), + [sym_crate] = ACTIONS(1508), + [sym_metavariable] = ACTIONS(1506), + [sym_raw_string_literal] = ACTIONS(1506), + [sym_float_literal] = ACTIONS(1506), [sym_block_comment] = ACTIONS(3), }, [348] = { - [ts_builtin_sym_end] = ACTIONS(1488), - [sym_identifier] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_macro_rules_BANG] = ACTIONS(1488), - [anon_sym_LPAREN] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u128] = ACTIONS(1490), - [anon_sym_i128] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_str] = ACTIONS(1490), - [anon_sym_char] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_async] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1490), - [anon_sym_enum] = ACTIONS(1490), - [anon_sym_fn] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_impl] = ACTIONS(1490), - [anon_sym_let] = ACTIONS(1490), - [anon_sym_loop] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1490), - [anon_sym_mod] = ACTIONS(1490), - [anon_sym_pub] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_static] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_trait] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_unsafe] = ACTIONS(1490), - [anon_sym_use] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_POUND] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(1488), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_yield] = ACTIONS(1490), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1488), - [aux_sym_string_literal_token1] = ACTIONS(1488), - [sym_char_literal] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1490), - [sym_super] = ACTIONS(1490), - [sym_crate] = ACTIONS(1490), - [sym_metavariable] = ACTIONS(1488), - [sym_raw_string_literal] = ACTIONS(1488), - [sym_float_literal] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_identifier] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_macro_rules_BANG] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_u8] = ACTIONS(1512), + [anon_sym_i8] = ACTIONS(1512), + [anon_sym_u16] = ACTIONS(1512), + [anon_sym_i16] = ACTIONS(1512), + [anon_sym_u32] = ACTIONS(1512), + [anon_sym_i32] = ACTIONS(1512), + [anon_sym_u64] = ACTIONS(1512), + [anon_sym_i64] = ACTIONS(1512), + [anon_sym_u128] = ACTIONS(1512), + [anon_sym_i128] = ACTIONS(1512), + [anon_sym_isize] = ACTIONS(1512), + [anon_sym_usize] = ACTIONS(1512), + [anon_sym_f32] = ACTIONS(1512), + [anon_sym_f64] = ACTIONS(1512), + [anon_sym_bool] = ACTIONS(1512), + [anon_sym_str] = ACTIONS(1512), + [anon_sym_char] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_fn] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_impl] = ACTIONS(1512), + [anon_sym_let] = ACTIONS(1512), + [anon_sym_loop] = ACTIONS(1512), + [anon_sym_match] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1512), + [anon_sym_pub] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_trait] = ACTIONS(1512), + [anon_sym_type] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_unsafe] = ACTIONS(1512), + [anon_sym_use] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1510), + [anon_sym_COLON_COLON] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), + [anon_sym_move] = ACTIONS(1512), + [sym_integer_literal] = ACTIONS(1510), + [aux_sym_string_literal_token1] = ACTIONS(1510), + [sym_char_literal] = ACTIONS(1510), + [anon_sym_true] = ACTIONS(1512), + [anon_sym_false] = ACTIONS(1512), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1512), + [sym_super] = ACTIONS(1512), + [sym_crate] = ACTIONS(1512), + [sym_metavariable] = ACTIONS(1510), + [sym_raw_string_literal] = ACTIONS(1510), + [sym_float_literal] = ACTIONS(1510), [sym_block_comment] = ACTIONS(3), }, [349] = { - [ts_builtin_sym_end] = ACTIONS(1492), - [sym_identifier] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_macro_rules_BANG] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_u8] = ACTIONS(1494), - [anon_sym_i8] = ACTIONS(1494), - [anon_sym_u16] = ACTIONS(1494), - [anon_sym_i16] = ACTIONS(1494), - [anon_sym_u32] = ACTIONS(1494), - [anon_sym_i32] = ACTIONS(1494), - [anon_sym_u64] = ACTIONS(1494), - [anon_sym_i64] = ACTIONS(1494), - [anon_sym_u128] = ACTIONS(1494), - [anon_sym_i128] = ACTIONS(1494), - [anon_sym_isize] = ACTIONS(1494), - [anon_sym_usize] = ACTIONS(1494), - [anon_sym_f32] = ACTIONS(1494), - [anon_sym_f64] = ACTIONS(1494), - [anon_sym_bool] = ACTIONS(1494), - [anon_sym_str] = ACTIONS(1494), - [anon_sym_char] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_async] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_default] = ACTIONS(1494), - [anon_sym_enum] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_impl] = ACTIONS(1494), - [anon_sym_let] = ACTIONS(1494), - [anon_sym_loop] = ACTIONS(1494), - [anon_sym_match] = ACTIONS(1494), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_pub] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_static] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_trait] = ACTIONS(1494), - [anon_sym_type] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_unsafe] = ACTIONS(1494), - [anon_sym_use] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_COLON_COLON] = ACTIONS(1492), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_move] = ACTIONS(1494), - [sym_integer_literal] = ACTIONS(1492), - [aux_sym_string_literal_token1] = ACTIONS(1492), - [sym_char_literal] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1494), - [sym_super] = ACTIONS(1494), - [sym_crate] = ACTIONS(1494), - [sym_metavariable] = ACTIONS(1492), - [sym_raw_string_literal] = ACTIONS(1492), - [sym_float_literal] = ACTIONS(1492), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_identifier] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_macro_rules_BANG] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_u8] = ACTIONS(1516), + [anon_sym_i8] = ACTIONS(1516), + [anon_sym_u16] = ACTIONS(1516), + [anon_sym_i16] = ACTIONS(1516), + [anon_sym_u32] = ACTIONS(1516), + [anon_sym_i32] = ACTIONS(1516), + [anon_sym_u64] = ACTIONS(1516), + [anon_sym_i64] = ACTIONS(1516), + [anon_sym_u128] = ACTIONS(1516), + [anon_sym_i128] = ACTIONS(1516), + [anon_sym_isize] = ACTIONS(1516), + [anon_sym_usize] = ACTIONS(1516), + [anon_sym_f32] = ACTIONS(1516), + [anon_sym_f64] = ACTIONS(1516), + [anon_sym_bool] = ACTIONS(1516), + [anon_sym_str] = ACTIONS(1516), + [anon_sym_char] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_fn] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_impl] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_loop] = ACTIONS(1516), + [anon_sym_match] = ACTIONS(1516), + [anon_sym_mod] = ACTIONS(1516), + [anon_sym_pub] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_trait] = ACTIONS(1516), + [anon_sym_type] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_unsafe] = ACTIONS(1516), + [anon_sym_use] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1514), + [anon_sym_COLON_COLON] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_DOT_DOT] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_yield] = ACTIONS(1516), + [anon_sym_move] = ACTIONS(1516), + [sym_integer_literal] = ACTIONS(1514), + [aux_sym_string_literal_token1] = ACTIONS(1514), + [sym_char_literal] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = ACTIONS(1516), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1516), + [sym_super] = ACTIONS(1516), + [sym_crate] = ACTIONS(1516), + [sym_metavariable] = ACTIONS(1514), + [sym_raw_string_literal] = ACTIONS(1514), + [sym_float_literal] = ACTIONS(1514), [sym_block_comment] = ACTIONS(3), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(1496), - [sym_identifier] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_macro_rules_BANG] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1496), - [anon_sym_u8] = ACTIONS(1498), - [anon_sym_i8] = ACTIONS(1498), - [anon_sym_u16] = ACTIONS(1498), - [anon_sym_i16] = ACTIONS(1498), - [anon_sym_u32] = ACTIONS(1498), - [anon_sym_i32] = ACTIONS(1498), - [anon_sym_u64] = ACTIONS(1498), - [anon_sym_i64] = ACTIONS(1498), - [anon_sym_u128] = ACTIONS(1498), - [anon_sym_i128] = ACTIONS(1498), - [anon_sym_isize] = ACTIONS(1498), - [anon_sym_usize] = ACTIONS(1498), - [anon_sym_f32] = ACTIONS(1498), - [anon_sym_f64] = ACTIONS(1498), - [anon_sym_bool] = ACTIONS(1498), - [anon_sym_str] = ACTIONS(1498), - [anon_sym_char] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_async] = ACTIONS(1498), - [anon_sym_break] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [anon_sym_continue] = ACTIONS(1498), - [anon_sym_default] = ACTIONS(1498), - [anon_sym_enum] = ACTIONS(1498), - [anon_sym_fn] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1498), - [anon_sym_impl] = ACTIONS(1498), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_loop] = ACTIONS(1498), - [anon_sym_match] = ACTIONS(1498), - [anon_sym_mod] = ACTIONS(1498), - [anon_sym_pub] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1498), - [anon_sym_trait] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1498), - [anon_sym_unsafe] = ACTIONS(1498), - [anon_sym_use] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1496), - [anon_sym_yield] = ACTIONS(1498), - [anon_sym_move] = ACTIONS(1498), - [sym_integer_literal] = ACTIONS(1496), - [aux_sym_string_literal_token1] = ACTIONS(1496), - [sym_char_literal] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1498), - [anon_sym_false] = ACTIONS(1498), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1498), - [sym_super] = ACTIONS(1498), - [sym_crate] = ACTIONS(1498), - [sym_metavariable] = ACTIONS(1496), - [sym_raw_string_literal] = ACTIONS(1496), - [sym_float_literal] = ACTIONS(1496), + [ts_builtin_sym_end] = ACTIONS(1518), + [sym_identifier] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_macro_rules_BANG] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_u8] = ACTIONS(1520), + [anon_sym_i8] = ACTIONS(1520), + [anon_sym_u16] = ACTIONS(1520), + [anon_sym_i16] = ACTIONS(1520), + [anon_sym_u32] = ACTIONS(1520), + [anon_sym_i32] = ACTIONS(1520), + [anon_sym_u64] = ACTIONS(1520), + [anon_sym_i64] = ACTIONS(1520), + [anon_sym_u128] = ACTIONS(1520), + [anon_sym_i128] = ACTIONS(1520), + [anon_sym_isize] = ACTIONS(1520), + [anon_sym_usize] = ACTIONS(1520), + [anon_sym_f32] = ACTIONS(1520), + [anon_sym_f64] = ACTIONS(1520), + [anon_sym_bool] = ACTIONS(1520), + [anon_sym_str] = ACTIONS(1520), + [anon_sym_char] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_async] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_fn] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_impl] = ACTIONS(1520), + [anon_sym_let] = ACTIONS(1520), + [anon_sym_loop] = ACTIONS(1520), + [anon_sym_match] = ACTIONS(1520), + [anon_sym_mod] = ACTIONS(1520), + [anon_sym_pub] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_trait] = ACTIONS(1520), + [anon_sym_type] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_unsafe] = ACTIONS(1520), + [anon_sym_use] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_COLON_COLON] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_yield] = ACTIONS(1520), + [anon_sym_move] = ACTIONS(1520), + [sym_integer_literal] = ACTIONS(1518), + [aux_sym_string_literal_token1] = ACTIONS(1518), + [sym_char_literal] = ACTIONS(1518), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1520), + [sym_super] = ACTIONS(1520), + [sym_crate] = ACTIONS(1520), + [sym_metavariable] = ACTIONS(1518), + [sym_raw_string_literal] = ACTIONS(1518), + [sym_float_literal] = ACTIONS(1518), [sym_block_comment] = ACTIONS(3), }, [351] = { - [ts_builtin_sym_end] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_macro_rules_BANG] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1500), - [anon_sym_u8] = ACTIONS(1502), - [anon_sym_i8] = ACTIONS(1502), - [anon_sym_u16] = ACTIONS(1502), - [anon_sym_i16] = ACTIONS(1502), - [anon_sym_u32] = ACTIONS(1502), - [anon_sym_i32] = ACTIONS(1502), - [anon_sym_u64] = ACTIONS(1502), - [anon_sym_i64] = ACTIONS(1502), - [anon_sym_u128] = ACTIONS(1502), - [anon_sym_i128] = ACTIONS(1502), - [anon_sym_isize] = ACTIONS(1502), - [anon_sym_usize] = ACTIONS(1502), - [anon_sym_f32] = ACTIONS(1502), - [anon_sym_f64] = ACTIONS(1502), - [anon_sym_bool] = ACTIONS(1502), - [anon_sym_str] = ACTIONS(1502), - [anon_sym_char] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_impl] = ACTIONS(1502), - [anon_sym_let] = ACTIONS(1502), - [anon_sym_loop] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_mod] = ACTIONS(1502), - [anon_sym_pub] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_trait] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_unsafe] = ACTIONS(1502), - [anon_sym_use] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_POUND] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_COLON_COLON] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_yield] = ACTIONS(1502), - [anon_sym_move] = ACTIONS(1502), - [sym_integer_literal] = ACTIONS(1500), - [aux_sym_string_literal_token1] = ACTIONS(1500), - [sym_char_literal] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1502), - [anon_sym_false] = ACTIONS(1502), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1502), - [sym_super] = ACTIONS(1502), - [sym_crate] = ACTIONS(1502), - [sym_metavariable] = ACTIONS(1500), - [sym_raw_string_literal] = ACTIONS(1500), - [sym_float_literal] = ACTIONS(1500), + [ts_builtin_sym_end] = ACTIONS(1522), + [sym_identifier] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym_macro_rules_BANG] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u128] = ACTIONS(1524), + [anon_sym_i128] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_str] = ACTIONS(1524), + [anon_sym_char] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_async] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_fn] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_impl] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1524), + [anon_sym_loop] = ACTIONS(1524), + [anon_sym_match] = ACTIONS(1524), + [anon_sym_mod] = ACTIONS(1524), + [anon_sym_pub] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_trait] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_unsafe] = ACTIONS(1524), + [anon_sym_use] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1522), + [anon_sym_COLON_COLON] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_DOT_DOT] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1522), + [anon_sym_yield] = ACTIONS(1524), + [anon_sym_move] = ACTIONS(1524), + [sym_integer_literal] = ACTIONS(1522), + [aux_sym_string_literal_token1] = ACTIONS(1522), + [sym_char_literal] = ACTIONS(1522), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1524), + [sym_super] = ACTIONS(1524), + [sym_crate] = ACTIONS(1524), + [sym_metavariable] = ACTIONS(1522), + [sym_raw_string_literal] = ACTIONS(1522), + [sym_float_literal] = ACTIONS(1522), [sym_block_comment] = ACTIONS(3), }, [352] = { - [ts_builtin_sym_end] = ACTIONS(1504), - [sym_identifier] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_macro_rules_BANG] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_u8] = ACTIONS(1506), - [anon_sym_i8] = ACTIONS(1506), - [anon_sym_u16] = ACTIONS(1506), - [anon_sym_i16] = ACTIONS(1506), - [anon_sym_u32] = ACTIONS(1506), - [anon_sym_i32] = ACTIONS(1506), - [anon_sym_u64] = ACTIONS(1506), - [anon_sym_i64] = ACTIONS(1506), - [anon_sym_u128] = ACTIONS(1506), - [anon_sym_i128] = ACTIONS(1506), - [anon_sym_isize] = ACTIONS(1506), - [anon_sym_usize] = ACTIONS(1506), - [anon_sym_f32] = ACTIONS(1506), - [anon_sym_f64] = ACTIONS(1506), - [anon_sym_bool] = ACTIONS(1506), - [anon_sym_str] = ACTIONS(1506), - [anon_sym_char] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_async] = ACTIONS(1506), - [anon_sym_break] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1506), - [anon_sym_continue] = ACTIONS(1506), - [anon_sym_default] = ACTIONS(1506), - [anon_sym_enum] = ACTIONS(1506), - [anon_sym_fn] = ACTIONS(1506), - [anon_sym_for] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1506), - [anon_sym_impl] = ACTIONS(1506), - [anon_sym_let] = ACTIONS(1506), - [anon_sym_loop] = ACTIONS(1506), - [anon_sym_match] = ACTIONS(1506), - [anon_sym_mod] = ACTIONS(1506), - [anon_sym_pub] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1506), - [anon_sym_static] = ACTIONS(1506), - [anon_sym_struct] = ACTIONS(1506), - [anon_sym_trait] = ACTIONS(1506), - [anon_sym_type] = ACTIONS(1506), - [anon_sym_union] = ACTIONS(1506), - [anon_sym_unsafe] = ACTIONS(1506), - [anon_sym_use] = ACTIONS(1506), - [anon_sym_while] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1504), - [anon_sym_COLON_COLON] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_DOT_DOT] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_yield] = ACTIONS(1506), - [anon_sym_move] = ACTIONS(1506), - [sym_integer_literal] = ACTIONS(1504), - [aux_sym_string_literal_token1] = ACTIONS(1504), - [sym_char_literal] = ACTIONS(1504), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1506), - [sym_super] = ACTIONS(1506), - [sym_crate] = ACTIONS(1506), - [sym_metavariable] = ACTIONS(1504), - [sym_raw_string_literal] = ACTIONS(1504), - [sym_float_literal] = ACTIONS(1504), + [ts_builtin_sym_end] = ACTIONS(1526), + [sym_identifier] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym_macro_rules_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_u8] = ACTIONS(1528), + [anon_sym_i8] = ACTIONS(1528), + [anon_sym_u16] = ACTIONS(1528), + [anon_sym_i16] = ACTIONS(1528), + [anon_sym_u32] = ACTIONS(1528), + [anon_sym_i32] = ACTIONS(1528), + [anon_sym_u64] = ACTIONS(1528), + [anon_sym_i64] = ACTIONS(1528), + [anon_sym_u128] = ACTIONS(1528), + [anon_sym_i128] = ACTIONS(1528), + [anon_sym_isize] = ACTIONS(1528), + [anon_sym_usize] = ACTIONS(1528), + [anon_sym_f32] = ACTIONS(1528), + [anon_sym_f64] = ACTIONS(1528), + [anon_sym_bool] = ACTIONS(1528), + [anon_sym_str] = ACTIONS(1528), + [anon_sym_char] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_async] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1528), + [anon_sym_enum] = ACTIONS(1528), + [anon_sym_fn] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_impl] = ACTIONS(1528), + [anon_sym_let] = ACTIONS(1528), + [anon_sym_loop] = ACTIONS(1528), + [anon_sym_match] = ACTIONS(1528), + [anon_sym_mod] = ACTIONS(1528), + [anon_sym_pub] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_struct] = ACTIONS(1528), + [anon_sym_trait] = ACTIONS(1528), + [anon_sym_type] = ACTIONS(1528), + [anon_sym_union] = ACTIONS(1528), + [anon_sym_unsafe] = ACTIONS(1528), + [anon_sym_use] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_COLON_COLON] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_DOT_DOT] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_PIPE] = ACTIONS(1526), + [anon_sym_yield] = ACTIONS(1528), + [anon_sym_move] = ACTIONS(1528), + [sym_integer_literal] = ACTIONS(1526), + [aux_sym_string_literal_token1] = ACTIONS(1526), + [sym_char_literal] = ACTIONS(1526), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1526), + [sym_raw_string_literal] = ACTIONS(1526), + [sym_float_literal] = ACTIONS(1526), [sym_block_comment] = ACTIONS(3), }, [353] = { - [ts_builtin_sym_end] = ACTIONS(1508), - [sym_identifier] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_macro_rules_BANG] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_fn] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_impl] = ACTIONS(1510), - [anon_sym_let] = ACTIONS(1510), - [anon_sym_loop] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_mod] = ACTIONS(1510), - [anon_sym_pub] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_trait] = ACTIONS(1510), - [anon_sym_type] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_unsafe] = ACTIONS(1510), - [anon_sym_use] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_COLON_COLON] = ACTIONS(1508), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_DOT_DOT] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_move] = ACTIONS(1510), - [sym_integer_literal] = ACTIONS(1508), - [aux_sym_string_literal_token1] = ACTIONS(1508), - [sym_char_literal] = ACTIONS(1508), - [anon_sym_true] = ACTIONS(1510), - [anon_sym_false] = ACTIONS(1510), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1510), - [sym_super] = ACTIONS(1510), - [sym_crate] = ACTIONS(1510), - [sym_metavariable] = ACTIONS(1508), - [sym_raw_string_literal] = ACTIONS(1508), - [sym_float_literal] = ACTIONS(1508), + [ts_builtin_sym_end] = ACTIONS(1530), + [sym_identifier] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_macro_rules_BANG] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_async] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_default] = ACTIONS(1532), + [anon_sym_enum] = ACTIONS(1532), + [anon_sym_fn] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_impl] = ACTIONS(1532), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_loop] = ACTIONS(1532), + [anon_sym_match] = ACTIONS(1532), + [anon_sym_mod] = ACTIONS(1532), + [anon_sym_pub] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_struct] = ACTIONS(1532), + [anon_sym_trait] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_union] = ACTIONS(1532), + [anon_sym_unsafe] = ACTIONS(1532), + [anon_sym_use] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym_LT] = ACTIONS(1530), + [anon_sym_COLON_COLON] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_DOT_DOT] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_yield] = ACTIONS(1532), + [anon_sym_move] = ACTIONS(1532), + [sym_integer_literal] = ACTIONS(1530), + [aux_sym_string_literal_token1] = ACTIONS(1530), + [sym_char_literal] = ACTIONS(1530), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(1530), + [sym_float_literal] = ACTIONS(1530), [sym_block_comment] = ACTIONS(3), }, [354] = { - [ts_builtin_sym_end] = ACTIONS(1512), - [sym_identifier] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_macro_rules_BANG] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_u8] = ACTIONS(1514), - [anon_sym_i8] = ACTIONS(1514), - [anon_sym_u16] = ACTIONS(1514), - [anon_sym_i16] = ACTIONS(1514), - [anon_sym_u32] = ACTIONS(1514), - [anon_sym_i32] = ACTIONS(1514), - [anon_sym_u64] = ACTIONS(1514), - [anon_sym_i64] = ACTIONS(1514), - [anon_sym_u128] = ACTIONS(1514), - [anon_sym_i128] = ACTIONS(1514), - [anon_sym_isize] = ACTIONS(1514), - [anon_sym_usize] = ACTIONS(1514), - [anon_sym_f32] = ACTIONS(1514), - [anon_sym_f64] = ACTIONS(1514), - [anon_sym_bool] = ACTIONS(1514), - [anon_sym_str] = ACTIONS(1514), - [anon_sym_char] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_async] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_impl] = ACTIONS(1514), - [anon_sym_let] = ACTIONS(1514), - [anon_sym_loop] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_pub] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_trait] = ACTIONS(1514), - [anon_sym_type] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_unsafe] = ACTIONS(1514), - [anon_sym_use] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_POUND] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_LT] = ACTIONS(1512), - [anon_sym_COLON_COLON] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_DOT_DOT] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_move] = ACTIONS(1514), - [sym_integer_literal] = ACTIONS(1512), - [aux_sym_string_literal_token1] = ACTIONS(1512), - [sym_char_literal] = ACTIONS(1512), - [anon_sym_true] = ACTIONS(1514), - [anon_sym_false] = ACTIONS(1514), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1514), - [sym_super] = ACTIONS(1514), - [sym_crate] = ACTIONS(1514), - [sym_metavariable] = ACTIONS(1512), - [sym_raw_string_literal] = ACTIONS(1512), - [sym_float_literal] = ACTIONS(1512), + [ts_builtin_sym_end] = ACTIONS(1534), + [sym_identifier] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_macro_rules_BANG] = ACTIONS(1534), + [anon_sym_LPAREN] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_u8] = ACTIONS(1536), + [anon_sym_i8] = ACTIONS(1536), + [anon_sym_u16] = ACTIONS(1536), + [anon_sym_i16] = ACTIONS(1536), + [anon_sym_u32] = ACTIONS(1536), + [anon_sym_i32] = ACTIONS(1536), + [anon_sym_u64] = ACTIONS(1536), + [anon_sym_i64] = ACTIONS(1536), + [anon_sym_u128] = ACTIONS(1536), + [anon_sym_i128] = ACTIONS(1536), + [anon_sym_isize] = ACTIONS(1536), + [anon_sym_usize] = ACTIONS(1536), + [anon_sym_f32] = ACTIONS(1536), + [anon_sym_f64] = ACTIONS(1536), + [anon_sym_bool] = ACTIONS(1536), + [anon_sym_str] = ACTIONS(1536), + [anon_sym_char] = ACTIONS(1536), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_async] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_enum] = ACTIONS(1536), + [anon_sym_fn] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_impl] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_loop] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1536), + [anon_sym_mod] = ACTIONS(1536), + [anon_sym_pub] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_static] = ACTIONS(1536), + [anon_sym_struct] = ACTIONS(1536), + [anon_sym_trait] = ACTIONS(1536), + [anon_sym_type] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_unsafe] = ACTIONS(1536), + [anon_sym_use] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym_LT] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_DOT_DOT] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_yield] = ACTIONS(1536), + [anon_sym_move] = ACTIONS(1536), + [sym_integer_literal] = ACTIONS(1534), + [aux_sym_string_literal_token1] = ACTIONS(1534), + [sym_char_literal] = ACTIONS(1534), + [anon_sym_true] = ACTIONS(1536), + [anon_sym_false] = ACTIONS(1536), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1534), + [sym_raw_string_literal] = ACTIONS(1534), + [sym_float_literal] = ACTIONS(1534), [sym_block_comment] = ACTIONS(3), }, [355] = { - [ts_builtin_sym_end] = ACTIONS(1516), - [sym_identifier] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_macro_rules_BANG] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_impl] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_mod] = ACTIONS(1518), - [anon_sym_pub] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_trait] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_unsafe] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_DOT_DOT] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_yield] = ACTIONS(1518), - [anon_sym_move] = ACTIONS(1518), - [sym_integer_literal] = ACTIONS(1516), - [aux_sym_string_literal_token1] = ACTIONS(1516), - [sym_char_literal] = ACTIONS(1516), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1518), - [sym_super] = ACTIONS(1518), - [sym_crate] = ACTIONS(1518), - [sym_metavariable] = ACTIONS(1516), - [sym_raw_string_literal] = ACTIONS(1516), - [sym_float_literal] = ACTIONS(1516), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_macro_rules_BANG] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_u8] = ACTIONS(1540), + [anon_sym_i8] = ACTIONS(1540), + [anon_sym_u16] = ACTIONS(1540), + [anon_sym_i16] = ACTIONS(1540), + [anon_sym_u32] = ACTIONS(1540), + [anon_sym_i32] = ACTIONS(1540), + [anon_sym_u64] = ACTIONS(1540), + [anon_sym_i64] = ACTIONS(1540), + [anon_sym_u128] = ACTIONS(1540), + [anon_sym_i128] = ACTIONS(1540), + [anon_sym_isize] = ACTIONS(1540), + [anon_sym_usize] = ACTIONS(1540), + [anon_sym_f32] = ACTIONS(1540), + [anon_sym_f64] = ACTIONS(1540), + [anon_sym_bool] = ACTIONS(1540), + [anon_sym_str] = ACTIONS(1540), + [anon_sym_char] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_async] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_enum] = ACTIONS(1540), + [anon_sym_fn] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_impl] = ACTIONS(1540), + [anon_sym_let] = ACTIONS(1540), + [anon_sym_loop] = ACTIONS(1540), + [anon_sym_match] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_pub] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1540), + [anon_sym_struct] = ACTIONS(1540), + [anon_sym_trait] = ACTIONS(1540), + [anon_sym_type] = ACTIONS(1540), + [anon_sym_union] = ACTIONS(1540), + [anon_sym_unsafe] = ACTIONS(1540), + [anon_sym_use] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1538), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_yield] = ACTIONS(1540), + [anon_sym_move] = ACTIONS(1540), + [sym_integer_literal] = ACTIONS(1538), + [aux_sym_string_literal_token1] = ACTIONS(1538), + [sym_char_literal] = ACTIONS(1538), + [anon_sym_true] = ACTIONS(1540), + [anon_sym_false] = ACTIONS(1540), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1540), + [sym_super] = ACTIONS(1540), + [sym_crate] = ACTIONS(1540), + [sym_metavariable] = ACTIONS(1538), + [sym_raw_string_literal] = ACTIONS(1538), + [sym_float_literal] = ACTIONS(1538), [sym_block_comment] = ACTIONS(3), }, [356] = { - [ts_builtin_sym_end] = ACTIONS(1520), - [sym_identifier] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_macro_rules_BANG] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_u8] = ACTIONS(1522), - [anon_sym_i8] = ACTIONS(1522), - [anon_sym_u16] = ACTIONS(1522), - [anon_sym_i16] = ACTIONS(1522), - [anon_sym_u32] = ACTIONS(1522), - [anon_sym_i32] = ACTIONS(1522), - [anon_sym_u64] = ACTIONS(1522), - [anon_sym_i64] = ACTIONS(1522), - [anon_sym_u128] = ACTIONS(1522), - [anon_sym_i128] = ACTIONS(1522), - [anon_sym_isize] = ACTIONS(1522), - [anon_sym_usize] = ACTIONS(1522), - [anon_sym_f32] = ACTIONS(1522), - [anon_sym_f64] = ACTIONS(1522), - [anon_sym_bool] = ACTIONS(1522), - [anon_sym_str] = ACTIONS(1522), - [anon_sym_char] = ACTIONS(1522), - [anon_sym_SQUOTE] = ACTIONS(1522), - [anon_sym_async] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_impl] = ACTIONS(1522), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_loop] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_mod] = ACTIONS(1522), - [anon_sym_pub] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_static] = ACTIONS(1522), - [anon_sym_struct] = ACTIONS(1522), - [anon_sym_trait] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_unsafe] = ACTIONS(1522), - [anon_sym_use] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_extern] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_yield] = ACTIONS(1522), - [anon_sym_move] = ACTIONS(1522), - [sym_integer_literal] = ACTIONS(1520), - [aux_sym_string_literal_token1] = ACTIONS(1520), - [sym_char_literal] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1522), - [anon_sym_false] = ACTIONS(1522), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1520), - [sym_raw_string_literal] = ACTIONS(1520), - [sym_float_literal] = ACTIONS(1520), - [sym_block_comment] = ACTIONS(3), - }, - [357] = { - [ts_builtin_sym_end] = ACTIONS(1524), - [sym_identifier] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_macro_rules_BANG] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_SQUOTE] = ACTIONS(1526), - [anon_sym_async] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_default] = ACTIONS(1526), - [anon_sym_enum] = ACTIONS(1526), - [anon_sym_fn] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_impl] = ACTIONS(1526), - [anon_sym_let] = ACTIONS(1526), - [anon_sym_loop] = ACTIONS(1526), - [anon_sym_match] = ACTIONS(1526), - [anon_sym_mod] = ACTIONS(1526), - [anon_sym_pub] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_static] = ACTIONS(1526), - [anon_sym_struct] = ACTIONS(1526), - [anon_sym_trait] = ACTIONS(1526), - [anon_sym_type] = ACTIONS(1526), - [anon_sym_union] = ACTIONS(1526), - [anon_sym_unsafe] = ACTIONS(1526), - [anon_sym_use] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1524), - [anon_sym_extern] = ACTIONS(1526), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_COLON_COLON] = ACTIONS(1524), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_DOT_DOT] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_yield] = ACTIONS(1526), - [anon_sym_move] = ACTIONS(1526), - [sym_integer_literal] = ACTIONS(1524), - [aux_sym_string_literal_token1] = ACTIONS(1524), - [sym_char_literal] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1526), - [anon_sym_false] = ACTIONS(1526), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1526), - [sym_super] = ACTIONS(1526), - [sym_crate] = ACTIONS(1526), - [sym_metavariable] = ACTIONS(1524), - [sym_raw_string_literal] = ACTIONS(1524), - [sym_float_literal] = ACTIONS(1524), - [sym_block_comment] = ACTIONS(3), - }, - [358] = { - [ts_builtin_sym_end] = ACTIONS(1528), - [sym_identifier] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_macro_rules_BANG] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_u8] = ACTIONS(1530), - [anon_sym_i8] = ACTIONS(1530), - [anon_sym_u16] = ACTIONS(1530), - [anon_sym_i16] = ACTIONS(1530), - [anon_sym_u32] = ACTIONS(1530), - [anon_sym_i32] = ACTIONS(1530), - [anon_sym_u64] = ACTIONS(1530), - [anon_sym_i64] = ACTIONS(1530), - [anon_sym_u128] = ACTIONS(1530), - [anon_sym_i128] = ACTIONS(1530), - [anon_sym_isize] = ACTIONS(1530), - [anon_sym_usize] = ACTIONS(1530), - [anon_sym_f32] = ACTIONS(1530), - [anon_sym_f64] = ACTIONS(1530), - [anon_sym_bool] = ACTIONS(1530), - [anon_sym_str] = ACTIONS(1530), - [anon_sym_char] = ACTIONS(1530), - [anon_sym_SQUOTE] = ACTIONS(1530), - [anon_sym_async] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_enum] = ACTIONS(1530), - [anon_sym_fn] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_impl] = ACTIONS(1530), - [anon_sym_let] = ACTIONS(1530), - [anon_sym_loop] = ACTIONS(1530), - [anon_sym_match] = ACTIONS(1530), - [anon_sym_mod] = ACTIONS(1530), - [anon_sym_pub] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_struct] = ACTIONS(1530), - [anon_sym_trait] = ACTIONS(1530), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_unsafe] = ACTIONS(1530), - [anon_sym_use] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_LT] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_DOT_DOT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_move] = ACTIONS(1530), - [sym_integer_literal] = ACTIONS(1528), - [aux_sym_string_literal_token1] = ACTIONS(1528), - [sym_char_literal] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1530), - [sym_super] = ACTIONS(1530), - [sym_crate] = ACTIONS(1530), - [sym_metavariable] = ACTIONS(1528), - [sym_raw_string_literal] = ACTIONS(1528), - [sym_float_literal] = ACTIONS(1528), - [sym_block_comment] = ACTIONS(3), - }, - [359] = { - [ts_builtin_sym_end] = ACTIONS(1532), - [sym_identifier] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1532), - [anon_sym_macro_rules_BANG] = ACTIONS(1532), - [anon_sym_LPAREN] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_RBRACE] = ACTIONS(1532), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1532), - [anon_sym_u8] = ACTIONS(1534), - [anon_sym_i8] = ACTIONS(1534), - [anon_sym_u16] = ACTIONS(1534), - [anon_sym_i16] = ACTIONS(1534), - [anon_sym_u32] = ACTIONS(1534), - [anon_sym_i32] = ACTIONS(1534), - [anon_sym_u64] = ACTIONS(1534), - [anon_sym_i64] = ACTIONS(1534), - [anon_sym_u128] = ACTIONS(1534), - [anon_sym_i128] = ACTIONS(1534), - [anon_sym_isize] = ACTIONS(1534), - [anon_sym_usize] = ACTIONS(1534), - [anon_sym_f32] = ACTIONS(1534), - [anon_sym_f64] = ACTIONS(1534), - [anon_sym_bool] = ACTIONS(1534), - [anon_sym_str] = ACTIONS(1534), - [anon_sym_char] = ACTIONS(1534), - [anon_sym_SQUOTE] = ACTIONS(1534), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1534), - [anon_sym_enum] = ACTIONS(1534), - [anon_sym_fn] = ACTIONS(1534), - [anon_sym_for] = ACTIONS(1534), - [anon_sym_if] = ACTIONS(1534), - [anon_sym_impl] = ACTIONS(1534), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_loop] = ACTIONS(1534), - [anon_sym_match] = ACTIONS(1534), - [anon_sym_mod] = ACTIONS(1534), - [anon_sym_pub] = ACTIONS(1534), - [anon_sym_return] = ACTIONS(1534), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_struct] = ACTIONS(1534), - [anon_sym_trait] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_union] = ACTIONS(1534), - [anon_sym_unsafe] = ACTIONS(1534), - [anon_sym_use] = ACTIONS(1534), - [anon_sym_while] = ACTIONS(1534), - [anon_sym_POUND] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1532), - [anon_sym_extern] = ACTIONS(1534), - [anon_sym_LT] = ACTIONS(1532), - [anon_sym_COLON_COLON] = ACTIONS(1532), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_DOT_DOT] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(1532), - [anon_sym_yield] = ACTIONS(1534), - [anon_sym_move] = ACTIONS(1534), - [sym_integer_literal] = ACTIONS(1532), - [aux_sym_string_literal_token1] = ACTIONS(1532), - [sym_char_literal] = ACTIONS(1532), - [anon_sym_true] = ACTIONS(1534), - [anon_sym_false] = ACTIONS(1534), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1534), - [sym_super] = ACTIONS(1534), - [sym_crate] = ACTIONS(1534), - [sym_metavariable] = ACTIONS(1532), - [sym_raw_string_literal] = ACTIONS(1532), - [sym_float_literal] = ACTIONS(1532), - [sym_block_comment] = ACTIONS(3), - }, - [360] = { - [ts_builtin_sym_end] = ACTIONS(1536), - [sym_identifier] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1536), - [anon_sym_macro_rules_BANG] = ACTIONS(1536), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1536), - [anon_sym_STAR] = ACTIONS(1536), - [anon_sym_u8] = ACTIONS(1538), - [anon_sym_i8] = ACTIONS(1538), - [anon_sym_u16] = ACTIONS(1538), - [anon_sym_i16] = ACTIONS(1538), - [anon_sym_u32] = ACTIONS(1538), - [anon_sym_i32] = ACTIONS(1538), - [anon_sym_u64] = ACTIONS(1538), - [anon_sym_i64] = ACTIONS(1538), - [anon_sym_u128] = ACTIONS(1538), - [anon_sym_i128] = ACTIONS(1538), - [anon_sym_isize] = ACTIONS(1538), - [anon_sym_usize] = ACTIONS(1538), - [anon_sym_f32] = ACTIONS(1538), - [anon_sym_f64] = ACTIONS(1538), - [anon_sym_bool] = ACTIONS(1538), - [anon_sym_str] = ACTIONS(1538), - [anon_sym_char] = ACTIONS(1538), - [anon_sym_SQUOTE] = ACTIONS(1538), - [anon_sym_async] = ACTIONS(1538), - [anon_sym_break] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1538), - [anon_sym_enum] = ACTIONS(1538), - [anon_sym_fn] = ACTIONS(1538), - [anon_sym_for] = ACTIONS(1538), - [anon_sym_if] = ACTIONS(1538), - [anon_sym_impl] = ACTIONS(1538), - [anon_sym_let] = ACTIONS(1538), - [anon_sym_loop] = ACTIONS(1538), - [anon_sym_match] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1538), - [anon_sym_pub] = ACTIONS(1538), - [anon_sym_return] = ACTIONS(1538), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_struct] = ACTIONS(1538), - [anon_sym_trait] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_union] = ACTIONS(1538), - [anon_sym_unsafe] = ACTIONS(1538), - [anon_sym_use] = ACTIONS(1538), - [anon_sym_while] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(1538), - [anon_sym_LT] = ACTIONS(1536), - [anon_sym_COLON_COLON] = ACTIONS(1536), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_PIPE] = ACTIONS(1536), - [anon_sym_yield] = ACTIONS(1538), - [anon_sym_move] = ACTIONS(1538), - [sym_integer_literal] = ACTIONS(1536), - [aux_sym_string_literal_token1] = ACTIONS(1536), - [sym_char_literal] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1538), - [sym_super] = ACTIONS(1538), - [sym_crate] = ACTIONS(1538), - [sym_metavariable] = ACTIONS(1536), - [sym_raw_string_literal] = ACTIONS(1536), - [sym_float_literal] = ACTIONS(1536), - [sym_block_comment] = ACTIONS(3), - }, - [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(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), - }, - [362] = { [ts_builtin_sym_end] = ACTIONS(1542), [sym_identifier] = ACTIONS(1544), [anon_sym_SEMI] = ACTIONS(1542), @@ -49951,7 +49170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1542), [sym_block_comment] = ACTIONS(3), }, - [363] = { + [357] = { [ts_builtin_sym_end] = ACTIONS(1546), [sym_identifier] = ACTIONS(1548), [anon_sym_SEMI] = ACTIONS(1546), @@ -50028,7 +49247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1546), [sym_block_comment] = ACTIONS(3), }, - [364] = { + [358] = { [ts_builtin_sym_end] = ACTIONS(1550), [sym_identifier] = ACTIONS(1552), [anon_sym_SEMI] = ACTIONS(1550), @@ -50105,7 +49324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1550), [sym_block_comment] = ACTIONS(3), }, - [365] = { + [359] = { [ts_builtin_sym_end] = ACTIONS(1554), [sym_identifier] = ACTIONS(1556), [anon_sym_SEMI] = ACTIONS(1554), @@ -50182,7 +49401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1554), [sym_block_comment] = ACTIONS(3), }, - [366] = { + [360] = { [ts_builtin_sym_end] = ACTIONS(1558), [sym_identifier] = ACTIONS(1560), [anon_sym_SEMI] = ACTIONS(1558), @@ -50259,6244 +49478,5936 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1558), [sym_block_comment] = ACTIONS(3), }, - [367] = { - [ts_builtin_sym_end] = ACTIONS(1562), - [sym_identifier] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_macro_rules_BANG] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1562), + [361] = { + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_macro_invocation] = STATE(2506), + [sym_scoped_identifier] = STATE(1571), + [sym_scoped_type_identifier] = STATE(1936), + [sym_match_arm] = STATE(488), + [sym_last_match_arm] = STATE(2487), + [sym_match_pattern] = STATE(2451), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1924), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(488), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), [anon_sym_RBRACE] = ACTIONS(1562), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_u8] = ACTIONS(1564), - [anon_sym_i8] = ACTIONS(1564), - [anon_sym_u16] = ACTIONS(1564), - [anon_sym_i16] = ACTIONS(1564), - [anon_sym_u32] = ACTIONS(1564), - [anon_sym_i32] = ACTIONS(1564), - [anon_sym_u64] = ACTIONS(1564), - [anon_sym_i64] = ACTIONS(1564), - [anon_sym_u128] = ACTIONS(1564), - [anon_sym_i128] = ACTIONS(1564), - [anon_sym_isize] = ACTIONS(1564), - [anon_sym_usize] = ACTIONS(1564), - [anon_sym_f32] = ACTIONS(1564), - [anon_sym_f64] = ACTIONS(1564), - [anon_sym_bool] = ACTIONS(1564), - [anon_sym_str] = ACTIONS(1564), - [anon_sym_char] = ACTIONS(1564), - [anon_sym_SQUOTE] = ACTIONS(1564), - [anon_sym_async] = ACTIONS(1564), - [anon_sym_break] = ACTIONS(1564), - [anon_sym_const] = ACTIONS(1564), - [anon_sym_continue] = ACTIONS(1564), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_enum] = ACTIONS(1564), - [anon_sym_fn] = ACTIONS(1564), - [anon_sym_for] = ACTIONS(1564), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_impl] = ACTIONS(1564), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_loop] = ACTIONS(1564), - [anon_sym_match] = ACTIONS(1564), - [anon_sym_mod] = ACTIONS(1564), - [anon_sym_pub] = ACTIONS(1564), - [anon_sym_return] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_struct] = ACTIONS(1564), - [anon_sym_trait] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_unsafe] = ACTIONS(1564), - [anon_sym_use] = ACTIONS(1564), - [anon_sym_while] = ACTIONS(1564), - [anon_sym_POUND] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1562), - [anon_sym_extern] = ACTIONS(1564), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_COLON_COLON] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(1562), - [anon_sym_DASH] = ACTIONS(1562), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_yield] = ACTIONS(1564), - [anon_sym_move] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [aux_sym_string_literal_token1] = ACTIONS(1562), - [sym_char_literal] = ACTIONS(1562), - [anon_sym_true] = ACTIONS(1564), - [anon_sym_false] = ACTIONS(1564), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1564), - [sym_super] = ACTIONS(1564), - [sym_crate] = ACTIONS(1564), - [sym_metavariable] = ACTIONS(1562), - [sym_raw_string_literal] = ACTIONS(1562), - [sym_float_literal] = ACTIONS(1562), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [362] = { + [ts_builtin_sym_end] = ACTIONS(1564), + [sym_identifier] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_macro_rules_BANG] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [anon_sym_async] = ACTIONS(1566), + [anon_sym_break] = ACTIONS(1566), + [anon_sym_const] = ACTIONS(1566), + [anon_sym_continue] = ACTIONS(1566), + [anon_sym_default] = ACTIONS(1566), + [anon_sym_enum] = ACTIONS(1566), + [anon_sym_fn] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1566), + [anon_sym_if] = ACTIONS(1566), + [anon_sym_impl] = ACTIONS(1566), + [anon_sym_let] = ACTIONS(1566), + [anon_sym_loop] = ACTIONS(1566), + [anon_sym_match] = ACTIONS(1566), + [anon_sym_mod] = ACTIONS(1566), + [anon_sym_pub] = ACTIONS(1566), + [anon_sym_return] = ACTIONS(1566), + [anon_sym_static] = ACTIONS(1566), + [anon_sym_struct] = ACTIONS(1566), + [anon_sym_trait] = ACTIONS(1566), + [anon_sym_type] = ACTIONS(1566), + [anon_sym_union] = ACTIONS(1566), + [anon_sym_unsafe] = ACTIONS(1566), + [anon_sym_use] = ACTIONS(1566), + [anon_sym_while] = ACTIONS(1566), + [anon_sym_POUND] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_extern] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_COLON_COLON] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_DOT_DOT] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_yield] = ACTIONS(1566), + [anon_sym_move] = ACTIONS(1566), + [sym_integer_literal] = ACTIONS(1564), + [aux_sym_string_literal_token1] = ACTIONS(1564), + [sym_char_literal] = ACTIONS(1564), + [anon_sym_true] = ACTIONS(1566), + [anon_sym_false] = ACTIONS(1566), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1566), + [sym_super] = ACTIONS(1566), + [sym_crate] = ACTIONS(1566), + [sym_metavariable] = ACTIONS(1564), + [sym_raw_string_literal] = ACTIONS(1564), + [sym_float_literal] = ACTIONS(1564), + [sym_block_comment] = ACTIONS(3), + }, + [363] = { + [ts_builtin_sym_end] = ACTIONS(1568), + [sym_identifier] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym_macro_rules_BANG] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(1568), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_RBRACE] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1568), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_u8] = ACTIONS(1570), + [anon_sym_i8] = ACTIONS(1570), + [anon_sym_u16] = ACTIONS(1570), + [anon_sym_i16] = ACTIONS(1570), + [anon_sym_u32] = ACTIONS(1570), + [anon_sym_i32] = ACTIONS(1570), + [anon_sym_u64] = ACTIONS(1570), + [anon_sym_i64] = ACTIONS(1570), + [anon_sym_u128] = ACTIONS(1570), + [anon_sym_i128] = ACTIONS(1570), + [anon_sym_isize] = ACTIONS(1570), + [anon_sym_usize] = ACTIONS(1570), + [anon_sym_f32] = ACTIONS(1570), + [anon_sym_f64] = ACTIONS(1570), + [anon_sym_bool] = ACTIONS(1570), + [anon_sym_str] = ACTIONS(1570), + [anon_sym_char] = ACTIONS(1570), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_async] = ACTIONS(1570), + [anon_sym_break] = ACTIONS(1570), + [anon_sym_const] = ACTIONS(1570), + [anon_sym_continue] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1570), + [anon_sym_enum] = ACTIONS(1570), + [anon_sym_fn] = ACTIONS(1570), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_impl] = ACTIONS(1570), + [anon_sym_let] = ACTIONS(1570), + [anon_sym_loop] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1570), + [anon_sym_mod] = ACTIONS(1570), + [anon_sym_pub] = ACTIONS(1570), + [anon_sym_return] = ACTIONS(1570), + [anon_sym_static] = ACTIONS(1570), + [anon_sym_struct] = ACTIONS(1570), + [anon_sym_trait] = ACTIONS(1570), + [anon_sym_type] = ACTIONS(1570), + [anon_sym_union] = ACTIONS(1570), + [anon_sym_unsafe] = ACTIONS(1570), + [anon_sym_use] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1570), + [anon_sym_POUND] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_extern] = ACTIONS(1570), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_COLON_COLON] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_move] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1568), + [aux_sym_string_literal_token1] = ACTIONS(1568), + [sym_char_literal] = ACTIONS(1568), + [anon_sym_true] = ACTIONS(1570), + [anon_sym_false] = ACTIONS(1570), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1570), + [sym_super] = ACTIONS(1570), + [sym_crate] = ACTIONS(1570), + [sym_metavariable] = ACTIONS(1568), + [sym_raw_string_literal] = ACTIONS(1568), + [sym_float_literal] = ACTIONS(1568), + [sym_block_comment] = ACTIONS(3), + }, + [364] = { + [ts_builtin_sym_end] = ACTIONS(1572), + [sym_identifier] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_macro_rules_BANG] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_u8] = ACTIONS(1574), + [anon_sym_i8] = ACTIONS(1574), + [anon_sym_u16] = ACTIONS(1574), + [anon_sym_i16] = ACTIONS(1574), + [anon_sym_u32] = ACTIONS(1574), + [anon_sym_i32] = ACTIONS(1574), + [anon_sym_u64] = ACTIONS(1574), + [anon_sym_i64] = ACTIONS(1574), + [anon_sym_u128] = ACTIONS(1574), + [anon_sym_i128] = ACTIONS(1574), + [anon_sym_isize] = ACTIONS(1574), + [anon_sym_usize] = ACTIONS(1574), + [anon_sym_f32] = ACTIONS(1574), + [anon_sym_f64] = ACTIONS(1574), + [anon_sym_bool] = ACTIONS(1574), + [anon_sym_str] = ACTIONS(1574), + [anon_sym_char] = ACTIONS(1574), + [anon_sym_SQUOTE] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1574), + [anon_sym_break] = ACTIONS(1574), + [anon_sym_const] = ACTIONS(1574), + [anon_sym_continue] = ACTIONS(1574), + [anon_sym_default] = ACTIONS(1574), + [anon_sym_enum] = ACTIONS(1574), + [anon_sym_fn] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1574), + [anon_sym_if] = ACTIONS(1574), + [anon_sym_impl] = ACTIONS(1574), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_loop] = ACTIONS(1574), + [anon_sym_match] = ACTIONS(1574), + [anon_sym_mod] = ACTIONS(1574), + [anon_sym_pub] = ACTIONS(1574), + [anon_sym_return] = ACTIONS(1574), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_struct] = ACTIONS(1574), + [anon_sym_trait] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_union] = ACTIONS(1574), + [anon_sym_unsafe] = ACTIONS(1574), + [anon_sym_use] = ACTIONS(1574), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_extern] = ACTIONS(1574), + [anon_sym_LT] = ACTIONS(1572), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_DOT_DOT] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), + [anon_sym_move] = ACTIONS(1574), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1572), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1574), + [anon_sym_false] = ACTIONS(1574), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1574), + [sym_super] = ACTIONS(1574), + [sym_crate] = ACTIONS(1574), + [sym_metavariable] = ACTIONS(1572), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), + [sym_block_comment] = ACTIONS(3), + }, + [365] = { + [ts_builtin_sym_end] = ACTIONS(1576), + [sym_identifier] = ACTIONS(1578), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_macro_rules_BANG] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_u8] = ACTIONS(1578), + [anon_sym_i8] = ACTIONS(1578), + [anon_sym_u16] = ACTIONS(1578), + [anon_sym_i16] = ACTIONS(1578), + [anon_sym_u32] = ACTIONS(1578), + [anon_sym_i32] = ACTIONS(1578), + [anon_sym_u64] = ACTIONS(1578), + [anon_sym_i64] = ACTIONS(1578), + [anon_sym_u128] = ACTIONS(1578), + [anon_sym_i128] = ACTIONS(1578), + [anon_sym_isize] = ACTIONS(1578), + [anon_sym_usize] = ACTIONS(1578), + [anon_sym_f32] = ACTIONS(1578), + [anon_sym_f64] = ACTIONS(1578), + [anon_sym_bool] = ACTIONS(1578), + [anon_sym_str] = ACTIONS(1578), + [anon_sym_char] = ACTIONS(1578), + [anon_sym_SQUOTE] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_break] = ACTIONS(1578), + [anon_sym_const] = ACTIONS(1578), + [anon_sym_continue] = ACTIONS(1578), + [anon_sym_default] = ACTIONS(1578), + [anon_sym_enum] = ACTIONS(1578), + [anon_sym_fn] = ACTIONS(1578), + [anon_sym_for] = ACTIONS(1578), + [anon_sym_if] = ACTIONS(1578), + [anon_sym_impl] = ACTIONS(1578), + [anon_sym_let] = ACTIONS(1578), + [anon_sym_loop] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_mod] = ACTIONS(1578), + [anon_sym_pub] = ACTIONS(1578), + [anon_sym_return] = ACTIONS(1578), + [anon_sym_static] = ACTIONS(1578), + [anon_sym_struct] = ACTIONS(1578), + [anon_sym_trait] = ACTIONS(1578), + [anon_sym_type] = ACTIONS(1578), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1578), + [anon_sym_use] = ACTIONS(1578), + [anon_sym_while] = ACTIONS(1578), + [anon_sym_POUND] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_extern] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1576), + [anon_sym_COLON_COLON] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_DOT_DOT] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), + [anon_sym_move] = ACTIONS(1578), + [sym_integer_literal] = ACTIONS(1576), + [aux_sym_string_literal_token1] = ACTIONS(1576), + [sym_char_literal] = ACTIONS(1576), + [anon_sym_true] = ACTIONS(1578), + [anon_sym_false] = ACTIONS(1578), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1576), + [sym_raw_string_literal] = ACTIONS(1576), + [sym_float_literal] = ACTIONS(1576), + [sym_block_comment] = ACTIONS(3), + }, + [366] = { + [ts_builtin_sym_end] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_macro_rules_BANG] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_u8] = ACTIONS(1582), + [anon_sym_i8] = ACTIONS(1582), + [anon_sym_u16] = ACTIONS(1582), + [anon_sym_i16] = ACTIONS(1582), + [anon_sym_u32] = ACTIONS(1582), + [anon_sym_i32] = ACTIONS(1582), + [anon_sym_u64] = ACTIONS(1582), + [anon_sym_i64] = ACTIONS(1582), + [anon_sym_u128] = ACTIONS(1582), + [anon_sym_i128] = ACTIONS(1582), + [anon_sym_isize] = ACTIONS(1582), + [anon_sym_usize] = ACTIONS(1582), + [anon_sym_f32] = ACTIONS(1582), + [anon_sym_f64] = ACTIONS(1582), + [anon_sym_bool] = ACTIONS(1582), + [anon_sym_str] = ACTIONS(1582), + [anon_sym_char] = ACTIONS(1582), + [anon_sym_SQUOTE] = ACTIONS(1582), + [anon_sym_async] = ACTIONS(1582), + [anon_sym_break] = ACTIONS(1582), + [anon_sym_const] = ACTIONS(1582), + [anon_sym_continue] = ACTIONS(1582), + [anon_sym_default] = ACTIONS(1582), + [anon_sym_enum] = ACTIONS(1582), + [anon_sym_fn] = ACTIONS(1582), + [anon_sym_for] = ACTIONS(1582), + [anon_sym_if] = ACTIONS(1582), + [anon_sym_impl] = ACTIONS(1582), + [anon_sym_let] = ACTIONS(1582), + [anon_sym_loop] = ACTIONS(1582), + [anon_sym_match] = ACTIONS(1582), + [anon_sym_mod] = ACTIONS(1582), + [anon_sym_pub] = ACTIONS(1582), + [anon_sym_return] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1582), + [anon_sym_struct] = ACTIONS(1582), + [anon_sym_trait] = ACTIONS(1582), + [anon_sym_type] = ACTIONS(1582), + [anon_sym_union] = ACTIONS(1582), + [anon_sym_unsafe] = ACTIONS(1582), + [anon_sym_use] = ACTIONS(1582), + [anon_sym_while] = ACTIONS(1582), + [anon_sym_POUND] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_COLON_COLON] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_yield] = ACTIONS(1582), + [anon_sym_move] = ACTIONS(1582), + [sym_integer_literal] = ACTIONS(1580), + [aux_sym_string_literal_token1] = ACTIONS(1580), + [sym_char_literal] = ACTIONS(1580), + [anon_sym_true] = ACTIONS(1582), + [anon_sym_false] = ACTIONS(1582), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1580), + [sym_float_literal] = ACTIONS(1580), + [sym_block_comment] = ACTIONS(3), + }, + [367] = { + [ts_builtin_sym_end] = ACTIONS(1584), + [sym_identifier] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_macro_rules_BANG] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1586), + [anon_sym_i8] = ACTIONS(1586), + [anon_sym_u16] = ACTIONS(1586), + [anon_sym_i16] = ACTIONS(1586), + [anon_sym_u32] = ACTIONS(1586), + [anon_sym_i32] = ACTIONS(1586), + [anon_sym_u64] = ACTIONS(1586), + [anon_sym_i64] = ACTIONS(1586), + [anon_sym_u128] = ACTIONS(1586), + [anon_sym_i128] = ACTIONS(1586), + [anon_sym_isize] = ACTIONS(1586), + [anon_sym_usize] = ACTIONS(1586), + [anon_sym_f32] = ACTIONS(1586), + [anon_sym_f64] = ACTIONS(1586), + [anon_sym_bool] = ACTIONS(1586), + [anon_sym_str] = ACTIONS(1586), + [anon_sym_char] = ACTIONS(1586), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = ACTIONS(1586), + [anon_sym_break] = ACTIONS(1586), + [anon_sym_const] = ACTIONS(1586), + [anon_sym_continue] = ACTIONS(1586), + [anon_sym_default] = ACTIONS(1586), + [anon_sym_enum] = ACTIONS(1586), + [anon_sym_fn] = ACTIONS(1586), + [anon_sym_for] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1586), + [anon_sym_impl] = ACTIONS(1586), + [anon_sym_let] = ACTIONS(1586), + [anon_sym_loop] = ACTIONS(1586), + [anon_sym_match] = ACTIONS(1586), + [anon_sym_mod] = ACTIONS(1586), + [anon_sym_pub] = ACTIONS(1586), + [anon_sym_return] = ACTIONS(1586), + [anon_sym_static] = ACTIONS(1586), + [anon_sym_struct] = ACTIONS(1586), + [anon_sym_trait] = ACTIONS(1586), + [anon_sym_type] = ACTIONS(1586), + [anon_sym_union] = ACTIONS(1586), + [anon_sym_unsafe] = ACTIONS(1586), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_while] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_extern] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_COLON_COLON] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_yield] = ACTIONS(1586), + [anon_sym_move] = ACTIONS(1586), + [sym_integer_literal] = ACTIONS(1584), + [aux_sym_string_literal_token1] = ACTIONS(1584), + [sym_char_literal] = ACTIONS(1584), + [anon_sym_true] = ACTIONS(1586), + [anon_sym_false] = ACTIONS(1586), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1586), + [sym_super] = ACTIONS(1586), + [sym_crate] = ACTIONS(1586), + [sym_metavariable] = ACTIONS(1584), + [sym_raw_string_literal] = ACTIONS(1584), + [sym_float_literal] = ACTIONS(1584), [sym_block_comment] = ACTIONS(3), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(1566), - [sym_identifier] = ACTIONS(1568), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_macro_rules_BANG] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1566), - [anon_sym_RBRACE] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_STAR] = ACTIONS(1566), - [anon_sym_u8] = ACTIONS(1568), - [anon_sym_i8] = ACTIONS(1568), - [anon_sym_u16] = ACTIONS(1568), - [anon_sym_i16] = ACTIONS(1568), - [anon_sym_u32] = ACTIONS(1568), - [anon_sym_i32] = ACTIONS(1568), - [anon_sym_u64] = ACTIONS(1568), - [anon_sym_i64] = ACTIONS(1568), - [anon_sym_u128] = ACTIONS(1568), - [anon_sym_i128] = ACTIONS(1568), - [anon_sym_isize] = ACTIONS(1568), - [anon_sym_usize] = ACTIONS(1568), - [anon_sym_f32] = ACTIONS(1568), - [anon_sym_f64] = ACTIONS(1568), - [anon_sym_bool] = ACTIONS(1568), - [anon_sym_str] = ACTIONS(1568), - [anon_sym_char] = ACTIONS(1568), - [anon_sym_SQUOTE] = ACTIONS(1568), - [anon_sym_async] = ACTIONS(1568), - [anon_sym_break] = ACTIONS(1568), - [anon_sym_const] = ACTIONS(1568), - [anon_sym_continue] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1568), - [anon_sym_enum] = ACTIONS(1568), - [anon_sym_fn] = ACTIONS(1568), - [anon_sym_for] = ACTIONS(1568), - [anon_sym_if] = ACTIONS(1568), - [anon_sym_impl] = ACTIONS(1568), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_loop] = ACTIONS(1568), - [anon_sym_match] = ACTIONS(1568), - [anon_sym_mod] = ACTIONS(1568), - [anon_sym_pub] = ACTIONS(1568), - [anon_sym_return] = ACTIONS(1568), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_struct] = ACTIONS(1568), - [anon_sym_trait] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_union] = ACTIONS(1568), - [anon_sym_unsafe] = ACTIONS(1568), - [anon_sym_use] = ACTIONS(1568), - [anon_sym_while] = ACTIONS(1568), - [anon_sym_POUND] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_extern] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(1566), - [anon_sym_COLON_COLON] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1566), - [anon_sym_DOT_DOT] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1566), - [anon_sym_yield] = ACTIONS(1568), - [anon_sym_move] = ACTIONS(1568), - [sym_integer_literal] = ACTIONS(1566), - [aux_sym_string_literal_token1] = ACTIONS(1566), - [sym_char_literal] = ACTIONS(1566), - [anon_sym_true] = ACTIONS(1568), - [anon_sym_false] = ACTIONS(1568), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1568), - [sym_super] = ACTIONS(1568), - [sym_crate] = ACTIONS(1568), - [sym_metavariable] = ACTIONS(1566), - [sym_raw_string_literal] = ACTIONS(1566), - [sym_float_literal] = ACTIONS(1566), + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_macro_rules_BANG] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_u8] = ACTIONS(1590), + [anon_sym_i8] = ACTIONS(1590), + [anon_sym_u16] = ACTIONS(1590), + [anon_sym_i16] = ACTIONS(1590), + [anon_sym_u32] = ACTIONS(1590), + [anon_sym_i32] = ACTIONS(1590), + [anon_sym_u64] = ACTIONS(1590), + [anon_sym_i64] = ACTIONS(1590), + [anon_sym_u128] = ACTIONS(1590), + [anon_sym_i128] = ACTIONS(1590), + [anon_sym_isize] = ACTIONS(1590), + [anon_sym_usize] = ACTIONS(1590), + [anon_sym_f32] = ACTIONS(1590), + [anon_sym_f64] = ACTIONS(1590), + [anon_sym_bool] = ACTIONS(1590), + [anon_sym_str] = ACTIONS(1590), + [anon_sym_char] = ACTIONS(1590), + [anon_sym_SQUOTE] = ACTIONS(1590), + [anon_sym_async] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_const] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_enum] = ACTIONS(1590), + [anon_sym_fn] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_impl] = ACTIONS(1590), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_loop] = ACTIONS(1590), + [anon_sym_match] = ACTIONS(1590), + [anon_sym_mod] = ACTIONS(1590), + [anon_sym_pub] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_struct] = ACTIONS(1590), + [anon_sym_trait] = ACTIONS(1590), + [anon_sym_type] = ACTIONS(1590), + [anon_sym_union] = ACTIONS(1590), + [anon_sym_unsafe] = ACTIONS(1590), + [anon_sym_use] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_extern] = ACTIONS(1590), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_COLON_COLON] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1588), + [anon_sym_yield] = ACTIONS(1590), + [anon_sym_move] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(1588), + [aux_sym_string_literal_token1] = ACTIONS(1588), + [sym_char_literal] = ACTIONS(1588), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1590), + [sym_super] = ACTIONS(1590), + [sym_crate] = ACTIONS(1590), + [sym_metavariable] = ACTIONS(1588), + [sym_raw_string_literal] = ACTIONS(1588), + [sym_float_literal] = ACTIONS(1588), [sym_block_comment] = ACTIONS(3), }, [369] = { - [ts_builtin_sym_end] = ACTIONS(1570), - [sym_identifier] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_macro_rules_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_LBRACK] = ACTIONS(1570), - [anon_sym_STAR] = ACTIONS(1570), - [anon_sym_u8] = ACTIONS(1572), - [anon_sym_i8] = ACTIONS(1572), - [anon_sym_u16] = ACTIONS(1572), - [anon_sym_i16] = ACTIONS(1572), - [anon_sym_u32] = ACTIONS(1572), - [anon_sym_i32] = ACTIONS(1572), - [anon_sym_u64] = ACTIONS(1572), - [anon_sym_i64] = ACTIONS(1572), - [anon_sym_u128] = ACTIONS(1572), - [anon_sym_i128] = ACTIONS(1572), - [anon_sym_isize] = ACTIONS(1572), - [anon_sym_usize] = ACTIONS(1572), - [anon_sym_f32] = ACTIONS(1572), - [anon_sym_f64] = ACTIONS(1572), - [anon_sym_bool] = ACTIONS(1572), - [anon_sym_str] = ACTIONS(1572), - [anon_sym_char] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1572), - [anon_sym_async] = ACTIONS(1572), - [anon_sym_break] = ACTIONS(1572), - [anon_sym_const] = ACTIONS(1572), - [anon_sym_continue] = ACTIONS(1572), - [anon_sym_default] = ACTIONS(1572), - [anon_sym_enum] = ACTIONS(1572), - [anon_sym_fn] = ACTIONS(1572), - [anon_sym_for] = ACTIONS(1572), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_impl] = ACTIONS(1572), - [anon_sym_let] = ACTIONS(1572), - [anon_sym_loop] = ACTIONS(1572), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_mod] = ACTIONS(1572), - [anon_sym_pub] = ACTIONS(1572), - [anon_sym_return] = ACTIONS(1572), - [anon_sym_static] = ACTIONS(1572), - [anon_sym_struct] = ACTIONS(1572), - [anon_sym_trait] = ACTIONS(1572), - [anon_sym_type] = ACTIONS(1572), - [anon_sym_union] = ACTIONS(1572), - [anon_sym_unsafe] = ACTIONS(1572), - [anon_sym_use] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(1570), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_extern] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1570), - [anon_sym_COLON_COLON] = ACTIONS(1570), - [anon_sym_AMP] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_move] = ACTIONS(1572), - [sym_integer_literal] = ACTIONS(1570), - [aux_sym_string_literal_token1] = ACTIONS(1570), - [sym_char_literal] = ACTIONS(1570), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1572), - [sym_super] = ACTIONS(1572), - [sym_crate] = ACTIONS(1572), - [sym_metavariable] = ACTIONS(1570), - [sym_raw_string_literal] = ACTIONS(1570), - [sym_float_literal] = ACTIONS(1570), + [ts_builtin_sym_end] = ACTIONS(1592), + [sym_identifier] = ACTIONS(1594), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_macro_rules_BANG] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_u8] = ACTIONS(1594), + [anon_sym_i8] = ACTIONS(1594), + [anon_sym_u16] = ACTIONS(1594), + [anon_sym_i16] = ACTIONS(1594), + [anon_sym_u32] = ACTIONS(1594), + [anon_sym_i32] = ACTIONS(1594), + [anon_sym_u64] = ACTIONS(1594), + [anon_sym_i64] = ACTIONS(1594), + [anon_sym_u128] = ACTIONS(1594), + [anon_sym_i128] = ACTIONS(1594), + [anon_sym_isize] = ACTIONS(1594), + [anon_sym_usize] = ACTIONS(1594), + [anon_sym_f32] = ACTIONS(1594), + [anon_sym_f64] = ACTIONS(1594), + [anon_sym_bool] = ACTIONS(1594), + [anon_sym_str] = ACTIONS(1594), + [anon_sym_char] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1594), + [anon_sym_break] = ACTIONS(1594), + [anon_sym_const] = ACTIONS(1594), + [anon_sym_continue] = ACTIONS(1594), + [anon_sym_default] = ACTIONS(1594), + [anon_sym_enum] = ACTIONS(1594), + [anon_sym_fn] = ACTIONS(1594), + [anon_sym_for] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1594), + [anon_sym_impl] = ACTIONS(1594), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_loop] = ACTIONS(1594), + [anon_sym_match] = ACTIONS(1594), + [anon_sym_mod] = ACTIONS(1594), + [anon_sym_pub] = ACTIONS(1594), + [anon_sym_return] = ACTIONS(1594), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_struct] = ACTIONS(1594), + [anon_sym_trait] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_union] = ACTIONS(1594), + [anon_sym_unsafe] = ACTIONS(1594), + [anon_sym_use] = ACTIONS(1594), + [anon_sym_while] = ACTIONS(1594), + [anon_sym_POUND] = ACTIONS(1592), + [anon_sym_BANG] = ACTIONS(1592), + [anon_sym_extern] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_DOT_DOT] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_yield] = ACTIONS(1594), + [anon_sym_move] = ACTIONS(1594), + [sym_integer_literal] = ACTIONS(1592), + [aux_sym_string_literal_token1] = ACTIONS(1592), + [sym_char_literal] = ACTIONS(1592), + [anon_sym_true] = ACTIONS(1594), + [anon_sym_false] = ACTIONS(1594), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1594), + [sym_super] = ACTIONS(1594), + [sym_crate] = ACTIONS(1594), + [sym_metavariable] = ACTIONS(1592), + [sym_raw_string_literal] = ACTIONS(1592), + [sym_float_literal] = ACTIONS(1592), [sym_block_comment] = ACTIONS(3), }, [370] = { - [ts_builtin_sym_end] = ACTIONS(1574), - [sym_identifier] = ACTIONS(1576), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_macro_rules_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1574), - [anon_sym_LBRACE] = ACTIONS(1574), - [anon_sym_RBRACE] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(1574), - [anon_sym_STAR] = ACTIONS(1574), - [anon_sym_u8] = ACTIONS(1576), - [anon_sym_i8] = ACTIONS(1576), - [anon_sym_u16] = ACTIONS(1576), - [anon_sym_i16] = ACTIONS(1576), - [anon_sym_u32] = ACTIONS(1576), - [anon_sym_i32] = ACTIONS(1576), - [anon_sym_u64] = ACTIONS(1576), - [anon_sym_i64] = ACTIONS(1576), - [anon_sym_u128] = ACTIONS(1576), - [anon_sym_i128] = ACTIONS(1576), - [anon_sym_isize] = ACTIONS(1576), - [anon_sym_usize] = ACTIONS(1576), - [anon_sym_f32] = ACTIONS(1576), - [anon_sym_f64] = ACTIONS(1576), - [anon_sym_bool] = ACTIONS(1576), - [anon_sym_str] = ACTIONS(1576), - [anon_sym_char] = ACTIONS(1576), - [anon_sym_SQUOTE] = ACTIONS(1576), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_const] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_enum] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_impl] = ACTIONS(1576), - [anon_sym_let] = ACTIONS(1576), - [anon_sym_loop] = ACTIONS(1576), - [anon_sym_match] = ACTIONS(1576), - [anon_sym_mod] = ACTIONS(1576), - [anon_sym_pub] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_static] = ACTIONS(1576), - [anon_sym_struct] = ACTIONS(1576), - [anon_sym_trait] = ACTIONS(1576), - [anon_sym_type] = ACTIONS(1576), - [anon_sym_union] = ACTIONS(1576), - [anon_sym_unsafe] = ACTIONS(1576), - [anon_sym_use] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(1574), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_extern] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1574), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_DOT_DOT] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_yield] = ACTIONS(1576), - [anon_sym_move] = ACTIONS(1576), - [sym_integer_literal] = ACTIONS(1574), - [aux_sym_string_literal_token1] = ACTIONS(1574), - [sym_char_literal] = ACTIONS(1574), - [anon_sym_true] = ACTIONS(1576), - [anon_sym_false] = ACTIONS(1576), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1576), - [sym_super] = ACTIONS(1576), - [sym_crate] = ACTIONS(1576), - [sym_metavariable] = ACTIONS(1574), - [sym_raw_string_literal] = ACTIONS(1574), - [sym_float_literal] = ACTIONS(1574), + [ts_builtin_sym_end] = ACTIONS(1596), + [sym_identifier] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_macro_rules_BANG] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [anon_sym_u8] = ACTIONS(1598), + [anon_sym_i8] = ACTIONS(1598), + [anon_sym_u16] = ACTIONS(1598), + [anon_sym_i16] = ACTIONS(1598), + [anon_sym_u32] = ACTIONS(1598), + [anon_sym_i32] = ACTIONS(1598), + [anon_sym_u64] = ACTIONS(1598), + [anon_sym_i64] = ACTIONS(1598), + [anon_sym_u128] = ACTIONS(1598), + [anon_sym_i128] = ACTIONS(1598), + [anon_sym_isize] = ACTIONS(1598), + [anon_sym_usize] = ACTIONS(1598), + [anon_sym_f32] = ACTIONS(1598), + [anon_sym_f64] = ACTIONS(1598), + [anon_sym_bool] = ACTIONS(1598), + [anon_sym_str] = ACTIONS(1598), + [anon_sym_char] = ACTIONS(1598), + [anon_sym_SQUOTE] = ACTIONS(1598), + [anon_sym_async] = ACTIONS(1598), + [anon_sym_break] = ACTIONS(1598), + [anon_sym_const] = ACTIONS(1598), + [anon_sym_continue] = ACTIONS(1598), + [anon_sym_default] = ACTIONS(1598), + [anon_sym_enum] = ACTIONS(1598), + [anon_sym_fn] = ACTIONS(1598), + [anon_sym_for] = ACTIONS(1598), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_impl] = ACTIONS(1598), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_loop] = ACTIONS(1598), + [anon_sym_match] = ACTIONS(1598), + [anon_sym_mod] = ACTIONS(1598), + [anon_sym_pub] = ACTIONS(1598), + [anon_sym_return] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_struct] = ACTIONS(1598), + [anon_sym_trait] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_union] = ACTIONS(1598), + [anon_sym_unsafe] = ACTIONS(1598), + [anon_sym_use] = ACTIONS(1598), + [anon_sym_while] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_extern] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_COLON_COLON] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_yield] = ACTIONS(1598), + [anon_sym_move] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(1596), + [aux_sym_string_literal_token1] = ACTIONS(1596), + [sym_char_literal] = ACTIONS(1596), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1598), + [sym_super] = ACTIONS(1598), + [sym_crate] = ACTIONS(1598), + [sym_metavariable] = ACTIONS(1596), + [sym_raw_string_literal] = ACTIONS(1596), + [sym_float_literal] = ACTIONS(1596), [sym_block_comment] = ACTIONS(3), }, [371] = { - [ts_builtin_sym_end] = ACTIONS(1578), - [sym_identifier] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1578), - [anon_sym_macro_rules_BANG] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1578), - [anon_sym_RBRACE] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_STAR] = ACTIONS(1578), - [anon_sym_u8] = ACTIONS(1580), - [anon_sym_i8] = ACTIONS(1580), - [anon_sym_u16] = ACTIONS(1580), - [anon_sym_i16] = ACTIONS(1580), - [anon_sym_u32] = ACTIONS(1580), - [anon_sym_i32] = ACTIONS(1580), - [anon_sym_u64] = ACTIONS(1580), - [anon_sym_i64] = ACTIONS(1580), - [anon_sym_u128] = ACTIONS(1580), - [anon_sym_i128] = ACTIONS(1580), - [anon_sym_isize] = ACTIONS(1580), - [anon_sym_usize] = ACTIONS(1580), - [anon_sym_f32] = ACTIONS(1580), - [anon_sym_f64] = ACTIONS(1580), - [anon_sym_bool] = ACTIONS(1580), - [anon_sym_str] = ACTIONS(1580), - [anon_sym_char] = ACTIONS(1580), - [anon_sym_SQUOTE] = ACTIONS(1580), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_break] = ACTIONS(1580), - [anon_sym_const] = ACTIONS(1580), - [anon_sym_continue] = ACTIONS(1580), - [anon_sym_default] = ACTIONS(1580), - [anon_sym_enum] = ACTIONS(1580), - [anon_sym_fn] = ACTIONS(1580), - [anon_sym_for] = ACTIONS(1580), - [anon_sym_if] = ACTIONS(1580), - [anon_sym_impl] = ACTIONS(1580), - [anon_sym_let] = ACTIONS(1580), - [anon_sym_loop] = ACTIONS(1580), - [anon_sym_match] = ACTIONS(1580), - [anon_sym_mod] = ACTIONS(1580), - [anon_sym_pub] = ACTIONS(1580), - [anon_sym_return] = ACTIONS(1580), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_struct] = ACTIONS(1580), - [anon_sym_trait] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_union] = ACTIONS(1580), - [anon_sym_unsafe] = ACTIONS(1580), - [anon_sym_use] = ACTIONS(1580), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_POUND] = ACTIONS(1578), - [anon_sym_BANG] = ACTIONS(1578), - [anon_sym_extern] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1578), - [anon_sym_COLON_COLON] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1578), - [anon_sym_DOT_DOT] = ACTIONS(1578), - [anon_sym_DASH] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1578), - [anon_sym_yield] = ACTIONS(1580), - [anon_sym_move] = ACTIONS(1580), - [sym_integer_literal] = ACTIONS(1578), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1578), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1580), - [sym_super] = ACTIONS(1580), - [sym_crate] = ACTIONS(1580), - [sym_metavariable] = ACTIONS(1578), - [sym_raw_string_literal] = ACTIONS(1578), - [sym_float_literal] = ACTIONS(1578), + [ts_builtin_sym_end] = ACTIONS(1600), + [sym_identifier] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_macro_rules_BANG] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1600), + [anon_sym_STAR] = ACTIONS(1600), + [anon_sym_u8] = ACTIONS(1602), + [anon_sym_i8] = ACTIONS(1602), + [anon_sym_u16] = ACTIONS(1602), + [anon_sym_i16] = ACTIONS(1602), + [anon_sym_u32] = ACTIONS(1602), + [anon_sym_i32] = ACTIONS(1602), + [anon_sym_u64] = ACTIONS(1602), + [anon_sym_i64] = ACTIONS(1602), + [anon_sym_u128] = ACTIONS(1602), + [anon_sym_i128] = ACTIONS(1602), + [anon_sym_isize] = ACTIONS(1602), + [anon_sym_usize] = ACTIONS(1602), + [anon_sym_f32] = ACTIONS(1602), + [anon_sym_f64] = ACTIONS(1602), + [anon_sym_bool] = ACTIONS(1602), + [anon_sym_str] = ACTIONS(1602), + [anon_sym_char] = ACTIONS(1602), + [anon_sym_SQUOTE] = ACTIONS(1602), + [anon_sym_async] = ACTIONS(1602), + [anon_sym_break] = ACTIONS(1602), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_continue] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1602), + [anon_sym_enum] = ACTIONS(1602), + [anon_sym_fn] = ACTIONS(1602), + [anon_sym_for] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_impl] = ACTIONS(1602), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_loop] = ACTIONS(1602), + [anon_sym_match] = ACTIONS(1602), + [anon_sym_mod] = ACTIONS(1602), + [anon_sym_pub] = ACTIONS(1602), + [anon_sym_return] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_struct] = ACTIONS(1602), + [anon_sym_trait] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_union] = ACTIONS(1602), + [anon_sym_unsafe] = ACTIONS(1602), + [anon_sym_use] = ACTIONS(1602), + [anon_sym_while] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(1600), + [anon_sym_BANG] = ACTIONS(1600), + [anon_sym_extern] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1600), + [anon_sym_COLON_COLON] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_DOT_DOT] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_move] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(1600), + [aux_sym_string_literal_token1] = ACTIONS(1600), + [sym_char_literal] = ACTIONS(1600), + [anon_sym_true] = ACTIONS(1602), + [anon_sym_false] = ACTIONS(1602), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1602), + [sym_super] = ACTIONS(1602), + [sym_crate] = ACTIONS(1602), + [sym_metavariable] = ACTIONS(1600), + [sym_raw_string_literal] = ACTIONS(1600), + [sym_float_literal] = ACTIONS(1600), [sym_block_comment] = ACTIONS(3), }, [372] = { - [ts_builtin_sym_end] = ACTIONS(1582), - [sym_identifier] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_macro_rules_BANG] = ACTIONS(1582), - [anon_sym_LPAREN] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(1582), - [anon_sym_u8] = ACTIONS(1584), - [anon_sym_i8] = ACTIONS(1584), - [anon_sym_u16] = ACTIONS(1584), - [anon_sym_i16] = ACTIONS(1584), - [anon_sym_u32] = ACTIONS(1584), - [anon_sym_i32] = ACTIONS(1584), - [anon_sym_u64] = ACTIONS(1584), - [anon_sym_i64] = ACTIONS(1584), - [anon_sym_u128] = ACTIONS(1584), - [anon_sym_i128] = ACTIONS(1584), - [anon_sym_isize] = ACTIONS(1584), - [anon_sym_usize] = ACTIONS(1584), - [anon_sym_f32] = ACTIONS(1584), - [anon_sym_f64] = ACTIONS(1584), - [anon_sym_bool] = ACTIONS(1584), - [anon_sym_str] = ACTIONS(1584), - [anon_sym_char] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1584), - [anon_sym_async] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_const] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_default] = ACTIONS(1584), - [anon_sym_enum] = ACTIONS(1584), - [anon_sym_fn] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_impl] = ACTIONS(1584), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_loop] = ACTIONS(1584), - [anon_sym_match] = ACTIONS(1584), - [anon_sym_mod] = ACTIONS(1584), - [anon_sym_pub] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_static] = ACTIONS(1584), - [anon_sym_struct] = ACTIONS(1584), - [anon_sym_trait] = ACTIONS(1584), - [anon_sym_type] = ACTIONS(1584), - [anon_sym_union] = ACTIONS(1584), - [anon_sym_unsafe] = ACTIONS(1584), - [anon_sym_use] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(1582), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_extern] = ACTIONS(1584), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_COLON_COLON] = ACTIONS(1582), - [anon_sym_AMP] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1582), - [anon_sym_DASH] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_yield] = ACTIONS(1584), - [anon_sym_move] = ACTIONS(1584), - [sym_integer_literal] = ACTIONS(1582), - [aux_sym_string_literal_token1] = ACTIONS(1582), - [sym_char_literal] = ACTIONS(1582), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1584), - [sym_super] = ACTIONS(1584), - [sym_crate] = ACTIONS(1584), - [sym_metavariable] = ACTIONS(1582), - [sym_raw_string_literal] = ACTIONS(1582), - [sym_float_literal] = ACTIONS(1582), + [ts_builtin_sym_end] = ACTIONS(1604), + [sym_identifier] = ACTIONS(1606), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_macro_rules_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_u8] = ACTIONS(1606), + [anon_sym_i8] = ACTIONS(1606), + [anon_sym_u16] = ACTIONS(1606), + [anon_sym_i16] = ACTIONS(1606), + [anon_sym_u32] = ACTIONS(1606), + [anon_sym_i32] = ACTIONS(1606), + [anon_sym_u64] = ACTIONS(1606), + [anon_sym_i64] = ACTIONS(1606), + [anon_sym_u128] = ACTIONS(1606), + [anon_sym_i128] = ACTIONS(1606), + [anon_sym_isize] = ACTIONS(1606), + [anon_sym_usize] = ACTIONS(1606), + [anon_sym_f32] = ACTIONS(1606), + [anon_sym_f64] = ACTIONS(1606), + [anon_sym_bool] = ACTIONS(1606), + [anon_sym_str] = ACTIONS(1606), + [anon_sym_char] = ACTIONS(1606), + [anon_sym_SQUOTE] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_break] = ACTIONS(1606), + [anon_sym_const] = ACTIONS(1606), + [anon_sym_continue] = ACTIONS(1606), + [anon_sym_default] = ACTIONS(1606), + [anon_sym_enum] = ACTIONS(1606), + [anon_sym_fn] = ACTIONS(1606), + [anon_sym_for] = ACTIONS(1606), + [anon_sym_if] = ACTIONS(1606), + [anon_sym_impl] = ACTIONS(1606), + [anon_sym_let] = ACTIONS(1606), + [anon_sym_loop] = ACTIONS(1606), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_mod] = ACTIONS(1606), + [anon_sym_pub] = ACTIONS(1606), + [anon_sym_return] = ACTIONS(1606), + [anon_sym_static] = ACTIONS(1606), + [anon_sym_struct] = ACTIONS(1606), + [anon_sym_trait] = ACTIONS(1606), + [anon_sym_type] = ACTIONS(1606), + [anon_sym_union] = ACTIONS(1606), + [anon_sym_unsafe] = ACTIONS(1606), + [anon_sym_use] = ACTIONS(1606), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(1604), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_extern] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1604), + [anon_sym_COLON_COLON] = ACTIONS(1604), + [anon_sym_AMP] = ACTIONS(1604), + [anon_sym_DOT_DOT] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_move] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(1604), + [aux_sym_string_literal_token1] = ACTIONS(1604), + [sym_char_literal] = ACTIONS(1604), + [anon_sym_true] = ACTIONS(1606), + [anon_sym_false] = ACTIONS(1606), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1606), + [sym_super] = ACTIONS(1606), + [sym_crate] = ACTIONS(1606), + [sym_metavariable] = ACTIONS(1604), + [sym_raw_string_literal] = ACTIONS(1604), + [sym_float_literal] = ACTIONS(1604), [sym_block_comment] = ACTIONS(3), }, [373] = { - [ts_builtin_sym_end] = ACTIONS(1586), - [sym_identifier] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1586), - [anon_sym_macro_rules_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_RBRACE] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_u8] = ACTIONS(1588), - [anon_sym_i8] = ACTIONS(1588), - [anon_sym_u16] = ACTIONS(1588), - [anon_sym_i16] = ACTIONS(1588), - [anon_sym_u32] = ACTIONS(1588), - [anon_sym_i32] = ACTIONS(1588), - [anon_sym_u64] = ACTIONS(1588), - [anon_sym_i64] = ACTIONS(1588), - [anon_sym_u128] = ACTIONS(1588), - [anon_sym_i128] = ACTIONS(1588), - [anon_sym_isize] = ACTIONS(1588), - [anon_sym_usize] = ACTIONS(1588), - [anon_sym_f32] = ACTIONS(1588), - [anon_sym_f64] = ACTIONS(1588), - [anon_sym_bool] = ACTIONS(1588), - [anon_sym_str] = ACTIONS(1588), - [anon_sym_char] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1588), - [anon_sym_async] = ACTIONS(1588), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_const] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1588), - [anon_sym_default] = ACTIONS(1588), - [anon_sym_enum] = ACTIONS(1588), - [anon_sym_fn] = ACTIONS(1588), - [anon_sym_for] = ACTIONS(1588), - [anon_sym_if] = ACTIONS(1588), - [anon_sym_impl] = ACTIONS(1588), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_loop] = ACTIONS(1588), - [anon_sym_match] = ACTIONS(1588), - [anon_sym_mod] = ACTIONS(1588), - [anon_sym_pub] = ACTIONS(1588), - [anon_sym_return] = ACTIONS(1588), - [anon_sym_static] = ACTIONS(1588), - [anon_sym_struct] = ACTIONS(1588), - [anon_sym_trait] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1588), - [anon_sym_union] = ACTIONS(1588), - [anon_sym_unsafe] = ACTIONS(1588), - [anon_sym_use] = ACTIONS(1588), - [anon_sym_while] = ACTIONS(1588), - [anon_sym_POUND] = ACTIONS(1586), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_extern] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_COLON_COLON] = ACTIONS(1586), - [anon_sym_AMP] = ACTIONS(1586), - [anon_sym_DOT_DOT] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_PIPE] = ACTIONS(1586), - [anon_sym_yield] = ACTIONS(1588), - [anon_sym_move] = ACTIONS(1588), - [sym_integer_literal] = ACTIONS(1586), - [aux_sym_string_literal_token1] = ACTIONS(1586), - [sym_char_literal] = ACTIONS(1586), - [anon_sym_true] = ACTIONS(1588), - [anon_sym_false] = ACTIONS(1588), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1588), - [sym_super] = ACTIONS(1588), - [sym_crate] = ACTIONS(1588), - [sym_metavariable] = ACTIONS(1586), - [sym_raw_string_literal] = ACTIONS(1586), - [sym_float_literal] = ACTIONS(1586), + [ts_builtin_sym_end] = ACTIONS(1608), + [sym_identifier] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_macro_rules_BANG] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_STAR] = ACTIONS(1608), + [anon_sym_u8] = ACTIONS(1610), + [anon_sym_i8] = ACTIONS(1610), + [anon_sym_u16] = ACTIONS(1610), + [anon_sym_i16] = ACTIONS(1610), + [anon_sym_u32] = ACTIONS(1610), + [anon_sym_i32] = ACTIONS(1610), + [anon_sym_u64] = ACTIONS(1610), + [anon_sym_i64] = ACTIONS(1610), + [anon_sym_u128] = ACTIONS(1610), + [anon_sym_i128] = ACTIONS(1610), + [anon_sym_isize] = ACTIONS(1610), + [anon_sym_usize] = ACTIONS(1610), + [anon_sym_f32] = ACTIONS(1610), + [anon_sym_f64] = ACTIONS(1610), + [anon_sym_bool] = ACTIONS(1610), + [anon_sym_str] = ACTIONS(1610), + [anon_sym_char] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1610), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_break] = ACTIONS(1610), + [anon_sym_const] = ACTIONS(1610), + [anon_sym_continue] = ACTIONS(1610), + [anon_sym_default] = ACTIONS(1610), + [anon_sym_enum] = ACTIONS(1610), + [anon_sym_fn] = ACTIONS(1610), + [anon_sym_for] = ACTIONS(1610), + [anon_sym_if] = ACTIONS(1610), + [anon_sym_impl] = ACTIONS(1610), + [anon_sym_let] = ACTIONS(1610), + [anon_sym_loop] = ACTIONS(1610), + [anon_sym_match] = ACTIONS(1610), + [anon_sym_mod] = ACTIONS(1610), + [anon_sym_pub] = ACTIONS(1610), + [anon_sym_return] = ACTIONS(1610), + [anon_sym_static] = ACTIONS(1610), + [anon_sym_struct] = ACTIONS(1610), + [anon_sym_trait] = ACTIONS(1610), + [anon_sym_type] = ACTIONS(1610), + [anon_sym_union] = ACTIONS(1610), + [anon_sym_unsafe] = ACTIONS(1610), + [anon_sym_use] = ACTIONS(1610), + [anon_sym_while] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1608), + [anon_sym_BANG] = ACTIONS(1608), + [anon_sym_extern] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1608), + [anon_sym_COLON_COLON] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_yield] = ACTIONS(1610), + [anon_sym_move] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1608), + [aux_sym_string_literal_token1] = ACTIONS(1608), + [sym_char_literal] = ACTIONS(1608), + [anon_sym_true] = ACTIONS(1610), + [anon_sym_false] = ACTIONS(1610), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1610), + [sym_super] = ACTIONS(1610), + [sym_crate] = ACTIONS(1610), + [sym_metavariable] = ACTIONS(1608), + [sym_raw_string_literal] = ACTIONS(1608), + [sym_float_literal] = ACTIONS(1608), [sym_block_comment] = ACTIONS(3), }, [374] = { - [ts_builtin_sym_end] = ACTIONS(1590), - [sym_identifier] = ACTIONS(1592), - [anon_sym_SEMI] = ACTIONS(1590), - [anon_sym_macro_rules_BANG] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_RBRACE] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1590), - [anon_sym_STAR] = ACTIONS(1590), - [anon_sym_u8] = ACTIONS(1592), - [anon_sym_i8] = ACTIONS(1592), - [anon_sym_u16] = ACTIONS(1592), - [anon_sym_i16] = ACTIONS(1592), - [anon_sym_u32] = ACTIONS(1592), - [anon_sym_i32] = ACTIONS(1592), - [anon_sym_u64] = ACTIONS(1592), - [anon_sym_i64] = ACTIONS(1592), - [anon_sym_u128] = ACTIONS(1592), - [anon_sym_i128] = ACTIONS(1592), - [anon_sym_isize] = ACTIONS(1592), - [anon_sym_usize] = ACTIONS(1592), - [anon_sym_f32] = ACTIONS(1592), - [anon_sym_f64] = ACTIONS(1592), - [anon_sym_bool] = ACTIONS(1592), - [anon_sym_str] = ACTIONS(1592), - [anon_sym_char] = ACTIONS(1592), - [anon_sym_SQUOTE] = ACTIONS(1592), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_break] = ACTIONS(1592), - [anon_sym_const] = ACTIONS(1592), - [anon_sym_continue] = ACTIONS(1592), - [anon_sym_default] = ACTIONS(1592), - [anon_sym_enum] = ACTIONS(1592), - [anon_sym_fn] = ACTIONS(1592), - [anon_sym_for] = ACTIONS(1592), - [anon_sym_if] = ACTIONS(1592), - [anon_sym_impl] = ACTIONS(1592), - [anon_sym_let] = ACTIONS(1592), - [anon_sym_loop] = ACTIONS(1592), - [anon_sym_match] = ACTIONS(1592), - [anon_sym_mod] = ACTIONS(1592), - [anon_sym_pub] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1592), - [anon_sym_static] = ACTIONS(1592), - [anon_sym_struct] = ACTIONS(1592), - [anon_sym_trait] = ACTIONS(1592), - [anon_sym_type] = ACTIONS(1592), - [anon_sym_union] = ACTIONS(1592), - [anon_sym_unsafe] = ACTIONS(1592), - [anon_sym_use] = ACTIONS(1592), - [anon_sym_while] = ACTIONS(1592), - [anon_sym_POUND] = ACTIONS(1590), - [anon_sym_BANG] = ACTIONS(1590), - [anon_sym_extern] = ACTIONS(1592), - [anon_sym_LT] = ACTIONS(1590), - [anon_sym_COLON_COLON] = ACTIONS(1590), - [anon_sym_AMP] = ACTIONS(1590), - [anon_sym_DOT_DOT] = ACTIONS(1590), - [anon_sym_DASH] = ACTIONS(1590), - [anon_sym_PIPE] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_move] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(1590), - [aux_sym_string_literal_token1] = ACTIONS(1590), - [sym_char_literal] = ACTIONS(1590), - [anon_sym_true] = ACTIONS(1592), - [anon_sym_false] = ACTIONS(1592), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1592), - [sym_super] = ACTIONS(1592), - [sym_crate] = ACTIONS(1592), - [sym_metavariable] = ACTIONS(1590), - [sym_raw_string_literal] = ACTIONS(1590), - [sym_float_literal] = ACTIONS(1590), + [ts_builtin_sym_end] = ACTIONS(1612), + [sym_identifier] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1612), + [anon_sym_macro_rules_BANG] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1612), + [anon_sym_u8] = ACTIONS(1614), + [anon_sym_i8] = ACTIONS(1614), + [anon_sym_u16] = ACTIONS(1614), + [anon_sym_i16] = ACTIONS(1614), + [anon_sym_u32] = ACTIONS(1614), + [anon_sym_i32] = ACTIONS(1614), + [anon_sym_u64] = ACTIONS(1614), + [anon_sym_i64] = ACTIONS(1614), + [anon_sym_u128] = ACTIONS(1614), + [anon_sym_i128] = ACTIONS(1614), + [anon_sym_isize] = ACTIONS(1614), + [anon_sym_usize] = ACTIONS(1614), + [anon_sym_f32] = ACTIONS(1614), + [anon_sym_f64] = ACTIONS(1614), + [anon_sym_bool] = ACTIONS(1614), + [anon_sym_str] = ACTIONS(1614), + [anon_sym_char] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1614), + [anon_sym_async] = ACTIONS(1614), + [anon_sym_break] = ACTIONS(1614), + [anon_sym_const] = ACTIONS(1614), + [anon_sym_continue] = ACTIONS(1614), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_enum] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1614), + [anon_sym_for] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1614), + [anon_sym_impl] = ACTIONS(1614), + [anon_sym_let] = ACTIONS(1614), + [anon_sym_loop] = ACTIONS(1614), + [anon_sym_match] = ACTIONS(1614), + [anon_sym_mod] = ACTIONS(1614), + [anon_sym_pub] = ACTIONS(1614), + [anon_sym_return] = ACTIONS(1614), + [anon_sym_static] = ACTIONS(1614), + [anon_sym_struct] = ACTIONS(1614), + [anon_sym_trait] = ACTIONS(1614), + [anon_sym_type] = ACTIONS(1614), + [anon_sym_union] = ACTIONS(1614), + [anon_sym_unsafe] = ACTIONS(1614), + [anon_sym_use] = ACTIONS(1614), + [anon_sym_while] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [anon_sym_extern] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_COLON_COLON] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(1612), + [anon_sym_DOT_DOT] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_move] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1612), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1614), + [sym_super] = ACTIONS(1614), + [sym_crate] = ACTIONS(1614), + [sym_metavariable] = ACTIONS(1612), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), [sym_block_comment] = ACTIONS(3), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(1594), - [sym_identifier] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1594), - [anon_sym_macro_rules_BANG] = ACTIONS(1594), - [anon_sym_LPAREN] = ACTIONS(1594), - [anon_sym_LBRACE] = ACTIONS(1594), - [anon_sym_RBRACE] = ACTIONS(1594), - [anon_sym_LBRACK] = ACTIONS(1594), - [anon_sym_STAR] = ACTIONS(1594), - [anon_sym_u8] = ACTIONS(1596), - [anon_sym_i8] = ACTIONS(1596), - [anon_sym_u16] = ACTIONS(1596), - [anon_sym_i16] = ACTIONS(1596), - [anon_sym_u32] = ACTIONS(1596), - [anon_sym_i32] = ACTIONS(1596), - [anon_sym_u64] = ACTIONS(1596), - [anon_sym_i64] = ACTIONS(1596), - [anon_sym_u128] = ACTIONS(1596), - [anon_sym_i128] = ACTIONS(1596), - [anon_sym_isize] = ACTIONS(1596), - [anon_sym_usize] = ACTIONS(1596), - [anon_sym_f32] = ACTIONS(1596), - [anon_sym_f64] = ACTIONS(1596), - [anon_sym_bool] = ACTIONS(1596), - [anon_sym_str] = ACTIONS(1596), - [anon_sym_char] = ACTIONS(1596), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_async] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_default] = ACTIONS(1596), - [anon_sym_enum] = ACTIONS(1596), - [anon_sym_fn] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_impl] = ACTIONS(1596), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_loop] = ACTIONS(1596), - [anon_sym_match] = ACTIONS(1596), - [anon_sym_mod] = ACTIONS(1596), - [anon_sym_pub] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_struct] = ACTIONS(1596), - [anon_sym_trait] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_union] = ACTIONS(1596), - [anon_sym_unsafe] = ACTIONS(1596), - [anon_sym_use] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1594), - [anon_sym_BANG] = ACTIONS(1594), - [anon_sym_extern] = ACTIONS(1596), - [anon_sym_LT] = ACTIONS(1594), - [anon_sym_COLON_COLON] = ACTIONS(1594), - [anon_sym_AMP] = ACTIONS(1594), - [anon_sym_DOT_DOT] = ACTIONS(1594), - [anon_sym_DASH] = ACTIONS(1594), - [anon_sym_PIPE] = ACTIONS(1594), - [anon_sym_yield] = ACTIONS(1596), - [anon_sym_move] = ACTIONS(1596), - [sym_integer_literal] = ACTIONS(1594), - [aux_sym_string_literal_token1] = ACTIONS(1594), - [sym_char_literal] = ACTIONS(1594), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1596), - [sym_super] = ACTIONS(1596), - [sym_crate] = ACTIONS(1596), - [sym_metavariable] = ACTIONS(1594), - [sym_raw_string_literal] = ACTIONS(1594), - [sym_float_literal] = ACTIONS(1594), + [ts_builtin_sym_end] = ACTIONS(1616), + [sym_identifier] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_macro_rules_BANG] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_u8] = ACTIONS(1618), + [anon_sym_i8] = ACTIONS(1618), + [anon_sym_u16] = ACTIONS(1618), + [anon_sym_i16] = ACTIONS(1618), + [anon_sym_u32] = ACTIONS(1618), + [anon_sym_i32] = ACTIONS(1618), + [anon_sym_u64] = ACTIONS(1618), + [anon_sym_i64] = ACTIONS(1618), + [anon_sym_u128] = ACTIONS(1618), + [anon_sym_i128] = ACTIONS(1618), + [anon_sym_isize] = ACTIONS(1618), + [anon_sym_usize] = ACTIONS(1618), + [anon_sym_f32] = ACTIONS(1618), + [anon_sym_f64] = ACTIONS(1618), + [anon_sym_bool] = ACTIONS(1618), + [anon_sym_str] = ACTIONS(1618), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_break] = ACTIONS(1618), + [anon_sym_const] = ACTIONS(1618), + [anon_sym_continue] = ACTIONS(1618), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_enum] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1618), + [anon_sym_for] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1618), + [anon_sym_impl] = ACTIONS(1618), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_loop] = ACTIONS(1618), + [anon_sym_match] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1618), + [anon_sym_pub] = ACTIONS(1618), + [anon_sym_return] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1618), + [anon_sym_struct] = ACTIONS(1618), + [anon_sym_trait] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(1618), + [anon_sym_unsafe] = ACTIONS(1618), + [anon_sym_use] = ACTIONS(1618), + [anon_sym_while] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1616), + [anon_sym_BANG] = ACTIONS(1616), + [anon_sym_extern] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_COLON_COLON] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_yield] = ACTIONS(1618), + [anon_sym_move] = ACTIONS(1618), + [sym_integer_literal] = ACTIONS(1616), + [aux_sym_string_literal_token1] = ACTIONS(1616), + [sym_char_literal] = ACTIONS(1616), + [anon_sym_true] = ACTIONS(1618), + [anon_sym_false] = ACTIONS(1618), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1616), + [sym_raw_string_literal] = ACTIONS(1616), + [sym_float_literal] = ACTIONS(1616), [sym_block_comment] = ACTIONS(3), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(1598), - [sym_identifier] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_macro_rules_BANG] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_STAR] = ACTIONS(1598), - [anon_sym_u8] = ACTIONS(1600), - [anon_sym_i8] = ACTIONS(1600), - [anon_sym_u16] = ACTIONS(1600), - [anon_sym_i16] = ACTIONS(1600), - [anon_sym_u32] = ACTIONS(1600), - [anon_sym_i32] = ACTIONS(1600), - [anon_sym_u64] = ACTIONS(1600), - [anon_sym_i64] = ACTIONS(1600), - [anon_sym_u128] = ACTIONS(1600), - [anon_sym_i128] = ACTIONS(1600), - [anon_sym_isize] = ACTIONS(1600), - [anon_sym_usize] = ACTIONS(1600), - [anon_sym_f32] = ACTIONS(1600), - [anon_sym_f64] = ACTIONS(1600), - [anon_sym_bool] = ACTIONS(1600), - [anon_sym_str] = ACTIONS(1600), - [anon_sym_char] = ACTIONS(1600), - [anon_sym_SQUOTE] = ACTIONS(1600), - [anon_sym_async] = ACTIONS(1600), - [anon_sym_break] = ACTIONS(1600), - [anon_sym_const] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_default] = ACTIONS(1600), - [anon_sym_enum] = ACTIONS(1600), - [anon_sym_fn] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_impl] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(1600), - [anon_sym_loop] = ACTIONS(1600), - [anon_sym_match] = ACTIONS(1600), - [anon_sym_mod] = ACTIONS(1600), - [anon_sym_pub] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_static] = ACTIONS(1600), - [anon_sym_struct] = ACTIONS(1600), - [anon_sym_trait] = ACTIONS(1600), - [anon_sym_type] = ACTIONS(1600), - [anon_sym_union] = ACTIONS(1600), - [anon_sym_unsafe] = ACTIONS(1600), - [anon_sym_use] = ACTIONS(1600), - [anon_sym_while] = ACTIONS(1600), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1598), - [anon_sym_extern] = ACTIONS(1600), - [anon_sym_LT] = ACTIONS(1598), - [anon_sym_COLON_COLON] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1598), - [anon_sym_DOT_DOT] = ACTIONS(1598), - [anon_sym_DASH] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_yield] = ACTIONS(1600), - [anon_sym_move] = ACTIONS(1600), - [sym_integer_literal] = ACTIONS(1598), - [aux_sym_string_literal_token1] = ACTIONS(1598), - [sym_char_literal] = ACTIONS(1598), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1600), - [sym_super] = ACTIONS(1600), - [sym_crate] = ACTIONS(1600), - [sym_metavariable] = ACTIONS(1598), - [sym_raw_string_literal] = ACTIONS(1598), - [sym_float_literal] = ACTIONS(1598), + [ts_builtin_sym_end] = ACTIONS(1620), + [sym_identifier] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_macro_rules_BANG] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_u8] = ACTIONS(1622), + [anon_sym_i8] = ACTIONS(1622), + [anon_sym_u16] = ACTIONS(1622), + [anon_sym_i16] = ACTIONS(1622), + [anon_sym_u32] = ACTIONS(1622), + [anon_sym_i32] = ACTIONS(1622), + [anon_sym_u64] = ACTIONS(1622), + [anon_sym_i64] = ACTIONS(1622), + [anon_sym_u128] = ACTIONS(1622), + [anon_sym_i128] = ACTIONS(1622), + [anon_sym_isize] = ACTIONS(1622), + [anon_sym_usize] = ACTIONS(1622), + [anon_sym_f32] = ACTIONS(1622), + [anon_sym_f64] = ACTIONS(1622), + [anon_sym_bool] = ACTIONS(1622), + [anon_sym_str] = ACTIONS(1622), + [anon_sym_char] = ACTIONS(1622), + [anon_sym_SQUOTE] = ACTIONS(1622), + [anon_sym_async] = ACTIONS(1622), + [anon_sym_break] = ACTIONS(1622), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_continue] = ACTIONS(1622), + [anon_sym_default] = ACTIONS(1622), + [anon_sym_enum] = ACTIONS(1622), + [anon_sym_fn] = ACTIONS(1622), + [anon_sym_for] = ACTIONS(1622), + [anon_sym_if] = ACTIONS(1622), + [anon_sym_impl] = ACTIONS(1622), + [anon_sym_let] = ACTIONS(1622), + [anon_sym_loop] = ACTIONS(1622), + [anon_sym_match] = ACTIONS(1622), + [anon_sym_mod] = ACTIONS(1622), + [anon_sym_pub] = ACTIONS(1622), + [anon_sym_return] = ACTIONS(1622), + [anon_sym_static] = ACTIONS(1622), + [anon_sym_struct] = ACTIONS(1622), + [anon_sym_trait] = ACTIONS(1622), + [anon_sym_type] = ACTIONS(1622), + [anon_sym_union] = ACTIONS(1622), + [anon_sym_unsafe] = ACTIONS(1622), + [anon_sym_use] = ACTIONS(1622), + [anon_sym_while] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1620), + [anon_sym_extern] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1620), + [anon_sym_COLON_COLON] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_yield] = ACTIONS(1622), + [anon_sym_move] = ACTIONS(1622), + [sym_integer_literal] = ACTIONS(1620), + [aux_sym_string_literal_token1] = ACTIONS(1620), + [sym_char_literal] = ACTIONS(1620), + [anon_sym_true] = ACTIONS(1622), + [anon_sym_false] = ACTIONS(1622), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1622), + [sym_super] = ACTIONS(1622), + [sym_crate] = ACTIONS(1622), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1620), + [sym_float_literal] = ACTIONS(1620), [sym_block_comment] = ACTIONS(3), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(1602), - [sym_identifier] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_macro_rules_BANG] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1602), - [anon_sym_STAR] = ACTIONS(1602), - [anon_sym_u8] = ACTIONS(1604), - [anon_sym_i8] = ACTIONS(1604), - [anon_sym_u16] = ACTIONS(1604), - [anon_sym_i16] = ACTIONS(1604), - [anon_sym_u32] = ACTIONS(1604), - [anon_sym_i32] = ACTIONS(1604), - [anon_sym_u64] = ACTIONS(1604), - [anon_sym_i64] = ACTIONS(1604), - [anon_sym_u128] = ACTIONS(1604), - [anon_sym_i128] = ACTIONS(1604), - [anon_sym_isize] = ACTIONS(1604), - [anon_sym_usize] = ACTIONS(1604), - [anon_sym_f32] = ACTIONS(1604), - [anon_sym_f64] = ACTIONS(1604), - [anon_sym_bool] = ACTIONS(1604), - [anon_sym_str] = ACTIONS(1604), - [anon_sym_char] = ACTIONS(1604), - [anon_sym_SQUOTE] = ACTIONS(1604), - [anon_sym_async] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_enum] = ACTIONS(1604), - [anon_sym_fn] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_impl] = ACTIONS(1604), - [anon_sym_let] = ACTIONS(1604), - [anon_sym_loop] = ACTIONS(1604), - [anon_sym_match] = ACTIONS(1604), - [anon_sym_mod] = ACTIONS(1604), - [anon_sym_pub] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_static] = ACTIONS(1604), - [anon_sym_struct] = ACTIONS(1604), - [anon_sym_trait] = ACTIONS(1604), - [anon_sym_type] = ACTIONS(1604), - [anon_sym_union] = ACTIONS(1604), - [anon_sym_unsafe] = ACTIONS(1604), - [anon_sym_use] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_POUND] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1602), - [anon_sym_extern] = ACTIONS(1604), - [anon_sym_LT] = ACTIONS(1602), - [anon_sym_COLON_COLON] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1602), - [anon_sym_DOT_DOT] = ACTIONS(1602), - [anon_sym_DASH] = ACTIONS(1602), - [anon_sym_PIPE] = ACTIONS(1602), - [anon_sym_yield] = ACTIONS(1604), - [anon_sym_move] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(1602), - [aux_sym_string_literal_token1] = ACTIONS(1602), - [sym_char_literal] = ACTIONS(1602), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1604), - [sym_super] = ACTIONS(1604), - [sym_crate] = ACTIONS(1604), - [sym_metavariable] = ACTIONS(1602), - [sym_raw_string_literal] = ACTIONS(1602), - [sym_float_literal] = ACTIONS(1602), + [ts_builtin_sym_end] = ACTIONS(1624), + [sym_identifier] = ACTIONS(1626), + [anon_sym_SEMI] = ACTIONS(1624), + [anon_sym_macro_rules_BANG] = ACTIONS(1624), + [anon_sym_LPAREN] = ACTIONS(1624), + [anon_sym_LBRACE] = ACTIONS(1624), + [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_u8] = ACTIONS(1626), + [anon_sym_i8] = ACTIONS(1626), + [anon_sym_u16] = ACTIONS(1626), + [anon_sym_i16] = ACTIONS(1626), + [anon_sym_u32] = ACTIONS(1626), + [anon_sym_i32] = ACTIONS(1626), + [anon_sym_u64] = ACTIONS(1626), + [anon_sym_i64] = ACTIONS(1626), + [anon_sym_u128] = ACTIONS(1626), + [anon_sym_i128] = ACTIONS(1626), + [anon_sym_isize] = ACTIONS(1626), + [anon_sym_usize] = ACTIONS(1626), + [anon_sym_f32] = ACTIONS(1626), + [anon_sym_f64] = ACTIONS(1626), + [anon_sym_bool] = ACTIONS(1626), + [anon_sym_str] = ACTIONS(1626), + [anon_sym_char] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_break] = ACTIONS(1626), + [anon_sym_const] = ACTIONS(1626), + [anon_sym_continue] = ACTIONS(1626), + [anon_sym_default] = ACTIONS(1626), + [anon_sym_enum] = ACTIONS(1626), + [anon_sym_fn] = ACTIONS(1626), + [anon_sym_for] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_impl] = ACTIONS(1626), + [anon_sym_let] = ACTIONS(1626), + [anon_sym_loop] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_mod] = ACTIONS(1626), + [anon_sym_pub] = ACTIONS(1626), + [anon_sym_return] = ACTIONS(1626), + [anon_sym_static] = ACTIONS(1626), + [anon_sym_struct] = ACTIONS(1626), + [anon_sym_trait] = ACTIONS(1626), + [anon_sym_type] = ACTIONS(1626), + [anon_sym_union] = ACTIONS(1626), + [anon_sym_unsafe] = ACTIONS(1626), + [anon_sym_use] = ACTIONS(1626), + [anon_sym_while] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1624), + [anon_sym_extern] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1624), + [anon_sym_COLON_COLON] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1624), + [anon_sym_DOT_DOT] = ACTIONS(1624), + [anon_sym_DASH] = ACTIONS(1624), + [anon_sym_PIPE] = ACTIONS(1624), + [anon_sym_yield] = ACTIONS(1626), + [anon_sym_move] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(1624), + [aux_sym_string_literal_token1] = ACTIONS(1624), + [sym_char_literal] = ACTIONS(1624), + [anon_sym_true] = ACTIONS(1626), + [anon_sym_false] = ACTIONS(1626), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1626), + [sym_super] = ACTIONS(1626), + [sym_crate] = ACTIONS(1626), + [sym_metavariable] = ACTIONS(1624), + [sym_raw_string_literal] = ACTIONS(1624), + [sym_float_literal] = ACTIONS(1624), [sym_block_comment] = ACTIONS(3), }, [378] = { - [ts_builtin_sym_end] = ACTIONS(1606), - [sym_identifier] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_macro_rules_BANG] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1606), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_SQUOTE] = ACTIONS(1608), - [anon_sym_async] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_default] = ACTIONS(1608), - [anon_sym_enum] = ACTIONS(1608), - [anon_sym_fn] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_impl] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_mod] = ACTIONS(1608), - [anon_sym_pub] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_static] = ACTIONS(1608), - [anon_sym_struct] = ACTIONS(1608), - [anon_sym_trait] = ACTIONS(1608), - [anon_sym_type] = ACTIONS(1608), - [anon_sym_union] = ACTIONS(1608), - [anon_sym_unsafe] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_POUND] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_LT] = ACTIONS(1606), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1606), - [anon_sym_DOT_DOT] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_move] = ACTIONS(1608), - [sym_integer_literal] = ACTIONS(1606), - [aux_sym_string_literal_token1] = ACTIONS(1606), - [sym_char_literal] = ACTIONS(1606), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1608), - [sym_super] = ACTIONS(1608), - [sym_crate] = ACTIONS(1608), - [sym_metavariable] = ACTIONS(1606), - [sym_raw_string_literal] = ACTIONS(1606), - [sym_float_literal] = ACTIONS(1606), + [ts_builtin_sym_end] = ACTIONS(1628), + [sym_identifier] = ACTIONS(1630), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_macro_rules_BANG] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_u8] = ACTIONS(1630), + [anon_sym_i8] = ACTIONS(1630), + [anon_sym_u16] = ACTIONS(1630), + [anon_sym_i16] = ACTIONS(1630), + [anon_sym_u32] = ACTIONS(1630), + [anon_sym_i32] = ACTIONS(1630), + [anon_sym_u64] = ACTIONS(1630), + [anon_sym_i64] = ACTIONS(1630), + [anon_sym_u128] = ACTIONS(1630), + [anon_sym_i128] = ACTIONS(1630), + [anon_sym_isize] = ACTIONS(1630), + [anon_sym_usize] = ACTIONS(1630), + [anon_sym_f32] = ACTIONS(1630), + [anon_sym_f64] = ACTIONS(1630), + [anon_sym_bool] = ACTIONS(1630), + [anon_sym_str] = ACTIONS(1630), + [anon_sym_char] = ACTIONS(1630), + [anon_sym_SQUOTE] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_const] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(1630), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_enum] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1630), + [anon_sym_for] = ACTIONS(1630), + [anon_sym_if] = ACTIONS(1630), + [anon_sym_impl] = ACTIONS(1630), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_loop] = ACTIONS(1630), + [anon_sym_match] = ACTIONS(1630), + [anon_sym_mod] = ACTIONS(1630), + [anon_sym_pub] = ACTIONS(1630), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_struct] = ACTIONS(1630), + [anon_sym_trait] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_unsafe] = ACTIONS(1630), + [anon_sym_use] = ACTIONS(1630), + [anon_sym_while] = ACTIONS(1630), + [anon_sym_POUND] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1628), + [anon_sym_extern] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1628), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_yield] = ACTIONS(1630), + [anon_sym_move] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(1628), + [aux_sym_string_literal_token1] = ACTIONS(1628), + [sym_char_literal] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1630), + [anon_sym_false] = ACTIONS(1630), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1630), + [sym_super] = ACTIONS(1630), + [sym_crate] = ACTIONS(1630), + [sym_metavariable] = ACTIONS(1628), + [sym_raw_string_literal] = ACTIONS(1628), + [sym_float_literal] = ACTIONS(1628), [sym_block_comment] = ACTIONS(3), }, [379] = { - [ts_builtin_sym_end] = ACTIONS(1610), - [sym_identifier] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_macro_rules_BANG] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_SQUOTE] = ACTIONS(1612), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_default] = ACTIONS(1612), - [anon_sym_enum] = ACTIONS(1612), - [anon_sym_fn] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_impl] = ACTIONS(1612), - [anon_sym_let] = ACTIONS(1612), - [anon_sym_loop] = ACTIONS(1612), - [anon_sym_match] = ACTIONS(1612), - [anon_sym_mod] = ACTIONS(1612), - [anon_sym_pub] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_struct] = ACTIONS(1612), - [anon_sym_trait] = ACTIONS(1612), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_union] = ACTIONS(1612), - [anon_sym_unsafe] = ACTIONS(1612), - [anon_sym_use] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_extern] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(1610), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1610), - [anon_sym_DOT_DOT] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_yield] = ACTIONS(1612), - [anon_sym_move] = ACTIONS(1612), - [sym_integer_literal] = ACTIONS(1610), - [aux_sym_string_literal_token1] = ACTIONS(1610), - [sym_char_literal] = ACTIONS(1610), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1612), - [sym_super] = ACTIONS(1612), - [sym_crate] = ACTIONS(1612), - [sym_metavariable] = ACTIONS(1610), - [sym_raw_string_literal] = ACTIONS(1610), - [sym_float_literal] = ACTIONS(1610), + [ts_builtin_sym_end] = ACTIONS(1632), + [sym_identifier] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1632), + [anon_sym_macro_rules_BANG] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_RBRACE] = ACTIONS(1632), + [anon_sym_LBRACK] = ACTIONS(1632), + [anon_sym_STAR] = ACTIONS(1632), + [anon_sym_u8] = ACTIONS(1634), + [anon_sym_i8] = ACTIONS(1634), + [anon_sym_u16] = ACTIONS(1634), + [anon_sym_i16] = ACTIONS(1634), + [anon_sym_u32] = ACTIONS(1634), + [anon_sym_i32] = ACTIONS(1634), + [anon_sym_u64] = ACTIONS(1634), + [anon_sym_i64] = ACTIONS(1634), + [anon_sym_u128] = ACTIONS(1634), + [anon_sym_i128] = ACTIONS(1634), + [anon_sym_isize] = ACTIONS(1634), + [anon_sym_usize] = ACTIONS(1634), + [anon_sym_f32] = ACTIONS(1634), + [anon_sym_f64] = ACTIONS(1634), + [anon_sym_bool] = ACTIONS(1634), + [anon_sym_str] = ACTIONS(1634), + [anon_sym_char] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1634), + [anon_sym_async] = ACTIONS(1634), + [anon_sym_break] = ACTIONS(1634), + [anon_sym_const] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1634), + [anon_sym_enum] = ACTIONS(1634), + [anon_sym_fn] = ACTIONS(1634), + [anon_sym_for] = ACTIONS(1634), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1634), + [anon_sym_let] = ACTIONS(1634), + [anon_sym_loop] = ACTIONS(1634), + [anon_sym_match] = ACTIONS(1634), + [anon_sym_mod] = ACTIONS(1634), + [anon_sym_pub] = ACTIONS(1634), + [anon_sym_return] = ACTIONS(1634), + [anon_sym_static] = ACTIONS(1634), + [anon_sym_struct] = ACTIONS(1634), + [anon_sym_trait] = ACTIONS(1634), + [anon_sym_type] = ACTIONS(1634), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1634), + [anon_sym_use] = ACTIONS(1634), + [anon_sym_while] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1632), + [anon_sym_extern] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1632), + [anon_sym_COLON_COLON] = ACTIONS(1632), + [anon_sym_AMP] = ACTIONS(1632), + [anon_sym_DOT_DOT] = ACTIONS(1632), + [anon_sym_DASH] = ACTIONS(1632), + [anon_sym_PIPE] = ACTIONS(1632), + [anon_sym_yield] = ACTIONS(1634), + [anon_sym_move] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1632), + [aux_sym_string_literal_token1] = ACTIONS(1632), + [sym_char_literal] = ACTIONS(1632), + [anon_sym_true] = ACTIONS(1634), + [anon_sym_false] = ACTIONS(1634), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1634), + [sym_super] = ACTIONS(1634), + [sym_crate] = ACTIONS(1634), + [sym_metavariable] = ACTIONS(1632), + [sym_raw_string_literal] = ACTIONS(1632), + [sym_float_literal] = ACTIONS(1632), [sym_block_comment] = ACTIONS(3), }, [380] = { - [ts_builtin_sym_end] = ACTIONS(1614), - [sym_identifier] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1614), - [anon_sym_macro_rules_BANG] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_u8] = ACTIONS(1616), - [anon_sym_i8] = ACTIONS(1616), - [anon_sym_u16] = ACTIONS(1616), - [anon_sym_i16] = ACTIONS(1616), - [anon_sym_u32] = ACTIONS(1616), - [anon_sym_i32] = ACTIONS(1616), - [anon_sym_u64] = ACTIONS(1616), - [anon_sym_i64] = ACTIONS(1616), - [anon_sym_u128] = ACTIONS(1616), - [anon_sym_i128] = ACTIONS(1616), - [anon_sym_isize] = ACTIONS(1616), - [anon_sym_usize] = ACTIONS(1616), - [anon_sym_f32] = ACTIONS(1616), - [anon_sym_f64] = ACTIONS(1616), - [anon_sym_bool] = ACTIONS(1616), - [anon_sym_str] = ACTIONS(1616), - [anon_sym_char] = ACTIONS(1616), - [anon_sym_SQUOTE] = ACTIONS(1616), - [anon_sym_async] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_default] = ACTIONS(1616), - [anon_sym_enum] = ACTIONS(1616), - [anon_sym_fn] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_impl] = ACTIONS(1616), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_loop] = ACTIONS(1616), - [anon_sym_match] = ACTIONS(1616), - [anon_sym_mod] = ACTIONS(1616), - [anon_sym_pub] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1616), - [anon_sym_struct] = ACTIONS(1616), - [anon_sym_trait] = ACTIONS(1616), - [anon_sym_type] = ACTIONS(1616), - [anon_sym_union] = ACTIONS(1616), - [anon_sym_unsafe] = ACTIONS(1616), - [anon_sym_use] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [anon_sym_POUND] = ACTIONS(1614), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_extern] = ACTIONS(1616), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym_COLON_COLON] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1614), - [anon_sym_DOT_DOT] = ACTIONS(1614), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [anon_sym_yield] = ACTIONS(1616), - [anon_sym_move] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(1614), - [aux_sym_string_literal_token1] = ACTIONS(1614), - [sym_char_literal] = ACTIONS(1614), - [anon_sym_true] = ACTIONS(1616), - [anon_sym_false] = ACTIONS(1616), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1616), - [sym_super] = ACTIONS(1616), - [sym_crate] = ACTIONS(1616), - [sym_metavariable] = ACTIONS(1614), - [sym_raw_string_literal] = ACTIONS(1614), - [sym_float_literal] = ACTIONS(1614), + [ts_builtin_sym_end] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_macro_rules_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_u8] = ACTIONS(1638), + [anon_sym_i8] = ACTIONS(1638), + [anon_sym_u16] = ACTIONS(1638), + [anon_sym_i16] = ACTIONS(1638), + [anon_sym_u32] = ACTIONS(1638), + [anon_sym_i32] = ACTIONS(1638), + [anon_sym_u64] = ACTIONS(1638), + [anon_sym_i64] = ACTIONS(1638), + [anon_sym_u128] = ACTIONS(1638), + [anon_sym_i128] = ACTIONS(1638), + [anon_sym_isize] = ACTIONS(1638), + [anon_sym_usize] = ACTIONS(1638), + [anon_sym_f32] = ACTIONS(1638), + [anon_sym_f64] = ACTIONS(1638), + [anon_sym_bool] = ACTIONS(1638), + [anon_sym_str] = ACTIONS(1638), + [anon_sym_char] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [anon_sym_async] = ACTIONS(1638), + [anon_sym_break] = ACTIONS(1638), + [anon_sym_const] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(1638), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_enum] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1638), + [anon_sym_for] = ACTIONS(1638), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_impl] = ACTIONS(1638), + [anon_sym_let] = ACTIONS(1638), + [anon_sym_loop] = ACTIONS(1638), + [anon_sym_match] = ACTIONS(1638), + [anon_sym_mod] = ACTIONS(1638), + [anon_sym_pub] = ACTIONS(1638), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1638), + [anon_sym_struct] = ACTIONS(1638), + [anon_sym_trait] = ACTIONS(1638), + [anon_sym_type] = ACTIONS(1638), + [anon_sym_union] = ACTIONS(1638), + [anon_sym_unsafe] = ACTIONS(1638), + [anon_sym_use] = ACTIONS(1638), + [anon_sym_while] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_extern] = ACTIONS(1638), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_COLON_COLON] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_DOT_DOT] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_yield] = ACTIONS(1638), + [anon_sym_move] = ACTIONS(1638), + [sym_integer_literal] = ACTIONS(1636), + [aux_sym_string_literal_token1] = ACTIONS(1636), + [sym_char_literal] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1638), + [anon_sym_false] = ACTIONS(1638), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1638), + [sym_super] = ACTIONS(1638), + [sym_crate] = ACTIONS(1638), + [sym_metavariable] = ACTIONS(1636), + [sym_raw_string_literal] = ACTIONS(1636), + [sym_float_literal] = ACTIONS(1636), [sym_block_comment] = ACTIONS(3), }, [381] = { - [ts_builtin_sym_end] = ACTIONS(1618), - [sym_identifier] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1618), - [anon_sym_macro_rules_BANG] = ACTIONS(1618), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACE] = ACTIONS(1618), - [anon_sym_RBRACE] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1618), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_u8] = ACTIONS(1620), - [anon_sym_i8] = ACTIONS(1620), - [anon_sym_u16] = ACTIONS(1620), - [anon_sym_i16] = ACTIONS(1620), - [anon_sym_u32] = ACTIONS(1620), - [anon_sym_i32] = ACTIONS(1620), - [anon_sym_u64] = ACTIONS(1620), - [anon_sym_i64] = ACTIONS(1620), - [anon_sym_u128] = ACTIONS(1620), - [anon_sym_i128] = ACTIONS(1620), - [anon_sym_isize] = ACTIONS(1620), - [anon_sym_usize] = ACTIONS(1620), - [anon_sym_f32] = ACTIONS(1620), - [anon_sym_f64] = ACTIONS(1620), - [anon_sym_bool] = ACTIONS(1620), - [anon_sym_str] = ACTIONS(1620), - [anon_sym_char] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1620), - [anon_sym_async] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_const] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_default] = ACTIONS(1620), - [anon_sym_enum] = ACTIONS(1620), - [anon_sym_fn] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1620), - [anon_sym_impl] = ACTIONS(1620), - [anon_sym_let] = ACTIONS(1620), - [anon_sym_loop] = ACTIONS(1620), - [anon_sym_match] = ACTIONS(1620), - [anon_sym_mod] = ACTIONS(1620), - [anon_sym_pub] = ACTIONS(1620), - [anon_sym_return] = ACTIONS(1620), - [anon_sym_static] = ACTIONS(1620), - [anon_sym_struct] = ACTIONS(1620), - [anon_sym_trait] = ACTIONS(1620), - [anon_sym_type] = ACTIONS(1620), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1620), - [anon_sym_use] = ACTIONS(1620), - [anon_sym_while] = ACTIONS(1620), - [anon_sym_POUND] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1618), - [anon_sym_extern] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1618), - [anon_sym_COLON_COLON] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_DOT_DOT] = ACTIONS(1618), - [anon_sym_DASH] = ACTIONS(1618), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_yield] = ACTIONS(1620), - [anon_sym_move] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(1618), - [aux_sym_string_literal_token1] = ACTIONS(1618), - [sym_char_literal] = ACTIONS(1618), - [anon_sym_true] = ACTIONS(1620), - [anon_sym_false] = ACTIONS(1620), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1620), - [sym_super] = ACTIONS(1620), - [sym_crate] = ACTIONS(1620), - [sym_metavariable] = ACTIONS(1618), - [sym_raw_string_literal] = ACTIONS(1618), - [sym_float_literal] = ACTIONS(1618), + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_macro_invocation] = STATE(2506), + [sym_scoped_identifier] = STATE(1571), + [sym_scoped_type_identifier] = STATE(1936), + [sym_match_arm] = STATE(489), + [sym_last_match_arm] = STATE(2516), + [sym_match_pattern] = STATE(2451), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1924), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [382] = { - [ts_builtin_sym_end] = ACTIONS(1622), - [sym_identifier] = ACTIONS(1624), - [anon_sym_SEMI] = ACTIONS(1622), - [anon_sym_macro_rules_BANG] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1622), - [anon_sym_LBRACK] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1622), - [anon_sym_u8] = ACTIONS(1624), - [anon_sym_i8] = ACTIONS(1624), - [anon_sym_u16] = ACTIONS(1624), - [anon_sym_i16] = ACTIONS(1624), - [anon_sym_u32] = ACTIONS(1624), - [anon_sym_i32] = ACTIONS(1624), - [anon_sym_u64] = ACTIONS(1624), - [anon_sym_i64] = ACTIONS(1624), - [anon_sym_u128] = ACTIONS(1624), - [anon_sym_i128] = ACTIONS(1624), - [anon_sym_isize] = ACTIONS(1624), - [anon_sym_usize] = ACTIONS(1624), - [anon_sym_f32] = ACTIONS(1624), - [anon_sym_f64] = ACTIONS(1624), - [anon_sym_bool] = ACTIONS(1624), - [anon_sym_str] = ACTIONS(1624), - [anon_sym_char] = ACTIONS(1624), - [anon_sym_SQUOTE] = ACTIONS(1624), - [anon_sym_async] = ACTIONS(1624), - [anon_sym_break] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1624), - [anon_sym_continue] = ACTIONS(1624), - [anon_sym_default] = ACTIONS(1624), - [anon_sym_enum] = ACTIONS(1624), - [anon_sym_fn] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_if] = ACTIONS(1624), - [anon_sym_impl] = ACTIONS(1624), - [anon_sym_let] = ACTIONS(1624), - [anon_sym_loop] = ACTIONS(1624), - [anon_sym_match] = ACTIONS(1624), - [anon_sym_mod] = ACTIONS(1624), - [anon_sym_pub] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_struct] = ACTIONS(1624), - [anon_sym_trait] = ACTIONS(1624), - [anon_sym_type] = ACTIONS(1624), - [anon_sym_union] = ACTIONS(1624), - [anon_sym_unsafe] = ACTIONS(1624), - [anon_sym_use] = ACTIONS(1624), - [anon_sym_while] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1622), - [anon_sym_BANG] = ACTIONS(1622), - [anon_sym_extern] = ACTIONS(1624), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1622), - [anon_sym_AMP] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_DASH] = ACTIONS(1622), - [anon_sym_PIPE] = ACTIONS(1622), - [anon_sym_yield] = ACTIONS(1624), - [anon_sym_move] = ACTIONS(1624), - [sym_integer_literal] = ACTIONS(1622), - [aux_sym_string_literal_token1] = ACTIONS(1622), - [sym_char_literal] = ACTIONS(1622), - [anon_sym_true] = ACTIONS(1624), - [anon_sym_false] = ACTIONS(1624), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1622), - [sym_raw_string_literal] = ACTIONS(1622), - [sym_float_literal] = ACTIONS(1622), + [ts_builtin_sym_end] = ACTIONS(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), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(1626), - [sym_identifier] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_macro_rules_BANG] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1626), - [anon_sym_STAR] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_SQUOTE] = ACTIONS(1628), - [anon_sym_async] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1628), - [anon_sym_enum] = ACTIONS(1628), - [anon_sym_fn] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_impl] = ACTIONS(1628), - [anon_sym_let] = ACTIONS(1628), - [anon_sym_loop] = ACTIONS(1628), - [anon_sym_match] = ACTIONS(1628), - [anon_sym_mod] = ACTIONS(1628), - [anon_sym_pub] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_static] = ACTIONS(1628), - [anon_sym_struct] = ACTIONS(1628), - [anon_sym_trait] = ACTIONS(1628), - [anon_sym_type] = ACTIONS(1628), - [anon_sym_union] = ACTIONS(1628), - [anon_sym_unsafe] = ACTIONS(1628), - [anon_sym_use] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_extern] = ACTIONS(1628), - [anon_sym_LT] = ACTIONS(1626), - [anon_sym_COLON_COLON] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_DOT_DOT] = ACTIONS(1626), - [anon_sym_DASH] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_move] = ACTIONS(1628), - [sym_integer_literal] = ACTIONS(1626), - [aux_sym_string_literal_token1] = ACTIONS(1626), - [sym_char_literal] = ACTIONS(1626), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1628), - [sym_super] = ACTIONS(1628), - [sym_crate] = ACTIONS(1628), - [sym_metavariable] = ACTIONS(1626), - [sym_raw_string_literal] = ACTIONS(1626), - [sym_float_literal] = ACTIONS(1626), + [ts_builtin_sym_end] = ACTIONS(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), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(1630), - [sym_identifier] = ACTIONS(1632), - [anon_sym_SEMI] = ACTIONS(1630), - [anon_sym_macro_rules_BANG] = ACTIONS(1630), - [anon_sym_LPAREN] = ACTIONS(1630), - [anon_sym_LBRACE] = ACTIONS(1630), - [anon_sym_RBRACE] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_STAR] = ACTIONS(1630), - [anon_sym_u8] = ACTIONS(1632), - [anon_sym_i8] = ACTIONS(1632), - [anon_sym_u16] = ACTIONS(1632), - [anon_sym_i16] = ACTIONS(1632), - [anon_sym_u32] = ACTIONS(1632), - [anon_sym_i32] = ACTIONS(1632), - [anon_sym_u64] = ACTIONS(1632), - [anon_sym_i64] = ACTIONS(1632), - [anon_sym_u128] = ACTIONS(1632), - [anon_sym_i128] = ACTIONS(1632), - [anon_sym_isize] = ACTIONS(1632), - [anon_sym_usize] = ACTIONS(1632), - [anon_sym_f32] = ACTIONS(1632), - [anon_sym_f64] = ACTIONS(1632), - [anon_sym_bool] = ACTIONS(1632), - [anon_sym_str] = ACTIONS(1632), - [anon_sym_char] = ACTIONS(1632), - [anon_sym_SQUOTE] = ACTIONS(1632), - [anon_sym_async] = ACTIONS(1632), - [anon_sym_break] = ACTIONS(1632), - [anon_sym_const] = ACTIONS(1632), - [anon_sym_continue] = ACTIONS(1632), - [anon_sym_default] = ACTIONS(1632), - [anon_sym_enum] = ACTIONS(1632), - [anon_sym_fn] = ACTIONS(1632), - [anon_sym_for] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1632), - [anon_sym_impl] = ACTIONS(1632), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_loop] = ACTIONS(1632), - [anon_sym_match] = ACTIONS(1632), - [anon_sym_mod] = ACTIONS(1632), - [anon_sym_pub] = ACTIONS(1632), - [anon_sym_return] = ACTIONS(1632), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_struct] = ACTIONS(1632), - [anon_sym_trait] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_union] = ACTIONS(1632), - [anon_sym_unsafe] = ACTIONS(1632), - [anon_sym_use] = ACTIONS(1632), - [anon_sym_while] = ACTIONS(1632), - [anon_sym_POUND] = ACTIONS(1630), - [anon_sym_BANG] = ACTIONS(1630), - [anon_sym_extern] = ACTIONS(1632), - [anon_sym_LT] = ACTIONS(1630), - [anon_sym_COLON_COLON] = ACTIONS(1630), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_DOT_DOT] = ACTIONS(1630), - [anon_sym_DASH] = ACTIONS(1630), - [anon_sym_PIPE] = ACTIONS(1630), - [anon_sym_yield] = ACTIONS(1632), - [anon_sym_move] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(1630), - [aux_sym_string_literal_token1] = ACTIONS(1630), - [sym_char_literal] = ACTIONS(1630), - [anon_sym_true] = ACTIONS(1632), - [anon_sym_false] = ACTIONS(1632), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1632), - [sym_super] = ACTIONS(1632), - [sym_crate] = ACTIONS(1632), - [sym_metavariable] = ACTIONS(1630), - [sym_raw_string_literal] = ACTIONS(1630), - [sym_float_literal] = ACTIONS(1630), + [ts_builtin_sym_end] = ACTIONS(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_block_comment] = ACTIONS(3), }, [385] = { - [ts_builtin_sym_end] = ACTIONS(1634), - [sym_identifier] = ACTIONS(1636), - [anon_sym_SEMI] = ACTIONS(1634), - [anon_sym_macro_rules_BANG] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1634), - [anon_sym_RBRACE] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1634), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_u8] = ACTIONS(1636), - [anon_sym_i8] = ACTIONS(1636), - [anon_sym_u16] = ACTIONS(1636), - [anon_sym_i16] = ACTIONS(1636), - [anon_sym_u32] = ACTIONS(1636), - [anon_sym_i32] = ACTIONS(1636), - [anon_sym_u64] = ACTIONS(1636), - [anon_sym_i64] = ACTIONS(1636), - [anon_sym_u128] = ACTIONS(1636), - [anon_sym_i128] = ACTIONS(1636), - [anon_sym_isize] = ACTIONS(1636), - [anon_sym_usize] = ACTIONS(1636), - [anon_sym_f32] = ACTIONS(1636), - [anon_sym_f64] = ACTIONS(1636), - [anon_sym_bool] = ACTIONS(1636), - [anon_sym_str] = ACTIONS(1636), - [anon_sym_char] = ACTIONS(1636), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1636), - [anon_sym_break] = ACTIONS(1636), - [anon_sym_const] = ACTIONS(1636), - [anon_sym_continue] = ACTIONS(1636), - [anon_sym_default] = ACTIONS(1636), - [anon_sym_enum] = ACTIONS(1636), - [anon_sym_fn] = ACTIONS(1636), - [anon_sym_for] = ACTIONS(1636), - [anon_sym_if] = ACTIONS(1636), - [anon_sym_impl] = ACTIONS(1636), - [anon_sym_let] = ACTIONS(1636), - [anon_sym_loop] = ACTIONS(1636), - [anon_sym_match] = ACTIONS(1636), - [anon_sym_mod] = ACTIONS(1636), - [anon_sym_pub] = ACTIONS(1636), - [anon_sym_return] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(1636), - [anon_sym_struct] = ACTIONS(1636), - [anon_sym_trait] = ACTIONS(1636), - [anon_sym_type] = ACTIONS(1636), - [anon_sym_union] = ACTIONS(1636), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_use] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1634), - [anon_sym_extern] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_DOT_DOT] = ACTIONS(1634), - [anon_sym_DASH] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1634), - [anon_sym_yield] = ACTIONS(1636), - [anon_sym_move] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [aux_sym_string_literal_token1] = ACTIONS(1634), - [sym_char_literal] = ACTIONS(1634), - [anon_sym_true] = ACTIONS(1636), - [anon_sym_false] = ACTIONS(1636), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1636), - [sym_super] = ACTIONS(1636), - [sym_crate] = ACTIONS(1636), - [sym_metavariable] = ACTIONS(1634), - [sym_raw_string_literal] = ACTIONS(1634), - [sym_float_literal] = ACTIONS(1634), + [ts_builtin_sym_end] = ACTIONS(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), [sym_block_comment] = ACTIONS(3), }, [386] = { - [ts_builtin_sym_end] = ACTIONS(1638), - [sym_identifier] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_macro_rules_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_LBRACE] = ACTIONS(1638), - [anon_sym_RBRACE] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(1638), - [anon_sym_STAR] = ACTIONS(1638), - [anon_sym_u8] = ACTIONS(1640), - [anon_sym_i8] = ACTIONS(1640), - [anon_sym_u16] = ACTIONS(1640), - [anon_sym_i16] = ACTIONS(1640), - [anon_sym_u32] = ACTIONS(1640), - [anon_sym_i32] = ACTIONS(1640), - [anon_sym_u64] = ACTIONS(1640), - [anon_sym_i64] = ACTIONS(1640), - [anon_sym_u128] = ACTIONS(1640), - [anon_sym_i128] = ACTIONS(1640), - [anon_sym_isize] = ACTIONS(1640), - [anon_sym_usize] = ACTIONS(1640), - [anon_sym_f32] = ACTIONS(1640), - [anon_sym_f64] = ACTIONS(1640), - [anon_sym_bool] = ACTIONS(1640), - [anon_sym_str] = ACTIONS(1640), - [anon_sym_char] = ACTIONS(1640), - [anon_sym_SQUOTE] = ACTIONS(1640), - [anon_sym_async] = ACTIONS(1640), - [anon_sym_break] = ACTIONS(1640), - [anon_sym_const] = ACTIONS(1640), - [anon_sym_continue] = ACTIONS(1640), - [anon_sym_default] = ACTIONS(1640), - [anon_sym_enum] = ACTIONS(1640), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1640), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_impl] = ACTIONS(1640), - [anon_sym_let] = ACTIONS(1640), - [anon_sym_loop] = ACTIONS(1640), - [anon_sym_match] = ACTIONS(1640), - [anon_sym_mod] = ACTIONS(1640), - [anon_sym_pub] = ACTIONS(1640), - [anon_sym_return] = ACTIONS(1640), - [anon_sym_static] = ACTIONS(1640), - [anon_sym_struct] = ACTIONS(1640), - [anon_sym_trait] = ACTIONS(1640), - [anon_sym_type] = ACTIONS(1640), - [anon_sym_union] = ACTIONS(1640), - [anon_sym_unsafe] = ACTIONS(1640), - [anon_sym_use] = ACTIONS(1640), - [anon_sym_while] = ACTIONS(1640), - [anon_sym_POUND] = ACTIONS(1638), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_extern] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_COLON_COLON] = ACTIONS(1638), - [anon_sym_AMP] = ACTIONS(1638), - [anon_sym_DOT_DOT] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_yield] = ACTIONS(1640), - [anon_sym_move] = ACTIONS(1640), - [sym_integer_literal] = ACTIONS(1638), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1638), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1640), - [sym_super] = ACTIONS(1640), - [sym_crate] = ACTIONS(1640), - [sym_metavariable] = ACTIONS(1638), - [sym_raw_string_literal] = ACTIONS(1638), - [sym_float_literal] = ACTIONS(1638), + [ts_builtin_sym_end] = ACTIONS(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), [sym_block_comment] = ACTIONS(3), }, [387] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [388] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [389] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [390] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [391] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [392] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [393] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [394] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [395] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [396] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [397] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [398] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [399] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [400] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [401] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [402] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [403] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [404] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [405] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [406] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [407] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [408] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [409] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [410] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [411] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [412] = { - [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), + [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), [sym_block_comment] = ACTIONS(3), }, [413] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1766), + [sym_identifier] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_macro_rules_BANG] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_u8] = ACTIONS(1768), + [anon_sym_i8] = ACTIONS(1768), + [anon_sym_u16] = ACTIONS(1768), + [anon_sym_i16] = ACTIONS(1768), + [anon_sym_u32] = ACTIONS(1768), + [anon_sym_i32] = ACTIONS(1768), + [anon_sym_u64] = ACTIONS(1768), + [anon_sym_i64] = ACTIONS(1768), + [anon_sym_u128] = ACTIONS(1768), + [anon_sym_i128] = ACTIONS(1768), + [anon_sym_isize] = ACTIONS(1768), + [anon_sym_usize] = ACTIONS(1768), + [anon_sym_f32] = ACTIONS(1768), + [anon_sym_f64] = ACTIONS(1768), + [anon_sym_bool] = ACTIONS(1768), + [anon_sym_str] = ACTIONS(1768), + [anon_sym_char] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_async] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_const] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_default] = ACTIONS(1768), + [anon_sym_enum] = ACTIONS(1768), + [anon_sym_fn] = ACTIONS(1768), + [anon_sym_for] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_impl] = ACTIONS(1768), + [anon_sym_let] = ACTIONS(1768), + [anon_sym_loop] = ACTIONS(1768), + [anon_sym_match] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1768), + [anon_sym_pub] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_static] = ACTIONS(1768), + [anon_sym_struct] = ACTIONS(1768), + [anon_sym_trait] = ACTIONS(1768), + [anon_sym_type] = ACTIONS(1768), + [anon_sym_union] = ACTIONS(1768), + [anon_sym_unsafe] = ACTIONS(1768), + [anon_sym_use] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_COLON_COLON] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_DOT_DOT] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_yield] = ACTIONS(1768), + [anon_sym_move] = ACTIONS(1768), + [sym_integer_literal] = ACTIONS(1766), + [aux_sym_string_literal_token1] = ACTIONS(1766), + [sym_char_literal] = ACTIONS(1766), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1768), + [sym_super] = ACTIONS(1768), + [sym_crate] = ACTIONS(1768), + [sym_metavariable] = ACTIONS(1766), + [sym_raw_string_literal] = ACTIONS(1766), + [sym_float_literal] = ACTIONS(1766), [sym_block_comment] = ACTIONS(3), }, [414] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1770), + [sym_identifier] = ACTIONS(1772), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_macro_rules_BANG] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_u8] = ACTIONS(1772), + [anon_sym_i8] = ACTIONS(1772), + [anon_sym_u16] = ACTIONS(1772), + [anon_sym_i16] = ACTIONS(1772), + [anon_sym_u32] = ACTIONS(1772), + [anon_sym_i32] = ACTIONS(1772), + [anon_sym_u64] = ACTIONS(1772), + [anon_sym_i64] = ACTIONS(1772), + [anon_sym_u128] = ACTIONS(1772), + [anon_sym_i128] = ACTIONS(1772), + [anon_sym_isize] = ACTIONS(1772), + [anon_sym_usize] = ACTIONS(1772), + [anon_sym_f32] = ACTIONS(1772), + [anon_sym_f64] = ACTIONS(1772), + [anon_sym_bool] = ACTIONS(1772), + [anon_sym_str] = ACTIONS(1772), + [anon_sym_char] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1772), + [anon_sym_async] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_default] = ACTIONS(1772), + [anon_sym_enum] = ACTIONS(1772), + [anon_sym_fn] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_impl] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_mod] = ACTIONS(1772), + [anon_sym_pub] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_static] = ACTIONS(1772), + [anon_sym_struct] = ACTIONS(1772), + [anon_sym_trait] = ACTIONS(1772), + [anon_sym_type] = ACTIONS(1772), + [anon_sym_union] = ACTIONS(1772), + [anon_sym_unsafe] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_yield] = ACTIONS(1772), + [anon_sym_move] = ACTIONS(1772), + [sym_integer_literal] = ACTIONS(1770), + [aux_sym_string_literal_token1] = ACTIONS(1770), + [sym_char_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1772), + [sym_super] = ACTIONS(1772), + [sym_crate] = ACTIONS(1772), + [sym_metavariable] = ACTIONS(1770), + [sym_raw_string_literal] = ACTIONS(1770), + [sym_float_literal] = ACTIONS(1770), [sym_block_comment] = ACTIONS(3), }, [415] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1774), + [sym_identifier] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_macro_rules_BANG] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_u8] = ACTIONS(1776), + [anon_sym_i8] = ACTIONS(1776), + [anon_sym_u16] = ACTIONS(1776), + [anon_sym_i16] = ACTIONS(1776), + [anon_sym_u32] = ACTIONS(1776), + [anon_sym_i32] = ACTIONS(1776), + [anon_sym_u64] = ACTIONS(1776), + [anon_sym_i64] = ACTIONS(1776), + [anon_sym_u128] = ACTIONS(1776), + [anon_sym_i128] = ACTIONS(1776), + [anon_sym_isize] = ACTIONS(1776), + [anon_sym_usize] = ACTIONS(1776), + [anon_sym_f32] = ACTIONS(1776), + [anon_sym_f64] = ACTIONS(1776), + [anon_sym_bool] = ACTIONS(1776), + [anon_sym_str] = ACTIONS(1776), + [anon_sym_char] = ACTIONS(1776), + [anon_sym_SQUOTE] = ACTIONS(1776), + [anon_sym_async] = ACTIONS(1776), + [anon_sym_break] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [anon_sym_continue] = ACTIONS(1776), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_enum] = ACTIONS(1776), + [anon_sym_fn] = ACTIONS(1776), + [anon_sym_for] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1776), + [anon_sym_impl] = ACTIONS(1776), + [anon_sym_let] = ACTIONS(1776), + [anon_sym_loop] = ACTIONS(1776), + [anon_sym_match] = ACTIONS(1776), + [anon_sym_mod] = ACTIONS(1776), + [anon_sym_pub] = ACTIONS(1776), + [anon_sym_return] = ACTIONS(1776), + [anon_sym_static] = ACTIONS(1776), + [anon_sym_struct] = ACTIONS(1776), + [anon_sym_trait] = ACTIONS(1776), + [anon_sym_type] = ACTIONS(1776), + [anon_sym_union] = ACTIONS(1776), + [anon_sym_unsafe] = ACTIONS(1776), + [anon_sym_use] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1776), + [anon_sym_POUND] = ACTIONS(1774), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_extern] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_yield] = ACTIONS(1776), + [anon_sym_move] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [aux_sym_string_literal_token1] = ACTIONS(1774), + [sym_char_literal] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1776), + [anon_sym_false] = ACTIONS(1776), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1776), + [sym_super] = ACTIONS(1776), + [sym_crate] = ACTIONS(1776), + [sym_metavariable] = ACTIONS(1774), + [sym_raw_string_literal] = ACTIONS(1774), + [sym_float_literal] = ACTIONS(1774), [sym_block_comment] = ACTIONS(3), }, [416] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_macro_rules_BANG] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_u8] = ACTIONS(1780), + [anon_sym_i8] = ACTIONS(1780), + [anon_sym_u16] = ACTIONS(1780), + [anon_sym_i16] = ACTIONS(1780), + [anon_sym_u32] = ACTIONS(1780), + [anon_sym_i32] = ACTIONS(1780), + [anon_sym_u64] = ACTIONS(1780), + [anon_sym_i64] = ACTIONS(1780), + [anon_sym_u128] = ACTIONS(1780), + [anon_sym_i128] = ACTIONS(1780), + [anon_sym_isize] = ACTIONS(1780), + [anon_sym_usize] = ACTIONS(1780), + [anon_sym_f32] = ACTIONS(1780), + [anon_sym_f64] = ACTIONS(1780), + [anon_sym_bool] = ACTIONS(1780), + [anon_sym_str] = ACTIONS(1780), + [anon_sym_char] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1780), + [anon_sym_async] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_const] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_default] = ACTIONS(1780), + [anon_sym_enum] = ACTIONS(1780), + [anon_sym_fn] = ACTIONS(1780), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_impl] = ACTIONS(1780), + [anon_sym_let] = ACTIONS(1780), + [anon_sym_loop] = ACTIONS(1780), + [anon_sym_match] = ACTIONS(1780), + [anon_sym_mod] = ACTIONS(1780), + [anon_sym_pub] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_static] = ACTIONS(1780), + [anon_sym_struct] = ACTIONS(1780), + [anon_sym_trait] = ACTIONS(1780), + [anon_sym_type] = ACTIONS(1780), + [anon_sym_union] = ACTIONS(1780), + [anon_sym_unsafe] = ACTIONS(1780), + [anon_sym_use] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_extern] = ACTIONS(1780), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_COLON_COLON] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1778), + [anon_sym_DOT_DOT] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_yield] = ACTIONS(1780), + [anon_sym_move] = ACTIONS(1780), + [sym_integer_literal] = ACTIONS(1778), + [aux_sym_string_literal_token1] = ACTIONS(1778), + [sym_char_literal] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1780), + [sym_super] = ACTIONS(1780), + [sym_crate] = ACTIONS(1780), + [sym_metavariable] = ACTIONS(1778), + [sym_raw_string_literal] = ACTIONS(1778), + [sym_float_literal] = ACTIONS(1778), [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), + [ts_builtin_sym_end] = ACTIONS(1782), + [sym_identifier] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_macro_rules_BANG] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_u8] = ACTIONS(1784), + [anon_sym_i8] = ACTIONS(1784), + [anon_sym_u16] = ACTIONS(1784), + [anon_sym_i16] = ACTIONS(1784), + [anon_sym_u32] = ACTIONS(1784), + [anon_sym_i32] = ACTIONS(1784), + [anon_sym_u64] = ACTIONS(1784), + [anon_sym_i64] = ACTIONS(1784), + [anon_sym_u128] = ACTIONS(1784), + [anon_sym_i128] = ACTIONS(1784), + [anon_sym_isize] = ACTIONS(1784), + [anon_sym_usize] = ACTIONS(1784), + [anon_sym_f32] = ACTIONS(1784), + [anon_sym_f64] = ACTIONS(1784), + [anon_sym_bool] = ACTIONS(1784), + [anon_sym_str] = ACTIONS(1784), + [anon_sym_char] = ACTIONS(1784), + [anon_sym_SQUOTE] = ACTIONS(1784), + [anon_sym_async] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_const] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_enum] = ACTIONS(1784), + [anon_sym_fn] = ACTIONS(1784), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_impl] = ACTIONS(1784), + [anon_sym_let] = ACTIONS(1784), + [anon_sym_loop] = ACTIONS(1784), + [anon_sym_match] = ACTIONS(1784), + [anon_sym_mod] = ACTIONS(1784), + [anon_sym_pub] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_static] = ACTIONS(1784), + [anon_sym_struct] = ACTIONS(1784), + [anon_sym_trait] = ACTIONS(1784), + [anon_sym_type] = ACTIONS(1784), + [anon_sym_union] = ACTIONS(1784), + [anon_sym_unsafe] = ACTIONS(1784), + [anon_sym_use] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_extern] = ACTIONS(1784), + [anon_sym_LT] = ACTIONS(1782), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1782), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_PIPE] = ACTIONS(1782), + [anon_sym_yield] = ACTIONS(1784), + [anon_sym_move] = ACTIONS(1784), + [sym_integer_literal] = ACTIONS(1782), + [aux_sym_string_literal_token1] = ACTIONS(1782), + [sym_char_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1784), + [anon_sym_false] = ACTIONS(1784), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1784), + [sym_super] = ACTIONS(1784), + [sym_crate] = ACTIONS(1784), + [sym_metavariable] = ACTIONS(1782), + [sym_raw_string_literal] = ACTIONS(1782), + [sym_float_literal] = ACTIONS(1782), [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), + [ts_builtin_sym_end] = ACTIONS(1786), + [sym_identifier] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_macro_rules_BANG] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_STAR] = ACTIONS(1786), + [anon_sym_u8] = ACTIONS(1788), + [anon_sym_i8] = ACTIONS(1788), + [anon_sym_u16] = ACTIONS(1788), + [anon_sym_i16] = ACTIONS(1788), + [anon_sym_u32] = ACTIONS(1788), + [anon_sym_i32] = ACTIONS(1788), + [anon_sym_u64] = ACTIONS(1788), + [anon_sym_i64] = ACTIONS(1788), + [anon_sym_u128] = ACTIONS(1788), + [anon_sym_i128] = ACTIONS(1788), + [anon_sym_isize] = ACTIONS(1788), + [anon_sym_usize] = ACTIONS(1788), + [anon_sym_f32] = ACTIONS(1788), + [anon_sym_f64] = ACTIONS(1788), + [anon_sym_bool] = ACTIONS(1788), + [anon_sym_str] = ACTIONS(1788), + [anon_sym_char] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_async] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_fn] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_impl] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_loop] = ACTIONS(1788), + [anon_sym_match] = ACTIONS(1788), + [anon_sym_mod] = ACTIONS(1788), + [anon_sym_pub] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_trait] = ACTIONS(1788), + [anon_sym_type] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_unsafe] = ACTIONS(1788), + [anon_sym_use] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_POUND] = ACTIONS(1786), + [anon_sym_BANG] = ACTIONS(1786), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym_LT] = ACTIONS(1786), + [anon_sym_COLON_COLON] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_DOT_DOT] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_yield] = ACTIONS(1788), + [anon_sym_move] = ACTIONS(1788), + [sym_integer_literal] = ACTIONS(1786), + [aux_sym_string_literal_token1] = ACTIONS(1786), + [sym_char_literal] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1788), + [anon_sym_false] = ACTIONS(1788), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_crate] = ACTIONS(1788), + [sym_metavariable] = ACTIONS(1786), + [sym_raw_string_literal] = ACTIONS(1786), + [sym_float_literal] = ACTIONS(1786), [sym_block_comment] = ACTIONS(3), }, [419] = { - [ts_builtin_sym_end] = ACTIONS(1768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_macro_rules_BANG] = ACTIONS(1768), - [anon_sym_LPAREN] = ACTIONS(1768), - [anon_sym_LBRACE] = ACTIONS(1768), - [anon_sym_RBRACE] = ACTIONS(1768), - [anon_sym_LBRACK] = ACTIONS(1768), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_u8] = ACTIONS(1770), - [anon_sym_i8] = ACTIONS(1770), - [anon_sym_u16] = ACTIONS(1770), - [anon_sym_i16] = ACTIONS(1770), - [anon_sym_u32] = ACTIONS(1770), - [anon_sym_i32] = ACTIONS(1770), - [anon_sym_u64] = ACTIONS(1770), - [anon_sym_i64] = ACTIONS(1770), - [anon_sym_u128] = ACTIONS(1770), - [anon_sym_i128] = ACTIONS(1770), - [anon_sym_isize] = ACTIONS(1770), - [anon_sym_usize] = ACTIONS(1770), - [anon_sym_f32] = ACTIONS(1770), - [anon_sym_f64] = ACTIONS(1770), - [anon_sym_bool] = ACTIONS(1770), - [anon_sym_str] = ACTIONS(1770), - [anon_sym_char] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1770), - [anon_sym_async] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_default] = ACTIONS(1770), - [anon_sym_enum] = ACTIONS(1770), - [anon_sym_fn] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_impl] = ACTIONS(1770), - [anon_sym_let] = ACTIONS(1770), - [anon_sym_loop] = ACTIONS(1770), - [anon_sym_match] = ACTIONS(1770), - [anon_sym_mod] = ACTIONS(1770), - [anon_sym_pub] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_struct] = ACTIONS(1770), - [anon_sym_trait] = ACTIONS(1770), - [anon_sym_type] = ACTIONS(1770), - [anon_sym_union] = ACTIONS(1770), - [anon_sym_unsafe] = ACTIONS(1770), - [anon_sym_use] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1768), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_COLON_COLON] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1768), - [anon_sym_DOT_DOT] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_PIPE] = ACTIONS(1768), - [anon_sym_yield] = ACTIONS(1770), - [anon_sym_move] = ACTIONS(1770), - [sym_integer_literal] = ACTIONS(1768), - [aux_sym_string_literal_token1] = ACTIONS(1768), - [sym_char_literal] = ACTIONS(1768), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1770), - [sym_super] = ACTIONS(1770), - [sym_crate] = ACTIONS(1770), - [sym_metavariable] = ACTIONS(1768), - [sym_raw_string_literal] = ACTIONS(1768), - [sym_float_literal] = ACTIONS(1768), + [ts_builtin_sym_end] = ACTIONS(1790), + [sym_identifier] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_macro_rules_BANG] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_u8] = ACTIONS(1792), + [anon_sym_i8] = ACTIONS(1792), + [anon_sym_u16] = ACTIONS(1792), + [anon_sym_i16] = ACTIONS(1792), + [anon_sym_u32] = ACTIONS(1792), + [anon_sym_i32] = ACTIONS(1792), + [anon_sym_u64] = ACTIONS(1792), + [anon_sym_i64] = ACTIONS(1792), + [anon_sym_u128] = ACTIONS(1792), + [anon_sym_i128] = ACTIONS(1792), + [anon_sym_isize] = ACTIONS(1792), + [anon_sym_usize] = ACTIONS(1792), + [anon_sym_f32] = ACTIONS(1792), + [anon_sym_f64] = ACTIONS(1792), + [anon_sym_bool] = ACTIONS(1792), + [anon_sym_str] = ACTIONS(1792), + [anon_sym_char] = ACTIONS(1792), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_async] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1792), + [anon_sym_enum] = ACTIONS(1792), + [anon_sym_fn] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_impl] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1792), + [anon_sym_loop] = ACTIONS(1792), + [anon_sym_match] = ACTIONS(1792), + [anon_sym_mod] = ACTIONS(1792), + [anon_sym_pub] = ACTIONS(1792), + [anon_sym_return] = ACTIONS(1792), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_struct] = ACTIONS(1792), + [anon_sym_trait] = ACTIONS(1792), + [anon_sym_type] = ACTIONS(1792), + [anon_sym_union] = ACTIONS(1792), + [anon_sym_unsafe] = ACTIONS(1792), + [anon_sym_use] = ACTIONS(1792), + [anon_sym_while] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_extern] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_yield] = ACTIONS(1792), + [anon_sym_move] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [aux_sym_string_literal_token1] = ACTIONS(1790), + [sym_char_literal] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1792), + [anon_sym_false] = ACTIONS(1792), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1792), + [sym_super] = ACTIONS(1792), + [sym_crate] = ACTIONS(1792), + [sym_metavariable] = ACTIONS(1790), + [sym_raw_string_literal] = ACTIONS(1790), + [sym_float_literal] = ACTIONS(1790), [sym_block_comment] = ACTIONS(3), }, [420] = { - [ts_builtin_sym_end] = ACTIONS(1772), - [sym_identifier] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_macro_rules_BANG] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_u8] = ACTIONS(1774), - [anon_sym_i8] = ACTIONS(1774), - [anon_sym_u16] = ACTIONS(1774), - [anon_sym_i16] = ACTIONS(1774), - [anon_sym_u32] = ACTIONS(1774), - [anon_sym_i32] = ACTIONS(1774), - [anon_sym_u64] = ACTIONS(1774), - [anon_sym_i64] = ACTIONS(1774), - [anon_sym_u128] = ACTIONS(1774), - [anon_sym_i128] = ACTIONS(1774), - [anon_sym_isize] = ACTIONS(1774), - [anon_sym_usize] = ACTIONS(1774), - [anon_sym_f32] = ACTIONS(1774), - [anon_sym_f64] = ACTIONS(1774), - [anon_sym_bool] = ACTIONS(1774), - [anon_sym_str] = ACTIONS(1774), - [anon_sym_char] = ACTIONS(1774), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_async] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_fn] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_impl] = ACTIONS(1774), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_loop] = ACTIONS(1774), - [anon_sym_match] = ACTIONS(1774), - [anon_sym_mod] = ACTIONS(1774), - [anon_sym_pub] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_trait] = ACTIONS(1774), - [anon_sym_type] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_unsafe] = ACTIONS(1774), - [anon_sym_use] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_POUND] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1772), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_yield] = ACTIONS(1774), - [anon_sym_move] = ACTIONS(1774), - [sym_integer_literal] = ACTIONS(1772), - [aux_sym_string_literal_token1] = ACTIONS(1772), - [sym_char_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1774), - [anon_sym_false] = ACTIONS(1774), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_crate] = ACTIONS(1774), - [sym_metavariable] = ACTIONS(1772), - [sym_raw_string_literal] = ACTIONS(1772), - [sym_float_literal] = ACTIONS(1772), + [ts_builtin_sym_end] = ACTIONS(1794), + [sym_identifier] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_macro_rules_BANG] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_STAR] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1796), + [anon_sym_async] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_const] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1796), + [anon_sym_enum] = ACTIONS(1796), + [anon_sym_fn] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_impl] = ACTIONS(1796), + [anon_sym_let] = ACTIONS(1796), + [anon_sym_loop] = ACTIONS(1796), + [anon_sym_match] = ACTIONS(1796), + [anon_sym_mod] = ACTIONS(1796), + [anon_sym_pub] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_static] = ACTIONS(1796), + [anon_sym_struct] = ACTIONS(1796), + [anon_sym_trait] = ACTIONS(1796), + [anon_sym_type] = ACTIONS(1796), + [anon_sym_union] = ACTIONS(1796), + [anon_sym_unsafe] = ACTIONS(1796), + [anon_sym_use] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_POUND] = ACTIONS(1794), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_extern] = ACTIONS(1796), + [anon_sym_LT] = ACTIONS(1794), + [anon_sym_COLON_COLON] = ACTIONS(1794), + [anon_sym_AMP] = ACTIONS(1794), + [anon_sym_DOT_DOT] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_PIPE] = ACTIONS(1794), + [anon_sym_yield] = ACTIONS(1796), + [anon_sym_move] = ACTIONS(1796), + [sym_integer_literal] = ACTIONS(1794), + [aux_sym_string_literal_token1] = ACTIONS(1794), + [sym_char_literal] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_crate] = ACTIONS(1796), + [sym_metavariable] = ACTIONS(1794), + [sym_raw_string_literal] = ACTIONS(1794), + [sym_float_literal] = ACTIONS(1794), [sym_block_comment] = ACTIONS(3), }, [421] = { - [ts_builtin_sym_end] = ACTIONS(1776), - [sym_identifier] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_macro_rules_BANG] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_u8] = ACTIONS(1778), - [anon_sym_i8] = ACTIONS(1778), - [anon_sym_u16] = ACTIONS(1778), - [anon_sym_i16] = ACTIONS(1778), - [anon_sym_u32] = ACTIONS(1778), - [anon_sym_i32] = ACTIONS(1778), - [anon_sym_u64] = ACTIONS(1778), - [anon_sym_i64] = ACTIONS(1778), - [anon_sym_u128] = ACTIONS(1778), - [anon_sym_i128] = ACTIONS(1778), - [anon_sym_isize] = ACTIONS(1778), - [anon_sym_usize] = ACTIONS(1778), - [anon_sym_f32] = ACTIONS(1778), - [anon_sym_f64] = ACTIONS(1778), - [anon_sym_bool] = ACTIONS(1778), - [anon_sym_str] = ACTIONS(1778), - [anon_sym_char] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1778), - [anon_sym_async] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_default] = ACTIONS(1778), - [anon_sym_enum] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_impl] = ACTIONS(1778), - [anon_sym_let] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1778), - [anon_sym_match] = ACTIONS(1778), - [anon_sym_mod] = ACTIONS(1778), - [anon_sym_pub] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1778), - [anon_sym_struct] = ACTIONS(1778), - [anon_sym_trait] = ACTIONS(1778), - [anon_sym_type] = ACTIONS(1778), - [anon_sym_union] = ACTIONS(1778), - [anon_sym_unsafe] = ACTIONS(1778), - [anon_sym_use] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_POUND] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_extern] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_COLON_COLON] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_DOT_DOT] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1776), - [anon_sym_PIPE] = ACTIONS(1776), - [anon_sym_yield] = ACTIONS(1778), - [anon_sym_move] = ACTIONS(1778), - [sym_integer_literal] = ACTIONS(1776), - [aux_sym_string_literal_token1] = ACTIONS(1776), - [sym_char_literal] = ACTIONS(1776), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1778), - [sym_super] = ACTIONS(1778), - [sym_crate] = ACTIONS(1778), - [sym_metavariable] = ACTIONS(1776), - [sym_raw_string_literal] = ACTIONS(1776), - [sym_float_literal] = ACTIONS(1776), + [ts_builtin_sym_end] = ACTIONS(1798), + [sym_identifier] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_macro_rules_BANG] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1800), + [anon_sym_async] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [anon_sym_fn] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_impl] = ACTIONS(1800), + [anon_sym_let] = ACTIONS(1800), + [anon_sym_loop] = ACTIONS(1800), + [anon_sym_match] = ACTIONS(1800), + [anon_sym_mod] = ACTIONS(1800), + [anon_sym_pub] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_trait] = ACTIONS(1800), + [anon_sym_type] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1800), + [anon_sym_unsafe] = ACTIONS(1800), + [anon_sym_use] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_POUND] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1798), + [anon_sym_extern] = ACTIONS(1800), + [anon_sym_LT] = ACTIONS(1798), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_yield] = ACTIONS(1800), + [anon_sym_move] = ACTIONS(1800), + [sym_integer_literal] = ACTIONS(1798), + [aux_sym_string_literal_token1] = ACTIONS(1798), + [sym_char_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1800), + [anon_sym_false] = ACTIONS(1800), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_crate] = ACTIONS(1800), + [sym_metavariable] = ACTIONS(1798), + [sym_raw_string_literal] = ACTIONS(1798), + [sym_float_literal] = ACTIONS(1798), [sym_block_comment] = ACTIONS(3), }, [422] = { - [ts_builtin_sym_end] = ACTIONS(1780), - [sym_identifier] = ACTIONS(1782), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_macro_rules_BANG] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_u8] = ACTIONS(1782), - [anon_sym_i8] = ACTIONS(1782), - [anon_sym_u16] = ACTIONS(1782), - [anon_sym_i16] = ACTIONS(1782), - [anon_sym_u32] = ACTIONS(1782), - [anon_sym_i32] = ACTIONS(1782), - [anon_sym_u64] = ACTIONS(1782), - [anon_sym_i64] = ACTIONS(1782), - [anon_sym_u128] = ACTIONS(1782), - [anon_sym_i128] = ACTIONS(1782), - [anon_sym_isize] = ACTIONS(1782), - [anon_sym_usize] = ACTIONS(1782), - [anon_sym_f32] = ACTIONS(1782), - [anon_sym_f64] = ACTIONS(1782), - [anon_sym_bool] = ACTIONS(1782), - [anon_sym_str] = ACTIONS(1782), - [anon_sym_char] = ACTIONS(1782), - [anon_sym_SQUOTE] = ACTIONS(1782), - [anon_sym_async] = ACTIONS(1782), - [anon_sym_break] = ACTIONS(1782), - [anon_sym_const] = ACTIONS(1782), - [anon_sym_continue] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1782), - [anon_sym_enum] = ACTIONS(1782), - [anon_sym_fn] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1782), - [anon_sym_if] = ACTIONS(1782), - [anon_sym_impl] = ACTIONS(1782), - [anon_sym_let] = ACTIONS(1782), - [anon_sym_loop] = ACTIONS(1782), - [anon_sym_match] = ACTIONS(1782), - [anon_sym_mod] = ACTIONS(1782), - [anon_sym_pub] = ACTIONS(1782), - [anon_sym_return] = ACTIONS(1782), - [anon_sym_static] = ACTIONS(1782), - [anon_sym_struct] = ACTIONS(1782), - [anon_sym_trait] = ACTIONS(1782), - [anon_sym_type] = ACTIONS(1782), - [anon_sym_union] = ACTIONS(1782), - [anon_sym_unsafe] = ACTIONS(1782), - [anon_sym_use] = ACTIONS(1782), - [anon_sym_while] = ACTIONS(1782), - [anon_sym_POUND] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_extern] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [anon_sym_yield] = ACTIONS(1782), - [anon_sym_move] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [aux_sym_string_literal_token1] = ACTIONS(1780), - [sym_char_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1782), - [sym_super] = ACTIONS(1782), - [sym_crate] = ACTIONS(1782), - [sym_metavariable] = ACTIONS(1780), - [sym_raw_string_literal] = ACTIONS(1780), - [sym_float_literal] = ACTIONS(1780), + [ts_builtin_sym_end] = ACTIONS(1802), + [sym_identifier] = ACTIONS(1804), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_macro_rules_BANG] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_u8] = ACTIONS(1804), + [anon_sym_i8] = ACTIONS(1804), + [anon_sym_u16] = ACTIONS(1804), + [anon_sym_i16] = ACTIONS(1804), + [anon_sym_u32] = ACTIONS(1804), + [anon_sym_i32] = ACTIONS(1804), + [anon_sym_u64] = ACTIONS(1804), + [anon_sym_i64] = ACTIONS(1804), + [anon_sym_u128] = ACTIONS(1804), + [anon_sym_i128] = ACTIONS(1804), + [anon_sym_isize] = ACTIONS(1804), + [anon_sym_usize] = ACTIONS(1804), + [anon_sym_f32] = ACTIONS(1804), + [anon_sym_f64] = ACTIONS(1804), + [anon_sym_bool] = ACTIONS(1804), + [anon_sym_str] = ACTIONS(1804), + [anon_sym_char] = ACTIONS(1804), + [anon_sym_SQUOTE] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_break] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_continue] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_enum] = ACTIONS(1804), + [anon_sym_fn] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1804), + [anon_sym_if] = ACTIONS(1804), + [anon_sym_impl] = ACTIONS(1804), + [anon_sym_let] = ACTIONS(1804), + [anon_sym_loop] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_mod] = ACTIONS(1804), + [anon_sym_pub] = ACTIONS(1804), + [anon_sym_return] = ACTIONS(1804), + [anon_sym_static] = ACTIONS(1804), + [anon_sym_struct] = ACTIONS(1804), + [anon_sym_trait] = ACTIONS(1804), + [anon_sym_type] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_unsafe] = ACTIONS(1804), + [anon_sym_use] = ACTIONS(1804), + [anon_sym_while] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_extern] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_yield] = ACTIONS(1804), + [anon_sym_move] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [aux_sym_string_literal_token1] = ACTIONS(1802), + [sym_char_literal] = ACTIONS(1802), + [anon_sym_true] = ACTIONS(1804), + [anon_sym_false] = ACTIONS(1804), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1804), + [sym_super] = ACTIONS(1804), + [sym_crate] = ACTIONS(1804), + [sym_metavariable] = ACTIONS(1802), + [sym_raw_string_literal] = ACTIONS(1802), + [sym_float_literal] = ACTIONS(1802), [sym_block_comment] = ACTIONS(3), }, [423] = { - [ts_builtin_sym_end] = ACTIONS(1784), - [sym_identifier] = ACTIONS(1786), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_macro_rules_BANG] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1784), - [anon_sym_RBRACE] = ACTIONS(1784), - [anon_sym_LBRACK] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_u8] = ACTIONS(1786), - [anon_sym_i8] = ACTIONS(1786), - [anon_sym_u16] = ACTIONS(1786), - [anon_sym_i16] = ACTIONS(1786), - [anon_sym_u32] = ACTIONS(1786), - [anon_sym_i32] = ACTIONS(1786), - [anon_sym_u64] = ACTIONS(1786), - [anon_sym_i64] = ACTIONS(1786), - [anon_sym_u128] = ACTIONS(1786), - [anon_sym_i128] = ACTIONS(1786), - [anon_sym_isize] = ACTIONS(1786), - [anon_sym_usize] = ACTIONS(1786), - [anon_sym_f32] = ACTIONS(1786), - [anon_sym_f64] = ACTIONS(1786), - [anon_sym_bool] = ACTIONS(1786), - [anon_sym_str] = ACTIONS(1786), - [anon_sym_char] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1786), - [anon_sym_async] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_fn] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_impl] = ACTIONS(1786), - [anon_sym_let] = ACTIONS(1786), - [anon_sym_loop] = ACTIONS(1786), - [anon_sym_match] = ACTIONS(1786), - [anon_sym_mod] = ACTIONS(1786), - [anon_sym_pub] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_trait] = ACTIONS(1786), - [anon_sym_type] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_unsafe] = ACTIONS(1786), - [anon_sym_use] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1784), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_yield] = ACTIONS(1786), - [anon_sym_move] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [aux_sym_string_literal_token1] = ACTIONS(1784), - [sym_char_literal] = ACTIONS(1784), - [anon_sym_true] = ACTIONS(1786), - [anon_sym_false] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_crate] = ACTIONS(1786), - [sym_metavariable] = ACTIONS(1784), - [sym_raw_string_literal] = ACTIONS(1784), - [sym_float_literal] = ACTIONS(1784), + [ts_builtin_sym_end] = ACTIONS(1806), + [sym_identifier] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_macro_rules_BANG] = ACTIONS(1806), + [anon_sym_LPAREN] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_LBRACK] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(1806), + [anon_sym_u8] = ACTIONS(1808), + [anon_sym_i8] = ACTIONS(1808), + [anon_sym_u16] = ACTIONS(1808), + [anon_sym_i16] = ACTIONS(1808), + [anon_sym_u32] = ACTIONS(1808), + [anon_sym_i32] = ACTIONS(1808), + [anon_sym_u64] = ACTIONS(1808), + [anon_sym_i64] = ACTIONS(1808), + [anon_sym_u128] = ACTIONS(1808), + [anon_sym_i128] = ACTIONS(1808), + [anon_sym_isize] = ACTIONS(1808), + [anon_sym_usize] = ACTIONS(1808), + [anon_sym_f32] = ACTIONS(1808), + [anon_sym_f64] = ACTIONS(1808), + [anon_sym_bool] = ACTIONS(1808), + [anon_sym_str] = ACTIONS(1808), + [anon_sym_char] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1808), + [anon_sym_async] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_const] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_enum] = ACTIONS(1808), + [anon_sym_fn] = ACTIONS(1808), + [anon_sym_for] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_impl] = ACTIONS(1808), + [anon_sym_let] = ACTIONS(1808), + [anon_sym_loop] = ACTIONS(1808), + [anon_sym_match] = ACTIONS(1808), + [anon_sym_mod] = ACTIONS(1808), + [anon_sym_pub] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_static] = ACTIONS(1808), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_trait] = ACTIONS(1808), + [anon_sym_type] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_unsafe] = ACTIONS(1808), + [anon_sym_use] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_extern] = ACTIONS(1808), + [anon_sym_LT] = ACTIONS(1806), + [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_yield] = ACTIONS(1808), + [anon_sym_move] = ACTIONS(1808), + [sym_integer_literal] = ACTIONS(1806), + [aux_sym_string_literal_token1] = ACTIONS(1806), + [sym_char_literal] = ACTIONS(1806), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1806), + [sym_raw_string_literal] = ACTIONS(1806), + [sym_float_literal] = ACTIONS(1806), [sym_block_comment] = ACTIONS(3), }, [424] = { - [ts_builtin_sym_end] = ACTIONS(1788), - [sym_identifier] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_macro_rules_BANG] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_u8] = ACTIONS(1790), - [anon_sym_i8] = ACTIONS(1790), - [anon_sym_u16] = ACTIONS(1790), - [anon_sym_i16] = ACTIONS(1790), - [anon_sym_u32] = ACTIONS(1790), - [anon_sym_i32] = ACTIONS(1790), - [anon_sym_u64] = ACTIONS(1790), - [anon_sym_i64] = ACTIONS(1790), - [anon_sym_u128] = ACTIONS(1790), - [anon_sym_i128] = ACTIONS(1790), - [anon_sym_isize] = ACTIONS(1790), - [anon_sym_usize] = ACTIONS(1790), - [anon_sym_f32] = ACTIONS(1790), - [anon_sym_f64] = ACTIONS(1790), - [anon_sym_bool] = ACTIONS(1790), - [anon_sym_str] = ACTIONS(1790), - [anon_sym_char] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1790), - [anon_sym_async] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_fn] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_impl] = ACTIONS(1790), - [anon_sym_let] = ACTIONS(1790), - [anon_sym_loop] = ACTIONS(1790), - [anon_sym_match] = ACTIONS(1790), - [anon_sym_mod] = ACTIONS(1790), - [anon_sym_pub] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_trait] = ACTIONS(1790), - [anon_sym_type] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_unsafe] = ACTIONS(1790), - [anon_sym_use] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(1788), - [anon_sym_COLON_COLON] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_DOT_DOT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_yield] = ACTIONS(1790), - [anon_sym_move] = ACTIONS(1790), - [sym_integer_literal] = ACTIONS(1788), - [aux_sym_string_literal_token1] = ACTIONS(1788), - [sym_char_literal] = ACTIONS(1788), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_crate] = ACTIONS(1790), - [sym_metavariable] = ACTIONS(1788), - [sym_raw_string_literal] = ACTIONS(1788), - [sym_float_literal] = ACTIONS(1788), + [ts_builtin_sym_end] = ACTIONS(1810), + [sym_identifier] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_macro_rules_BANG] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_u8] = ACTIONS(1812), + [anon_sym_i8] = ACTIONS(1812), + [anon_sym_u16] = ACTIONS(1812), + [anon_sym_i16] = ACTIONS(1812), + [anon_sym_u32] = ACTIONS(1812), + [anon_sym_i32] = ACTIONS(1812), + [anon_sym_u64] = ACTIONS(1812), + [anon_sym_i64] = ACTIONS(1812), + [anon_sym_u128] = ACTIONS(1812), + [anon_sym_i128] = ACTIONS(1812), + [anon_sym_isize] = ACTIONS(1812), + [anon_sym_usize] = ACTIONS(1812), + [anon_sym_f32] = ACTIONS(1812), + [anon_sym_f64] = ACTIONS(1812), + [anon_sym_bool] = ACTIONS(1812), + [anon_sym_str] = ACTIONS(1812), + [anon_sym_char] = ACTIONS(1812), + [anon_sym_SQUOTE] = ACTIONS(1812), + [anon_sym_async] = ACTIONS(1812), + [anon_sym_break] = ACTIONS(1812), + [anon_sym_const] = ACTIONS(1812), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_default] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1812), + [anon_sym_fn] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1812), + [anon_sym_impl] = ACTIONS(1812), + [anon_sym_let] = ACTIONS(1812), + [anon_sym_loop] = ACTIONS(1812), + [anon_sym_match] = ACTIONS(1812), + [anon_sym_mod] = ACTIONS(1812), + [anon_sym_pub] = ACTIONS(1812), + [anon_sym_return] = ACTIONS(1812), + [anon_sym_static] = ACTIONS(1812), + [anon_sym_struct] = ACTIONS(1812), + [anon_sym_trait] = ACTIONS(1812), + [anon_sym_type] = ACTIONS(1812), + [anon_sym_union] = ACTIONS(1812), + [anon_sym_unsafe] = ACTIONS(1812), + [anon_sym_use] = ACTIONS(1812), + [anon_sym_while] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_extern] = ACTIONS(1812), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_AMP] = ACTIONS(1810), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_yield] = ACTIONS(1812), + [anon_sym_move] = ACTIONS(1812), + [sym_integer_literal] = ACTIONS(1810), + [aux_sym_string_literal_token1] = ACTIONS(1810), + [sym_char_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1812), + [anon_sym_false] = ACTIONS(1812), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1812), + [sym_super] = ACTIONS(1812), + [sym_crate] = ACTIONS(1812), + [sym_metavariable] = ACTIONS(1810), + [sym_raw_string_literal] = ACTIONS(1810), + [sym_float_literal] = ACTIONS(1810), [sym_block_comment] = ACTIONS(3), }, [425] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [sym_identifier] = ACTIONS(1794), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_macro_rules_BANG] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_u8] = ACTIONS(1794), - [anon_sym_i8] = ACTIONS(1794), - [anon_sym_u16] = ACTIONS(1794), - [anon_sym_i16] = ACTIONS(1794), - [anon_sym_u32] = ACTIONS(1794), - [anon_sym_i32] = ACTIONS(1794), - [anon_sym_u64] = ACTIONS(1794), - [anon_sym_i64] = ACTIONS(1794), - [anon_sym_u128] = ACTIONS(1794), - [anon_sym_i128] = ACTIONS(1794), - [anon_sym_isize] = ACTIONS(1794), - [anon_sym_usize] = ACTIONS(1794), - [anon_sym_f32] = ACTIONS(1794), - [anon_sym_f64] = ACTIONS(1794), - [anon_sym_bool] = ACTIONS(1794), - [anon_sym_str] = ACTIONS(1794), - [anon_sym_char] = ACTIONS(1794), - [anon_sym_SQUOTE] = ACTIONS(1794), - [anon_sym_async] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_fn] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_impl] = ACTIONS(1794), - [anon_sym_let] = ACTIONS(1794), - [anon_sym_loop] = ACTIONS(1794), - [anon_sym_match] = ACTIONS(1794), - [anon_sym_mod] = ACTIONS(1794), - [anon_sym_pub] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_trait] = ACTIONS(1794), - [anon_sym_type] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_unsafe] = ACTIONS(1794), - [anon_sym_use] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_POUND] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_yield] = ACTIONS(1794), - [anon_sym_move] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(1792), - [aux_sym_string_literal_token1] = ACTIONS(1792), - [sym_char_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1794), - [anon_sym_false] = ACTIONS(1794), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_crate] = ACTIONS(1794), - [sym_metavariable] = ACTIONS(1792), - [sym_raw_string_literal] = ACTIONS(1792), - [sym_float_literal] = ACTIONS(1792), + [ts_builtin_sym_end] = ACTIONS(1814), + [sym_identifier] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1814), + [anon_sym_macro_rules_BANG] = ACTIONS(1814), + [anon_sym_LPAREN] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1814), + [anon_sym_RBRACE] = ACTIONS(1814), + [anon_sym_LBRACK] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_u8] = ACTIONS(1816), + [anon_sym_i8] = ACTIONS(1816), + [anon_sym_u16] = ACTIONS(1816), + [anon_sym_i16] = ACTIONS(1816), + [anon_sym_u32] = ACTIONS(1816), + [anon_sym_i32] = ACTIONS(1816), + [anon_sym_u64] = ACTIONS(1816), + [anon_sym_i64] = ACTIONS(1816), + [anon_sym_u128] = ACTIONS(1816), + [anon_sym_i128] = ACTIONS(1816), + [anon_sym_isize] = ACTIONS(1816), + [anon_sym_usize] = ACTIONS(1816), + [anon_sym_f32] = ACTIONS(1816), + [anon_sym_f64] = ACTIONS(1816), + [anon_sym_bool] = ACTIONS(1816), + [anon_sym_str] = ACTIONS(1816), + [anon_sym_char] = ACTIONS(1816), + [anon_sym_SQUOTE] = ACTIONS(1816), + [anon_sym_async] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1816), + [anon_sym_const] = ACTIONS(1816), + [anon_sym_continue] = ACTIONS(1816), + [anon_sym_default] = ACTIONS(1816), + [anon_sym_enum] = ACTIONS(1816), + [anon_sym_fn] = ACTIONS(1816), + [anon_sym_for] = ACTIONS(1816), + [anon_sym_if] = ACTIONS(1816), + [anon_sym_impl] = ACTIONS(1816), + [anon_sym_let] = ACTIONS(1816), + [anon_sym_loop] = ACTIONS(1816), + [anon_sym_match] = ACTIONS(1816), + [anon_sym_mod] = ACTIONS(1816), + [anon_sym_pub] = ACTIONS(1816), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_static] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1816), + [anon_sym_trait] = ACTIONS(1816), + [anon_sym_type] = ACTIONS(1816), + [anon_sym_union] = ACTIONS(1816), + [anon_sym_unsafe] = ACTIONS(1816), + [anon_sym_use] = ACTIONS(1816), + [anon_sym_while] = ACTIONS(1816), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_extern] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1814), + [anon_sym_AMP] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_PIPE] = ACTIONS(1814), + [anon_sym_yield] = ACTIONS(1816), + [anon_sym_move] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [aux_sym_string_literal_token1] = ACTIONS(1814), + [sym_char_literal] = ACTIONS(1814), + [anon_sym_true] = ACTIONS(1816), + [anon_sym_false] = ACTIONS(1816), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1816), + [sym_super] = ACTIONS(1816), + [sym_crate] = ACTIONS(1816), + [sym_metavariable] = ACTIONS(1814), + [sym_raw_string_literal] = ACTIONS(1814), + [sym_float_literal] = ACTIONS(1814), [sym_block_comment] = ACTIONS(3), }, [426] = { - [ts_builtin_sym_end] = ACTIONS(1796), - [sym_identifier] = ACTIONS(1798), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_macro_rules_BANG] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_u8] = ACTIONS(1798), - [anon_sym_i8] = ACTIONS(1798), - [anon_sym_u16] = ACTIONS(1798), - [anon_sym_i16] = ACTIONS(1798), - [anon_sym_u32] = ACTIONS(1798), - [anon_sym_i32] = ACTIONS(1798), - [anon_sym_u64] = ACTIONS(1798), - [anon_sym_i64] = ACTIONS(1798), - [anon_sym_u128] = ACTIONS(1798), - [anon_sym_i128] = ACTIONS(1798), - [anon_sym_isize] = ACTIONS(1798), - [anon_sym_usize] = ACTIONS(1798), - [anon_sym_f32] = ACTIONS(1798), - [anon_sym_f64] = ACTIONS(1798), - [anon_sym_bool] = ACTIONS(1798), - [anon_sym_str] = ACTIONS(1798), - [anon_sym_char] = ACTIONS(1798), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_async] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_fn] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_impl] = ACTIONS(1798), - [anon_sym_let] = ACTIONS(1798), - [anon_sym_loop] = ACTIONS(1798), - [anon_sym_match] = ACTIONS(1798), - [anon_sym_mod] = ACTIONS(1798), - [anon_sym_pub] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_trait] = ACTIONS(1798), - [anon_sym_type] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_unsafe] = ACTIONS(1798), - [anon_sym_use] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_PIPE] = ACTIONS(1796), - [anon_sym_yield] = ACTIONS(1798), - [anon_sym_move] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [aux_sym_string_literal_token1] = ACTIONS(1796), - [sym_char_literal] = ACTIONS(1796), - [anon_sym_true] = ACTIONS(1798), - [anon_sym_false] = ACTIONS(1798), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_crate] = ACTIONS(1798), - [sym_metavariable] = ACTIONS(1796), - [sym_raw_string_literal] = ACTIONS(1796), - [sym_float_literal] = ACTIONS(1796), + [ts_builtin_sym_end] = ACTIONS(1818), + [sym_identifier] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_macro_rules_BANG] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1818), + [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(1818), + [anon_sym_STAR] = ACTIONS(1818), + [anon_sym_u8] = ACTIONS(1820), + [anon_sym_i8] = ACTIONS(1820), + [anon_sym_u16] = ACTIONS(1820), + [anon_sym_i16] = ACTIONS(1820), + [anon_sym_u32] = ACTIONS(1820), + [anon_sym_i32] = ACTIONS(1820), + [anon_sym_u64] = ACTIONS(1820), + [anon_sym_i64] = ACTIONS(1820), + [anon_sym_u128] = ACTIONS(1820), + [anon_sym_i128] = ACTIONS(1820), + [anon_sym_isize] = ACTIONS(1820), + [anon_sym_usize] = ACTIONS(1820), + [anon_sym_f32] = ACTIONS(1820), + [anon_sym_f64] = ACTIONS(1820), + [anon_sym_bool] = ACTIONS(1820), + [anon_sym_str] = ACTIONS(1820), + [anon_sym_char] = ACTIONS(1820), + [anon_sym_SQUOTE] = ACTIONS(1820), + [anon_sym_async] = ACTIONS(1820), + [anon_sym_break] = ACTIONS(1820), + [anon_sym_const] = ACTIONS(1820), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_default] = ACTIONS(1820), + [anon_sym_enum] = ACTIONS(1820), + [anon_sym_fn] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_impl] = ACTIONS(1820), + [anon_sym_let] = ACTIONS(1820), + [anon_sym_loop] = ACTIONS(1820), + [anon_sym_match] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1820), + [anon_sym_pub] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_static] = ACTIONS(1820), + [anon_sym_struct] = ACTIONS(1820), + [anon_sym_trait] = ACTIONS(1820), + [anon_sym_type] = ACTIONS(1820), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_unsafe] = ACTIONS(1820), + [anon_sym_use] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(1818), + [anon_sym_BANG] = ACTIONS(1818), + [anon_sym_extern] = ACTIONS(1820), + [anon_sym_LT] = ACTIONS(1818), + [anon_sym_COLON_COLON] = ACTIONS(1818), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_yield] = ACTIONS(1820), + [anon_sym_move] = ACTIONS(1820), + [sym_integer_literal] = ACTIONS(1818), + [aux_sym_string_literal_token1] = ACTIONS(1818), + [sym_char_literal] = ACTIONS(1818), + [anon_sym_true] = ACTIONS(1820), + [anon_sym_false] = ACTIONS(1820), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1820), + [sym_super] = ACTIONS(1820), + [sym_crate] = ACTIONS(1820), + [sym_metavariable] = ACTIONS(1818), + [sym_raw_string_literal] = ACTIONS(1818), + [sym_float_literal] = ACTIONS(1818), [sym_block_comment] = ACTIONS(3), }, [427] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [sym_identifier] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_macro_rules_BANG] = ACTIONS(1800), - [anon_sym_LPAREN] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_u8] = ACTIONS(1802), - [anon_sym_i8] = ACTIONS(1802), - [anon_sym_u16] = ACTIONS(1802), - [anon_sym_i16] = ACTIONS(1802), - [anon_sym_u32] = ACTIONS(1802), - [anon_sym_i32] = ACTIONS(1802), - [anon_sym_u64] = ACTIONS(1802), - [anon_sym_i64] = ACTIONS(1802), - [anon_sym_u128] = ACTIONS(1802), - [anon_sym_i128] = ACTIONS(1802), - [anon_sym_isize] = ACTIONS(1802), - [anon_sym_usize] = ACTIONS(1802), - [anon_sym_f32] = ACTIONS(1802), - [anon_sym_f64] = ACTIONS(1802), - [anon_sym_bool] = ACTIONS(1802), - [anon_sym_str] = ACTIONS(1802), - [anon_sym_char] = ACTIONS(1802), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_async] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_fn] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_impl] = ACTIONS(1802), - [anon_sym_let] = ACTIONS(1802), - [anon_sym_loop] = ACTIONS(1802), - [anon_sym_match] = ACTIONS(1802), - [anon_sym_mod] = ACTIONS(1802), - [anon_sym_pub] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_trait] = ACTIONS(1802), - [anon_sym_type] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_unsafe] = ACTIONS(1802), - [anon_sym_use] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_POUND] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_PIPE] = ACTIONS(1800), - [anon_sym_yield] = ACTIONS(1802), - [anon_sym_move] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [aux_sym_string_literal_token1] = ACTIONS(1800), - [sym_char_literal] = ACTIONS(1800), - [anon_sym_true] = ACTIONS(1802), - [anon_sym_false] = ACTIONS(1802), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_crate] = ACTIONS(1802), - [sym_metavariable] = ACTIONS(1800), - [sym_raw_string_literal] = ACTIONS(1800), - [sym_float_literal] = ACTIONS(1800), + [ts_builtin_sym_end] = ACTIONS(1822), + [sym_identifier] = ACTIONS(1824), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_macro_rules_BANG] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_u8] = ACTIONS(1824), + [anon_sym_i8] = ACTIONS(1824), + [anon_sym_u16] = ACTIONS(1824), + [anon_sym_i16] = ACTIONS(1824), + [anon_sym_u32] = ACTIONS(1824), + [anon_sym_i32] = ACTIONS(1824), + [anon_sym_u64] = ACTIONS(1824), + [anon_sym_i64] = ACTIONS(1824), + [anon_sym_u128] = ACTIONS(1824), + [anon_sym_i128] = ACTIONS(1824), + [anon_sym_isize] = ACTIONS(1824), + [anon_sym_usize] = ACTIONS(1824), + [anon_sym_f32] = ACTIONS(1824), + [anon_sym_f64] = ACTIONS(1824), + [anon_sym_bool] = ACTIONS(1824), + [anon_sym_str] = ACTIONS(1824), + [anon_sym_char] = ACTIONS(1824), + [anon_sym_SQUOTE] = ACTIONS(1824), + [anon_sym_async] = ACTIONS(1824), + [anon_sym_break] = ACTIONS(1824), + [anon_sym_const] = ACTIONS(1824), + [anon_sym_continue] = ACTIONS(1824), + [anon_sym_default] = ACTIONS(1824), + [anon_sym_enum] = ACTIONS(1824), + [anon_sym_fn] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(1824), + [anon_sym_if] = ACTIONS(1824), + [anon_sym_impl] = ACTIONS(1824), + [anon_sym_let] = ACTIONS(1824), + [anon_sym_loop] = ACTIONS(1824), + [anon_sym_match] = ACTIONS(1824), + [anon_sym_mod] = ACTIONS(1824), + [anon_sym_pub] = ACTIONS(1824), + [anon_sym_return] = ACTIONS(1824), + [anon_sym_static] = ACTIONS(1824), + [anon_sym_struct] = ACTIONS(1824), + [anon_sym_trait] = ACTIONS(1824), + [anon_sym_type] = ACTIONS(1824), + [anon_sym_union] = ACTIONS(1824), + [anon_sym_unsafe] = ACTIONS(1824), + [anon_sym_use] = ACTIONS(1824), + [anon_sym_while] = ACTIONS(1824), + [anon_sym_POUND] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_extern] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1822), + [anon_sym_AMP] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_yield] = ACTIONS(1824), + [anon_sym_move] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [aux_sym_string_literal_token1] = ACTIONS(1822), + [sym_char_literal] = ACTIONS(1822), + [anon_sym_true] = ACTIONS(1824), + [anon_sym_false] = ACTIONS(1824), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1824), + [sym_super] = ACTIONS(1824), + [sym_crate] = ACTIONS(1824), + [sym_metavariable] = ACTIONS(1822), + [sym_raw_string_literal] = ACTIONS(1822), + [sym_float_literal] = ACTIONS(1822), [sym_block_comment] = ACTIONS(3), }, [428] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_macro_rules_BANG] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1804), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_u8] = ACTIONS(1806), - [anon_sym_i8] = ACTIONS(1806), - [anon_sym_u16] = ACTIONS(1806), - [anon_sym_i16] = ACTIONS(1806), - [anon_sym_u32] = ACTIONS(1806), - [anon_sym_i32] = ACTIONS(1806), - [anon_sym_u64] = ACTIONS(1806), - [anon_sym_i64] = ACTIONS(1806), - [anon_sym_u128] = ACTIONS(1806), - [anon_sym_i128] = ACTIONS(1806), - [anon_sym_isize] = ACTIONS(1806), - [anon_sym_usize] = ACTIONS(1806), - [anon_sym_f32] = ACTIONS(1806), - [anon_sym_f64] = ACTIONS(1806), - [anon_sym_bool] = ACTIONS(1806), - [anon_sym_str] = ACTIONS(1806), - [anon_sym_char] = ACTIONS(1806), - [anon_sym_SQUOTE] = ACTIONS(1806), - [anon_sym_async] = ACTIONS(1806), - [anon_sym_break] = ACTIONS(1806), - [anon_sym_const] = ACTIONS(1806), - [anon_sym_continue] = ACTIONS(1806), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_enum] = ACTIONS(1806), - [anon_sym_fn] = ACTIONS(1806), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_if] = ACTIONS(1806), - [anon_sym_impl] = ACTIONS(1806), - [anon_sym_let] = ACTIONS(1806), - [anon_sym_loop] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1806), - [anon_sym_mod] = ACTIONS(1806), - [anon_sym_pub] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1806), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_struct] = ACTIONS(1806), - [anon_sym_trait] = ACTIONS(1806), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_unsafe] = ACTIONS(1806), - [anon_sym_use] = ACTIONS(1806), - [anon_sym_while] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_extern] = ACTIONS(1806), - [anon_sym_LT] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_DOT_DOT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_PIPE] = ACTIONS(1804), - [anon_sym_yield] = ACTIONS(1806), - [anon_sym_move] = ACTIONS(1806), - [sym_integer_literal] = ACTIONS(1804), - [aux_sym_string_literal_token1] = ACTIONS(1804), - [sym_char_literal] = ACTIONS(1804), - [anon_sym_true] = ACTIONS(1806), - [anon_sym_false] = ACTIONS(1806), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1804), - [sym_raw_string_literal] = ACTIONS(1804), - [sym_float_literal] = ACTIONS(1804), + [ts_builtin_sym_end] = ACTIONS(1826), + [sym_identifier] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_macro_rules_BANG] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_LBRACE] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1826), + [anon_sym_u8] = ACTIONS(1828), + [anon_sym_i8] = ACTIONS(1828), + [anon_sym_u16] = ACTIONS(1828), + [anon_sym_i16] = ACTIONS(1828), + [anon_sym_u32] = ACTIONS(1828), + [anon_sym_i32] = ACTIONS(1828), + [anon_sym_u64] = ACTIONS(1828), + [anon_sym_i64] = ACTIONS(1828), + [anon_sym_u128] = ACTIONS(1828), + [anon_sym_i128] = ACTIONS(1828), + [anon_sym_isize] = ACTIONS(1828), + [anon_sym_usize] = ACTIONS(1828), + [anon_sym_f32] = ACTIONS(1828), + [anon_sym_f64] = ACTIONS(1828), + [anon_sym_bool] = ACTIONS(1828), + [anon_sym_str] = ACTIONS(1828), + [anon_sym_char] = ACTIONS(1828), + [anon_sym_SQUOTE] = ACTIONS(1828), + [anon_sym_async] = ACTIONS(1828), + [anon_sym_break] = ACTIONS(1828), + [anon_sym_const] = ACTIONS(1828), + [anon_sym_continue] = ACTIONS(1828), + [anon_sym_default] = ACTIONS(1828), + [anon_sym_enum] = ACTIONS(1828), + [anon_sym_fn] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1828), + [anon_sym_impl] = ACTIONS(1828), + [anon_sym_let] = ACTIONS(1828), + [anon_sym_loop] = ACTIONS(1828), + [anon_sym_match] = ACTIONS(1828), + [anon_sym_mod] = ACTIONS(1828), + [anon_sym_pub] = ACTIONS(1828), + [anon_sym_return] = ACTIONS(1828), + [anon_sym_static] = ACTIONS(1828), + [anon_sym_struct] = ACTIONS(1828), + [anon_sym_trait] = ACTIONS(1828), + [anon_sym_type] = ACTIONS(1828), + [anon_sym_union] = ACTIONS(1828), + [anon_sym_unsafe] = ACTIONS(1828), + [anon_sym_use] = ACTIONS(1828), + [anon_sym_while] = ACTIONS(1828), + [anon_sym_POUND] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_extern] = ACTIONS(1828), + [anon_sym_LT] = ACTIONS(1826), + [anon_sym_COLON_COLON] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1826), + [anon_sym_DOT_DOT] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_yield] = ACTIONS(1828), + [anon_sym_move] = ACTIONS(1828), + [sym_integer_literal] = ACTIONS(1826), + [aux_sym_string_literal_token1] = ACTIONS(1826), + [sym_char_literal] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1828), + [sym_super] = ACTIONS(1828), + [sym_crate] = ACTIONS(1828), + [sym_metavariable] = ACTIONS(1826), + [sym_raw_string_literal] = ACTIONS(1826), + [sym_float_literal] = ACTIONS(1826), [sym_block_comment] = ACTIONS(3), }, [429] = { - [ts_builtin_sym_end] = ACTIONS(1808), - [sym_identifier] = ACTIONS(1810), - [anon_sym_SEMI] = ACTIONS(1808), - [anon_sym_macro_rules_BANG] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_RBRACE] = ACTIONS(1808), - [anon_sym_LBRACK] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_u8] = ACTIONS(1810), - [anon_sym_i8] = ACTIONS(1810), - [anon_sym_u16] = ACTIONS(1810), - [anon_sym_i16] = ACTIONS(1810), - [anon_sym_u32] = ACTIONS(1810), - [anon_sym_i32] = ACTIONS(1810), - [anon_sym_u64] = ACTIONS(1810), - [anon_sym_i64] = ACTIONS(1810), - [anon_sym_u128] = ACTIONS(1810), - [anon_sym_i128] = ACTIONS(1810), - [anon_sym_isize] = ACTIONS(1810), - [anon_sym_usize] = ACTIONS(1810), - [anon_sym_f32] = ACTIONS(1810), - [anon_sym_f64] = ACTIONS(1810), - [anon_sym_bool] = ACTIONS(1810), - [anon_sym_str] = ACTIONS(1810), - [anon_sym_char] = ACTIONS(1810), - [anon_sym_SQUOTE] = ACTIONS(1810), - [anon_sym_async] = ACTIONS(1810), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_const] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1810), - [anon_sym_default] = ACTIONS(1810), - [anon_sym_enum] = ACTIONS(1810), - [anon_sym_fn] = ACTIONS(1810), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_impl] = ACTIONS(1810), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_loop] = ACTIONS(1810), - [anon_sym_match] = ACTIONS(1810), - [anon_sym_mod] = ACTIONS(1810), - [anon_sym_pub] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1810), - [anon_sym_static] = ACTIONS(1810), - [anon_sym_struct] = ACTIONS(1810), - [anon_sym_trait] = ACTIONS(1810), - [anon_sym_type] = ACTIONS(1810), - [anon_sym_union] = ACTIONS(1810), - [anon_sym_unsafe] = ACTIONS(1810), - [anon_sym_use] = ACTIONS(1810), - [anon_sym_while] = ACTIONS(1810), - [anon_sym_POUND] = ACTIONS(1808), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_extern] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1808), - [anon_sym_AMP] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_PIPE] = ACTIONS(1808), - [anon_sym_yield] = ACTIONS(1810), - [anon_sym_move] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [aux_sym_string_literal_token1] = ACTIONS(1808), - [sym_char_literal] = ACTIONS(1808), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1810), - [sym_super] = ACTIONS(1810), - [sym_crate] = ACTIONS(1810), - [sym_metavariable] = ACTIONS(1808), - [sym_raw_string_literal] = ACTIONS(1808), - [sym_float_literal] = ACTIONS(1808), + [ts_builtin_sym_end] = ACTIONS(1830), + [sym_identifier] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_macro_rules_BANG] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1830), + [anon_sym_STAR] = ACTIONS(1830), + [anon_sym_u8] = ACTIONS(1832), + [anon_sym_i8] = ACTIONS(1832), + [anon_sym_u16] = ACTIONS(1832), + [anon_sym_i16] = ACTIONS(1832), + [anon_sym_u32] = ACTIONS(1832), + [anon_sym_i32] = ACTIONS(1832), + [anon_sym_u64] = ACTIONS(1832), + [anon_sym_i64] = ACTIONS(1832), + [anon_sym_u128] = ACTIONS(1832), + [anon_sym_i128] = ACTIONS(1832), + [anon_sym_isize] = ACTIONS(1832), + [anon_sym_usize] = ACTIONS(1832), + [anon_sym_f32] = ACTIONS(1832), + [anon_sym_f64] = ACTIONS(1832), + [anon_sym_bool] = ACTIONS(1832), + [anon_sym_str] = ACTIONS(1832), + [anon_sym_char] = ACTIONS(1832), + [anon_sym_SQUOTE] = ACTIONS(1832), + [anon_sym_async] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_default] = ACTIONS(1832), + [anon_sym_enum] = ACTIONS(1832), + [anon_sym_fn] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_impl] = ACTIONS(1832), + [anon_sym_let] = ACTIONS(1832), + [anon_sym_loop] = ACTIONS(1832), + [anon_sym_match] = ACTIONS(1832), + [anon_sym_mod] = ACTIONS(1832), + [anon_sym_pub] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_static] = ACTIONS(1832), + [anon_sym_struct] = ACTIONS(1832), + [anon_sym_trait] = ACTIONS(1832), + [anon_sym_type] = ACTIONS(1832), + [anon_sym_union] = ACTIONS(1832), + [anon_sym_unsafe] = ACTIONS(1832), + [anon_sym_use] = ACTIONS(1832), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_extern] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1830), + [anon_sym_COLON_COLON] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_DOT_DOT] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_yield] = ACTIONS(1832), + [anon_sym_move] = ACTIONS(1832), + [sym_integer_literal] = ACTIONS(1830), + [aux_sym_string_literal_token1] = ACTIONS(1830), + [sym_char_literal] = ACTIONS(1830), + [anon_sym_true] = ACTIONS(1832), + [anon_sym_false] = ACTIONS(1832), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1832), + [sym_super] = ACTIONS(1832), + [sym_crate] = ACTIONS(1832), + [sym_metavariable] = ACTIONS(1830), + [sym_raw_string_literal] = ACTIONS(1830), + [sym_float_literal] = ACTIONS(1830), [sym_block_comment] = ACTIONS(3), }, [430] = { - [ts_builtin_sym_end] = ACTIONS(1812), - [sym_identifier] = ACTIONS(1814), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_macro_rules_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_STAR] = ACTIONS(1812), - [anon_sym_u8] = ACTIONS(1814), - [anon_sym_i8] = ACTIONS(1814), - [anon_sym_u16] = ACTIONS(1814), - [anon_sym_i16] = ACTIONS(1814), - [anon_sym_u32] = ACTIONS(1814), - [anon_sym_i32] = ACTIONS(1814), - [anon_sym_u64] = ACTIONS(1814), - [anon_sym_i64] = ACTIONS(1814), - [anon_sym_u128] = ACTIONS(1814), - [anon_sym_i128] = ACTIONS(1814), - [anon_sym_isize] = ACTIONS(1814), - [anon_sym_usize] = ACTIONS(1814), - [anon_sym_f32] = ACTIONS(1814), - [anon_sym_f64] = ACTIONS(1814), - [anon_sym_bool] = ACTIONS(1814), - [anon_sym_str] = ACTIONS(1814), - [anon_sym_char] = ACTIONS(1814), - [anon_sym_SQUOTE] = ACTIONS(1814), - [anon_sym_async] = ACTIONS(1814), - [anon_sym_break] = ACTIONS(1814), - [anon_sym_const] = ACTIONS(1814), - [anon_sym_continue] = ACTIONS(1814), - [anon_sym_default] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1814), - [anon_sym_fn] = ACTIONS(1814), - [anon_sym_for] = ACTIONS(1814), - [anon_sym_if] = ACTIONS(1814), - [anon_sym_impl] = ACTIONS(1814), - [anon_sym_let] = ACTIONS(1814), - [anon_sym_loop] = ACTIONS(1814), - [anon_sym_match] = ACTIONS(1814), - [anon_sym_mod] = ACTIONS(1814), - [anon_sym_pub] = ACTIONS(1814), - [anon_sym_return] = ACTIONS(1814), - [anon_sym_static] = ACTIONS(1814), - [anon_sym_struct] = ACTIONS(1814), - [anon_sym_trait] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_union] = ACTIONS(1814), - [anon_sym_unsafe] = ACTIONS(1814), - [anon_sym_use] = ACTIONS(1814), - [anon_sym_while] = ACTIONS(1814), - [anon_sym_POUND] = ACTIONS(1812), - [anon_sym_BANG] = ACTIONS(1812), - [anon_sym_extern] = ACTIONS(1814), - [anon_sym_LT] = ACTIONS(1812), - [anon_sym_COLON_COLON] = ACTIONS(1812), - [anon_sym_AMP] = ACTIONS(1812), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_yield] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [sym_integer_literal] = ACTIONS(1812), - [aux_sym_string_literal_token1] = ACTIONS(1812), - [sym_char_literal] = ACTIONS(1812), - [anon_sym_true] = ACTIONS(1814), - [anon_sym_false] = ACTIONS(1814), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1814), - [sym_super] = ACTIONS(1814), - [sym_crate] = ACTIONS(1814), - [sym_metavariable] = ACTIONS(1812), - [sym_raw_string_literal] = ACTIONS(1812), - [sym_float_literal] = ACTIONS(1812), + [ts_builtin_sym_end] = ACTIONS(1834), + [sym_identifier] = ACTIONS(1836), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_macro_rules_BANG] = ACTIONS(1834), + [anon_sym_LPAREN] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_RBRACE] = ACTIONS(1834), + [anon_sym_LBRACK] = ACTIONS(1834), + [anon_sym_STAR] = ACTIONS(1834), + [anon_sym_u8] = ACTIONS(1836), + [anon_sym_i8] = ACTIONS(1836), + [anon_sym_u16] = ACTIONS(1836), + [anon_sym_i16] = ACTIONS(1836), + [anon_sym_u32] = ACTIONS(1836), + [anon_sym_i32] = ACTIONS(1836), + [anon_sym_u64] = ACTIONS(1836), + [anon_sym_i64] = ACTIONS(1836), + [anon_sym_u128] = ACTIONS(1836), + [anon_sym_i128] = ACTIONS(1836), + [anon_sym_isize] = ACTIONS(1836), + [anon_sym_usize] = ACTIONS(1836), + [anon_sym_f32] = ACTIONS(1836), + [anon_sym_f64] = ACTIONS(1836), + [anon_sym_bool] = ACTIONS(1836), + [anon_sym_str] = ACTIONS(1836), + [anon_sym_char] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_async] = ACTIONS(1836), + [anon_sym_break] = ACTIONS(1836), + [anon_sym_const] = ACTIONS(1836), + [anon_sym_continue] = ACTIONS(1836), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_enum] = ACTIONS(1836), + [anon_sym_fn] = ACTIONS(1836), + [anon_sym_for] = ACTIONS(1836), + [anon_sym_if] = ACTIONS(1836), + [anon_sym_impl] = ACTIONS(1836), + [anon_sym_let] = ACTIONS(1836), + [anon_sym_loop] = ACTIONS(1836), + [anon_sym_match] = ACTIONS(1836), + [anon_sym_mod] = ACTIONS(1836), + [anon_sym_pub] = ACTIONS(1836), + [anon_sym_return] = ACTIONS(1836), + [anon_sym_static] = ACTIONS(1836), + [anon_sym_struct] = ACTIONS(1836), + [anon_sym_trait] = ACTIONS(1836), + [anon_sym_type] = ACTIONS(1836), + [anon_sym_union] = ACTIONS(1836), + [anon_sym_unsafe] = ACTIONS(1836), + [anon_sym_use] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1836), + [anon_sym_POUND] = ACTIONS(1834), + [anon_sym_BANG] = ACTIONS(1834), + [anon_sym_extern] = ACTIONS(1836), + [anon_sym_LT] = ACTIONS(1834), + [anon_sym_COLON_COLON] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_yield] = ACTIONS(1836), + [anon_sym_move] = ACTIONS(1836), + [sym_integer_literal] = ACTIONS(1834), + [aux_sym_string_literal_token1] = ACTIONS(1834), + [sym_char_literal] = ACTIONS(1834), + [anon_sym_true] = ACTIONS(1836), + [anon_sym_false] = ACTIONS(1836), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1836), + [sym_super] = ACTIONS(1836), + [sym_crate] = ACTIONS(1836), + [sym_metavariable] = ACTIONS(1834), + [sym_raw_string_literal] = ACTIONS(1834), + [sym_float_literal] = ACTIONS(1834), [sym_block_comment] = ACTIONS(3), }, [431] = { - [ts_builtin_sym_end] = ACTIONS(1816), - [sym_identifier] = ACTIONS(1818), - [anon_sym_SEMI] = ACTIONS(1816), - [anon_sym_macro_rules_BANG] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_LBRACK] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_u8] = ACTIONS(1818), - [anon_sym_i8] = ACTIONS(1818), - [anon_sym_u16] = ACTIONS(1818), - [anon_sym_i16] = ACTIONS(1818), - [anon_sym_u32] = ACTIONS(1818), - [anon_sym_i32] = ACTIONS(1818), - [anon_sym_u64] = ACTIONS(1818), - [anon_sym_i64] = ACTIONS(1818), - [anon_sym_u128] = ACTIONS(1818), - [anon_sym_i128] = ACTIONS(1818), - [anon_sym_isize] = ACTIONS(1818), - [anon_sym_usize] = ACTIONS(1818), - [anon_sym_f32] = ACTIONS(1818), - [anon_sym_f64] = ACTIONS(1818), - [anon_sym_bool] = ACTIONS(1818), - [anon_sym_str] = ACTIONS(1818), - [anon_sym_char] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1818), - [anon_sym_async] = ACTIONS(1818), - [anon_sym_break] = ACTIONS(1818), - [anon_sym_const] = ACTIONS(1818), - [anon_sym_continue] = ACTIONS(1818), - [anon_sym_default] = ACTIONS(1818), - [anon_sym_enum] = ACTIONS(1818), - [anon_sym_fn] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(1818), - [anon_sym_if] = ACTIONS(1818), - [anon_sym_impl] = ACTIONS(1818), - [anon_sym_let] = ACTIONS(1818), - [anon_sym_loop] = ACTIONS(1818), - [anon_sym_match] = ACTIONS(1818), - [anon_sym_mod] = ACTIONS(1818), - [anon_sym_pub] = ACTIONS(1818), - [anon_sym_return] = ACTIONS(1818), - [anon_sym_static] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1818), - [anon_sym_trait] = ACTIONS(1818), - [anon_sym_type] = ACTIONS(1818), - [anon_sym_union] = ACTIONS(1818), - [anon_sym_unsafe] = ACTIONS(1818), - [anon_sym_use] = ACTIONS(1818), - [anon_sym_while] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_extern] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1816), - [anon_sym_AMP] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_yield] = ACTIONS(1818), - [anon_sym_move] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [aux_sym_string_literal_token1] = ACTIONS(1816), - [sym_char_literal] = ACTIONS(1816), - [anon_sym_true] = ACTIONS(1818), - [anon_sym_false] = ACTIONS(1818), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1818), - [sym_super] = ACTIONS(1818), - [sym_crate] = ACTIONS(1818), - [sym_metavariable] = ACTIONS(1816), - [sym_raw_string_literal] = ACTIONS(1816), - [sym_float_literal] = ACTIONS(1816), + [ts_builtin_sym_end] = ACTIONS(1838), + [sym_identifier] = ACTIONS(1840), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_macro_rules_BANG] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_STAR] = ACTIONS(1838), + [anon_sym_u8] = ACTIONS(1840), + [anon_sym_i8] = ACTIONS(1840), + [anon_sym_u16] = ACTIONS(1840), + [anon_sym_i16] = ACTIONS(1840), + [anon_sym_u32] = ACTIONS(1840), + [anon_sym_i32] = ACTIONS(1840), + [anon_sym_u64] = ACTIONS(1840), + [anon_sym_i64] = ACTIONS(1840), + [anon_sym_u128] = ACTIONS(1840), + [anon_sym_i128] = ACTIONS(1840), + [anon_sym_isize] = ACTIONS(1840), + [anon_sym_usize] = ACTIONS(1840), + [anon_sym_f32] = ACTIONS(1840), + [anon_sym_f64] = ACTIONS(1840), + [anon_sym_bool] = ACTIONS(1840), + [anon_sym_str] = ACTIONS(1840), + [anon_sym_char] = ACTIONS(1840), + [anon_sym_SQUOTE] = ACTIONS(1840), + [anon_sym_async] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_default] = ACTIONS(1840), + [anon_sym_enum] = ACTIONS(1840), + [anon_sym_fn] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_impl] = ACTIONS(1840), + [anon_sym_let] = ACTIONS(1840), + [anon_sym_loop] = ACTIONS(1840), + [anon_sym_match] = ACTIONS(1840), + [anon_sym_mod] = ACTIONS(1840), + [anon_sym_pub] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_static] = ACTIONS(1840), + [anon_sym_struct] = ACTIONS(1840), + [anon_sym_trait] = ACTIONS(1840), + [anon_sym_type] = ACTIONS(1840), + [anon_sym_union] = ACTIONS(1840), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_use] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_POUND] = ACTIONS(1838), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1840), + [anon_sym_LT] = ACTIONS(1838), + [anon_sym_COLON_COLON] = ACTIONS(1838), + [anon_sym_AMP] = ACTIONS(1838), + [anon_sym_DOT_DOT] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_PIPE] = ACTIONS(1838), + [anon_sym_yield] = ACTIONS(1840), + [anon_sym_move] = ACTIONS(1840), + [sym_integer_literal] = ACTIONS(1838), + [aux_sym_string_literal_token1] = ACTIONS(1838), + [sym_char_literal] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1840), + [anon_sym_false] = ACTIONS(1840), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1840), + [sym_super] = ACTIONS(1840), + [sym_crate] = ACTIONS(1840), + [sym_metavariable] = ACTIONS(1838), + [sym_raw_string_literal] = ACTIONS(1838), + [sym_float_literal] = ACTIONS(1838), [sym_block_comment] = ACTIONS(3), }, [432] = { - [ts_builtin_sym_end] = ACTIONS(1820), - [sym_identifier] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_macro_rules_BANG] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_u8] = ACTIONS(1822), - [anon_sym_i8] = ACTIONS(1822), - [anon_sym_u16] = ACTIONS(1822), - [anon_sym_i16] = ACTIONS(1822), - [anon_sym_u32] = ACTIONS(1822), - [anon_sym_i32] = ACTIONS(1822), - [anon_sym_u64] = ACTIONS(1822), - [anon_sym_i64] = ACTIONS(1822), - [anon_sym_u128] = ACTIONS(1822), - [anon_sym_i128] = ACTIONS(1822), - [anon_sym_isize] = ACTIONS(1822), - [anon_sym_usize] = ACTIONS(1822), - [anon_sym_f32] = ACTIONS(1822), - [anon_sym_f64] = ACTIONS(1822), - [anon_sym_bool] = ACTIONS(1822), - [anon_sym_str] = ACTIONS(1822), - [anon_sym_char] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1822), - [anon_sym_async] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_fn] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_impl] = ACTIONS(1822), - [anon_sym_let] = ACTIONS(1822), - [anon_sym_loop] = ACTIONS(1822), - [anon_sym_match] = ACTIONS(1822), - [anon_sym_mod] = ACTIONS(1822), - [anon_sym_pub] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_trait] = ACTIONS(1822), - [anon_sym_type] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_unsafe] = ACTIONS(1822), - [anon_sym_use] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(1820), - [anon_sym_BANG] = ACTIONS(1820), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym_LT] = ACTIONS(1820), - [anon_sym_COLON_COLON] = ACTIONS(1820), - [anon_sym_AMP] = ACTIONS(1820), - [anon_sym_DOT_DOT] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_yield] = ACTIONS(1822), - [anon_sym_move] = ACTIONS(1822), - [sym_integer_literal] = ACTIONS(1820), - [aux_sym_string_literal_token1] = ACTIONS(1820), - [sym_char_literal] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_crate] = ACTIONS(1822), - [sym_metavariable] = ACTIONS(1820), - [sym_raw_string_literal] = ACTIONS(1820), - [sym_float_literal] = ACTIONS(1820), + [ts_builtin_sym_end] = ACTIONS(1842), + [sym_identifier] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_macro_rules_BANG] = ACTIONS(1842), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_STAR] = ACTIONS(1842), + [anon_sym_u8] = ACTIONS(1844), + [anon_sym_i8] = ACTIONS(1844), + [anon_sym_u16] = ACTIONS(1844), + [anon_sym_i16] = ACTIONS(1844), + [anon_sym_u32] = ACTIONS(1844), + [anon_sym_i32] = ACTIONS(1844), + [anon_sym_u64] = ACTIONS(1844), + [anon_sym_i64] = ACTIONS(1844), + [anon_sym_u128] = ACTIONS(1844), + [anon_sym_i128] = ACTIONS(1844), + [anon_sym_isize] = ACTIONS(1844), + [anon_sym_usize] = ACTIONS(1844), + [anon_sym_f32] = ACTIONS(1844), + [anon_sym_f64] = ACTIONS(1844), + [anon_sym_bool] = ACTIONS(1844), + [anon_sym_str] = ACTIONS(1844), + [anon_sym_char] = ACTIONS(1844), + [anon_sym_SQUOTE] = ACTIONS(1844), + [anon_sym_async] = ACTIONS(1844), + [anon_sym_break] = ACTIONS(1844), + [anon_sym_const] = ACTIONS(1844), + [anon_sym_continue] = ACTIONS(1844), + [anon_sym_default] = ACTIONS(1844), + [anon_sym_enum] = ACTIONS(1844), + [anon_sym_fn] = ACTIONS(1844), + [anon_sym_for] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1844), + [anon_sym_impl] = ACTIONS(1844), + [anon_sym_let] = ACTIONS(1844), + [anon_sym_loop] = ACTIONS(1844), + [anon_sym_match] = ACTIONS(1844), + [anon_sym_mod] = ACTIONS(1844), + [anon_sym_pub] = ACTIONS(1844), + [anon_sym_return] = ACTIONS(1844), + [anon_sym_static] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1844), + [anon_sym_trait] = ACTIONS(1844), + [anon_sym_type] = ACTIONS(1844), + [anon_sym_union] = ACTIONS(1844), + [anon_sym_unsafe] = ACTIONS(1844), + [anon_sym_use] = ACTIONS(1844), + [anon_sym_while] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(1842), + [anon_sym_BANG] = ACTIONS(1842), + [anon_sym_extern] = ACTIONS(1844), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_COLON_COLON] = ACTIONS(1842), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_DOT_DOT] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_yield] = ACTIONS(1844), + [anon_sym_move] = ACTIONS(1844), + [sym_integer_literal] = ACTIONS(1842), + [aux_sym_string_literal_token1] = ACTIONS(1842), + [sym_char_literal] = ACTIONS(1842), + [anon_sym_true] = ACTIONS(1844), + [anon_sym_false] = ACTIONS(1844), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1844), + [sym_super] = ACTIONS(1844), + [sym_crate] = ACTIONS(1844), + [sym_metavariable] = ACTIONS(1842), + [sym_raw_string_literal] = ACTIONS(1842), + [sym_float_literal] = ACTIONS(1842), [sym_block_comment] = ACTIONS(3), }, [433] = { - [ts_builtin_sym_end] = ACTIONS(1824), - [sym_identifier] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_macro_rules_BANG] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_u8] = ACTIONS(1826), - [anon_sym_i8] = ACTIONS(1826), - [anon_sym_u16] = ACTIONS(1826), - [anon_sym_i16] = ACTIONS(1826), - [anon_sym_u32] = ACTIONS(1826), - [anon_sym_i32] = ACTIONS(1826), - [anon_sym_u64] = ACTIONS(1826), - [anon_sym_i64] = ACTIONS(1826), - [anon_sym_u128] = ACTIONS(1826), - [anon_sym_i128] = ACTIONS(1826), - [anon_sym_isize] = ACTIONS(1826), - [anon_sym_usize] = ACTIONS(1826), - [anon_sym_f32] = ACTIONS(1826), - [anon_sym_f64] = ACTIONS(1826), - [anon_sym_bool] = ACTIONS(1826), - [anon_sym_str] = ACTIONS(1826), - [anon_sym_char] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1826), - [anon_sym_async] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_fn] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_impl] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1826), - [anon_sym_loop] = ACTIONS(1826), - [anon_sym_match] = ACTIONS(1826), - [anon_sym_mod] = ACTIONS(1826), - [anon_sym_pub] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_trait] = ACTIONS(1826), - [anon_sym_type] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_unsafe] = ACTIONS(1826), - [anon_sym_use] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym_LT] = ACTIONS(1824), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1824), - [anon_sym_PIPE] = ACTIONS(1824), - [anon_sym_yield] = ACTIONS(1826), - [anon_sym_move] = ACTIONS(1826), - [sym_integer_literal] = ACTIONS(1824), - [aux_sym_string_literal_token1] = ACTIONS(1824), - [sym_char_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_crate] = ACTIONS(1826), - [sym_metavariable] = ACTIONS(1824), - [sym_raw_string_literal] = ACTIONS(1824), - [sym_float_literal] = ACTIONS(1824), + [ts_builtin_sym_end] = ACTIONS(1846), + [sym_identifier] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_macro_rules_BANG] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_u8] = ACTIONS(1848), + [anon_sym_i8] = ACTIONS(1848), + [anon_sym_u16] = ACTIONS(1848), + [anon_sym_i16] = ACTIONS(1848), + [anon_sym_u32] = ACTIONS(1848), + [anon_sym_i32] = ACTIONS(1848), + [anon_sym_u64] = ACTIONS(1848), + [anon_sym_i64] = ACTIONS(1848), + [anon_sym_u128] = ACTIONS(1848), + [anon_sym_i128] = ACTIONS(1848), + [anon_sym_isize] = ACTIONS(1848), + [anon_sym_usize] = ACTIONS(1848), + [anon_sym_f32] = ACTIONS(1848), + [anon_sym_f64] = ACTIONS(1848), + [anon_sym_bool] = ACTIONS(1848), + [anon_sym_str] = ACTIONS(1848), + [anon_sym_char] = ACTIONS(1848), + [anon_sym_SQUOTE] = ACTIONS(1848), + [anon_sym_async] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_fn] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_impl] = ACTIONS(1848), + [anon_sym_let] = ACTIONS(1848), + [anon_sym_loop] = ACTIONS(1848), + [anon_sym_match] = ACTIONS(1848), + [anon_sym_mod] = ACTIONS(1848), + [anon_sym_pub] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_trait] = ACTIONS(1848), + [anon_sym_type] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_unsafe] = ACTIONS(1848), + [anon_sym_use] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1846), + [anon_sym_COLON_COLON] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_DOT_DOT] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_yield] = ACTIONS(1848), + [anon_sym_move] = ACTIONS(1848), + [sym_integer_literal] = ACTIONS(1846), + [aux_sym_string_literal_token1] = ACTIONS(1846), + [sym_char_literal] = ACTIONS(1846), + [anon_sym_true] = ACTIONS(1848), + [anon_sym_false] = ACTIONS(1848), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_crate] = ACTIONS(1848), + [sym_metavariable] = ACTIONS(1846), + [sym_raw_string_literal] = ACTIONS(1846), + [sym_float_literal] = ACTIONS(1846), [sym_block_comment] = ACTIONS(3), }, [434] = { - [ts_builtin_sym_end] = ACTIONS(1828), - [sym_identifier] = ACTIONS(1830), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_macro_rules_BANG] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_u8] = ACTIONS(1830), - [anon_sym_i8] = ACTIONS(1830), - [anon_sym_u16] = ACTIONS(1830), - [anon_sym_i16] = ACTIONS(1830), - [anon_sym_u32] = ACTIONS(1830), - [anon_sym_i32] = ACTIONS(1830), - [anon_sym_u64] = ACTIONS(1830), - [anon_sym_i64] = ACTIONS(1830), - [anon_sym_u128] = ACTIONS(1830), - [anon_sym_i128] = ACTIONS(1830), - [anon_sym_isize] = ACTIONS(1830), - [anon_sym_usize] = ACTIONS(1830), - [anon_sym_f32] = ACTIONS(1830), - [anon_sym_f64] = ACTIONS(1830), - [anon_sym_bool] = ACTIONS(1830), - [anon_sym_str] = ACTIONS(1830), - [anon_sym_char] = ACTIONS(1830), - [anon_sym_SQUOTE] = ACTIONS(1830), - [anon_sym_async] = ACTIONS(1830), - [anon_sym_break] = ACTIONS(1830), - [anon_sym_const] = ACTIONS(1830), - [anon_sym_continue] = ACTIONS(1830), - [anon_sym_default] = ACTIONS(1830), - [anon_sym_enum] = ACTIONS(1830), - [anon_sym_fn] = ACTIONS(1830), - [anon_sym_for] = ACTIONS(1830), - [anon_sym_if] = ACTIONS(1830), - [anon_sym_impl] = ACTIONS(1830), - [anon_sym_let] = ACTIONS(1830), - [anon_sym_loop] = ACTIONS(1830), - [anon_sym_match] = ACTIONS(1830), - [anon_sym_mod] = ACTIONS(1830), - [anon_sym_pub] = ACTIONS(1830), - [anon_sym_return] = ACTIONS(1830), - [anon_sym_static] = ACTIONS(1830), - [anon_sym_struct] = ACTIONS(1830), - [anon_sym_trait] = ACTIONS(1830), - [anon_sym_type] = ACTIONS(1830), - [anon_sym_union] = ACTIONS(1830), - [anon_sym_unsafe] = ACTIONS(1830), - [anon_sym_use] = ACTIONS(1830), - [anon_sym_while] = ACTIONS(1830), - [anon_sym_POUND] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_extern] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1828), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_yield] = ACTIONS(1830), - [anon_sym_move] = ACTIONS(1830), - [sym_integer_literal] = ACTIONS(1828), - [aux_sym_string_literal_token1] = ACTIONS(1828), - [sym_char_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1830), - [anon_sym_false] = ACTIONS(1830), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1830), - [sym_super] = ACTIONS(1830), - [sym_crate] = ACTIONS(1830), - [sym_metavariable] = ACTIONS(1828), - [sym_raw_string_literal] = ACTIONS(1828), - [sym_float_literal] = ACTIONS(1828), + [ts_builtin_sym_end] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_macro_rules_BANG] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1850), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_u8] = ACTIONS(1852), + [anon_sym_i8] = ACTIONS(1852), + [anon_sym_u16] = ACTIONS(1852), + [anon_sym_i16] = ACTIONS(1852), + [anon_sym_u32] = ACTIONS(1852), + [anon_sym_i32] = ACTIONS(1852), + [anon_sym_u64] = ACTIONS(1852), + [anon_sym_i64] = ACTIONS(1852), + [anon_sym_u128] = ACTIONS(1852), + [anon_sym_i128] = ACTIONS(1852), + [anon_sym_isize] = ACTIONS(1852), + [anon_sym_usize] = ACTIONS(1852), + [anon_sym_f32] = ACTIONS(1852), + [anon_sym_f64] = ACTIONS(1852), + [anon_sym_bool] = ACTIONS(1852), + [anon_sym_str] = ACTIONS(1852), + [anon_sym_char] = ACTIONS(1852), + [anon_sym_SQUOTE] = ACTIONS(1852), + [anon_sym_async] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1852), + [anon_sym_continue] = ACTIONS(1852), + [anon_sym_default] = ACTIONS(1852), + [anon_sym_enum] = ACTIONS(1852), + [anon_sym_fn] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1852), + [anon_sym_if] = ACTIONS(1852), + [anon_sym_impl] = ACTIONS(1852), + [anon_sym_let] = ACTIONS(1852), + [anon_sym_loop] = ACTIONS(1852), + [anon_sym_match] = ACTIONS(1852), + [anon_sym_mod] = ACTIONS(1852), + [anon_sym_pub] = ACTIONS(1852), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_static] = ACTIONS(1852), + [anon_sym_struct] = ACTIONS(1852), + [anon_sym_trait] = ACTIONS(1852), + [anon_sym_type] = ACTIONS(1852), + [anon_sym_union] = ACTIONS(1852), + [anon_sym_unsafe] = ACTIONS(1852), + [anon_sym_use] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_extern] = ACTIONS(1852), + [anon_sym_LT] = ACTIONS(1850), + [anon_sym_COLON_COLON] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_DOT_DOT] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_PIPE] = ACTIONS(1850), + [anon_sym_yield] = ACTIONS(1852), + [anon_sym_move] = ACTIONS(1852), + [sym_integer_literal] = ACTIONS(1850), + [aux_sym_string_literal_token1] = ACTIONS(1850), + [sym_char_literal] = ACTIONS(1850), + [anon_sym_true] = ACTIONS(1852), + [anon_sym_false] = ACTIONS(1852), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1852), + [sym_super] = ACTIONS(1852), + [sym_crate] = ACTIONS(1852), + [sym_metavariable] = ACTIONS(1850), + [sym_raw_string_literal] = ACTIONS(1850), + [sym_float_literal] = ACTIONS(1850), [sym_block_comment] = ACTIONS(3), }, [435] = { - [ts_builtin_sym_end] = ACTIONS(1832), - [sym_identifier] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_macro_rules_BANG] = ACTIONS(1832), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_LBRACE] = ACTIONS(1832), - [anon_sym_RBRACE] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1832), - [anon_sym_STAR] = ACTIONS(1832), - [anon_sym_u8] = ACTIONS(1834), - [anon_sym_i8] = ACTIONS(1834), - [anon_sym_u16] = ACTIONS(1834), - [anon_sym_i16] = ACTIONS(1834), - [anon_sym_u32] = ACTIONS(1834), - [anon_sym_i32] = ACTIONS(1834), - [anon_sym_u64] = ACTIONS(1834), - [anon_sym_i64] = ACTIONS(1834), - [anon_sym_u128] = ACTIONS(1834), - [anon_sym_i128] = ACTIONS(1834), - [anon_sym_isize] = ACTIONS(1834), - [anon_sym_usize] = ACTIONS(1834), - [anon_sym_f32] = ACTIONS(1834), - [anon_sym_f64] = ACTIONS(1834), - [anon_sym_bool] = ACTIONS(1834), - [anon_sym_str] = ACTIONS(1834), - [anon_sym_char] = ACTIONS(1834), - [anon_sym_SQUOTE] = ACTIONS(1834), - [anon_sym_async] = ACTIONS(1834), - [anon_sym_break] = ACTIONS(1834), - [anon_sym_const] = ACTIONS(1834), - [anon_sym_continue] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1834), - [anon_sym_enum] = ACTIONS(1834), - [anon_sym_fn] = ACTIONS(1834), - [anon_sym_for] = ACTIONS(1834), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_impl] = ACTIONS(1834), - [anon_sym_let] = ACTIONS(1834), - [anon_sym_loop] = ACTIONS(1834), - [anon_sym_match] = ACTIONS(1834), - [anon_sym_mod] = ACTIONS(1834), - [anon_sym_pub] = ACTIONS(1834), - [anon_sym_return] = ACTIONS(1834), - [anon_sym_static] = ACTIONS(1834), - [anon_sym_struct] = ACTIONS(1834), - [anon_sym_trait] = ACTIONS(1834), - [anon_sym_type] = ACTIONS(1834), - [anon_sym_union] = ACTIONS(1834), - [anon_sym_unsafe] = ACTIONS(1834), - [anon_sym_use] = ACTIONS(1834), - [anon_sym_while] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1832), - [anon_sym_BANG] = ACTIONS(1832), - [anon_sym_extern] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1832), - [anon_sym_COLON_COLON] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1832), - [anon_sym_DOT_DOT] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1832), - [anon_sym_yield] = ACTIONS(1834), - [anon_sym_move] = ACTIONS(1834), - [sym_integer_literal] = ACTIONS(1832), - [aux_sym_string_literal_token1] = ACTIONS(1832), - [sym_char_literal] = ACTIONS(1832), - [anon_sym_true] = ACTIONS(1834), - [anon_sym_false] = ACTIONS(1834), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1834), - [sym_super] = ACTIONS(1834), - [sym_crate] = ACTIONS(1834), - [sym_metavariable] = ACTIONS(1832), - [sym_raw_string_literal] = ACTIONS(1832), - [sym_float_literal] = ACTIONS(1832), + [ts_builtin_sym_end] = ACTIONS(1854), + [sym_identifier] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_macro_rules_BANG] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_LBRACK] = ACTIONS(1854), + [anon_sym_STAR] = ACTIONS(1854), + [anon_sym_u8] = ACTIONS(1856), + [anon_sym_i8] = ACTIONS(1856), + [anon_sym_u16] = ACTIONS(1856), + [anon_sym_i16] = ACTIONS(1856), + [anon_sym_u32] = ACTIONS(1856), + [anon_sym_i32] = ACTIONS(1856), + [anon_sym_u64] = ACTIONS(1856), + [anon_sym_i64] = ACTIONS(1856), + [anon_sym_u128] = ACTIONS(1856), + [anon_sym_i128] = ACTIONS(1856), + [anon_sym_isize] = ACTIONS(1856), + [anon_sym_usize] = ACTIONS(1856), + [anon_sym_f32] = ACTIONS(1856), + [anon_sym_f64] = ACTIONS(1856), + [anon_sym_bool] = ACTIONS(1856), + [anon_sym_str] = ACTIONS(1856), + [anon_sym_char] = ACTIONS(1856), + [anon_sym_SQUOTE] = ACTIONS(1856), + [anon_sym_async] = ACTIONS(1856), + [anon_sym_break] = ACTIONS(1856), + [anon_sym_const] = ACTIONS(1856), + [anon_sym_continue] = ACTIONS(1856), + [anon_sym_default] = ACTIONS(1856), + [anon_sym_enum] = ACTIONS(1856), + [anon_sym_fn] = ACTIONS(1856), + [anon_sym_for] = ACTIONS(1856), + [anon_sym_if] = ACTIONS(1856), + [anon_sym_impl] = ACTIONS(1856), + [anon_sym_let] = ACTIONS(1856), + [anon_sym_loop] = ACTIONS(1856), + [anon_sym_match] = ACTIONS(1856), + [anon_sym_mod] = ACTIONS(1856), + [anon_sym_pub] = ACTIONS(1856), + [anon_sym_return] = ACTIONS(1856), + [anon_sym_static] = ACTIONS(1856), + [anon_sym_struct] = ACTIONS(1856), + [anon_sym_trait] = ACTIONS(1856), + [anon_sym_type] = ACTIONS(1856), + [anon_sym_union] = ACTIONS(1856), + [anon_sym_unsafe] = ACTIONS(1856), + [anon_sym_use] = ACTIONS(1856), + [anon_sym_while] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_extern] = ACTIONS(1856), + [anon_sym_LT] = ACTIONS(1854), + [anon_sym_COLON_COLON] = ACTIONS(1854), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_DOT_DOT] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_yield] = ACTIONS(1856), + [anon_sym_move] = ACTIONS(1856), + [sym_integer_literal] = ACTIONS(1854), + [aux_sym_string_literal_token1] = ACTIONS(1854), + [sym_char_literal] = ACTIONS(1854), + [anon_sym_true] = ACTIONS(1856), + [anon_sym_false] = ACTIONS(1856), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1856), + [sym_super] = ACTIONS(1856), + [sym_crate] = ACTIONS(1856), + [sym_metavariable] = ACTIONS(1854), + [sym_raw_string_literal] = ACTIONS(1854), + [sym_float_literal] = ACTIONS(1854), [sym_block_comment] = ACTIONS(3), }, [436] = { - [ts_builtin_sym_end] = ACTIONS(1836), - [sym_identifier] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1836), - [anon_sym_macro_rules_BANG] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1836), - [anon_sym_LBRACK] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1836), - [anon_sym_u8] = ACTIONS(1838), - [anon_sym_i8] = ACTIONS(1838), - [anon_sym_u16] = ACTIONS(1838), - [anon_sym_i16] = ACTIONS(1838), - [anon_sym_u32] = ACTIONS(1838), - [anon_sym_i32] = ACTIONS(1838), - [anon_sym_u64] = ACTIONS(1838), - [anon_sym_i64] = ACTIONS(1838), - [anon_sym_u128] = ACTIONS(1838), - [anon_sym_i128] = ACTIONS(1838), - [anon_sym_isize] = ACTIONS(1838), - [anon_sym_usize] = ACTIONS(1838), - [anon_sym_f32] = ACTIONS(1838), - [anon_sym_f64] = ACTIONS(1838), - [anon_sym_bool] = ACTIONS(1838), - [anon_sym_str] = ACTIONS(1838), - [anon_sym_char] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_async] = ACTIONS(1838), - [anon_sym_break] = ACTIONS(1838), - [anon_sym_const] = ACTIONS(1838), - [anon_sym_continue] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1838), - [anon_sym_enum] = ACTIONS(1838), - [anon_sym_fn] = ACTIONS(1838), - [anon_sym_for] = ACTIONS(1838), - [anon_sym_if] = ACTIONS(1838), - [anon_sym_impl] = ACTIONS(1838), - [anon_sym_let] = ACTIONS(1838), - [anon_sym_loop] = ACTIONS(1838), - [anon_sym_match] = ACTIONS(1838), - [anon_sym_mod] = ACTIONS(1838), - [anon_sym_pub] = ACTIONS(1838), - [anon_sym_return] = ACTIONS(1838), - [anon_sym_static] = ACTIONS(1838), - [anon_sym_struct] = ACTIONS(1838), - [anon_sym_trait] = ACTIONS(1838), - [anon_sym_type] = ACTIONS(1838), - [anon_sym_union] = ACTIONS(1838), - [anon_sym_unsafe] = ACTIONS(1838), - [anon_sym_use] = ACTIONS(1838), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(1836), - [anon_sym_BANG] = ACTIONS(1836), - [anon_sym_extern] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1836), - [anon_sym_COLON_COLON] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1836), - [anon_sym_DOT_DOT] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1838), - [anon_sym_move] = ACTIONS(1838), - [sym_integer_literal] = ACTIONS(1836), - [aux_sym_string_literal_token1] = ACTIONS(1836), - [sym_char_literal] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1838), - [anon_sym_false] = ACTIONS(1838), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1838), - [sym_super] = ACTIONS(1838), - [sym_crate] = ACTIONS(1838), - [sym_metavariable] = ACTIONS(1836), - [sym_raw_string_literal] = ACTIONS(1836), - [sym_float_literal] = ACTIONS(1836), + [ts_builtin_sym_end] = ACTIONS(1858), + [sym_identifier] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1858), + [anon_sym_macro_rules_BANG] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_LBRACK] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(1858), + [anon_sym_u8] = ACTIONS(1860), + [anon_sym_i8] = ACTIONS(1860), + [anon_sym_u16] = ACTIONS(1860), + [anon_sym_i16] = ACTIONS(1860), + [anon_sym_u32] = ACTIONS(1860), + [anon_sym_i32] = ACTIONS(1860), + [anon_sym_u64] = ACTIONS(1860), + [anon_sym_i64] = ACTIONS(1860), + [anon_sym_u128] = ACTIONS(1860), + [anon_sym_i128] = ACTIONS(1860), + [anon_sym_isize] = ACTIONS(1860), + [anon_sym_usize] = ACTIONS(1860), + [anon_sym_f32] = ACTIONS(1860), + [anon_sym_f64] = ACTIONS(1860), + [anon_sym_bool] = ACTIONS(1860), + [anon_sym_str] = ACTIONS(1860), + [anon_sym_char] = ACTIONS(1860), + [anon_sym_SQUOTE] = ACTIONS(1860), + [anon_sym_async] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_fn] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_impl] = ACTIONS(1860), + [anon_sym_let] = ACTIONS(1860), + [anon_sym_loop] = ACTIONS(1860), + [anon_sym_match] = ACTIONS(1860), + [anon_sym_mod] = ACTIONS(1860), + [anon_sym_pub] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_trait] = ACTIONS(1860), + [anon_sym_type] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_unsafe] = ACTIONS(1860), + [anon_sym_use] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_POUND] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1858), + [anon_sym_COLON_COLON] = ACTIONS(1858), + [anon_sym_AMP] = ACTIONS(1858), + [anon_sym_DOT_DOT] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1858), + [anon_sym_yield] = ACTIONS(1860), + [anon_sym_move] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(1858), + [aux_sym_string_literal_token1] = ACTIONS(1858), + [sym_char_literal] = ACTIONS(1858), + [anon_sym_true] = ACTIONS(1860), + [anon_sym_false] = ACTIONS(1860), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_crate] = ACTIONS(1860), + [sym_metavariable] = ACTIONS(1858), + [sym_raw_string_literal] = ACTIONS(1858), + [sym_float_literal] = ACTIONS(1858), [sym_block_comment] = ACTIONS(3), }, [437] = { - [ts_builtin_sym_end] = ACTIONS(1840), - [sym_identifier] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_macro_rules_BANG] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_LBRACE] = ACTIONS(1840), - [anon_sym_RBRACE] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_STAR] = ACTIONS(1840), - [anon_sym_u8] = ACTIONS(1842), - [anon_sym_i8] = ACTIONS(1842), - [anon_sym_u16] = ACTIONS(1842), - [anon_sym_i16] = ACTIONS(1842), - [anon_sym_u32] = ACTIONS(1842), - [anon_sym_i32] = ACTIONS(1842), - [anon_sym_u64] = ACTIONS(1842), - [anon_sym_i64] = ACTIONS(1842), - [anon_sym_u128] = ACTIONS(1842), - [anon_sym_i128] = ACTIONS(1842), - [anon_sym_isize] = ACTIONS(1842), - [anon_sym_usize] = ACTIONS(1842), - [anon_sym_f32] = ACTIONS(1842), - [anon_sym_f64] = ACTIONS(1842), - [anon_sym_bool] = ACTIONS(1842), - [anon_sym_str] = ACTIONS(1842), - [anon_sym_char] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [anon_sym_async] = ACTIONS(1842), - [anon_sym_break] = ACTIONS(1842), - [anon_sym_const] = ACTIONS(1842), - [anon_sym_continue] = ACTIONS(1842), - [anon_sym_default] = ACTIONS(1842), - [anon_sym_enum] = ACTIONS(1842), - [anon_sym_fn] = ACTIONS(1842), - [anon_sym_for] = ACTIONS(1842), - [anon_sym_if] = ACTIONS(1842), - [anon_sym_impl] = ACTIONS(1842), - [anon_sym_let] = ACTIONS(1842), - [anon_sym_loop] = ACTIONS(1842), - [anon_sym_match] = ACTIONS(1842), - [anon_sym_mod] = ACTIONS(1842), - [anon_sym_pub] = ACTIONS(1842), - [anon_sym_return] = ACTIONS(1842), - [anon_sym_static] = ACTIONS(1842), - [anon_sym_struct] = ACTIONS(1842), - [anon_sym_trait] = ACTIONS(1842), - [anon_sym_type] = ACTIONS(1842), - [anon_sym_union] = ACTIONS(1842), - [anon_sym_unsafe] = ACTIONS(1842), - [anon_sym_use] = ACTIONS(1842), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_POUND] = ACTIONS(1840), - [anon_sym_BANG] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_COLON_COLON] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1840), - [anon_sym_DOT_DOT] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1840), - [anon_sym_yield] = ACTIONS(1842), - [anon_sym_move] = ACTIONS(1842), - [sym_integer_literal] = ACTIONS(1840), - [aux_sym_string_literal_token1] = ACTIONS(1840), - [sym_char_literal] = ACTIONS(1840), - [anon_sym_true] = ACTIONS(1842), - [anon_sym_false] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1842), - [sym_super] = ACTIONS(1842), - [sym_crate] = ACTIONS(1842), - [sym_metavariable] = ACTIONS(1840), - [sym_raw_string_literal] = ACTIONS(1840), - [sym_float_literal] = ACTIONS(1840), + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_identifier] = ACTIONS(1864), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_macro_rules_BANG] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_u8] = ACTIONS(1864), + [anon_sym_i8] = ACTIONS(1864), + [anon_sym_u16] = ACTIONS(1864), + [anon_sym_i16] = ACTIONS(1864), + [anon_sym_u32] = ACTIONS(1864), + [anon_sym_i32] = ACTIONS(1864), + [anon_sym_u64] = ACTIONS(1864), + [anon_sym_i64] = ACTIONS(1864), + [anon_sym_u128] = ACTIONS(1864), + [anon_sym_i128] = ACTIONS(1864), + [anon_sym_isize] = ACTIONS(1864), + [anon_sym_usize] = ACTIONS(1864), + [anon_sym_f32] = ACTIONS(1864), + [anon_sym_f64] = ACTIONS(1864), + [anon_sym_bool] = ACTIONS(1864), + [anon_sym_str] = ACTIONS(1864), + [anon_sym_char] = ACTIONS(1864), + [anon_sym_SQUOTE] = ACTIONS(1864), + [anon_sym_async] = ACTIONS(1864), + [anon_sym_break] = ACTIONS(1864), + [anon_sym_const] = ACTIONS(1864), + [anon_sym_continue] = ACTIONS(1864), + [anon_sym_default] = ACTIONS(1864), + [anon_sym_enum] = ACTIONS(1864), + [anon_sym_fn] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_impl] = ACTIONS(1864), + [anon_sym_let] = ACTIONS(1864), + [anon_sym_loop] = ACTIONS(1864), + [anon_sym_match] = ACTIONS(1864), + [anon_sym_mod] = ACTIONS(1864), + [anon_sym_pub] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_static] = ACTIONS(1864), + [anon_sym_struct] = ACTIONS(1864), + [anon_sym_trait] = ACTIONS(1864), + [anon_sym_type] = ACTIONS(1864), + [anon_sym_union] = ACTIONS(1864), + [anon_sym_unsafe] = ACTIONS(1864), + [anon_sym_use] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_POUND] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_extern] = ACTIONS(1864), + [anon_sym_LT] = ACTIONS(1862), + [anon_sym_COLON_COLON] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_DOT_DOT] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1862), + [anon_sym_yield] = ACTIONS(1864), + [anon_sym_move] = ACTIONS(1864), + [sym_integer_literal] = ACTIONS(1862), + [aux_sym_string_literal_token1] = ACTIONS(1862), + [sym_char_literal] = ACTIONS(1862), + [anon_sym_true] = ACTIONS(1864), + [anon_sym_false] = ACTIONS(1864), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1864), + [sym_super] = ACTIONS(1864), + [sym_crate] = ACTIONS(1864), + [sym_metavariable] = ACTIONS(1862), + [sym_raw_string_literal] = ACTIONS(1862), + [sym_float_literal] = ACTIONS(1862), [sym_block_comment] = ACTIONS(3), }, [438] = { - [ts_builtin_sym_end] = ACTIONS(1844), - [sym_identifier] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_macro_rules_BANG] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1844), - [anon_sym_LBRACE] = ACTIONS(1844), - [anon_sym_RBRACE] = ACTIONS(1844), - [anon_sym_LBRACK] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_u8] = ACTIONS(1846), - [anon_sym_i8] = ACTIONS(1846), - [anon_sym_u16] = ACTIONS(1846), - [anon_sym_i16] = ACTIONS(1846), - [anon_sym_u32] = ACTIONS(1846), - [anon_sym_i32] = ACTIONS(1846), - [anon_sym_u64] = ACTIONS(1846), - [anon_sym_i64] = ACTIONS(1846), - [anon_sym_u128] = ACTIONS(1846), - [anon_sym_i128] = ACTIONS(1846), - [anon_sym_isize] = ACTIONS(1846), - [anon_sym_usize] = ACTIONS(1846), - [anon_sym_f32] = ACTIONS(1846), - [anon_sym_f64] = ACTIONS(1846), - [anon_sym_bool] = ACTIONS(1846), - [anon_sym_str] = ACTIONS(1846), - [anon_sym_char] = ACTIONS(1846), - [anon_sym_SQUOTE] = ACTIONS(1846), - [anon_sym_async] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_fn] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_impl] = ACTIONS(1846), - [anon_sym_let] = ACTIONS(1846), - [anon_sym_loop] = ACTIONS(1846), - [anon_sym_match] = ACTIONS(1846), - [anon_sym_mod] = ACTIONS(1846), - [anon_sym_pub] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_trait] = ACTIONS(1846), - [anon_sym_type] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_unsafe] = ACTIONS(1846), - [anon_sym_use] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_COLON_COLON] = ACTIONS(1844), - [anon_sym_AMP] = ACTIONS(1844), - [anon_sym_DOT_DOT] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_yield] = ACTIONS(1846), - [anon_sym_move] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(1844), - [aux_sym_string_literal_token1] = ACTIONS(1844), - [sym_char_literal] = ACTIONS(1844), - [anon_sym_true] = ACTIONS(1846), - [anon_sym_false] = ACTIONS(1846), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_crate] = ACTIONS(1846), - [sym_metavariable] = ACTIONS(1844), - [sym_raw_string_literal] = ACTIONS(1844), - [sym_float_literal] = ACTIONS(1844), - [sym_block_comment] = ACTIONS(3), - }, - [439] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_identifier] = ACTIONS(1850), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_macro_rules_BANG] = ACTIONS(1848), - [anon_sym_LPAREN] = ACTIONS(1848), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_u8] = ACTIONS(1850), - [anon_sym_i8] = ACTIONS(1850), - [anon_sym_u16] = ACTIONS(1850), - [anon_sym_i16] = ACTIONS(1850), - [anon_sym_u32] = ACTIONS(1850), - [anon_sym_i32] = ACTIONS(1850), - [anon_sym_u64] = ACTIONS(1850), - [anon_sym_i64] = ACTIONS(1850), - [anon_sym_u128] = ACTIONS(1850), - [anon_sym_i128] = ACTIONS(1850), - [anon_sym_isize] = ACTIONS(1850), - [anon_sym_usize] = ACTIONS(1850), - [anon_sym_f32] = ACTIONS(1850), - [anon_sym_f64] = ACTIONS(1850), - [anon_sym_bool] = ACTIONS(1850), - [anon_sym_str] = ACTIONS(1850), - [anon_sym_char] = ACTIONS(1850), - [anon_sym_SQUOTE] = ACTIONS(1850), - [anon_sym_async] = ACTIONS(1850), - [anon_sym_break] = ACTIONS(1850), - [anon_sym_const] = ACTIONS(1850), - [anon_sym_continue] = ACTIONS(1850), - [anon_sym_default] = ACTIONS(1850), - [anon_sym_enum] = ACTIONS(1850), - [anon_sym_fn] = ACTIONS(1850), - [anon_sym_for] = ACTIONS(1850), - [anon_sym_if] = ACTIONS(1850), - [anon_sym_impl] = ACTIONS(1850), - [anon_sym_let] = ACTIONS(1850), - [anon_sym_loop] = ACTIONS(1850), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_mod] = ACTIONS(1850), - [anon_sym_pub] = ACTIONS(1850), - [anon_sym_return] = ACTIONS(1850), - [anon_sym_static] = ACTIONS(1850), - [anon_sym_struct] = ACTIONS(1850), - [anon_sym_trait] = ACTIONS(1850), - [anon_sym_type] = ACTIONS(1850), - [anon_sym_union] = ACTIONS(1850), - [anon_sym_unsafe] = ACTIONS(1850), - [anon_sym_use] = ACTIONS(1850), - [anon_sym_while] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_extern] = ACTIONS(1850), - [anon_sym_LT] = ACTIONS(1848), - [anon_sym_COLON_COLON] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_DOT_DOT] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1848), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_yield] = ACTIONS(1850), - [anon_sym_move] = ACTIONS(1850), - [sym_integer_literal] = ACTIONS(1848), - [aux_sym_string_literal_token1] = ACTIONS(1848), - [sym_char_literal] = ACTIONS(1848), - [anon_sym_true] = ACTIONS(1850), - [anon_sym_false] = ACTIONS(1850), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1850), - [sym_super] = ACTIONS(1850), - [sym_crate] = ACTIONS(1850), - [sym_metavariable] = ACTIONS(1848), - [sym_raw_string_literal] = ACTIONS(1848), - [sym_float_literal] = ACTIONS(1848), - [sym_block_comment] = ACTIONS(3), - }, - [440] = { - [ts_builtin_sym_end] = ACTIONS(1852), - [sym_identifier] = ACTIONS(1854), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_macro_rules_BANG] = ACTIONS(1852), - [anon_sym_LPAREN] = ACTIONS(1852), - [anon_sym_LBRACE] = ACTIONS(1852), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_STAR] = ACTIONS(1852), - [anon_sym_u8] = ACTIONS(1854), - [anon_sym_i8] = ACTIONS(1854), - [anon_sym_u16] = ACTIONS(1854), - [anon_sym_i16] = ACTIONS(1854), - [anon_sym_u32] = ACTIONS(1854), - [anon_sym_i32] = ACTIONS(1854), - [anon_sym_u64] = ACTIONS(1854), - [anon_sym_i64] = ACTIONS(1854), - [anon_sym_u128] = ACTIONS(1854), - [anon_sym_i128] = ACTIONS(1854), - [anon_sym_isize] = ACTIONS(1854), - [anon_sym_usize] = ACTIONS(1854), - [anon_sym_f32] = ACTIONS(1854), - [anon_sym_f64] = ACTIONS(1854), - [anon_sym_bool] = ACTIONS(1854), - [anon_sym_str] = ACTIONS(1854), - [anon_sym_char] = ACTIONS(1854), - [anon_sym_SQUOTE] = ACTIONS(1854), - [anon_sym_async] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_fn] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_impl] = ACTIONS(1854), - [anon_sym_let] = ACTIONS(1854), - [anon_sym_loop] = ACTIONS(1854), - [anon_sym_match] = ACTIONS(1854), - [anon_sym_mod] = ACTIONS(1854), - [anon_sym_pub] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_trait] = ACTIONS(1854), - [anon_sym_type] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_unsafe] = ACTIONS(1854), - [anon_sym_use] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(1852), - [anon_sym_BANG] = ACTIONS(1852), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym_LT] = ACTIONS(1852), - [anon_sym_COLON_COLON] = ACTIONS(1852), - [anon_sym_AMP] = ACTIONS(1852), - [anon_sym_DOT_DOT] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1852), - [anon_sym_PIPE] = ACTIONS(1852), - [anon_sym_yield] = ACTIONS(1854), - [anon_sym_move] = ACTIONS(1854), - [sym_integer_literal] = ACTIONS(1852), - [aux_sym_string_literal_token1] = ACTIONS(1852), - [sym_char_literal] = ACTIONS(1852), - [anon_sym_true] = ACTIONS(1854), - [anon_sym_false] = ACTIONS(1854), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_crate] = ACTIONS(1854), - [sym_metavariable] = ACTIONS(1852), - [sym_raw_string_literal] = ACTIONS(1852), - [sym_float_literal] = ACTIONS(1852), - [sym_block_comment] = ACTIONS(3), - }, - [441] = { - [ts_builtin_sym_end] = ACTIONS(1856), - [sym_identifier] = ACTIONS(1858), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_macro_rules_BANG] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(1856), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_u8] = ACTIONS(1858), - [anon_sym_i8] = ACTIONS(1858), - [anon_sym_u16] = ACTIONS(1858), - [anon_sym_i16] = ACTIONS(1858), - [anon_sym_u32] = ACTIONS(1858), - [anon_sym_i32] = ACTIONS(1858), - [anon_sym_u64] = ACTIONS(1858), - [anon_sym_i64] = ACTIONS(1858), - [anon_sym_u128] = ACTIONS(1858), - [anon_sym_i128] = ACTIONS(1858), - [anon_sym_isize] = ACTIONS(1858), - [anon_sym_usize] = ACTIONS(1858), - [anon_sym_f32] = ACTIONS(1858), - [anon_sym_f64] = ACTIONS(1858), - [anon_sym_bool] = ACTIONS(1858), - [anon_sym_str] = ACTIONS(1858), - [anon_sym_char] = ACTIONS(1858), - [anon_sym_SQUOTE] = ACTIONS(1858), - [anon_sym_async] = ACTIONS(1858), - [anon_sym_break] = ACTIONS(1858), - [anon_sym_const] = ACTIONS(1858), - [anon_sym_continue] = ACTIONS(1858), - [anon_sym_default] = ACTIONS(1858), - [anon_sym_enum] = ACTIONS(1858), - [anon_sym_fn] = ACTIONS(1858), - [anon_sym_for] = ACTIONS(1858), - [anon_sym_if] = ACTIONS(1858), - [anon_sym_impl] = ACTIONS(1858), - [anon_sym_let] = ACTIONS(1858), - [anon_sym_loop] = ACTIONS(1858), - [anon_sym_match] = ACTIONS(1858), - [anon_sym_mod] = ACTIONS(1858), - [anon_sym_pub] = ACTIONS(1858), - [anon_sym_return] = ACTIONS(1858), - [anon_sym_static] = ACTIONS(1858), - [anon_sym_struct] = ACTIONS(1858), - [anon_sym_trait] = ACTIONS(1858), - [anon_sym_type] = ACTIONS(1858), - [anon_sym_union] = ACTIONS(1858), - [anon_sym_unsafe] = ACTIONS(1858), - [anon_sym_use] = ACTIONS(1858), - [anon_sym_while] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_extern] = ACTIONS(1858), - [anon_sym_LT] = ACTIONS(1856), - [anon_sym_COLON_COLON] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_DOT_DOT] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1856), - [anon_sym_PIPE] = ACTIONS(1856), - [anon_sym_yield] = ACTIONS(1858), - [anon_sym_move] = ACTIONS(1858), - [sym_integer_literal] = ACTIONS(1856), - [aux_sym_string_literal_token1] = ACTIONS(1856), - [sym_char_literal] = ACTIONS(1856), - [anon_sym_true] = ACTIONS(1858), - [anon_sym_false] = ACTIONS(1858), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1858), - [sym_super] = ACTIONS(1858), - [sym_crate] = ACTIONS(1858), - [sym_metavariable] = ACTIONS(1856), - [sym_raw_string_literal] = ACTIONS(1856), - [sym_float_literal] = ACTIONS(1856), - [sym_block_comment] = ACTIONS(3), - }, - [442] = { - [ts_builtin_sym_end] = ACTIONS(1860), - [sym_identifier] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_macro_rules_BANG] = ACTIONS(1860), - [anon_sym_LPAREN] = ACTIONS(1860), - [anon_sym_LBRACE] = ACTIONS(1860), - [anon_sym_RBRACE] = ACTIONS(1860), - [anon_sym_LBRACK] = ACTIONS(1860), - [anon_sym_STAR] = ACTIONS(1860), - [anon_sym_u8] = ACTIONS(1862), - [anon_sym_i8] = ACTIONS(1862), - [anon_sym_u16] = ACTIONS(1862), - [anon_sym_i16] = ACTIONS(1862), - [anon_sym_u32] = ACTIONS(1862), - [anon_sym_i32] = ACTIONS(1862), - [anon_sym_u64] = ACTIONS(1862), - [anon_sym_i64] = ACTIONS(1862), - [anon_sym_u128] = ACTIONS(1862), - [anon_sym_i128] = ACTIONS(1862), - [anon_sym_isize] = ACTIONS(1862), - [anon_sym_usize] = ACTIONS(1862), - [anon_sym_f32] = ACTIONS(1862), - [anon_sym_f64] = ACTIONS(1862), - [anon_sym_bool] = ACTIONS(1862), - [anon_sym_str] = ACTIONS(1862), - [anon_sym_char] = ACTIONS(1862), - [anon_sym_SQUOTE] = ACTIONS(1862), - [anon_sym_async] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_fn] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_impl] = ACTIONS(1862), - [anon_sym_let] = ACTIONS(1862), - [anon_sym_loop] = ACTIONS(1862), - [anon_sym_match] = ACTIONS(1862), - [anon_sym_mod] = ACTIONS(1862), - [anon_sym_pub] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_trait] = ACTIONS(1862), - [anon_sym_type] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_unsafe] = ACTIONS(1862), - [anon_sym_use] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_POUND] = ACTIONS(1860), - [anon_sym_BANG] = ACTIONS(1860), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym_LT] = ACTIONS(1860), - [anon_sym_COLON_COLON] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1860), - [anon_sym_PIPE] = ACTIONS(1860), - [anon_sym_yield] = ACTIONS(1862), - [anon_sym_move] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(1860), - [aux_sym_string_literal_token1] = ACTIONS(1860), - [sym_char_literal] = ACTIONS(1860), - [anon_sym_true] = ACTIONS(1862), - [anon_sym_false] = ACTIONS(1862), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_crate] = ACTIONS(1862), - [sym_metavariable] = ACTIONS(1860), - [sym_raw_string_literal] = ACTIONS(1860), - [sym_float_literal] = ACTIONS(1860), - [sym_block_comment] = ACTIONS(3), - }, - [443] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_identifier] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_macro_rules_BANG] = ACTIONS(1864), - [anon_sym_LPAREN] = ACTIONS(1864), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_u8] = ACTIONS(1866), - [anon_sym_i8] = ACTIONS(1866), - [anon_sym_u16] = ACTIONS(1866), - [anon_sym_i16] = ACTIONS(1866), - [anon_sym_u32] = ACTIONS(1866), - [anon_sym_i32] = ACTIONS(1866), - [anon_sym_u64] = ACTIONS(1866), - [anon_sym_i64] = ACTIONS(1866), - [anon_sym_u128] = ACTIONS(1866), - [anon_sym_i128] = ACTIONS(1866), - [anon_sym_isize] = ACTIONS(1866), - [anon_sym_usize] = ACTIONS(1866), - [anon_sym_f32] = ACTIONS(1866), - [anon_sym_f64] = ACTIONS(1866), - [anon_sym_bool] = ACTIONS(1866), - [anon_sym_str] = ACTIONS(1866), - [anon_sym_char] = ACTIONS(1866), - [anon_sym_SQUOTE] = ACTIONS(1866), - [anon_sym_async] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_fn] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_impl] = ACTIONS(1866), - [anon_sym_let] = ACTIONS(1866), - [anon_sym_loop] = ACTIONS(1866), - [anon_sym_match] = ACTIONS(1866), - [anon_sym_mod] = ACTIONS(1866), - [anon_sym_pub] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_trait] = ACTIONS(1866), - [anon_sym_type] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_unsafe] = ACTIONS(1866), - [anon_sym_use] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(1864), - [anon_sym_COLON_COLON] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_DOT_DOT] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1864), - [anon_sym_PIPE] = ACTIONS(1864), - [anon_sym_yield] = ACTIONS(1866), - [anon_sym_move] = ACTIONS(1866), - [sym_integer_literal] = ACTIONS(1864), - [aux_sym_string_literal_token1] = ACTIONS(1864), - [sym_char_literal] = ACTIONS(1864), - [anon_sym_true] = ACTIONS(1866), - [anon_sym_false] = ACTIONS(1866), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_crate] = ACTIONS(1866), - [sym_metavariable] = ACTIONS(1864), - [sym_raw_string_literal] = ACTIONS(1864), - [sym_float_literal] = ACTIONS(1864), - [sym_block_comment] = ACTIONS(3), - }, - [444] = { - [ts_builtin_sym_end] = ACTIONS(1868), - [sym_identifier] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_macro_rules_BANG] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_RBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_u8] = ACTIONS(1870), - [anon_sym_i8] = ACTIONS(1870), - [anon_sym_u16] = ACTIONS(1870), - [anon_sym_i16] = ACTIONS(1870), - [anon_sym_u32] = ACTIONS(1870), - [anon_sym_i32] = ACTIONS(1870), - [anon_sym_u64] = ACTIONS(1870), - [anon_sym_i64] = ACTIONS(1870), - [anon_sym_u128] = ACTIONS(1870), - [anon_sym_i128] = ACTIONS(1870), - [anon_sym_isize] = ACTIONS(1870), - [anon_sym_usize] = ACTIONS(1870), - [anon_sym_f32] = ACTIONS(1870), - [anon_sym_f64] = ACTIONS(1870), - [anon_sym_bool] = ACTIONS(1870), - [anon_sym_str] = ACTIONS(1870), - [anon_sym_char] = ACTIONS(1870), - [anon_sym_SQUOTE] = ACTIONS(1870), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1870), - [anon_sym_const] = ACTIONS(1870), - [anon_sym_continue] = ACTIONS(1870), - [anon_sym_default] = ACTIONS(1870), - [anon_sym_enum] = ACTIONS(1870), - [anon_sym_fn] = ACTIONS(1870), - [anon_sym_for] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(1870), - [anon_sym_impl] = ACTIONS(1870), - [anon_sym_let] = ACTIONS(1870), - [anon_sym_loop] = ACTIONS(1870), - [anon_sym_match] = ACTIONS(1870), - [anon_sym_mod] = ACTIONS(1870), - [anon_sym_pub] = ACTIONS(1870), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_static] = ACTIONS(1870), - [anon_sym_struct] = ACTIONS(1870), - [anon_sym_trait] = ACTIONS(1870), - [anon_sym_type] = ACTIONS(1870), - [anon_sym_union] = ACTIONS(1870), - [anon_sym_unsafe] = ACTIONS(1870), - [anon_sym_use] = ACTIONS(1870), - [anon_sym_while] = ACTIONS(1870), - [anon_sym_POUND] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_extern] = ACTIONS(1870), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_COLON_COLON] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_DOT_DOT] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_yield] = ACTIONS(1870), - [anon_sym_move] = ACTIONS(1870), - [sym_integer_literal] = ACTIONS(1868), - [aux_sym_string_literal_token1] = ACTIONS(1868), - [sym_char_literal] = ACTIONS(1868), - [anon_sym_true] = ACTIONS(1870), - [anon_sym_false] = ACTIONS(1870), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1870), - [sym_super] = ACTIONS(1870), - [sym_crate] = ACTIONS(1870), - [sym_metavariable] = ACTIONS(1868), - [sym_raw_string_literal] = ACTIONS(1868), - [sym_float_literal] = ACTIONS(1868), - [sym_block_comment] = ACTIONS(3), - }, - [445] = { - [ts_builtin_sym_end] = ACTIONS(1872), - [sym_identifier] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1872), - [anon_sym_macro_rules_BANG] = ACTIONS(1872), - [anon_sym_LPAREN] = ACTIONS(1872), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_RBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1872), - [anon_sym_u8] = ACTIONS(1874), - [anon_sym_i8] = ACTIONS(1874), - [anon_sym_u16] = ACTIONS(1874), - [anon_sym_i16] = ACTIONS(1874), - [anon_sym_u32] = ACTIONS(1874), - [anon_sym_i32] = ACTIONS(1874), - [anon_sym_u64] = ACTIONS(1874), - [anon_sym_i64] = ACTIONS(1874), - [anon_sym_u128] = ACTIONS(1874), - [anon_sym_i128] = ACTIONS(1874), - [anon_sym_isize] = ACTIONS(1874), - [anon_sym_usize] = ACTIONS(1874), - [anon_sym_f32] = ACTIONS(1874), - [anon_sym_f64] = ACTIONS(1874), - [anon_sym_bool] = ACTIONS(1874), - [anon_sym_str] = ACTIONS(1874), - [anon_sym_char] = ACTIONS(1874), - [anon_sym_SQUOTE] = ACTIONS(1874), - [anon_sym_async] = ACTIONS(1874), - [anon_sym_break] = ACTIONS(1874), - [anon_sym_const] = ACTIONS(1874), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_default] = ACTIONS(1874), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_fn] = ACTIONS(1874), - [anon_sym_for] = ACTIONS(1874), - [anon_sym_if] = ACTIONS(1874), - [anon_sym_impl] = ACTIONS(1874), - [anon_sym_let] = ACTIONS(1874), - [anon_sym_loop] = ACTIONS(1874), - [anon_sym_match] = ACTIONS(1874), - [anon_sym_mod] = ACTIONS(1874), - [anon_sym_pub] = ACTIONS(1874), - [anon_sym_return] = ACTIONS(1874), - [anon_sym_static] = ACTIONS(1874), - [anon_sym_struct] = ACTIONS(1874), - [anon_sym_trait] = ACTIONS(1874), - [anon_sym_type] = ACTIONS(1874), - [anon_sym_union] = ACTIONS(1874), - [anon_sym_unsafe] = ACTIONS(1874), - [anon_sym_use] = ACTIONS(1874), - [anon_sym_while] = ACTIONS(1874), - [anon_sym_POUND] = ACTIONS(1872), - [anon_sym_BANG] = ACTIONS(1872), - [anon_sym_extern] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1872), - [anon_sym_COLON_COLON] = ACTIONS(1872), - [anon_sym_AMP] = ACTIONS(1872), - [anon_sym_DOT_DOT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PIPE] = ACTIONS(1872), - [anon_sym_yield] = ACTIONS(1874), - [anon_sym_move] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(1872), - [aux_sym_string_literal_token1] = ACTIONS(1872), - [sym_char_literal] = ACTIONS(1872), - [anon_sym_true] = ACTIONS(1874), - [anon_sym_false] = ACTIONS(1874), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1874), - [sym_super] = ACTIONS(1874), - [sym_crate] = ACTIONS(1874), - [sym_metavariable] = ACTIONS(1872), - [sym_raw_string_literal] = ACTIONS(1872), - [sym_float_literal] = ACTIONS(1872), - [sym_block_comment] = ACTIONS(3), - }, - [446] = { - [ts_builtin_sym_end] = ACTIONS(1876), - [sym_identifier] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1876), - [anon_sym_macro_rules_BANG] = ACTIONS(1876), - [anon_sym_LPAREN] = ACTIONS(1876), - [anon_sym_LBRACE] = ACTIONS(1876), - [anon_sym_RBRACE] = ACTIONS(1876), - [anon_sym_LBRACK] = ACTIONS(1876), - [anon_sym_STAR] = ACTIONS(1876), - [anon_sym_u8] = ACTIONS(1878), - [anon_sym_i8] = ACTIONS(1878), - [anon_sym_u16] = ACTIONS(1878), - [anon_sym_i16] = ACTIONS(1878), - [anon_sym_u32] = ACTIONS(1878), - [anon_sym_i32] = ACTIONS(1878), - [anon_sym_u64] = ACTIONS(1878), - [anon_sym_i64] = ACTIONS(1878), - [anon_sym_u128] = ACTIONS(1878), - [anon_sym_i128] = ACTIONS(1878), - [anon_sym_isize] = ACTIONS(1878), - [anon_sym_usize] = ACTIONS(1878), - [anon_sym_f32] = ACTIONS(1878), - [anon_sym_f64] = ACTIONS(1878), - [anon_sym_bool] = ACTIONS(1878), - [anon_sym_str] = ACTIONS(1878), - [anon_sym_char] = ACTIONS(1878), - [anon_sym_SQUOTE] = ACTIONS(1878), - [anon_sym_async] = ACTIONS(1878), - [anon_sym_break] = ACTIONS(1878), - [anon_sym_const] = ACTIONS(1878), - [anon_sym_continue] = ACTIONS(1878), - [anon_sym_default] = ACTIONS(1878), - [anon_sym_enum] = ACTIONS(1878), - [anon_sym_fn] = ACTIONS(1878), - [anon_sym_for] = ACTIONS(1878), - [anon_sym_if] = ACTIONS(1878), - [anon_sym_impl] = ACTIONS(1878), - [anon_sym_let] = ACTIONS(1878), - [anon_sym_loop] = ACTIONS(1878), - [anon_sym_match] = ACTIONS(1878), - [anon_sym_mod] = ACTIONS(1878), - [anon_sym_pub] = ACTIONS(1878), - [anon_sym_return] = ACTIONS(1878), - [anon_sym_static] = ACTIONS(1878), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_trait] = ACTIONS(1878), - [anon_sym_type] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1878), - [anon_sym_unsafe] = ACTIONS(1878), - [anon_sym_use] = ACTIONS(1878), - [anon_sym_while] = ACTIONS(1878), - [anon_sym_POUND] = ACTIONS(1876), - [anon_sym_BANG] = ACTIONS(1876), - [anon_sym_extern] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1876), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_yield] = ACTIONS(1878), - [anon_sym_move] = ACTIONS(1878), - [sym_integer_literal] = ACTIONS(1876), - [aux_sym_string_literal_token1] = ACTIONS(1876), - [sym_char_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(1878), - [anon_sym_false] = ACTIONS(1878), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1878), - [sym_super] = ACTIONS(1878), - [sym_crate] = ACTIONS(1878), - [sym_metavariable] = ACTIONS(1876), - [sym_raw_string_literal] = ACTIONS(1876), - [sym_float_literal] = ACTIONS(1876), - [sym_block_comment] = ACTIONS(3), - }, - [447] = { - [ts_builtin_sym_end] = ACTIONS(1880), - [sym_identifier] = ACTIONS(1882), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_macro_rules_BANG] = ACTIONS(1880), - [anon_sym_LPAREN] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(1880), - [anon_sym_RBRACE] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1880), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_u8] = ACTIONS(1882), - [anon_sym_i8] = ACTIONS(1882), - [anon_sym_u16] = ACTIONS(1882), - [anon_sym_i16] = ACTIONS(1882), - [anon_sym_u32] = ACTIONS(1882), - [anon_sym_i32] = ACTIONS(1882), - [anon_sym_u64] = ACTIONS(1882), - [anon_sym_i64] = ACTIONS(1882), - [anon_sym_u128] = ACTIONS(1882), - [anon_sym_i128] = ACTIONS(1882), - [anon_sym_isize] = ACTIONS(1882), - [anon_sym_usize] = ACTIONS(1882), - [anon_sym_f32] = ACTIONS(1882), - [anon_sym_f64] = ACTIONS(1882), - [anon_sym_bool] = ACTIONS(1882), - [anon_sym_str] = ACTIONS(1882), - [anon_sym_char] = ACTIONS(1882), - [anon_sym_SQUOTE] = ACTIONS(1882), - [anon_sym_async] = ACTIONS(1882), - [anon_sym_break] = ACTIONS(1882), - [anon_sym_const] = ACTIONS(1882), - [anon_sym_continue] = ACTIONS(1882), - [anon_sym_default] = ACTIONS(1882), - [anon_sym_enum] = ACTIONS(1882), - [anon_sym_fn] = ACTIONS(1882), - [anon_sym_for] = ACTIONS(1882), - [anon_sym_if] = ACTIONS(1882), - [anon_sym_impl] = ACTIONS(1882), - [anon_sym_let] = ACTIONS(1882), - [anon_sym_loop] = ACTIONS(1882), - [anon_sym_match] = ACTIONS(1882), - [anon_sym_mod] = ACTIONS(1882), - [anon_sym_pub] = ACTIONS(1882), - [anon_sym_return] = ACTIONS(1882), - [anon_sym_static] = ACTIONS(1882), - [anon_sym_struct] = ACTIONS(1882), - [anon_sym_trait] = ACTIONS(1882), - [anon_sym_type] = ACTIONS(1882), - [anon_sym_union] = ACTIONS(1882), - [anon_sym_unsafe] = ACTIONS(1882), - [anon_sym_use] = ACTIONS(1882), - [anon_sym_while] = ACTIONS(1882), - [anon_sym_POUND] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1880), - [anon_sym_extern] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_AMP] = ACTIONS(1880), - [anon_sym_DOT_DOT] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1880), - [anon_sym_yield] = ACTIONS(1882), - [anon_sym_move] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [aux_sym_string_literal_token1] = ACTIONS(1880), - [sym_char_literal] = ACTIONS(1880), - [anon_sym_true] = ACTIONS(1882), - [anon_sym_false] = ACTIONS(1882), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1882), - [sym_super] = ACTIONS(1882), - [sym_crate] = ACTIONS(1882), - [sym_metavariable] = ACTIONS(1880), - [sym_raw_string_literal] = ACTIONS(1880), - [sym_float_literal] = ACTIONS(1880), - [sym_block_comment] = ACTIONS(3), - }, - [448] = { [ts_builtin_sym_end] = ACTIONS(554), [sym_identifier] = ACTIONS(556), [anon_sym_SEMI] = ACTIONS(554), @@ -56573,2562 +55484,2865 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(554), [sym_block_comment] = ACTIONS(3), }, + [439] = { + [ts_builtin_sym_end] = ACTIONS(1866), + [sym_identifier] = ACTIONS(1868), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_macro_rules_BANG] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_LBRACK] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_u8] = ACTIONS(1868), + [anon_sym_i8] = ACTIONS(1868), + [anon_sym_u16] = ACTIONS(1868), + [anon_sym_i16] = ACTIONS(1868), + [anon_sym_u32] = ACTIONS(1868), + [anon_sym_i32] = ACTIONS(1868), + [anon_sym_u64] = ACTIONS(1868), + [anon_sym_i64] = ACTIONS(1868), + [anon_sym_u128] = ACTIONS(1868), + [anon_sym_i128] = ACTIONS(1868), + [anon_sym_isize] = ACTIONS(1868), + [anon_sym_usize] = ACTIONS(1868), + [anon_sym_f32] = ACTIONS(1868), + [anon_sym_f64] = ACTIONS(1868), + [anon_sym_bool] = ACTIONS(1868), + [anon_sym_str] = ACTIONS(1868), + [anon_sym_char] = ACTIONS(1868), + [anon_sym_SQUOTE] = ACTIONS(1868), + [anon_sym_async] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_fn] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_impl] = ACTIONS(1868), + [anon_sym_let] = ACTIONS(1868), + [anon_sym_loop] = ACTIONS(1868), + [anon_sym_match] = ACTIONS(1868), + [anon_sym_mod] = ACTIONS(1868), + [anon_sym_pub] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_trait] = ACTIONS(1868), + [anon_sym_type] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_unsafe] = ACTIONS(1868), + [anon_sym_use] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_COLON_COLON] = ACTIONS(1866), + [anon_sym_AMP] = ACTIONS(1866), + [anon_sym_DOT_DOT] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_yield] = ACTIONS(1868), + [anon_sym_move] = ACTIONS(1868), + [sym_integer_literal] = ACTIONS(1866), + [aux_sym_string_literal_token1] = ACTIONS(1866), + [sym_char_literal] = ACTIONS(1866), + [anon_sym_true] = ACTIONS(1868), + [anon_sym_false] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_crate] = ACTIONS(1868), + [sym_metavariable] = ACTIONS(1866), + [sym_raw_string_literal] = ACTIONS(1866), + [sym_float_literal] = ACTIONS(1866), + [sym_block_comment] = ACTIONS(3), + }, + [440] = { + [ts_builtin_sym_end] = ACTIONS(1870), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_macro_rules_BANG] = ACTIONS(1870), + [anon_sym_LPAREN] = ACTIONS(1870), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_u8] = ACTIONS(1872), + [anon_sym_i8] = ACTIONS(1872), + [anon_sym_u16] = ACTIONS(1872), + [anon_sym_i16] = ACTIONS(1872), + [anon_sym_u32] = ACTIONS(1872), + [anon_sym_i32] = ACTIONS(1872), + [anon_sym_u64] = ACTIONS(1872), + [anon_sym_i64] = ACTIONS(1872), + [anon_sym_u128] = ACTIONS(1872), + [anon_sym_i128] = ACTIONS(1872), + [anon_sym_isize] = ACTIONS(1872), + [anon_sym_usize] = ACTIONS(1872), + [anon_sym_f32] = ACTIONS(1872), + [anon_sym_f64] = ACTIONS(1872), + [anon_sym_bool] = ACTIONS(1872), + [anon_sym_str] = ACTIONS(1872), + [anon_sym_char] = ACTIONS(1872), + [anon_sym_SQUOTE] = ACTIONS(1872), + [anon_sym_async] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_fn] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_impl] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_mod] = ACTIONS(1872), + [anon_sym_pub] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_static] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_trait] = ACTIONS(1872), + [anon_sym_type] = ACTIONS(1872), + [anon_sym_union] = ACTIONS(1872), + [anon_sym_unsafe] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1870), + [anon_sym_COLON_COLON] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_DOT_DOT] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_move] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(1870), + [aux_sym_string_literal_token1] = ACTIONS(1870), + [sym_char_literal] = ACTIONS(1870), + [anon_sym_true] = ACTIONS(1872), + [anon_sym_false] = ACTIONS(1872), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1872), + [sym_super] = ACTIONS(1872), + [sym_crate] = ACTIONS(1872), + [sym_metavariable] = ACTIONS(1870), + [sym_raw_string_literal] = ACTIONS(1870), + [sym_float_literal] = ACTIONS(1870), + [sym_block_comment] = ACTIONS(3), + }, + [441] = { + [ts_builtin_sym_end] = ACTIONS(1874), + [sym_identifier] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_macro_rules_BANG] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(1874), + [anon_sym_u8] = ACTIONS(1876), + [anon_sym_i8] = ACTIONS(1876), + [anon_sym_u16] = ACTIONS(1876), + [anon_sym_i16] = ACTIONS(1876), + [anon_sym_u32] = ACTIONS(1876), + [anon_sym_i32] = ACTIONS(1876), + [anon_sym_u64] = ACTIONS(1876), + [anon_sym_i64] = ACTIONS(1876), + [anon_sym_u128] = ACTIONS(1876), + [anon_sym_i128] = ACTIONS(1876), + [anon_sym_isize] = ACTIONS(1876), + [anon_sym_usize] = ACTIONS(1876), + [anon_sym_f32] = ACTIONS(1876), + [anon_sym_f64] = ACTIONS(1876), + [anon_sym_bool] = ACTIONS(1876), + [anon_sym_str] = ACTIONS(1876), + [anon_sym_char] = ACTIONS(1876), + [anon_sym_SQUOTE] = ACTIONS(1876), + [anon_sym_async] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1876), + [anon_sym_enum] = ACTIONS(1876), + [anon_sym_fn] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_impl] = ACTIONS(1876), + [anon_sym_let] = ACTIONS(1876), + [anon_sym_loop] = ACTIONS(1876), + [anon_sym_match] = ACTIONS(1876), + [anon_sym_mod] = ACTIONS(1876), + [anon_sym_pub] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1876), + [anon_sym_trait] = ACTIONS(1876), + [anon_sym_type] = ACTIONS(1876), + [anon_sym_union] = ACTIONS(1876), + [anon_sym_unsafe] = ACTIONS(1876), + [anon_sym_use] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1874), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_COLON_COLON] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_yield] = ACTIONS(1876), + [anon_sym_move] = ACTIONS(1876), + [sym_integer_literal] = ACTIONS(1874), + [aux_sym_string_literal_token1] = ACTIONS(1874), + [sym_char_literal] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1876), + [anon_sym_false] = ACTIONS(1876), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1876), + [sym_super] = ACTIONS(1876), + [sym_crate] = ACTIONS(1876), + [sym_metavariable] = ACTIONS(1874), + [sym_raw_string_literal] = ACTIONS(1874), + [sym_float_literal] = ACTIONS(1874), + [sym_block_comment] = ACTIONS(3), + }, + [442] = { + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_macro_rules_BANG] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_STAR] = ACTIONS(1878), + [anon_sym_u8] = ACTIONS(1880), + [anon_sym_i8] = ACTIONS(1880), + [anon_sym_u16] = ACTIONS(1880), + [anon_sym_i16] = ACTIONS(1880), + [anon_sym_u32] = ACTIONS(1880), + [anon_sym_i32] = ACTIONS(1880), + [anon_sym_u64] = ACTIONS(1880), + [anon_sym_i64] = ACTIONS(1880), + [anon_sym_u128] = ACTIONS(1880), + [anon_sym_i128] = ACTIONS(1880), + [anon_sym_isize] = ACTIONS(1880), + [anon_sym_usize] = ACTIONS(1880), + [anon_sym_f32] = ACTIONS(1880), + [anon_sym_f64] = ACTIONS(1880), + [anon_sym_bool] = ACTIONS(1880), + [anon_sym_str] = ACTIONS(1880), + [anon_sym_char] = ACTIONS(1880), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), + [anon_sym_fn] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_impl] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_loop] = ACTIONS(1880), + [anon_sym_match] = ACTIONS(1880), + [anon_sym_mod] = ACTIONS(1880), + [anon_sym_pub] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_struct] = ACTIONS(1880), + [anon_sym_trait] = ACTIONS(1880), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_union] = ACTIONS(1880), + [anon_sym_unsafe] = ACTIONS(1880), + [anon_sym_use] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_POUND] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_extern] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_DOT_DOT] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_yield] = ACTIONS(1880), + [anon_sym_move] = ACTIONS(1880), + [sym_integer_literal] = ACTIONS(1878), + [aux_sym_string_literal_token1] = ACTIONS(1878), + [sym_char_literal] = ACTIONS(1878), + [anon_sym_true] = ACTIONS(1880), + [anon_sym_false] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1878), + [sym_raw_string_literal] = ACTIONS(1878), + [sym_float_literal] = ACTIONS(1878), + [sym_block_comment] = ACTIONS(3), + }, + [443] = { + [ts_builtin_sym_end] = ACTIONS(1882), + [sym_identifier] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_macro_rules_BANG] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_STAR] = ACTIONS(1882), + [anon_sym_u8] = ACTIONS(1884), + [anon_sym_i8] = ACTIONS(1884), + [anon_sym_u16] = ACTIONS(1884), + [anon_sym_i16] = ACTIONS(1884), + [anon_sym_u32] = ACTIONS(1884), + [anon_sym_i32] = ACTIONS(1884), + [anon_sym_u64] = ACTIONS(1884), + [anon_sym_i64] = ACTIONS(1884), + [anon_sym_u128] = ACTIONS(1884), + [anon_sym_i128] = ACTIONS(1884), + [anon_sym_isize] = ACTIONS(1884), + [anon_sym_usize] = ACTIONS(1884), + [anon_sym_f32] = ACTIONS(1884), + [anon_sym_f64] = ACTIONS(1884), + [anon_sym_bool] = ACTIONS(1884), + [anon_sym_str] = ACTIONS(1884), + [anon_sym_char] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [anon_sym_async] = ACTIONS(1884), + [anon_sym_break] = ACTIONS(1884), + [anon_sym_const] = ACTIONS(1884), + [anon_sym_continue] = ACTIONS(1884), + [anon_sym_default] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1884), + [anon_sym_for] = ACTIONS(1884), + [anon_sym_if] = ACTIONS(1884), + [anon_sym_impl] = ACTIONS(1884), + [anon_sym_let] = ACTIONS(1884), + [anon_sym_loop] = ACTIONS(1884), + [anon_sym_match] = ACTIONS(1884), + [anon_sym_mod] = ACTIONS(1884), + [anon_sym_pub] = ACTIONS(1884), + [anon_sym_return] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1884), + [anon_sym_struct] = ACTIONS(1884), + [anon_sym_trait] = ACTIONS(1884), + [anon_sym_type] = ACTIONS(1884), + [anon_sym_union] = ACTIONS(1884), + [anon_sym_unsafe] = ACTIONS(1884), + [anon_sym_use] = ACTIONS(1884), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_extern] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1882), + [anon_sym_COLON_COLON] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_yield] = ACTIONS(1884), + [anon_sym_move] = ACTIONS(1884), + [sym_integer_literal] = ACTIONS(1882), + [aux_sym_string_literal_token1] = ACTIONS(1882), + [sym_char_literal] = ACTIONS(1882), + [anon_sym_true] = ACTIONS(1884), + [anon_sym_false] = ACTIONS(1884), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1884), + [sym_super] = ACTIONS(1884), + [sym_crate] = ACTIONS(1884), + [sym_metavariable] = ACTIONS(1882), + [sym_raw_string_literal] = ACTIONS(1882), + [sym_float_literal] = ACTIONS(1882), + [sym_block_comment] = ACTIONS(3), + }, + [444] = { + [ts_builtin_sym_end] = ACTIONS(1886), + [sym_identifier] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_macro_rules_BANG] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_u8] = ACTIONS(1888), + [anon_sym_i8] = ACTIONS(1888), + [anon_sym_u16] = ACTIONS(1888), + [anon_sym_i16] = ACTIONS(1888), + [anon_sym_u32] = ACTIONS(1888), + [anon_sym_i32] = ACTIONS(1888), + [anon_sym_u64] = ACTIONS(1888), + [anon_sym_i64] = ACTIONS(1888), + [anon_sym_u128] = ACTIONS(1888), + [anon_sym_i128] = ACTIONS(1888), + [anon_sym_isize] = ACTIONS(1888), + [anon_sym_usize] = ACTIONS(1888), + [anon_sym_f32] = ACTIONS(1888), + [anon_sym_f64] = ACTIONS(1888), + [anon_sym_bool] = ACTIONS(1888), + [anon_sym_str] = ACTIONS(1888), + [anon_sym_char] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(1888), + [anon_sym_async] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_fn] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_impl] = ACTIONS(1888), + [anon_sym_let] = ACTIONS(1888), + [anon_sym_loop] = ACTIONS(1888), + [anon_sym_match] = ACTIONS(1888), + [anon_sym_mod] = ACTIONS(1888), + [anon_sym_pub] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_trait] = ACTIONS(1888), + [anon_sym_type] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_unsafe] = ACTIONS(1888), + [anon_sym_use] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1886), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1886), + [anon_sym_COLON_COLON] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1886), + [anon_sym_DOT_DOT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_yield] = ACTIONS(1888), + [anon_sym_move] = ACTIONS(1888), + [sym_integer_literal] = ACTIONS(1886), + [aux_sym_string_literal_token1] = ACTIONS(1886), + [sym_char_literal] = ACTIONS(1886), + [anon_sym_true] = ACTIONS(1888), + [anon_sym_false] = ACTIONS(1888), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_crate] = ACTIONS(1888), + [sym_metavariable] = ACTIONS(1886), + [sym_raw_string_literal] = ACTIONS(1886), + [sym_float_literal] = ACTIONS(1886), + [sym_block_comment] = ACTIONS(3), + }, + [445] = { + [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_STAR] = 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_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(516), + [anon_sym_extern] = ACTIONS(518), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_yield] = ACTIONS(518), + [anon_sym_move] = 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), + [sym_block_comment] = ACTIONS(3), + }, + [446] = { + [ts_builtin_sym_end] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_macro_rules_BANG] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_u8] = ACTIONS(1892), + [anon_sym_i8] = ACTIONS(1892), + [anon_sym_u16] = ACTIONS(1892), + [anon_sym_i16] = ACTIONS(1892), + [anon_sym_u32] = ACTIONS(1892), + [anon_sym_i32] = ACTIONS(1892), + [anon_sym_u64] = ACTIONS(1892), + [anon_sym_i64] = ACTIONS(1892), + [anon_sym_u128] = ACTIONS(1892), + [anon_sym_i128] = ACTIONS(1892), + [anon_sym_isize] = ACTIONS(1892), + [anon_sym_usize] = ACTIONS(1892), + [anon_sym_f32] = ACTIONS(1892), + [anon_sym_f64] = ACTIONS(1892), + [anon_sym_bool] = ACTIONS(1892), + [anon_sym_str] = ACTIONS(1892), + [anon_sym_char] = ACTIONS(1892), + [anon_sym_SQUOTE] = ACTIONS(1892), + [anon_sym_async] = ACTIONS(1892), + [anon_sym_break] = ACTIONS(1892), + [anon_sym_const] = ACTIONS(1892), + [anon_sym_continue] = ACTIONS(1892), + [anon_sym_default] = ACTIONS(1892), + [anon_sym_enum] = ACTIONS(1892), + [anon_sym_fn] = ACTIONS(1892), + [anon_sym_for] = ACTIONS(1892), + [anon_sym_if] = ACTIONS(1892), + [anon_sym_impl] = ACTIONS(1892), + [anon_sym_let] = ACTIONS(1892), + [anon_sym_loop] = ACTIONS(1892), + [anon_sym_match] = ACTIONS(1892), + [anon_sym_mod] = ACTIONS(1892), + [anon_sym_pub] = ACTIONS(1892), + [anon_sym_return] = ACTIONS(1892), + [anon_sym_static] = ACTIONS(1892), + [anon_sym_struct] = ACTIONS(1892), + [anon_sym_trait] = ACTIONS(1892), + [anon_sym_type] = ACTIONS(1892), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_unsafe] = ACTIONS(1892), + [anon_sym_use] = ACTIONS(1892), + [anon_sym_while] = ACTIONS(1892), + [anon_sym_POUND] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_COLON_COLON] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_yield] = ACTIONS(1892), + [anon_sym_move] = ACTIONS(1892), + [sym_integer_literal] = ACTIONS(1890), + [aux_sym_string_literal_token1] = ACTIONS(1890), + [sym_char_literal] = ACTIONS(1890), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1892), + [sym_super] = ACTIONS(1892), + [sym_crate] = ACTIONS(1892), + [sym_metavariable] = ACTIONS(1890), + [sym_raw_string_literal] = ACTIONS(1890), + [sym_float_literal] = ACTIONS(1890), + [sym_block_comment] = ACTIONS(3), + }, + [447] = { + [ts_builtin_sym_end] = ACTIONS(1894), + [sym_identifier] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_macro_rules_BANG] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_u8] = ACTIONS(1896), + [anon_sym_i8] = ACTIONS(1896), + [anon_sym_u16] = ACTIONS(1896), + [anon_sym_i16] = ACTIONS(1896), + [anon_sym_u32] = ACTIONS(1896), + [anon_sym_i32] = ACTIONS(1896), + [anon_sym_u64] = ACTIONS(1896), + [anon_sym_i64] = ACTIONS(1896), + [anon_sym_u128] = ACTIONS(1896), + [anon_sym_i128] = ACTIONS(1896), + [anon_sym_isize] = ACTIONS(1896), + [anon_sym_usize] = ACTIONS(1896), + [anon_sym_f32] = ACTIONS(1896), + [anon_sym_f64] = ACTIONS(1896), + [anon_sym_bool] = ACTIONS(1896), + [anon_sym_str] = ACTIONS(1896), + [anon_sym_char] = ACTIONS(1896), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_async] = ACTIONS(1896), + [anon_sym_break] = ACTIONS(1896), + [anon_sym_const] = ACTIONS(1896), + [anon_sym_continue] = ACTIONS(1896), + [anon_sym_default] = ACTIONS(1896), + [anon_sym_enum] = ACTIONS(1896), + [anon_sym_fn] = ACTIONS(1896), + [anon_sym_for] = ACTIONS(1896), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_impl] = ACTIONS(1896), + [anon_sym_let] = ACTIONS(1896), + [anon_sym_loop] = ACTIONS(1896), + [anon_sym_match] = ACTIONS(1896), + [anon_sym_mod] = ACTIONS(1896), + [anon_sym_pub] = ACTIONS(1896), + [anon_sym_return] = ACTIONS(1896), + [anon_sym_static] = ACTIONS(1896), + [anon_sym_struct] = ACTIONS(1896), + [anon_sym_trait] = ACTIONS(1896), + [anon_sym_type] = ACTIONS(1896), + [anon_sym_union] = ACTIONS(1896), + [anon_sym_unsafe] = ACTIONS(1896), + [anon_sym_use] = ACTIONS(1896), + [anon_sym_while] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_extern] = ACTIONS(1896), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_COLON_COLON] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_DOT_DOT] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_yield] = ACTIONS(1896), + [anon_sym_move] = ACTIONS(1896), + [sym_integer_literal] = ACTIONS(1894), + [aux_sym_string_literal_token1] = ACTIONS(1894), + [sym_char_literal] = ACTIONS(1894), + [anon_sym_true] = ACTIONS(1896), + [anon_sym_false] = ACTIONS(1896), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1896), + [sym_super] = ACTIONS(1896), + [sym_crate] = ACTIONS(1896), + [sym_metavariable] = ACTIONS(1894), + [sym_raw_string_literal] = ACTIONS(1894), + [sym_float_literal] = ACTIONS(1894), + [sym_block_comment] = ACTIONS(3), + }, + [448] = { + [ts_builtin_sym_end] = ACTIONS(1898), + [sym_identifier] = ACTIONS(1900), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_macro_rules_BANG] = ACTIONS(1898), + [anon_sym_LPAREN] = ACTIONS(1898), + [anon_sym_LBRACE] = ACTIONS(1898), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_STAR] = ACTIONS(1898), + [anon_sym_u8] = ACTIONS(1900), + [anon_sym_i8] = ACTIONS(1900), + [anon_sym_u16] = ACTIONS(1900), + [anon_sym_i16] = ACTIONS(1900), + [anon_sym_u32] = ACTIONS(1900), + [anon_sym_i32] = ACTIONS(1900), + [anon_sym_u64] = ACTIONS(1900), + [anon_sym_i64] = ACTIONS(1900), + [anon_sym_u128] = ACTIONS(1900), + [anon_sym_i128] = ACTIONS(1900), + [anon_sym_isize] = ACTIONS(1900), + [anon_sym_usize] = ACTIONS(1900), + [anon_sym_f32] = ACTIONS(1900), + [anon_sym_f64] = ACTIONS(1900), + [anon_sym_bool] = ACTIONS(1900), + [anon_sym_str] = ACTIONS(1900), + [anon_sym_char] = ACTIONS(1900), + [anon_sym_SQUOTE] = ACTIONS(1900), + [anon_sym_async] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1900), + [anon_sym_default] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1900), + [anon_sym_fn] = ACTIONS(1900), + [anon_sym_for] = ACTIONS(1900), + [anon_sym_if] = ACTIONS(1900), + [anon_sym_impl] = ACTIONS(1900), + [anon_sym_let] = ACTIONS(1900), + [anon_sym_loop] = ACTIONS(1900), + [anon_sym_match] = ACTIONS(1900), + [anon_sym_mod] = ACTIONS(1900), + [anon_sym_pub] = ACTIONS(1900), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_static] = ACTIONS(1900), + [anon_sym_struct] = ACTIONS(1900), + [anon_sym_trait] = ACTIONS(1900), + [anon_sym_type] = ACTIONS(1900), + [anon_sym_union] = ACTIONS(1900), + [anon_sym_unsafe] = ACTIONS(1900), + [anon_sym_use] = ACTIONS(1900), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(1898), + [anon_sym_BANG] = ACTIONS(1898), + [anon_sym_extern] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1898), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_yield] = ACTIONS(1900), + [anon_sym_move] = ACTIONS(1900), + [sym_integer_literal] = ACTIONS(1898), + [aux_sym_string_literal_token1] = ACTIONS(1898), + [sym_char_literal] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(1900), + [anon_sym_false] = ACTIONS(1900), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1900), + [sym_super] = ACTIONS(1900), + [sym_crate] = ACTIONS(1900), + [sym_metavariable] = ACTIONS(1898), + [sym_raw_string_literal] = ACTIONS(1898), + [sym_float_literal] = ACTIONS(1898), + [sym_block_comment] = ACTIONS(3), + }, [449] = { - [ts_builtin_sym_end] = ACTIONS(1884), - [sym_identifier] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_macro_rules_BANG] = ACTIONS(1884), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [anon_sym_RBRACE] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_STAR] = ACTIONS(1884), - [anon_sym_u8] = ACTIONS(1886), - [anon_sym_i8] = ACTIONS(1886), - [anon_sym_u16] = ACTIONS(1886), - [anon_sym_i16] = ACTIONS(1886), - [anon_sym_u32] = ACTIONS(1886), - [anon_sym_i32] = ACTIONS(1886), - [anon_sym_u64] = ACTIONS(1886), - [anon_sym_i64] = ACTIONS(1886), - [anon_sym_u128] = ACTIONS(1886), - [anon_sym_i128] = ACTIONS(1886), - [anon_sym_isize] = ACTIONS(1886), - [anon_sym_usize] = ACTIONS(1886), - [anon_sym_f32] = ACTIONS(1886), - [anon_sym_f64] = ACTIONS(1886), - [anon_sym_bool] = ACTIONS(1886), - [anon_sym_str] = ACTIONS(1886), - [anon_sym_char] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_async] = ACTIONS(1886), - [anon_sym_break] = ACTIONS(1886), - [anon_sym_const] = ACTIONS(1886), - [anon_sym_continue] = ACTIONS(1886), - [anon_sym_default] = ACTIONS(1886), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_fn] = ACTIONS(1886), - [anon_sym_for] = ACTIONS(1886), - [anon_sym_if] = ACTIONS(1886), - [anon_sym_impl] = ACTIONS(1886), - [anon_sym_let] = ACTIONS(1886), - [anon_sym_loop] = ACTIONS(1886), - [anon_sym_match] = ACTIONS(1886), - [anon_sym_mod] = ACTIONS(1886), - [anon_sym_pub] = ACTIONS(1886), - [anon_sym_return] = ACTIONS(1886), - [anon_sym_static] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1886), - [anon_sym_trait] = ACTIONS(1886), - [anon_sym_type] = ACTIONS(1886), - [anon_sym_union] = ACTIONS(1886), - [anon_sym_unsafe] = ACTIONS(1886), - [anon_sym_use] = ACTIONS(1886), - [anon_sym_while] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_BANG] = ACTIONS(1884), - [anon_sym_extern] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_COLON_COLON] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_DOT_DOT] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1884), - [anon_sym_PIPE] = ACTIONS(1884), - [anon_sym_yield] = ACTIONS(1886), - [anon_sym_move] = ACTIONS(1886), - [sym_integer_literal] = ACTIONS(1884), - [aux_sym_string_literal_token1] = ACTIONS(1884), - [sym_char_literal] = ACTIONS(1884), - [anon_sym_true] = ACTIONS(1886), - [anon_sym_false] = ACTIONS(1886), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1886), - [sym_super] = ACTIONS(1886), - [sym_crate] = ACTIONS(1886), - [sym_metavariable] = ACTIONS(1884), - [sym_raw_string_literal] = ACTIONS(1884), - [sym_float_literal] = ACTIONS(1884), + [ts_builtin_sym_end] = ACTIONS(546), + [sym_identifier] = ACTIONS(548), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_macro_rules_BANG] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(546), + [anon_sym_RBRACE] = ACTIONS(546), + [anon_sym_LBRACK] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_u8] = ACTIONS(548), + [anon_sym_i8] = ACTIONS(548), + [anon_sym_u16] = ACTIONS(548), + [anon_sym_i16] = ACTIONS(548), + [anon_sym_u32] = ACTIONS(548), + [anon_sym_i32] = ACTIONS(548), + [anon_sym_u64] = ACTIONS(548), + [anon_sym_i64] = ACTIONS(548), + [anon_sym_u128] = ACTIONS(548), + [anon_sym_i128] = ACTIONS(548), + [anon_sym_isize] = ACTIONS(548), + [anon_sym_usize] = ACTIONS(548), + [anon_sym_f32] = ACTIONS(548), + [anon_sym_f64] = ACTIONS(548), + [anon_sym_bool] = ACTIONS(548), + [anon_sym_str] = ACTIONS(548), + [anon_sym_char] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(548), + [anon_sym_async] = ACTIONS(548), + [anon_sym_break] = ACTIONS(548), + [anon_sym_const] = ACTIONS(548), + [anon_sym_continue] = ACTIONS(548), + [anon_sym_default] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(548), + [anon_sym_fn] = ACTIONS(548), + [anon_sym_for] = ACTIONS(548), + [anon_sym_if] = ACTIONS(548), + [anon_sym_impl] = ACTIONS(548), + [anon_sym_let] = ACTIONS(548), + [anon_sym_loop] = ACTIONS(548), + [anon_sym_match] = ACTIONS(548), + [anon_sym_mod] = ACTIONS(548), + [anon_sym_pub] = ACTIONS(548), + [anon_sym_return] = ACTIONS(548), + [anon_sym_static] = ACTIONS(548), + [anon_sym_struct] = ACTIONS(548), + [anon_sym_trait] = ACTIONS(548), + [anon_sym_type] = ACTIONS(548), + [anon_sym_union] = ACTIONS(548), + [anon_sym_unsafe] = ACTIONS(548), + [anon_sym_use] = ACTIONS(548), + [anon_sym_while] = ACTIONS(548), + [anon_sym_POUND] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_COLON_COLON] = ACTIONS(546), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_DOT_DOT] = ACTIONS(546), + [anon_sym_DASH] = ACTIONS(546), + [anon_sym_PIPE] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(548), + [anon_sym_move] = ACTIONS(548), + [sym_integer_literal] = ACTIONS(546), + [aux_sym_string_literal_token1] = ACTIONS(546), + [sym_char_literal] = ACTIONS(546), + [anon_sym_true] = ACTIONS(548), + [anon_sym_false] = ACTIONS(548), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(548), + [sym_super] = ACTIONS(548), + [sym_crate] = ACTIONS(548), + [sym_metavariable] = ACTIONS(546), + [sym_raw_string_literal] = ACTIONS(546), + [sym_float_literal] = ACTIONS(546), [sym_block_comment] = ACTIONS(3), }, [450] = { - [ts_builtin_sym_end] = ACTIONS(1888), - [sym_identifier] = ACTIONS(1890), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_macro_rules_BANG] = ACTIONS(1888), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACE] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_STAR] = ACTIONS(1888), - [anon_sym_u8] = ACTIONS(1890), - [anon_sym_i8] = ACTIONS(1890), - [anon_sym_u16] = ACTIONS(1890), - [anon_sym_i16] = ACTIONS(1890), - [anon_sym_u32] = ACTIONS(1890), - [anon_sym_i32] = ACTIONS(1890), - [anon_sym_u64] = ACTIONS(1890), - [anon_sym_i64] = ACTIONS(1890), - [anon_sym_u128] = ACTIONS(1890), - [anon_sym_i128] = ACTIONS(1890), - [anon_sym_isize] = ACTIONS(1890), - [anon_sym_usize] = ACTIONS(1890), - [anon_sym_f32] = ACTIONS(1890), - [anon_sym_f64] = ACTIONS(1890), - [anon_sym_bool] = ACTIONS(1890), - [anon_sym_str] = ACTIONS(1890), - [anon_sym_char] = ACTIONS(1890), - [anon_sym_SQUOTE] = ACTIONS(1890), - [anon_sym_async] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_default] = ACTIONS(1890), - [anon_sym_enum] = ACTIONS(1890), - [anon_sym_fn] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_impl] = ACTIONS(1890), - [anon_sym_let] = ACTIONS(1890), - [anon_sym_loop] = ACTIONS(1890), - [anon_sym_match] = ACTIONS(1890), - [anon_sym_mod] = ACTIONS(1890), - [anon_sym_pub] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_static] = ACTIONS(1890), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_trait] = ACTIONS(1890), - [anon_sym_type] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1890), - [anon_sym_unsafe] = ACTIONS(1890), - [anon_sym_use] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_BANG] = ACTIONS(1888), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_COLON_COLON] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_yield] = ACTIONS(1890), - [anon_sym_move] = ACTIONS(1890), - [sym_integer_literal] = ACTIONS(1888), - [aux_sym_string_literal_token1] = ACTIONS(1888), - [sym_char_literal] = ACTIONS(1888), - [anon_sym_true] = ACTIONS(1890), - [anon_sym_false] = ACTIONS(1890), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1890), - [sym_super] = ACTIONS(1890), - [sym_crate] = ACTIONS(1890), - [sym_metavariable] = ACTIONS(1888), - [sym_raw_string_literal] = ACTIONS(1888), - [sym_float_literal] = ACTIONS(1888), + [ts_builtin_sym_end] = ACTIONS(1902), + [sym_identifier] = ACTIONS(1904), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_macro_rules_BANG] = ACTIONS(1902), + [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_STAR] = ACTIONS(1902), + [anon_sym_u8] = ACTIONS(1904), + [anon_sym_i8] = ACTIONS(1904), + [anon_sym_u16] = ACTIONS(1904), + [anon_sym_i16] = ACTIONS(1904), + [anon_sym_u32] = ACTIONS(1904), + [anon_sym_i32] = ACTIONS(1904), + [anon_sym_u64] = ACTIONS(1904), + [anon_sym_i64] = ACTIONS(1904), + [anon_sym_u128] = ACTIONS(1904), + [anon_sym_i128] = ACTIONS(1904), + [anon_sym_isize] = ACTIONS(1904), + [anon_sym_usize] = ACTIONS(1904), + [anon_sym_f32] = ACTIONS(1904), + [anon_sym_f64] = ACTIONS(1904), + [anon_sym_bool] = ACTIONS(1904), + [anon_sym_str] = ACTIONS(1904), + [anon_sym_char] = ACTIONS(1904), + [anon_sym_SQUOTE] = ACTIONS(1904), + [anon_sym_async] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_const] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_default] = ACTIONS(1904), + [anon_sym_enum] = ACTIONS(1904), + [anon_sym_fn] = ACTIONS(1904), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_impl] = ACTIONS(1904), + [anon_sym_let] = ACTIONS(1904), + [anon_sym_loop] = ACTIONS(1904), + [anon_sym_match] = ACTIONS(1904), + [anon_sym_mod] = ACTIONS(1904), + [anon_sym_pub] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_static] = ACTIONS(1904), + [anon_sym_struct] = ACTIONS(1904), + [anon_sym_trait] = ACTIONS(1904), + [anon_sym_type] = ACTIONS(1904), + [anon_sym_union] = ACTIONS(1904), + [anon_sym_unsafe] = ACTIONS(1904), + [anon_sym_use] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [anon_sym_POUND] = ACTIONS(1902), + [anon_sym_BANG] = ACTIONS(1902), + [anon_sym_extern] = ACTIONS(1904), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_COLON_COLON] = ACTIONS(1902), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1902), + [anon_sym_yield] = ACTIONS(1904), + [anon_sym_move] = ACTIONS(1904), + [sym_integer_literal] = ACTIONS(1902), + [aux_sym_string_literal_token1] = ACTIONS(1902), + [sym_char_literal] = ACTIONS(1902), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1904), + [sym_super] = ACTIONS(1904), + [sym_crate] = ACTIONS(1904), + [sym_metavariable] = ACTIONS(1902), + [sym_raw_string_literal] = ACTIONS(1902), + [sym_float_literal] = ACTIONS(1902), [sym_block_comment] = ACTIONS(3), }, [451] = { - [ts_builtin_sym_end] = ACTIONS(1892), - [sym_identifier] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_macro_rules_BANG] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_STAR] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1894), - [anon_sym_async] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [anon_sym_default] = ACTIONS(1894), - [anon_sym_enum] = ACTIONS(1894), - [anon_sym_fn] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_impl] = ACTIONS(1894), - [anon_sym_let] = ACTIONS(1894), - [anon_sym_loop] = ACTIONS(1894), - [anon_sym_match] = ACTIONS(1894), - [anon_sym_mod] = ACTIONS(1894), - [anon_sym_pub] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_static] = ACTIONS(1894), - [anon_sym_struct] = ACTIONS(1894), - [anon_sym_trait] = ACTIONS(1894), - [anon_sym_type] = ACTIONS(1894), - [anon_sym_union] = ACTIONS(1894), - [anon_sym_unsafe] = ACTIONS(1894), - [anon_sym_use] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1892), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_extern] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_COLON_COLON] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_DOT_DOT] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_yield] = ACTIONS(1894), - [anon_sym_move] = ACTIONS(1894), - [sym_integer_literal] = ACTIONS(1892), - [aux_sym_string_literal_token1] = ACTIONS(1892), - [sym_char_literal] = ACTIONS(1892), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1894), - [sym_super] = ACTIONS(1894), - [sym_crate] = ACTIONS(1894), - [sym_metavariable] = ACTIONS(1892), - [sym_raw_string_literal] = ACTIONS(1892), - [sym_float_literal] = ACTIONS(1892), + [ts_builtin_sym_end] = ACTIONS(1906), + [sym_identifier] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_macro_rules_BANG] = ACTIONS(1906), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(1906), + [anon_sym_u8] = ACTIONS(1908), + [anon_sym_i8] = ACTIONS(1908), + [anon_sym_u16] = ACTIONS(1908), + [anon_sym_i16] = ACTIONS(1908), + [anon_sym_u32] = ACTIONS(1908), + [anon_sym_i32] = ACTIONS(1908), + [anon_sym_u64] = ACTIONS(1908), + [anon_sym_i64] = ACTIONS(1908), + [anon_sym_u128] = ACTIONS(1908), + [anon_sym_i128] = ACTIONS(1908), + [anon_sym_isize] = ACTIONS(1908), + [anon_sym_usize] = ACTIONS(1908), + [anon_sym_f32] = ACTIONS(1908), + [anon_sym_f64] = ACTIONS(1908), + [anon_sym_bool] = ACTIONS(1908), + [anon_sym_str] = ACTIONS(1908), + [anon_sym_char] = ACTIONS(1908), + [anon_sym_SQUOTE] = ACTIONS(1908), + [anon_sym_async] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_fn] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_impl] = ACTIONS(1908), + [anon_sym_let] = ACTIONS(1908), + [anon_sym_loop] = ACTIONS(1908), + [anon_sym_match] = ACTIONS(1908), + [anon_sym_mod] = ACTIONS(1908), + [anon_sym_pub] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_trait] = ACTIONS(1908), + [anon_sym_type] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_unsafe] = ACTIONS(1908), + [anon_sym_use] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1906), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_COLON_COLON] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [anon_sym_DOT_DOT] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1906), + [anon_sym_yield] = ACTIONS(1908), + [anon_sym_move] = ACTIONS(1908), + [sym_integer_literal] = ACTIONS(1906), + [aux_sym_string_literal_token1] = ACTIONS(1906), + [sym_char_literal] = ACTIONS(1906), + [anon_sym_true] = ACTIONS(1908), + [anon_sym_false] = ACTIONS(1908), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_crate] = ACTIONS(1908), + [sym_metavariable] = ACTIONS(1906), + [sym_raw_string_literal] = ACTIONS(1906), + [sym_float_literal] = ACTIONS(1906), [sym_block_comment] = ACTIONS(3), }, [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), + [ts_builtin_sym_end] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1912), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_macro_rules_BANG] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_u8] = ACTIONS(1912), + [anon_sym_i8] = ACTIONS(1912), + [anon_sym_u16] = ACTIONS(1912), + [anon_sym_i16] = ACTIONS(1912), + [anon_sym_u32] = ACTIONS(1912), + [anon_sym_i32] = ACTIONS(1912), + [anon_sym_u64] = ACTIONS(1912), + [anon_sym_i64] = ACTIONS(1912), + [anon_sym_u128] = ACTIONS(1912), + [anon_sym_i128] = ACTIONS(1912), + [anon_sym_isize] = ACTIONS(1912), + [anon_sym_usize] = ACTIONS(1912), + [anon_sym_f32] = ACTIONS(1912), + [anon_sym_f64] = ACTIONS(1912), + [anon_sym_bool] = ACTIONS(1912), + [anon_sym_str] = ACTIONS(1912), + [anon_sym_char] = ACTIONS(1912), + [anon_sym_SQUOTE] = ACTIONS(1912), + [anon_sym_async] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_fn] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_impl] = ACTIONS(1912), + [anon_sym_let] = ACTIONS(1912), + [anon_sym_loop] = ACTIONS(1912), + [anon_sym_match] = ACTIONS(1912), + [anon_sym_mod] = ACTIONS(1912), + [anon_sym_pub] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_trait] = ACTIONS(1912), + [anon_sym_type] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_unsafe] = ACTIONS(1912), + [anon_sym_use] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1910), + [anon_sym_COLON_COLON] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_DOT_DOT] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(1910), + [anon_sym_yield] = ACTIONS(1912), + [anon_sym_move] = ACTIONS(1912), + [sym_integer_literal] = ACTIONS(1910), + [aux_sym_string_literal_token1] = ACTIONS(1910), + [sym_char_literal] = ACTIONS(1910), + [anon_sym_true] = ACTIONS(1912), + [anon_sym_false] = ACTIONS(1912), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_crate] = ACTIONS(1912), + [sym_metavariable] = ACTIONS(1910), + [sym_raw_string_literal] = ACTIONS(1910), + [sym_float_literal] = ACTIONS(1910), [sym_block_comment] = ACTIONS(3), }, [453] = { - [ts_builtin_sym_end] = ACTIONS(1896), - [sym_identifier] = ACTIONS(1898), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_macro_rules_BANG] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1896), - [anon_sym_RBRACE] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_u8] = ACTIONS(1898), - [anon_sym_i8] = ACTIONS(1898), - [anon_sym_u16] = ACTIONS(1898), - [anon_sym_i16] = ACTIONS(1898), - [anon_sym_u32] = ACTIONS(1898), - [anon_sym_i32] = ACTIONS(1898), - [anon_sym_u64] = ACTIONS(1898), - [anon_sym_i64] = ACTIONS(1898), - [anon_sym_u128] = ACTIONS(1898), - [anon_sym_i128] = ACTIONS(1898), - [anon_sym_isize] = ACTIONS(1898), - [anon_sym_usize] = ACTIONS(1898), - [anon_sym_f32] = ACTIONS(1898), - [anon_sym_f64] = ACTIONS(1898), - [anon_sym_bool] = ACTIONS(1898), - [anon_sym_str] = ACTIONS(1898), - [anon_sym_char] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_async] = ACTIONS(1898), - [anon_sym_break] = ACTIONS(1898), - [anon_sym_const] = ACTIONS(1898), - [anon_sym_continue] = ACTIONS(1898), - [anon_sym_default] = ACTIONS(1898), - [anon_sym_enum] = ACTIONS(1898), - [anon_sym_fn] = ACTIONS(1898), - [anon_sym_for] = ACTIONS(1898), - [anon_sym_if] = ACTIONS(1898), - [anon_sym_impl] = ACTIONS(1898), - [anon_sym_let] = ACTIONS(1898), - [anon_sym_loop] = ACTIONS(1898), - [anon_sym_match] = ACTIONS(1898), - [anon_sym_mod] = ACTIONS(1898), - [anon_sym_pub] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1898), - [anon_sym_static] = ACTIONS(1898), - [anon_sym_struct] = ACTIONS(1898), - [anon_sym_trait] = ACTIONS(1898), - [anon_sym_type] = ACTIONS(1898), - [anon_sym_union] = ACTIONS(1898), - [anon_sym_unsafe] = ACTIONS(1898), - [anon_sym_use] = ACTIONS(1898), - [anon_sym_while] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(1896), - [anon_sym_BANG] = ACTIONS(1896), - [anon_sym_extern] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_COLON_COLON] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_DOT_DOT] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_yield] = ACTIONS(1898), - [anon_sym_move] = ACTIONS(1898), - [sym_integer_literal] = ACTIONS(1896), - [aux_sym_string_literal_token1] = ACTIONS(1896), - [sym_char_literal] = ACTIONS(1896), - [anon_sym_true] = ACTIONS(1898), - [anon_sym_false] = ACTIONS(1898), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1898), - [sym_super] = ACTIONS(1898), - [sym_crate] = ACTIONS(1898), - [sym_metavariable] = ACTIONS(1896), - [sym_raw_string_literal] = ACTIONS(1896), - [sym_float_literal] = ACTIONS(1896), + [ts_builtin_sym_end] = ACTIONS(1914), + [sym_identifier] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_macro_rules_BANG] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_u8] = ACTIONS(1916), + [anon_sym_i8] = ACTIONS(1916), + [anon_sym_u16] = ACTIONS(1916), + [anon_sym_i16] = ACTIONS(1916), + [anon_sym_u32] = ACTIONS(1916), + [anon_sym_i32] = ACTIONS(1916), + [anon_sym_u64] = ACTIONS(1916), + [anon_sym_i64] = ACTIONS(1916), + [anon_sym_u128] = ACTIONS(1916), + [anon_sym_i128] = ACTIONS(1916), + [anon_sym_isize] = ACTIONS(1916), + [anon_sym_usize] = ACTIONS(1916), + [anon_sym_f32] = ACTIONS(1916), + [anon_sym_f64] = ACTIONS(1916), + [anon_sym_bool] = ACTIONS(1916), + [anon_sym_str] = ACTIONS(1916), + [anon_sym_char] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_async] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(1916), + [anon_sym_const] = ACTIONS(1916), + [anon_sym_continue] = ACTIONS(1916), + [anon_sym_default] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1916), + [anon_sym_fn] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1916), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_impl] = ACTIONS(1916), + [anon_sym_let] = ACTIONS(1916), + [anon_sym_loop] = ACTIONS(1916), + [anon_sym_match] = ACTIONS(1916), + [anon_sym_mod] = ACTIONS(1916), + [anon_sym_pub] = ACTIONS(1916), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_struct] = ACTIONS(1916), + [anon_sym_trait] = ACTIONS(1916), + [anon_sym_type] = ACTIONS(1916), + [anon_sym_union] = ACTIONS(1916), + [anon_sym_unsafe] = ACTIONS(1916), + [anon_sym_use] = ACTIONS(1916), + [anon_sym_while] = ACTIONS(1916), + [anon_sym_POUND] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_DOT_DOT] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1914), + [anon_sym_yield] = ACTIONS(1916), + [anon_sym_move] = ACTIONS(1916), + [sym_integer_literal] = ACTIONS(1914), + [aux_sym_string_literal_token1] = ACTIONS(1914), + [sym_char_literal] = ACTIONS(1914), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1916), + [sym_super] = ACTIONS(1916), + [sym_crate] = ACTIONS(1916), + [sym_metavariable] = ACTIONS(1914), + [sym_raw_string_literal] = ACTIONS(1914), + [sym_float_literal] = ACTIONS(1914), [sym_block_comment] = ACTIONS(3), }, [454] = { - [ts_builtin_sym_end] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1902), - [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym_macro_rules_BANG] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1900), - [anon_sym_LBRACE] = ACTIONS(1900), - [anon_sym_RBRACE] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1900), - [anon_sym_STAR] = ACTIONS(1900), - [anon_sym_u8] = ACTIONS(1902), - [anon_sym_i8] = ACTIONS(1902), - [anon_sym_u16] = ACTIONS(1902), - [anon_sym_i16] = ACTIONS(1902), - [anon_sym_u32] = ACTIONS(1902), - [anon_sym_i32] = ACTIONS(1902), - [anon_sym_u64] = ACTIONS(1902), - [anon_sym_i64] = ACTIONS(1902), - [anon_sym_u128] = ACTIONS(1902), - [anon_sym_i128] = ACTIONS(1902), - [anon_sym_isize] = ACTIONS(1902), - [anon_sym_usize] = ACTIONS(1902), - [anon_sym_f32] = ACTIONS(1902), - [anon_sym_f64] = ACTIONS(1902), - [anon_sym_bool] = ACTIONS(1902), - [anon_sym_str] = ACTIONS(1902), - [anon_sym_char] = ACTIONS(1902), - [anon_sym_SQUOTE] = ACTIONS(1902), - [anon_sym_async] = ACTIONS(1902), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_const] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1902), - [anon_sym_default] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1902), - [anon_sym_fn] = ACTIONS(1902), - [anon_sym_for] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1902), - [anon_sym_impl] = ACTIONS(1902), - [anon_sym_let] = ACTIONS(1902), - [anon_sym_loop] = ACTIONS(1902), - [anon_sym_match] = ACTIONS(1902), - [anon_sym_mod] = ACTIONS(1902), - [anon_sym_pub] = ACTIONS(1902), - [anon_sym_return] = ACTIONS(1902), - [anon_sym_static] = ACTIONS(1902), - [anon_sym_struct] = ACTIONS(1902), - [anon_sym_trait] = ACTIONS(1902), - [anon_sym_type] = ACTIONS(1902), - [anon_sym_union] = ACTIONS(1902), - [anon_sym_unsafe] = ACTIONS(1902), - [anon_sym_use] = ACTIONS(1902), - [anon_sym_while] = ACTIONS(1902), - [anon_sym_POUND] = ACTIONS(1900), - [anon_sym_BANG] = ACTIONS(1900), - [anon_sym_extern] = ACTIONS(1902), - [anon_sym_LT] = ACTIONS(1900), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_AMP] = ACTIONS(1900), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_PIPE] = ACTIONS(1900), - [anon_sym_yield] = ACTIONS(1902), - [anon_sym_move] = ACTIONS(1902), - [sym_integer_literal] = ACTIONS(1900), - [aux_sym_string_literal_token1] = ACTIONS(1900), - [sym_char_literal] = ACTIONS(1900), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1902), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1900), - [sym_raw_string_literal] = ACTIONS(1900), - [sym_float_literal] = ACTIONS(1900), + [ts_builtin_sym_end] = ACTIONS(1918), + [sym_identifier] = ACTIONS(1920), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_macro_rules_BANG] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_RBRACE] = ACTIONS(1918), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_u8] = ACTIONS(1920), + [anon_sym_i8] = ACTIONS(1920), + [anon_sym_u16] = ACTIONS(1920), + [anon_sym_i16] = ACTIONS(1920), + [anon_sym_u32] = ACTIONS(1920), + [anon_sym_i32] = ACTIONS(1920), + [anon_sym_u64] = ACTIONS(1920), + [anon_sym_i64] = ACTIONS(1920), + [anon_sym_u128] = ACTIONS(1920), + [anon_sym_i128] = ACTIONS(1920), + [anon_sym_isize] = ACTIONS(1920), + [anon_sym_usize] = ACTIONS(1920), + [anon_sym_f32] = ACTIONS(1920), + [anon_sym_f64] = ACTIONS(1920), + [anon_sym_bool] = ACTIONS(1920), + [anon_sym_str] = ACTIONS(1920), + [anon_sym_char] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1920), + [anon_sym_async] = ACTIONS(1920), + [anon_sym_break] = ACTIONS(1920), + [anon_sym_const] = ACTIONS(1920), + [anon_sym_continue] = ACTIONS(1920), + [anon_sym_default] = ACTIONS(1920), + [anon_sym_enum] = ACTIONS(1920), + [anon_sym_fn] = ACTIONS(1920), + [anon_sym_for] = ACTIONS(1920), + [anon_sym_if] = ACTIONS(1920), + [anon_sym_impl] = ACTIONS(1920), + [anon_sym_let] = ACTIONS(1920), + [anon_sym_loop] = ACTIONS(1920), + [anon_sym_match] = ACTIONS(1920), + [anon_sym_mod] = ACTIONS(1920), + [anon_sym_pub] = ACTIONS(1920), + [anon_sym_return] = ACTIONS(1920), + [anon_sym_static] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1920), + [anon_sym_trait] = ACTIONS(1920), + [anon_sym_type] = ACTIONS(1920), + [anon_sym_union] = ACTIONS(1920), + [anon_sym_unsafe] = ACTIONS(1920), + [anon_sym_use] = ACTIONS(1920), + [anon_sym_while] = ACTIONS(1920), + [anon_sym_POUND] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_extern] = ACTIONS(1920), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_COLON_COLON] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1918), + [anon_sym_DOT_DOT] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_yield] = ACTIONS(1920), + [anon_sym_move] = ACTIONS(1920), + [sym_integer_literal] = ACTIONS(1918), + [aux_sym_string_literal_token1] = ACTIONS(1918), + [sym_char_literal] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(1920), + [anon_sym_false] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1920), + [sym_super] = ACTIONS(1920), + [sym_crate] = ACTIONS(1920), + [sym_metavariable] = ACTIONS(1918), + [sym_raw_string_literal] = ACTIONS(1918), + [sym_float_literal] = ACTIONS(1918), [sym_block_comment] = ACTIONS(3), }, [455] = { - [ts_builtin_sym_end] = ACTIONS(1904), - [sym_identifier] = ACTIONS(1906), - [anon_sym_SEMI] = ACTIONS(1904), - [anon_sym_macro_rules_BANG] = ACTIONS(1904), - [anon_sym_LPAREN] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1904), - [anon_sym_RBRACE] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(1904), - [anon_sym_STAR] = ACTIONS(1904), - [anon_sym_u8] = ACTIONS(1906), - [anon_sym_i8] = ACTIONS(1906), - [anon_sym_u16] = ACTIONS(1906), - [anon_sym_i16] = ACTIONS(1906), - [anon_sym_u32] = ACTIONS(1906), - [anon_sym_i32] = ACTIONS(1906), - [anon_sym_u64] = ACTIONS(1906), - [anon_sym_i64] = ACTIONS(1906), - [anon_sym_u128] = ACTIONS(1906), - [anon_sym_i128] = ACTIONS(1906), - [anon_sym_isize] = ACTIONS(1906), - [anon_sym_usize] = ACTIONS(1906), - [anon_sym_f32] = ACTIONS(1906), - [anon_sym_f64] = ACTIONS(1906), - [anon_sym_bool] = ACTIONS(1906), - [anon_sym_str] = ACTIONS(1906), - [anon_sym_char] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_async] = ACTIONS(1906), - [anon_sym_break] = ACTIONS(1906), - [anon_sym_const] = ACTIONS(1906), - [anon_sym_continue] = ACTIONS(1906), - [anon_sym_default] = ACTIONS(1906), - [anon_sym_enum] = ACTIONS(1906), - [anon_sym_fn] = ACTIONS(1906), - [anon_sym_for] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(1906), - [anon_sym_impl] = ACTIONS(1906), - [anon_sym_let] = ACTIONS(1906), - [anon_sym_loop] = ACTIONS(1906), - [anon_sym_match] = ACTIONS(1906), - [anon_sym_mod] = ACTIONS(1906), - [anon_sym_pub] = ACTIONS(1906), - [anon_sym_return] = ACTIONS(1906), - [anon_sym_static] = ACTIONS(1906), - [anon_sym_struct] = ACTIONS(1906), - [anon_sym_trait] = ACTIONS(1906), - [anon_sym_type] = ACTIONS(1906), - [anon_sym_union] = ACTIONS(1906), - [anon_sym_unsafe] = ACTIONS(1906), - [anon_sym_use] = ACTIONS(1906), - [anon_sym_while] = ACTIONS(1906), - [anon_sym_POUND] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1904), - [anon_sym_extern] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1904), - [anon_sym_COLON_COLON] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_DOT_DOT] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_PIPE] = ACTIONS(1904), - [anon_sym_yield] = ACTIONS(1906), - [anon_sym_move] = ACTIONS(1906), - [sym_integer_literal] = ACTIONS(1904), - [aux_sym_string_literal_token1] = ACTIONS(1904), - [sym_char_literal] = ACTIONS(1904), - [anon_sym_true] = ACTIONS(1906), - [anon_sym_false] = ACTIONS(1906), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1906), - [sym_super] = ACTIONS(1906), - [sym_crate] = ACTIONS(1906), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(1904), - [sym_float_literal] = ACTIONS(1904), + [ts_builtin_sym_end] = ACTIONS(1922), + [sym_identifier] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_macro_rules_BANG] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1922), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_RBRACE] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1922), + [anon_sym_u8] = ACTIONS(1924), + [anon_sym_i8] = ACTIONS(1924), + [anon_sym_u16] = ACTIONS(1924), + [anon_sym_i16] = ACTIONS(1924), + [anon_sym_u32] = ACTIONS(1924), + [anon_sym_i32] = ACTIONS(1924), + [anon_sym_u64] = ACTIONS(1924), + [anon_sym_i64] = ACTIONS(1924), + [anon_sym_u128] = ACTIONS(1924), + [anon_sym_i128] = ACTIONS(1924), + [anon_sym_isize] = ACTIONS(1924), + [anon_sym_usize] = ACTIONS(1924), + [anon_sym_f32] = ACTIONS(1924), + [anon_sym_f64] = ACTIONS(1924), + [anon_sym_bool] = ACTIONS(1924), + [anon_sym_str] = ACTIONS(1924), + [anon_sym_char] = ACTIONS(1924), + [anon_sym_SQUOTE] = ACTIONS(1924), + [anon_sym_async] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_fn] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_impl] = ACTIONS(1924), + [anon_sym_let] = ACTIONS(1924), + [anon_sym_loop] = ACTIONS(1924), + [anon_sym_match] = ACTIONS(1924), + [anon_sym_mod] = ACTIONS(1924), + [anon_sym_pub] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_trait] = ACTIONS(1924), + [anon_sym_type] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_unsafe] = ACTIONS(1924), + [anon_sym_use] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(1922), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1922), + [anon_sym_COLON_COLON] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DASH] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1922), + [anon_sym_yield] = ACTIONS(1924), + [anon_sym_move] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(1922), + [aux_sym_string_literal_token1] = ACTIONS(1922), + [sym_char_literal] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1924), + [sym_super] = ACTIONS(1924), + [sym_crate] = ACTIONS(1924), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1922), + [sym_float_literal] = ACTIONS(1922), [sym_block_comment] = ACTIONS(3), }, [456] = { - [ts_builtin_sym_end] = ACTIONS(1908), - [sym_identifier] = ACTIONS(1910), - [anon_sym_SEMI] = ACTIONS(1908), - [anon_sym_macro_rules_BANG] = ACTIONS(1908), - [anon_sym_LPAREN] = ACTIONS(1908), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_RBRACE] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1908), - [anon_sym_STAR] = ACTIONS(1908), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [anon_sym_POUND] = ACTIONS(1908), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_extern] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(1908), - [anon_sym_COLON_COLON] = ACTIONS(1908), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_DOT_DOT] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_PIPE] = ACTIONS(1908), - [anon_sym_yield] = ACTIONS(1910), - [anon_sym_move] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1908), - [aux_sym_string_literal_token1] = ACTIONS(1908), - [sym_char_literal] = ACTIONS(1908), - [anon_sym_true] = ACTIONS(1910), - [anon_sym_false] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1908), - [sym_raw_string_literal] = ACTIONS(1908), - [sym_float_literal] = ACTIONS(1908), + [ts_builtin_sym_end] = ACTIONS(1926), + [sym_identifier] = ACTIONS(1928), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_macro_rules_BANG] = ACTIONS(1926), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_RBRACE] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_u8] = ACTIONS(1928), + [anon_sym_i8] = ACTIONS(1928), + [anon_sym_u16] = ACTIONS(1928), + [anon_sym_i16] = ACTIONS(1928), + [anon_sym_u32] = ACTIONS(1928), + [anon_sym_i32] = ACTIONS(1928), + [anon_sym_u64] = ACTIONS(1928), + [anon_sym_i64] = ACTIONS(1928), + [anon_sym_u128] = ACTIONS(1928), + [anon_sym_i128] = ACTIONS(1928), + [anon_sym_isize] = ACTIONS(1928), + [anon_sym_usize] = ACTIONS(1928), + [anon_sym_f32] = ACTIONS(1928), + [anon_sym_f64] = ACTIONS(1928), + [anon_sym_bool] = ACTIONS(1928), + [anon_sym_str] = ACTIONS(1928), + [anon_sym_char] = ACTIONS(1928), + [anon_sym_SQUOTE] = ACTIONS(1928), + [anon_sym_async] = ACTIONS(1928), + [anon_sym_break] = ACTIONS(1928), + [anon_sym_const] = ACTIONS(1928), + [anon_sym_continue] = ACTIONS(1928), + [anon_sym_default] = ACTIONS(1928), + [anon_sym_enum] = ACTIONS(1928), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_if] = ACTIONS(1928), + [anon_sym_impl] = ACTIONS(1928), + [anon_sym_let] = ACTIONS(1928), + [anon_sym_loop] = ACTIONS(1928), + [anon_sym_match] = ACTIONS(1928), + [anon_sym_mod] = ACTIONS(1928), + [anon_sym_pub] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(1928), + [anon_sym_static] = ACTIONS(1928), + [anon_sym_struct] = ACTIONS(1928), + [anon_sym_trait] = ACTIONS(1928), + [anon_sym_type] = ACTIONS(1928), + [anon_sym_union] = ACTIONS(1928), + [anon_sym_unsafe] = ACTIONS(1928), + [anon_sym_use] = ACTIONS(1928), + [anon_sym_while] = ACTIONS(1928), + [anon_sym_POUND] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_extern] = ACTIONS(1928), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_COLON_COLON] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_DOT_DOT] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_yield] = ACTIONS(1928), + [anon_sym_move] = ACTIONS(1928), + [sym_integer_literal] = ACTIONS(1926), + [aux_sym_string_literal_token1] = ACTIONS(1926), + [sym_char_literal] = ACTIONS(1926), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1928), + [sym_super] = ACTIONS(1928), + [sym_crate] = ACTIONS(1928), + [sym_metavariable] = ACTIONS(1926), + [sym_raw_string_literal] = ACTIONS(1926), + [sym_float_literal] = ACTIONS(1926), [sym_block_comment] = ACTIONS(3), }, [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), + [ts_builtin_sym_end] = ACTIONS(1930), + [sym_identifier] = ACTIONS(1932), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_macro_rules_BANG] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1930), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(1930), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_STAR] = ACTIONS(1930), + [anon_sym_u8] = ACTIONS(1932), + [anon_sym_i8] = ACTIONS(1932), + [anon_sym_u16] = ACTIONS(1932), + [anon_sym_i16] = ACTIONS(1932), + [anon_sym_u32] = ACTIONS(1932), + [anon_sym_i32] = ACTIONS(1932), + [anon_sym_u64] = ACTIONS(1932), + [anon_sym_i64] = ACTIONS(1932), + [anon_sym_u128] = ACTIONS(1932), + [anon_sym_i128] = ACTIONS(1932), + [anon_sym_isize] = ACTIONS(1932), + [anon_sym_usize] = ACTIONS(1932), + [anon_sym_f32] = ACTIONS(1932), + [anon_sym_f64] = ACTIONS(1932), + [anon_sym_bool] = ACTIONS(1932), + [anon_sym_str] = ACTIONS(1932), + [anon_sym_char] = ACTIONS(1932), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_fn] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_impl] = ACTIONS(1932), + [anon_sym_let] = ACTIONS(1932), + [anon_sym_loop] = ACTIONS(1932), + [anon_sym_match] = ACTIONS(1932), + [anon_sym_mod] = ACTIONS(1932), + [anon_sym_pub] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_trait] = ACTIONS(1932), + [anon_sym_type] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_unsafe] = ACTIONS(1932), + [anon_sym_use] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_POUND] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1930), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_COLON_COLON] = ACTIONS(1930), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_DOT_DOT] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_yield] = ACTIONS(1932), + [anon_sym_move] = ACTIONS(1932), + [sym_integer_literal] = ACTIONS(1930), + [aux_sym_string_literal_token1] = ACTIONS(1930), + [sym_char_literal] = ACTIONS(1930), + [anon_sym_true] = ACTIONS(1932), + [anon_sym_false] = ACTIONS(1932), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_crate] = ACTIONS(1932), + [sym_metavariable] = ACTIONS(1930), + [sym_raw_string_literal] = ACTIONS(1930), + [sym_float_literal] = ACTIONS(1930), [sym_block_comment] = ACTIONS(3), }, [458] = { - [ts_builtin_sym_end] = ACTIONS(1912), - [sym_identifier] = ACTIONS(1914), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_macro_rules_BANG] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1912), - [anon_sym_RBRACE] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1912), - [anon_sym_u8] = ACTIONS(1914), - [anon_sym_i8] = ACTIONS(1914), - [anon_sym_u16] = ACTIONS(1914), - [anon_sym_i16] = ACTIONS(1914), - [anon_sym_u32] = ACTIONS(1914), - [anon_sym_i32] = ACTIONS(1914), - [anon_sym_u64] = ACTIONS(1914), - [anon_sym_i64] = ACTIONS(1914), - [anon_sym_u128] = ACTIONS(1914), - [anon_sym_i128] = ACTIONS(1914), - [anon_sym_isize] = ACTIONS(1914), - [anon_sym_usize] = ACTIONS(1914), - [anon_sym_f32] = ACTIONS(1914), - [anon_sym_f64] = ACTIONS(1914), - [anon_sym_bool] = ACTIONS(1914), - [anon_sym_str] = ACTIONS(1914), - [anon_sym_char] = ACTIONS(1914), - [anon_sym_SQUOTE] = ACTIONS(1914), - [anon_sym_async] = ACTIONS(1914), - [anon_sym_break] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1914), - [anon_sym_continue] = ACTIONS(1914), - [anon_sym_default] = ACTIONS(1914), - [anon_sym_enum] = ACTIONS(1914), - [anon_sym_fn] = ACTIONS(1914), - [anon_sym_for] = ACTIONS(1914), - [anon_sym_if] = ACTIONS(1914), - [anon_sym_impl] = ACTIONS(1914), - [anon_sym_let] = ACTIONS(1914), - [anon_sym_loop] = ACTIONS(1914), - [anon_sym_match] = ACTIONS(1914), - [anon_sym_mod] = ACTIONS(1914), - [anon_sym_pub] = ACTIONS(1914), - [anon_sym_return] = ACTIONS(1914), - [anon_sym_static] = ACTIONS(1914), - [anon_sym_struct] = ACTIONS(1914), - [anon_sym_trait] = ACTIONS(1914), - [anon_sym_type] = ACTIONS(1914), - [anon_sym_union] = ACTIONS(1914), - [anon_sym_unsafe] = ACTIONS(1914), - [anon_sym_use] = ACTIONS(1914), - [anon_sym_while] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(1912), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_extern] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1912), - [anon_sym_COLON_COLON] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - [anon_sym_DOT_DOT] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1912), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_yield] = ACTIONS(1914), - [anon_sym_move] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(1912), - [aux_sym_string_literal_token1] = ACTIONS(1912), - [sym_char_literal] = ACTIONS(1912), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1914), - [sym_super] = ACTIONS(1914), - [sym_crate] = ACTIONS(1914), - [sym_metavariable] = ACTIONS(1912), - [sym_raw_string_literal] = ACTIONS(1912), - [sym_float_literal] = ACTIONS(1912), + [ts_builtin_sym_end] = ACTIONS(1934), + [sym_identifier] = ACTIONS(1936), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_macro_rules_BANG] = ACTIONS(1934), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_u8] = ACTIONS(1936), + [anon_sym_i8] = ACTIONS(1936), + [anon_sym_u16] = ACTIONS(1936), + [anon_sym_i16] = ACTIONS(1936), + [anon_sym_u32] = ACTIONS(1936), + [anon_sym_i32] = ACTIONS(1936), + [anon_sym_u64] = ACTIONS(1936), + [anon_sym_i64] = ACTIONS(1936), + [anon_sym_u128] = ACTIONS(1936), + [anon_sym_i128] = ACTIONS(1936), + [anon_sym_isize] = ACTIONS(1936), + [anon_sym_usize] = ACTIONS(1936), + [anon_sym_f32] = ACTIONS(1936), + [anon_sym_f64] = ACTIONS(1936), + [anon_sym_bool] = ACTIONS(1936), + [anon_sym_str] = ACTIONS(1936), + [anon_sym_char] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_break] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_continue] = ACTIONS(1936), + [anon_sym_default] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1936), + [anon_sym_fn] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_impl] = ACTIONS(1936), + [anon_sym_let] = ACTIONS(1936), + [anon_sym_loop] = ACTIONS(1936), + [anon_sym_match] = ACTIONS(1936), + [anon_sym_mod] = ACTIONS(1936), + [anon_sym_pub] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_struct] = ACTIONS(1936), + [anon_sym_trait] = ACTIONS(1936), + [anon_sym_type] = ACTIONS(1936), + [anon_sym_union] = ACTIONS(1936), + [anon_sym_unsafe] = ACTIONS(1936), + [anon_sym_use] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_extern] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1934), + [anon_sym_COLON_COLON] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_DOT_DOT] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_PIPE] = ACTIONS(1934), + [anon_sym_yield] = ACTIONS(1936), + [anon_sym_move] = ACTIONS(1936), + [sym_integer_literal] = ACTIONS(1934), + [aux_sym_string_literal_token1] = ACTIONS(1934), + [sym_char_literal] = ACTIONS(1934), + [anon_sym_true] = ACTIONS(1936), + [anon_sym_false] = ACTIONS(1936), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1936), + [sym_super] = ACTIONS(1936), + [sym_crate] = ACTIONS(1936), + [sym_metavariable] = ACTIONS(1934), + [sym_raw_string_literal] = ACTIONS(1934), + [sym_float_literal] = ACTIONS(1934), [sym_block_comment] = ACTIONS(3), }, [459] = { - [ts_builtin_sym_end] = ACTIONS(1916), - [sym_identifier] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_macro_rules_BANG] = ACTIONS(1916), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(1916), - [anon_sym_RBRACE] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_STAR] = ACTIONS(1916), - [anon_sym_u8] = ACTIONS(1918), - [anon_sym_i8] = ACTIONS(1918), - [anon_sym_u16] = ACTIONS(1918), - [anon_sym_i16] = ACTIONS(1918), - [anon_sym_u32] = ACTIONS(1918), - [anon_sym_i32] = ACTIONS(1918), - [anon_sym_u64] = ACTIONS(1918), - [anon_sym_i64] = ACTIONS(1918), - [anon_sym_u128] = ACTIONS(1918), - [anon_sym_i128] = ACTIONS(1918), - [anon_sym_isize] = ACTIONS(1918), - [anon_sym_usize] = ACTIONS(1918), - [anon_sym_f32] = ACTIONS(1918), - [anon_sym_f64] = ACTIONS(1918), - [anon_sym_bool] = ACTIONS(1918), - [anon_sym_str] = ACTIONS(1918), - [anon_sym_char] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_async] = ACTIONS(1918), - [anon_sym_break] = ACTIONS(1918), - [anon_sym_const] = ACTIONS(1918), - [anon_sym_continue] = ACTIONS(1918), - [anon_sym_default] = ACTIONS(1918), - [anon_sym_enum] = ACTIONS(1918), - [anon_sym_fn] = ACTIONS(1918), - [anon_sym_for] = ACTIONS(1918), - [anon_sym_if] = ACTIONS(1918), - [anon_sym_impl] = ACTIONS(1918), - [anon_sym_let] = ACTIONS(1918), - [anon_sym_loop] = ACTIONS(1918), - [anon_sym_match] = ACTIONS(1918), - [anon_sym_mod] = ACTIONS(1918), - [anon_sym_pub] = ACTIONS(1918), - [anon_sym_return] = ACTIONS(1918), - [anon_sym_static] = ACTIONS(1918), - [anon_sym_struct] = ACTIONS(1918), - [anon_sym_trait] = ACTIONS(1918), - [anon_sym_type] = ACTIONS(1918), - [anon_sym_union] = ACTIONS(1918), - [anon_sym_unsafe] = ACTIONS(1918), - [anon_sym_use] = ACTIONS(1918), - [anon_sym_while] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(1916), - [anon_sym_BANG] = ACTIONS(1916), - [anon_sym_extern] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1916), - [anon_sym_COLON_COLON] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1916), - [anon_sym_DOT_DOT] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_yield] = ACTIONS(1918), - [anon_sym_move] = ACTIONS(1918), - [sym_integer_literal] = ACTIONS(1916), - [aux_sym_string_literal_token1] = ACTIONS(1916), - [sym_char_literal] = ACTIONS(1916), - [anon_sym_true] = ACTIONS(1918), - [anon_sym_false] = ACTIONS(1918), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1918), - [sym_super] = ACTIONS(1918), - [sym_crate] = ACTIONS(1918), - [sym_metavariable] = ACTIONS(1916), - [sym_raw_string_literal] = ACTIONS(1916), - [sym_float_literal] = ACTIONS(1916), + [ts_builtin_sym_end] = ACTIONS(1938), + [sym_identifier] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_macro_rules_BANG] = ACTIONS(1938), + [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_u8] = ACTIONS(1940), + [anon_sym_i8] = ACTIONS(1940), + [anon_sym_u16] = ACTIONS(1940), + [anon_sym_i16] = ACTIONS(1940), + [anon_sym_u32] = ACTIONS(1940), + [anon_sym_i32] = ACTIONS(1940), + [anon_sym_u64] = ACTIONS(1940), + [anon_sym_i64] = ACTIONS(1940), + [anon_sym_u128] = ACTIONS(1940), + [anon_sym_i128] = ACTIONS(1940), + [anon_sym_isize] = ACTIONS(1940), + [anon_sym_usize] = ACTIONS(1940), + [anon_sym_f32] = ACTIONS(1940), + [anon_sym_f64] = ACTIONS(1940), + [anon_sym_bool] = ACTIONS(1940), + [anon_sym_str] = ACTIONS(1940), + [anon_sym_char] = ACTIONS(1940), + [anon_sym_SQUOTE] = ACTIONS(1940), + [anon_sym_async] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_fn] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_impl] = ACTIONS(1940), + [anon_sym_let] = ACTIONS(1940), + [anon_sym_loop] = ACTIONS(1940), + [anon_sym_match] = ACTIONS(1940), + [anon_sym_mod] = ACTIONS(1940), + [anon_sym_pub] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_trait] = ACTIONS(1940), + [anon_sym_type] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_unsafe] = ACTIONS(1940), + [anon_sym_use] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_POUND] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_COLON_COLON] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1938), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_yield] = ACTIONS(1940), + [anon_sym_move] = ACTIONS(1940), + [sym_integer_literal] = ACTIONS(1938), + [aux_sym_string_literal_token1] = ACTIONS(1938), + [sym_char_literal] = ACTIONS(1938), + [anon_sym_true] = ACTIONS(1940), + [anon_sym_false] = ACTIONS(1940), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_crate] = ACTIONS(1940), + [sym_metavariable] = ACTIONS(1938), + [sym_raw_string_literal] = ACTIONS(1938), + [sym_float_literal] = ACTIONS(1938), [sym_block_comment] = ACTIONS(3), }, [460] = { - [ts_builtin_sym_end] = ACTIONS(1920), - [sym_identifier] = ACTIONS(1922), - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_macro_rules_BANG] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_STAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1922), - [anon_sym_i8] = ACTIONS(1922), - [anon_sym_u16] = ACTIONS(1922), - [anon_sym_i16] = ACTIONS(1922), - [anon_sym_u32] = ACTIONS(1922), - [anon_sym_i32] = ACTIONS(1922), - [anon_sym_u64] = ACTIONS(1922), - [anon_sym_i64] = ACTIONS(1922), - [anon_sym_u128] = ACTIONS(1922), - [anon_sym_i128] = ACTIONS(1922), - [anon_sym_isize] = ACTIONS(1922), - [anon_sym_usize] = ACTIONS(1922), - [anon_sym_f32] = ACTIONS(1922), - [anon_sym_f64] = ACTIONS(1922), - [anon_sym_bool] = ACTIONS(1922), - [anon_sym_str] = ACTIONS(1922), - [anon_sym_char] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_async] = ACTIONS(1922), - [anon_sym_break] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(1922), - [anon_sym_continue] = ACTIONS(1922), - [anon_sym_default] = ACTIONS(1922), - [anon_sym_enum] = ACTIONS(1922), - [anon_sym_fn] = ACTIONS(1922), - [anon_sym_for] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(1922), - [anon_sym_impl] = ACTIONS(1922), - [anon_sym_let] = ACTIONS(1922), - [anon_sym_loop] = ACTIONS(1922), - [anon_sym_match] = ACTIONS(1922), - [anon_sym_mod] = ACTIONS(1922), - [anon_sym_pub] = ACTIONS(1922), - [anon_sym_return] = ACTIONS(1922), - [anon_sym_static] = ACTIONS(1922), - [anon_sym_struct] = ACTIONS(1922), - [anon_sym_trait] = ACTIONS(1922), - [anon_sym_type] = ACTIONS(1922), - [anon_sym_union] = ACTIONS(1922), - [anon_sym_unsafe] = ACTIONS(1922), - [anon_sym_use] = ACTIONS(1922), - [anon_sym_while] = ACTIONS(1922), - [anon_sym_POUND] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1920), - [anon_sym_COLON_COLON] = ACTIONS(1920), - [anon_sym_AMP] = ACTIONS(1920), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_PIPE] = ACTIONS(1920), - [anon_sym_yield] = ACTIONS(1922), - [anon_sym_move] = ACTIONS(1922), - [sym_integer_literal] = ACTIONS(1920), - [aux_sym_string_literal_token1] = ACTIONS(1920), - [sym_char_literal] = ACTIONS(1920), - [anon_sym_true] = ACTIONS(1922), - [anon_sym_false] = ACTIONS(1922), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1922), - [sym_super] = ACTIONS(1922), - [sym_crate] = ACTIONS(1922), - [sym_metavariable] = ACTIONS(1920), - [sym_raw_string_literal] = ACTIONS(1920), - [sym_float_literal] = ACTIONS(1920), + [ts_builtin_sym_end] = ACTIONS(1942), + [sym_identifier] = ACTIONS(1944), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_macro_rules_BANG] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_u8] = ACTIONS(1944), + [anon_sym_i8] = ACTIONS(1944), + [anon_sym_u16] = ACTIONS(1944), + [anon_sym_i16] = ACTIONS(1944), + [anon_sym_u32] = ACTIONS(1944), + [anon_sym_i32] = ACTIONS(1944), + [anon_sym_u64] = ACTIONS(1944), + [anon_sym_i64] = ACTIONS(1944), + [anon_sym_u128] = ACTIONS(1944), + [anon_sym_i128] = ACTIONS(1944), + [anon_sym_isize] = ACTIONS(1944), + [anon_sym_usize] = ACTIONS(1944), + [anon_sym_f32] = ACTIONS(1944), + [anon_sym_f64] = ACTIONS(1944), + [anon_sym_bool] = ACTIONS(1944), + [anon_sym_str] = ACTIONS(1944), + [anon_sym_char] = ACTIONS(1944), + [anon_sym_SQUOTE] = ACTIONS(1944), + [anon_sym_async] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1944), + [anon_sym_enum] = ACTIONS(1944), + [anon_sym_fn] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_impl] = ACTIONS(1944), + [anon_sym_let] = ACTIONS(1944), + [anon_sym_loop] = ACTIONS(1944), + [anon_sym_match] = ACTIONS(1944), + [anon_sym_mod] = ACTIONS(1944), + [anon_sym_pub] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_static] = ACTIONS(1944), + [anon_sym_struct] = ACTIONS(1944), + [anon_sym_trait] = ACTIONS(1944), + [anon_sym_type] = ACTIONS(1944), + [anon_sym_union] = ACTIONS(1944), + [anon_sym_unsafe] = ACTIONS(1944), + [anon_sym_use] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_POUND] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_extern] = ACTIONS(1944), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_DOT_DOT] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_yield] = ACTIONS(1944), + [anon_sym_move] = ACTIONS(1944), + [sym_integer_literal] = ACTIONS(1942), + [aux_sym_string_literal_token1] = ACTIONS(1942), + [sym_char_literal] = ACTIONS(1942), + [anon_sym_true] = ACTIONS(1944), + [anon_sym_false] = ACTIONS(1944), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1944), + [sym_super] = ACTIONS(1944), + [sym_crate] = ACTIONS(1944), + [sym_metavariable] = ACTIONS(1942), + [sym_raw_string_literal] = ACTIONS(1942), + [sym_float_literal] = ACTIONS(1942), [sym_block_comment] = ACTIONS(3), }, [461] = { - [ts_builtin_sym_end] = ACTIONS(1924), - [sym_identifier] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_macro_rules_BANG] = ACTIONS(1924), - [anon_sym_LPAREN] = ACTIONS(1924), - [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_RBRACE] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1924), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_u8] = ACTIONS(1926), - [anon_sym_i8] = ACTIONS(1926), - [anon_sym_u16] = ACTIONS(1926), - [anon_sym_i16] = ACTIONS(1926), - [anon_sym_u32] = ACTIONS(1926), - [anon_sym_i32] = ACTIONS(1926), - [anon_sym_u64] = ACTIONS(1926), - [anon_sym_i64] = ACTIONS(1926), - [anon_sym_u128] = ACTIONS(1926), - [anon_sym_i128] = ACTIONS(1926), - [anon_sym_isize] = ACTIONS(1926), - [anon_sym_usize] = ACTIONS(1926), - [anon_sym_f32] = ACTIONS(1926), - [anon_sym_f64] = ACTIONS(1926), - [anon_sym_bool] = ACTIONS(1926), - [anon_sym_str] = ACTIONS(1926), - [anon_sym_char] = ACTIONS(1926), - [anon_sym_SQUOTE] = ACTIONS(1926), - [anon_sym_async] = ACTIONS(1926), - [anon_sym_break] = ACTIONS(1926), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_continue] = ACTIONS(1926), - [anon_sym_default] = ACTIONS(1926), - [anon_sym_enum] = ACTIONS(1926), - [anon_sym_fn] = ACTIONS(1926), - [anon_sym_for] = ACTIONS(1926), - [anon_sym_if] = ACTIONS(1926), - [anon_sym_impl] = ACTIONS(1926), - [anon_sym_let] = ACTIONS(1926), - [anon_sym_loop] = ACTIONS(1926), - [anon_sym_match] = ACTIONS(1926), - [anon_sym_mod] = ACTIONS(1926), - [anon_sym_pub] = ACTIONS(1926), - [anon_sym_return] = ACTIONS(1926), - [anon_sym_static] = ACTIONS(1926), - [anon_sym_struct] = ACTIONS(1926), - [anon_sym_trait] = ACTIONS(1926), - [anon_sym_type] = ACTIONS(1926), - [anon_sym_union] = ACTIONS(1926), - [anon_sym_unsafe] = ACTIONS(1926), - [anon_sym_use] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1926), - [anon_sym_POUND] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_extern] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_yield] = ACTIONS(1926), - [anon_sym_move] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(1924), - [aux_sym_string_literal_token1] = ACTIONS(1924), - [sym_char_literal] = ACTIONS(1924), - [anon_sym_true] = ACTIONS(1926), - [anon_sym_false] = ACTIONS(1926), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1926), - [sym_super] = ACTIONS(1926), - [sym_crate] = ACTIONS(1926), - [sym_metavariable] = ACTIONS(1924), - [sym_raw_string_literal] = ACTIONS(1924), - [sym_float_literal] = ACTIONS(1924), + [ts_builtin_sym_end] = ACTIONS(1946), + [sym_identifier] = ACTIONS(1948), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_macro_rules_BANG] = ACTIONS(1946), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_u8] = ACTIONS(1948), + [anon_sym_i8] = ACTIONS(1948), + [anon_sym_u16] = ACTIONS(1948), + [anon_sym_i16] = ACTIONS(1948), + [anon_sym_u32] = ACTIONS(1948), + [anon_sym_i32] = ACTIONS(1948), + [anon_sym_u64] = ACTIONS(1948), + [anon_sym_i64] = ACTIONS(1948), + [anon_sym_u128] = ACTIONS(1948), + [anon_sym_i128] = ACTIONS(1948), + [anon_sym_isize] = ACTIONS(1948), + [anon_sym_usize] = ACTIONS(1948), + [anon_sym_f32] = ACTIONS(1948), + [anon_sym_f64] = ACTIONS(1948), + [anon_sym_bool] = ACTIONS(1948), + [anon_sym_str] = ACTIONS(1948), + [anon_sym_char] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_async] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_fn] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_impl] = ACTIONS(1948), + [anon_sym_let] = ACTIONS(1948), + [anon_sym_loop] = ACTIONS(1948), + [anon_sym_match] = ACTIONS(1948), + [anon_sym_mod] = ACTIONS(1948), + [anon_sym_pub] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_trait] = ACTIONS(1948), + [anon_sym_type] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_unsafe] = ACTIONS(1948), + [anon_sym_use] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_POUND] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1946), + [anon_sym_COLON_COLON] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_DOT_DOT] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_yield] = ACTIONS(1948), + [anon_sym_move] = ACTIONS(1948), + [sym_integer_literal] = ACTIONS(1946), + [aux_sym_string_literal_token1] = ACTIONS(1946), + [sym_char_literal] = ACTIONS(1946), + [anon_sym_true] = ACTIONS(1948), + [anon_sym_false] = ACTIONS(1948), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1946), + [sym_raw_string_literal] = ACTIONS(1946), + [sym_float_literal] = ACTIONS(1946), [sym_block_comment] = ACTIONS(3), }, [462] = { - [ts_builtin_sym_end] = ACTIONS(1928), - [sym_identifier] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_macro_rules_BANG] = ACTIONS(1928), - [anon_sym_LPAREN] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(1928), - [anon_sym_RBRACE] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_STAR] = ACTIONS(1928), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [anon_sym_POUND] = ACTIONS(1928), - [anon_sym_BANG] = ACTIONS(1928), - [anon_sym_extern] = ACTIONS(1930), - [anon_sym_LT] = ACTIONS(1928), - [anon_sym_COLON_COLON] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1928), - [anon_sym_DOT_DOT] = ACTIONS(1928), - [anon_sym_DASH] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_yield] = ACTIONS(1930), - [anon_sym_move] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1928), - [aux_sym_string_literal_token1] = ACTIONS(1928), - [sym_char_literal] = ACTIONS(1928), - [anon_sym_true] = ACTIONS(1930), - [anon_sym_false] = ACTIONS(1930), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1928), - [sym_raw_string_literal] = ACTIONS(1928), - [sym_float_literal] = ACTIONS(1928), + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1952), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_macro_rules_BANG] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_u8] = ACTIONS(1952), + [anon_sym_i8] = ACTIONS(1952), + [anon_sym_u16] = ACTIONS(1952), + [anon_sym_i16] = ACTIONS(1952), + [anon_sym_u32] = ACTIONS(1952), + [anon_sym_i32] = ACTIONS(1952), + [anon_sym_u64] = ACTIONS(1952), + [anon_sym_i64] = ACTIONS(1952), + [anon_sym_u128] = ACTIONS(1952), + [anon_sym_i128] = ACTIONS(1952), + [anon_sym_isize] = ACTIONS(1952), + [anon_sym_usize] = ACTIONS(1952), + [anon_sym_f32] = ACTIONS(1952), + [anon_sym_f64] = ACTIONS(1952), + [anon_sym_bool] = ACTIONS(1952), + [anon_sym_str] = ACTIONS(1952), + [anon_sym_char] = ACTIONS(1952), + [anon_sym_SQUOTE] = ACTIONS(1952), + [anon_sym_async] = ACTIONS(1952), + [anon_sym_break] = ACTIONS(1952), + [anon_sym_const] = ACTIONS(1952), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_default] = ACTIONS(1952), + [anon_sym_enum] = ACTIONS(1952), + [anon_sym_fn] = ACTIONS(1952), + [anon_sym_for] = ACTIONS(1952), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_impl] = ACTIONS(1952), + [anon_sym_let] = ACTIONS(1952), + [anon_sym_loop] = ACTIONS(1952), + [anon_sym_match] = ACTIONS(1952), + [anon_sym_mod] = ACTIONS(1952), + [anon_sym_pub] = ACTIONS(1952), + [anon_sym_return] = ACTIONS(1952), + [anon_sym_static] = ACTIONS(1952), + [anon_sym_struct] = ACTIONS(1952), + [anon_sym_trait] = ACTIONS(1952), + [anon_sym_type] = ACTIONS(1952), + [anon_sym_union] = ACTIONS(1952), + [anon_sym_unsafe] = ACTIONS(1952), + [anon_sym_use] = ACTIONS(1952), + [anon_sym_while] = ACTIONS(1952), + [anon_sym_POUND] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1950), + [anon_sym_COLON_COLON] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_DOT_DOT] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1950), + [anon_sym_PIPE] = ACTIONS(1950), + [anon_sym_yield] = ACTIONS(1952), + [anon_sym_move] = ACTIONS(1952), + [sym_integer_literal] = ACTIONS(1950), + [aux_sym_string_literal_token1] = ACTIONS(1950), + [sym_char_literal] = ACTIONS(1950), + [anon_sym_true] = ACTIONS(1952), + [anon_sym_false] = ACTIONS(1952), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1952), + [sym_super] = ACTIONS(1952), + [sym_crate] = ACTIONS(1952), + [sym_metavariable] = ACTIONS(1950), + [sym_raw_string_literal] = ACTIONS(1950), + [sym_float_literal] = ACTIONS(1950), [sym_block_comment] = ACTIONS(3), }, [463] = { - [ts_builtin_sym_end] = ACTIONS(1932), - [sym_identifier] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1932), - [anon_sym_macro_rules_BANG] = ACTIONS(1932), - [anon_sym_LPAREN] = ACTIONS(1932), - [anon_sym_LBRACE] = ACTIONS(1932), - [anon_sym_RBRACE] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1932), - [anon_sym_u8] = ACTIONS(1934), - [anon_sym_i8] = ACTIONS(1934), - [anon_sym_u16] = ACTIONS(1934), - [anon_sym_i16] = ACTIONS(1934), - [anon_sym_u32] = ACTIONS(1934), - [anon_sym_i32] = ACTIONS(1934), - [anon_sym_u64] = ACTIONS(1934), - [anon_sym_i64] = ACTIONS(1934), - [anon_sym_u128] = ACTIONS(1934), - [anon_sym_i128] = ACTIONS(1934), - [anon_sym_isize] = ACTIONS(1934), - [anon_sym_usize] = ACTIONS(1934), - [anon_sym_f32] = ACTIONS(1934), - [anon_sym_f64] = ACTIONS(1934), - [anon_sym_bool] = ACTIONS(1934), - [anon_sym_str] = ACTIONS(1934), - [anon_sym_char] = ACTIONS(1934), - [anon_sym_SQUOTE] = ACTIONS(1934), - [anon_sym_async] = ACTIONS(1934), - [anon_sym_break] = ACTIONS(1934), - [anon_sym_const] = ACTIONS(1934), - [anon_sym_continue] = ACTIONS(1934), - [anon_sym_default] = ACTIONS(1934), - [anon_sym_enum] = ACTIONS(1934), - [anon_sym_fn] = ACTIONS(1934), - [anon_sym_for] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1934), - [anon_sym_impl] = ACTIONS(1934), - [anon_sym_let] = ACTIONS(1934), - [anon_sym_loop] = ACTIONS(1934), - [anon_sym_match] = ACTIONS(1934), - [anon_sym_mod] = ACTIONS(1934), - [anon_sym_pub] = ACTIONS(1934), - [anon_sym_return] = ACTIONS(1934), - [anon_sym_static] = ACTIONS(1934), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_trait] = ACTIONS(1934), - [anon_sym_type] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1934), - [anon_sym_unsafe] = ACTIONS(1934), - [anon_sym_use] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1932), - [anon_sym_BANG] = ACTIONS(1932), - [anon_sym_extern] = ACTIONS(1934), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_COLON_COLON] = ACTIONS(1932), - [anon_sym_AMP] = ACTIONS(1932), - [anon_sym_DOT_DOT] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_yield] = ACTIONS(1934), - [anon_sym_move] = ACTIONS(1934), - [sym_integer_literal] = ACTIONS(1932), - [aux_sym_string_literal_token1] = ACTIONS(1932), - [sym_char_literal] = ACTIONS(1932), - [anon_sym_true] = ACTIONS(1934), - [anon_sym_false] = ACTIONS(1934), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1934), - [sym_super] = ACTIONS(1934), - [sym_crate] = ACTIONS(1934), - [sym_metavariable] = ACTIONS(1932), - [sym_raw_string_literal] = ACTIONS(1932), - [sym_float_literal] = ACTIONS(1932), + [ts_builtin_sym_end] = ACTIONS(1954), + [sym_identifier] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_macro_rules_BANG] = ACTIONS(1954), + [anon_sym_LPAREN] = ACTIONS(1954), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(1954), + [anon_sym_LBRACK] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_u8] = ACTIONS(1956), + [anon_sym_i8] = ACTIONS(1956), + [anon_sym_u16] = ACTIONS(1956), + [anon_sym_i16] = ACTIONS(1956), + [anon_sym_u32] = ACTIONS(1956), + [anon_sym_i32] = ACTIONS(1956), + [anon_sym_u64] = ACTIONS(1956), + [anon_sym_i64] = ACTIONS(1956), + [anon_sym_u128] = ACTIONS(1956), + [anon_sym_i128] = ACTIONS(1956), + [anon_sym_isize] = ACTIONS(1956), + [anon_sym_usize] = ACTIONS(1956), + [anon_sym_f32] = ACTIONS(1956), + [anon_sym_f64] = ACTIONS(1956), + [anon_sym_bool] = ACTIONS(1956), + [anon_sym_str] = ACTIONS(1956), + [anon_sym_char] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1956), + [anon_sym_async] = ACTIONS(1956), + [anon_sym_break] = ACTIONS(1956), + [anon_sym_const] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1956), + [anon_sym_enum] = ACTIONS(1956), + [anon_sym_fn] = ACTIONS(1956), + [anon_sym_for] = ACTIONS(1956), + [anon_sym_if] = ACTIONS(1956), + [anon_sym_impl] = ACTIONS(1956), + [anon_sym_let] = ACTIONS(1956), + [anon_sym_loop] = ACTIONS(1956), + [anon_sym_match] = ACTIONS(1956), + [anon_sym_mod] = ACTIONS(1956), + [anon_sym_pub] = ACTIONS(1956), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_static] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1956), + [anon_sym_trait] = ACTIONS(1956), + [anon_sym_type] = ACTIONS(1956), + [anon_sym_union] = ACTIONS(1956), + [anon_sym_unsafe] = ACTIONS(1956), + [anon_sym_use] = ACTIONS(1956), + [anon_sym_while] = ACTIONS(1956), + [anon_sym_POUND] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_extern] = ACTIONS(1956), + [anon_sym_LT] = ACTIONS(1954), + [anon_sym_COLON_COLON] = ACTIONS(1954), + [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_DOT_DOT] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_PIPE] = ACTIONS(1954), + [anon_sym_yield] = ACTIONS(1956), + [anon_sym_move] = ACTIONS(1956), + [sym_integer_literal] = ACTIONS(1954), + [aux_sym_string_literal_token1] = ACTIONS(1954), + [sym_char_literal] = ACTIONS(1954), + [anon_sym_true] = ACTIONS(1956), + [anon_sym_false] = ACTIONS(1956), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1956), + [sym_super] = ACTIONS(1956), + [sym_crate] = ACTIONS(1956), + [sym_metavariable] = ACTIONS(1954), + [sym_raw_string_literal] = ACTIONS(1954), + [sym_float_literal] = ACTIONS(1954), [sym_block_comment] = ACTIONS(3), }, [464] = { - [ts_builtin_sym_end] = ACTIONS(1936), - [sym_identifier] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1936), - [anon_sym_macro_rules_BANG] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(1936), - [anon_sym_LBRACE] = ACTIONS(1936), - [anon_sym_RBRACE] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_u8] = ACTIONS(1938), - [anon_sym_i8] = ACTIONS(1938), - [anon_sym_u16] = ACTIONS(1938), - [anon_sym_i16] = ACTIONS(1938), - [anon_sym_u32] = ACTIONS(1938), - [anon_sym_i32] = ACTIONS(1938), - [anon_sym_u64] = ACTIONS(1938), - [anon_sym_i64] = ACTIONS(1938), - [anon_sym_u128] = ACTIONS(1938), - [anon_sym_i128] = ACTIONS(1938), - [anon_sym_isize] = ACTIONS(1938), - [anon_sym_usize] = ACTIONS(1938), - [anon_sym_f32] = ACTIONS(1938), - [anon_sym_f64] = ACTIONS(1938), - [anon_sym_bool] = ACTIONS(1938), - [anon_sym_str] = ACTIONS(1938), - [anon_sym_char] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_async] = ACTIONS(1938), - [anon_sym_break] = ACTIONS(1938), - [anon_sym_const] = ACTIONS(1938), - [anon_sym_continue] = ACTIONS(1938), - [anon_sym_default] = ACTIONS(1938), - [anon_sym_enum] = ACTIONS(1938), - [anon_sym_fn] = ACTIONS(1938), - [anon_sym_for] = ACTIONS(1938), - [anon_sym_if] = ACTIONS(1938), - [anon_sym_impl] = ACTIONS(1938), - [anon_sym_let] = ACTIONS(1938), - [anon_sym_loop] = ACTIONS(1938), - [anon_sym_match] = ACTIONS(1938), - [anon_sym_mod] = ACTIONS(1938), - [anon_sym_pub] = ACTIONS(1938), - [anon_sym_return] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1938), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_trait] = ACTIONS(1938), - [anon_sym_type] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1938), - [anon_sym_unsafe] = ACTIONS(1938), - [anon_sym_use] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1938), - [anon_sym_POUND] = ACTIONS(1936), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_extern] = ACTIONS(1938), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_COLON_COLON] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1936), - [anon_sym_DOT_DOT] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_yield] = ACTIONS(1938), - [anon_sym_move] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(1936), - [aux_sym_string_literal_token1] = ACTIONS(1936), - [sym_char_literal] = ACTIONS(1936), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1938), - [sym_super] = ACTIONS(1938), - [sym_crate] = ACTIONS(1938), - [sym_metavariable] = ACTIONS(1936), - [sym_raw_string_literal] = ACTIONS(1936), - [sym_float_literal] = ACTIONS(1936), + [ts_builtin_sym_end] = ACTIONS(1958), + [sym_identifier] = ACTIONS(1960), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_macro_rules_BANG] = ACTIONS(1958), + [anon_sym_LPAREN] = ACTIONS(1958), + [anon_sym_LBRACE] = ACTIONS(1958), + [anon_sym_RBRACE] = ACTIONS(1958), + [anon_sym_LBRACK] = ACTIONS(1958), + [anon_sym_STAR] = ACTIONS(1958), + [anon_sym_u8] = ACTIONS(1960), + [anon_sym_i8] = ACTIONS(1960), + [anon_sym_u16] = ACTIONS(1960), + [anon_sym_i16] = ACTIONS(1960), + [anon_sym_u32] = ACTIONS(1960), + [anon_sym_i32] = ACTIONS(1960), + [anon_sym_u64] = ACTIONS(1960), + [anon_sym_i64] = ACTIONS(1960), + [anon_sym_u128] = ACTIONS(1960), + [anon_sym_i128] = ACTIONS(1960), + [anon_sym_isize] = ACTIONS(1960), + [anon_sym_usize] = ACTIONS(1960), + [anon_sym_f32] = ACTIONS(1960), + [anon_sym_f64] = ACTIONS(1960), + [anon_sym_bool] = ACTIONS(1960), + [anon_sym_str] = ACTIONS(1960), + [anon_sym_char] = ACTIONS(1960), + [anon_sym_SQUOTE] = ACTIONS(1960), + [anon_sym_async] = ACTIONS(1960), + [anon_sym_break] = ACTIONS(1960), + [anon_sym_const] = ACTIONS(1960), + [anon_sym_continue] = ACTIONS(1960), + [anon_sym_default] = ACTIONS(1960), + [anon_sym_enum] = ACTIONS(1960), + [anon_sym_fn] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_impl] = ACTIONS(1960), + [anon_sym_let] = ACTIONS(1960), + [anon_sym_loop] = ACTIONS(1960), + [anon_sym_match] = ACTIONS(1960), + [anon_sym_mod] = ACTIONS(1960), + [anon_sym_pub] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_static] = ACTIONS(1960), + [anon_sym_struct] = ACTIONS(1960), + [anon_sym_trait] = ACTIONS(1960), + [anon_sym_type] = ACTIONS(1960), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_unsafe] = ACTIONS(1960), + [anon_sym_use] = ACTIONS(1960), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(1958), + [anon_sym_BANG] = ACTIONS(1958), + [anon_sym_extern] = ACTIONS(1960), + [anon_sym_LT] = ACTIONS(1958), + [anon_sym_COLON_COLON] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1958), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_DASH] = ACTIONS(1958), + [anon_sym_PIPE] = ACTIONS(1958), + [anon_sym_yield] = ACTIONS(1960), + [anon_sym_move] = ACTIONS(1960), + [sym_integer_literal] = ACTIONS(1958), + [aux_sym_string_literal_token1] = ACTIONS(1958), + [sym_char_literal] = ACTIONS(1958), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1960), + [sym_super] = ACTIONS(1960), + [sym_crate] = ACTIONS(1960), + [sym_metavariable] = ACTIONS(1958), + [sym_raw_string_literal] = ACTIONS(1958), + [sym_float_literal] = ACTIONS(1958), [sym_block_comment] = ACTIONS(3), }, [465] = { - [ts_builtin_sym_end] = ACTIONS(1940), - [sym_identifier] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym_macro_rules_BANG] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_RBRACE] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_u8] = ACTIONS(1942), - [anon_sym_i8] = ACTIONS(1942), - [anon_sym_u16] = ACTIONS(1942), - [anon_sym_i16] = ACTIONS(1942), - [anon_sym_u32] = ACTIONS(1942), - [anon_sym_i32] = ACTIONS(1942), - [anon_sym_u64] = ACTIONS(1942), - [anon_sym_i64] = ACTIONS(1942), - [anon_sym_u128] = ACTIONS(1942), - [anon_sym_i128] = ACTIONS(1942), - [anon_sym_isize] = ACTIONS(1942), - [anon_sym_usize] = ACTIONS(1942), - [anon_sym_f32] = ACTIONS(1942), - [anon_sym_f64] = ACTIONS(1942), - [anon_sym_bool] = ACTIONS(1942), - [anon_sym_str] = ACTIONS(1942), - [anon_sym_char] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1942), - [anon_sym_async] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_default] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_fn] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_impl] = ACTIONS(1942), - [anon_sym_let] = ACTIONS(1942), - [anon_sym_loop] = ACTIONS(1942), - [anon_sym_match] = ACTIONS(1942), - [anon_sym_mod] = ACTIONS(1942), - [anon_sym_pub] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_trait] = ACTIONS(1942), - [anon_sym_type] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [anon_sym_unsafe] = ACTIONS(1942), - [anon_sym_use] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_POUND] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_yield] = ACTIONS(1942), - [anon_sym_move] = ACTIONS(1942), - [sym_integer_literal] = ACTIONS(1940), - [aux_sym_string_literal_token1] = ACTIONS(1940), - [sym_char_literal] = ACTIONS(1940), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1942), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1942), - [sym_super] = ACTIONS(1942), - [sym_crate] = ACTIONS(1942), - [sym_metavariable] = ACTIONS(1940), - [sym_raw_string_literal] = ACTIONS(1940), - [sym_float_literal] = ACTIONS(1940), + [ts_builtin_sym_end] = ACTIONS(1962), + [sym_identifier] = ACTIONS(1964), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_macro_rules_BANG] = ACTIONS(1962), + [anon_sym_LPAREN] = ACTIONS(1962), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_RBRACE] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1962), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_u8] = ACTIONS(1964), + [anon_sym_i8] = ACTIONS(1964), + [anon_sym_u16] = ACTIONS(1964), + [anon_sym_i16] = ACTIONS(1964), + [anon_sym_u32] = ACTIONS(1964), + [anon_sym_i32] = ACTIONS(1964), + [anon_sym_u64] = ACTIONS(1964), + [anon_sym_i64] = ACTIONS(1964), + [anon_sym_u128] = ACTIONS(1964), + [anon_sym_i128] = ACTIONS(1964), + [anon_sym_isize] = ACTIONS(1964), + [anon_sym_usize] = ACTIONS(1964), + [anon_sym_f32] = ACTIONS(1964), + [anon_sym_f64] = ACTIONS(1964), + [anon_sym_bool] = ACTIONS(1964), + [anon_sym_str] = ACTIONS(1964), + [anon_sym_char] = ACTIONS(1964), + [anon_sym_SQUOTE] = ACTIONS(1964), + [anon_sym_async] = ACTIONS(1964), + [anon_sym_break] = ACTIONS(1964), + [anon_sym_const] = ACTIONS(1964), + [anon_sym_continue] = ACTIONS(1964), + [anon_sym_default] = ACTIONS(1964), + [anon_sym_enum] = ACTIONS(1964), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_if] = ACTIONS(1964), + [anon_sym_impl] = ACTIONS(1964), + [anon_sym_let] = ACTIONS(1964), + [anon_sym_loop] = ACTIONS(1964), + [anon_sym_match] = ACTIONS(1964), + [anon_sym_mod] = ACTIONS(1964), + [anon_sym_pub] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1964), + [anon_sym_static] = ACTIONS(1964), + [anon_sym_struct] = ACTIONS(1964), + [anon_sym_trait] = ACTIONS(1964), + [anon_sym_type] = ACTIONS(1964), + [anon_sym_union] = ACTIONS(1964), + [anon_sym_unsafe] = ACTIONS(1964), + [anon_sym_use] = ACTIONS(1964), + [anon_sym_while] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(1962), + [anon_sym_BANG] = ACTIONS(1962), + [anon_sym_extern] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(1962), + [anon_sym_COLON_COLON] = ACTIONS(1962), + [anon_sym_AMP] = ACTIONS(1962), + [anon_sym_DOT_DOT] = ACTIONS(1962), + [anon_sym_DASH] = ACTIONS(1962), + [anon_sym_PIPE] = ACTIONS(1962), + [anon_sym_yield] = ACTIONS(1964), + [anon_sym_move] = ACTIONS(1964), + [sym_integer_literal] = ACTIONS(1962), + [aux_sym_string_literal_token1] = ACTIONS(1962), + [sym_char_literal] = ACTIONS(1962), + [anon_sym_true] = ACTIONS(1964), + [anon_sym_false] = ACTIONS(1964), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1964), + [sym_super] = ACTIONS(1964), + [sym_crate] = ACTIONS(1964), + [sym_metavariable] = ACTIONS(1962), + [sym_raw_string_literal] = ACTIONS(1962), + [sym_float_literal] = ACTIONS(1962), [sym_block_comment] = ACTIONS(3), }, [466] = { - [ts_builtin_sym_end] = ACTIONS(1944), - [sym_identifier] = ACTIONS(1946), - [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym_macro_rules_BANG] = ACTIONS(1944), - [anon_sym_LPAREN] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1944), - [anon_sym_RBRACE] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1944), - [anon_sym_u8] = ACTIONS(1946), - [anon_sym_i8] = ACTIONS(1946), - [anon_sym_u16] = ACTIONS(1946), - [anon_sym_i16] = ACTIONS(1946), - [anon_sym_u32] = ACTIONS(1946), - [anon_sym_i32] = ACTIONS(1946), - [anon_sym_u64] = ACTIONS(1946), - [anon_sym_i64] = ACTIONS(1946), - [anon_sym_u128] = ACTIONS(1946), - [anon_sym_i128] = ACTIONS(1946), - [anon_sym_isize] = ACTIONS(1946), - [anon_sym_usize] = ACTIONS(1946), - [anon_sym_f32] = ACTIONS(1946), - [anon_sym_f64] = ACTIONS(1946), - [anon_sym_bool] = ACTIONS(1946), - [anon_sym_str] = ACTIONS(1946), - [anon_sym_char] = ACTIONS(1946), - [anon_sym_SQUOTE] = ACTIONS(1946), - [anon_sym_async] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_fn] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_impl] = ACTIONS(1946), - [anon_sym_let] = ACTIONS(1946), - [anon_sym_loop] = ACTIONS(1946), - [anon_sym_match] = ACTIONS(1946), - [anon_sym_mod] = ACTIONS(1946), - [anon_sym_pub] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_trait] = ACTIONS(1946), - [anon_sym_type] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_unsafe] = ACTIONS(1946), - [anon_sym_use] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_POUND] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(1944), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_COLON_COLON] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_DOT_DOT] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_yield] = ACTIONS(1946), - [anon_sym_move] = ACTIONS(1946), - [sym_integer_literal] = ACTIONS(1944), - [aux_sym_string_literal_token1] = ACTIONS(1944), - [sym_char_literal] = ACTIONS(1944), - [anon_sym_true] = ACTIONS(1946), - [anon_sym_false] = ACTIONS(1946), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_crate] = ACTIONS(1946), - [sym_metavariable] = ACTIONS(1944), - [sym_raw_string_literal] = ACTIONS(1944), - [sym_float_literal] = ACTIONS(1944), + [ts_builtin_sym_end] = ACTIONS(1966), + [sym_identifier] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_macro_rules_BANG] = ACTIONS(1966), + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1966), + [anon_sym_RBRACE] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_u8] = ACTIONS(1968), + [anon_sym_i8] = ACTIONS(1968), + [anon_sym_u16] = ACTIONS(1968), + [anon_sym_i16] = ACTIONS(1968), + [anon_sym_u32] = ACTIONS(1968), + [anon_sym_i32] = ACTIONS(1968), + [anon_sym_u64] = ACTIONS(1968), + [anon_sym_i64] = ACTIONS(1968), + [anon_sym_u128] = ACTIONS(1968), + [anon_sym_i128] = ACTIONS(1968), + [anon_sym_isize] = ACTIONS(1968), + [anon_sym_usize] = ACTIONS(1968), + [anon_sym_f32] = ACTIONS(1968), + [anon_sym_f64] = ACTIONS(1968), + [anon_sym_bool] = ACTIONS(1968), + [anon_sym_str] = ACTIONS(1968), + [anon_sym_char] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1968), + [anon_sym_async] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_fn] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_impl] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_mod] = ACTIONS(1968), + [anon_sym_pub] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_trait] = ACTIONS(1968), + [anon_sym_type] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_unsafe] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(1966), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1966), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_DOT_DOT] = ACTIONS(1966), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_yield] = ACTIONS(1968), + [anon_sym_move] = ACTIONS(1968), + [sym_integer_literal] = ACTIONS(1966), + [aux_sym_string_literal_token1] = ACTIONS(1966), + [sym_char_literal] = ACTIONS(1966), + [anon_sym_true] = ACTIONS(1968), + [anon_sym_false] = ACTIONS(1968), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_crate] = ACTIONS(1968), + [sym_metavariable] = ACTIONS(1966), + [sym_raw_string_literal] = ACTIONS(1966), + [sym_float_literal] = ACTIONS(1966), [sym_block_comment] = ACTIONS(3), }, [467] = { - [ts_builtin_sym_end] = ACTIONS(1948), - [sym_identifier] = ACTIONS(1950), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_macro_rules_BANG] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1948), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_RBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_u8] = ACTIONS(1950), - [anon_sym_i8] = ACTIONS(1950), - [anon_sym_u16] = ACTIONS(1950), - [anon_sym_i16] = ACTIONS(1950), - [anon_sym_u32] = ACTIONS(1950), - [anon_sym_i32] = ACTIONS(1950), - [anon_sym_u64] = ACTIONS(1950), - [anon_sym_i64] = ACTIONS(1950), - [anon_sym_u128] = ACTIONS(1950), - [anon_sym_i128] = ACTIONS(1950), - [anon_sym_isize] = ACTIONS(1950), - [anon_sym_usize] = ACTIONS(1950), - [anon_sym_f32] = ACTIONS(1950), - [anon_sym_f64] = ACTIONS(1950), - [anon_sym_bool] = ACTIONS(1950), - [anon_sym_str] = ACTIONS(1950), - [anon_sym_char] = ACTIONS(1950), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_async] = ACTIONS(1950), - [anon_sym_break] = ACTIONS(1950), - [anon_sym_const] = ACTIONS(1950), - [anon_sym_continue] = ACTIONS(1950), - [anon_sym_default] = ACTIONS(1950), - [anon_sym_enum] = ACTIONS(1950), - [anon_sym_fn] = ACTIONS(1950), - [anon_sym_for] = ACTIONS(1950), - [anon_sym_if] = ACTIONS(1950), - [anon_sym_impl] = ACTIONS(1950), - [anon_sym_let] = ACTIONS(1950), - [anon_sym_loop] = ACTIONS(1950), - [anon_sym_match] = ACTIONS(1950), - [anon_sym_mod] = ACTIONS(1950), - [anon_sym_pub] = ACTIONS(1950), - [anon_sym_return] = ACTIONS(1950), - [anon_sym_static] = ACTIONS(1950), - [anon_sym_struct] = ACTIONS(1950), - [anon_sym_trait] = ACTIONS(1950), - [anon_sym_type] = ACTIONS(1950), - [anon_sym_union] = ACTIONS(1950), - [anon_sym_unsafe] = ACTIONS(1950), - [anon_sym_use] = ACTIONS(1950), - [anon_sym_while] = ACTIONS(1950), - [anon_sym_POUND] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_extern] = ACTIONS(1950), - [anon_sym_LT] = ACTIONS(1948), - [anon_sym_COLON_COLON] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PIPE] = ACTIONS(1948), - [anon_sym_yield] = ACTIONS(1950), - [anon_sym_move] = ACTIONS(1950), - [sym_integer_literal] = ACTIONS(1948), - [aux_sym_string_literal_token1] = ACTIONS(1948), - [sym_char_literal] = ACTIONS(1948), - [anon_sym_true] = ACTIONS(1950), - [anon_sym_false] = ACTIONS(1950), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1950), - [sym_super] = ACTIONS(1950), - [sym_crate] = ACTIONS(1950), - [sym_metavariable] = ACTIONS(1948), - [sym_raw_string_literal] = ACTIONS(1948), - [sym_float_literal] = ACTIONS(1948), + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1972), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_macro_rules_BANG] = ACTIONS(1970), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_u8] = ACTIONS(1972), + [anon_sym_i8] = ACTIONS(1972), + [anon_sym_u16] = ACTIONS(1972), + [anon_sym_i16] = ACTIONS(1972), + [anon_sym_u32] = ACTIONS(1972), + [anon_sym_i32] = ACTIONS(1972), + [anon_sym_u64] = ACTIONS(1972), + [anon_sym_i64] = ACTIONS(1972), + [anon_sym_u128] = ACTIONS(1972), + [anon_sym_i128] = ACTIONS(1972), + [anon_sym_isize] = ACTIONS(1972), + [anon_sym_usize] = ACTIONS(1972), + [anon_sym_f32] = ACTIONS(1972), + [anon_sym_f64] = ACTIONS(1972), + [anon_sym_bool] = ACTIONS(1972), + [anon_sym_str] = ACTIONS(1972), + [anon_sym_char] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_async] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_fn] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_impl] = ACTIONS(1972), + [anon_sym_let] = ACTIONS(1972), + [anon_sym_loop] = ACTIONS(1972), + [anon_sym_match] = ACTIONS(1972), + [anon_sym_mod] = ACTIONS(1972), + [anon_sym_pub] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_trait] = ACTIONS(1972), + [anon_sym_type] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_unsafe] = ACTIONS(1972), + [anon_sym_use] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_COLON_COLON] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_yield] = ACTIONS(1972), + [anon_sym_move] = ACTIONS(1972), + [sym_integer_literal] = ACTIONS(1970), + [aux_sym_string_literal_token1] = ACTIONS(1970), + [sym_char_literal] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1972), + [anon_sym_false] = ACTIONS(1972), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_crate] = ACTIONS(1972), + [sym_metavariable] = ACTIONS(1970), + [sym_raw_string_literal] = ACTIONS(1970), + [sym_float_literal] = ACTIONS(1970), [sym_block_comment] = ACTIONS(3), }, [468] = { - [ts_builtin_sym_end] = ACTIONS(1952), - [sym_identifier] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1952), - [anon_sym_macro_rules_BANG] = ACTIONS(1952), - [anon_sym_LPAREN] = ACTIONS(1952), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1952), - [anon_sym_STAR] = ACTIONS(1952), - [anon_sym_u8] = ACTIONS(1954), - [anon_sym_i8] = ACTIONS(1954), - [anon_sym_u16] = ACTIONS(1954), - [anon_sym_i16] = ACTIONS(1954), - [anon_sym_u32] = ACTIONS(1954), - [anon_sym_i32] = ACTIONS(1954), - [anon_sym_u64] = ACTIONS(1954), - [anon_sym_i64] = ACTIONS(1954), - [anon_sym_u128] = ACTIONS(1954), - [anon_sym_i128] = ACTIONS(1954), - [anon_sym_isize] = ACTIONS(1954), - [anon_sym_usize] = ACTIONS(1954), - [anon_sym_f32] = ACTIONS(1954), - [anon_sym_f64] = ACTIONS(1954), - [anon_sym_bool] = ACTIONS(1954), - [anon_sym_str] = ACTIONS(1954), - [anon_sym_char] = ACTIONS(1954), - [anon_sym_SQUOTE] = ACTIONS(1954), - [anon_sym_async] = ACTIONS(1954), - [anon_sym_break] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_continue] = ACTIONS(1954), - [anon_sym_default] = ACTIONS(1954), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_fn] = ACTIONS(1954), - [anon_sym_for] = ACTIONS(1954), - [anon_sym_if] = ACTIONS(1954), - [anon_sym_impl] = ACTIONS(1954), - [anon_sym_let] = ACTIONS(1954), - [anon_sym_loop] = ACTIONS(1954), - [anon_sym_match] = ACTIONS(1954), - [anon_sym_mod] = ACTIONS(1954), - [anon_sym_pub] = ACTIONS(1954), - [anon_sym_return] = ACTIONS(1954), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_struct] = ACTIONS(1954), - [anon_sym_trait] = ACTIONS(1954), - [anon_sym_type] = ACTIONS(1954), - [anon_sym_union] = ACTIONS(1954), - [anon_sym_unsafe] = ACTIONS(1954), - [anon_sym_use] = ACTIONS(1954), - [anon_sym_while] = ACTIONS(1954), - [anon_sym_POUND] = ACTIONS(1952), - [anon_sym_BANG] = ACTIONS(1952), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1952), - [anon_sym_DOT_DOT] = ACTIONS(1952), - [anon_sym_DASH] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1952), - [anon_sym_yield] = ACTIONS(1954), - [anon_sym_move] = ACTIONS(1954), - [sym_integer_literal] = ACTIONS(1952), - [aux_sym_string_literal_token1] = ACTIONS(1952), - [sym_char_literal] = ACTIONS(1952), - [anon_sym_true] = ACTIONS(1954), - [anon_sym_false] = ACTIONS(1954), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1954), - [sym_super] = ACTIONS(1954), - [sym_crate] = ACTIONS(1954), - [sym_metavariable] = ACTIONS(1952), - [sym_raw_string_literal] = ACTIONS(1952), - [sym_float_literal] = ACTIONS(1952), + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_macro_rules_BANG] = ACTIONS(1974), + [anon_sym_LPAREN] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_u8] = ACTIONS(1976), + [anon_sym_i8] = ACTIONS(1976), + [anon_sym_u16] = ACTIONS(1976), + [anon_sym_i16] = ACTIONS(1976), + [anon_sym_u32] = ACTIONS(1976), + [anon_sym_i32] = ACTIONS(1976), + [anon_sym_u64] = ACTIONS(1976), + [anon_sym_i64] = ACTIONS(1976), + [anon_sym_u128] = ACTIONS(1976), + [anon_sym_i128] = ACTIONS(1976), + [anon_sym_isize] = ACTIONS(1976), + [anon_sym_usize] = ACTIONS(1976), + [anon_sym_f32] = ACTIONS(1976), + [anon_sym_f64] = ACTIONS(1976), + [anon_sym_bool] = ACTIONS(1976), + [anon_sym_str] = ACTIONS(1976), + [anon_sym_char] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_async] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_fn] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_impl] = ACTIONS(1976), + [anon_sym_let] = ACTIONS(1976), + [anon_sym_loop] = ACTIONS(1976), + [anon_sym_match] = ACTIONS(1976), + [anon_sym_mod] = ACTIONS(1976), + [anon_sym_pub] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_trait] = ACTIONS(1976), + [anon_sym_type] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_unsafe] = ACTIONS(1976), + [anon_sym_use] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_POUND] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_COLON_COLON] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_DOT_DOT] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_yield] = ACTIONS(1976), + [anon_sym_move] = ACTIONS(1976), + [sym_integer_literal] = ACTIONS(1974), + [aux_sym_string_literal_token1] = ACTIONS(1974), + [sym_char_literal] = ACTIONS(1974), + [anon_sym_true] = ACTIONS(1976), + [anon_sym_false] = ACTIONS(1976), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_crate] = ACTIONS(1976), + [sym_metavariable] = ACTIONS(1974), + [sym_raw_string_literal] = ACTIONS(1974), + [sym_float_literal] = ACTIONS(1974), [sym_block_comment] = ACTIONS(3), }, [469] = { - [ts_builtin_sym_end] = ACTIONS(1956), - [sym_identifier] = ACTIONS(1958), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_macro_rules_BANG] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1956), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(1956), - [anon_sym_u8] = ACTIONS(1958), - [anon_sym_i8] = ACTIONS(1958), - [anon_sym_u16] = ACTIONS(1958), - [anon_sym_i16] = ACTIONS(1958), - [anon_sym_u32] = ACTIONS(1958), - [anon_sym_i32] = ACTIONS(1958), - [anon_sym_u64] = ACTIONS(1958), - [anon_sym_i64] = ACTIONS(1958), - [anon_sym_u128] = ACTIONS(1958), - [anon_sym_i128] = ACTIONS(1958), - [anon_sym_isize] = ACTIONS(1958), - [anon_sym_usize] = ACTIONS(1958), - [anon_sym_f32] = ACTIONS(1958), - [anon_sym_f64] = ACTIONS(1958), - [anon_sym_bool] = ACTIONS(1958), - [anon_sym_str] = ACTIONS(1958), - [anon_sym_char] = ACTIONS(1958), - [anon_sym_SQUOTE] = ACTIONS(1958), - [anon_sym_async] = ACTIONS(1958), - [anon_sym_break] = ACTIONS(1958), - [anon_sym_const] = ACTIONS(1958), - [anon_sym_continue] = ACTIONS(1958), - [anon_sym_default] = ACTIONS(1958), - [anon_sym_enum] = ACTIONS(1958), - [anon_sym_fn] = ACTIONS(1958), - [anon_sym_for] = ACTIONS(1958), - [anon_sym_if] = ACTIONS(1958), - [anon_sym_impl] = ACTIONS(1958), - [anon_sym_let] = ACTIONS(1958), - [anon_sym_loop] = ACTIONS(1958), - [anon_sym_match] = ACTIONS(1958), - [anon_sym_mod] = ACTIONS(1958), - [anon_sym_pub] = ACTIONS(1958), - [anon_sym_return] = ACTIONS(1958), - [anon_sym_static] = ACTIONS(1958), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_trait] = ACTIONS(1958), - [anon_sym_type] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1958), - [anon_sym_unsafe] = ACTIONS(1958), - [anon_sym_use] = ACTIONS(1958), - [anon_sym_while] = ACTIONS(1958), - [anon_sym_POUND] = ACTIONS(1956), - [anon_sym_BANG] = ACTIONS(1956), - [anon_sym_extern] = ACTIONS(1958), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_COLON_COLON] = ACTIONS(1956), - [anon_sym_AMP] = ACTIONS(1956), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1956), - [anon_sym_yield] = ACTIONS(1958), - [anon_sym_move] = ACTIONS(1958), - [sym_integer_literal] = ACTIONS(1956), - [aux_sym_string_literal_token1] = ACTIONS(1956), - [sym_char_literal] = ACTIONS(1956), - [anon_sym_true] = ACTIONS(1958), - [anon_sym_false] = ACTIONS(1958), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1958), - [sym_super] = ACTIONS(1958), - [sym_crate] = ACTIONS(1958), - [sym_metavariable] = ACTIONS(1956), - [sym_raw_string_literal] = ACTIONS(1956), - [sym_float_literal] = ACTIONS(1956), + [ts_builtin_sym_end] = ACTIONS(1978), + [sym_identifier] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_macro_rules_BANG] = ACTIONS(1978), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_u8] = ACTIONS(1980), + [anon_sym_i8] = ACTIONS(1980), + [anon_sym_u16] = ACTIONS(1980), + [anon_sym_i16] = ACTIONS(1980), + [anon_sym_u32] = ACTIONS(1980), + [anon_sym_i32] = ACTIONS(1980), + [anon_sym_u64] = ACTIONS(1980), + [anon_sym_i64] = ACTIONS(1980), + [anon_sym_u128] = ACTIONS(1980), + [anon_sym_i128] = ACTIONS(1980), + [anon_sym_isize] = ACTIONS(1980), + [anon_sym_usize] = ACTIONS(1980), + [anon_sym_f32] = ACTIONS(1980), + [anon_sym_f64] = ACTIONS(1980), + [anon_sym_bool] = ACTIONS(1980), + [anon_sym_str] = ACTIONS(1980), + [anon_sym_char] = ACTIONS(1980), + [anon_sym_SQUOTE] = ACTIONS(1980), + [anon_sym_async] = ACTIONS(1980), + [anon_sym_break] = ACTIONS(1980), + [anon_sym_const] = ACTIONS(1980), + [anon_sym_continue] = ACTIONS(1980), + [anon_sym_default] = ACTIONS(1980), + [anon_sym_enum] = ACTIONS(1980), + [anon_sym_fn] = ACTIONS(1980), + [anon_sym_for] = ACTIONS(1980), + [anon_sym_if] = ACTIONS(1980), + [anon_sym_impl] = ACTIONS(1980), + [anon_sym_let] = ACTIONS(1980), + [anon_sym_loop] = ACTIONS(1980), + [anon_sym_match] = ACTIONS(1980), + [anon_sym_mod] = ACTIONS(1980), + [anon_sym_pub] = ACTIONS(1980), + [anon_sym_return] = ACTIONS(1980), + [anon_sym_static] = ACTIONS(1980), + [anon_sym_struct] = ACTIONS(1980), + [anon_sym_trait] = ACTIONS(1980), + [anon_sym_type] = ACTIONS(1980), + [anon_sym_union] = ACTIONS(1980), + [anon_sym_unsafe] = ACTIONS(1980), + [anon_sym_use] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_POUND] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_extern] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1978), + [anon_sym_COLON_COLON] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_DOT_DOT] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_yield] = ACTIONS(1980), + [anon_sym_move] = ACTIONS(1980), + [sym_integer_literal] = ACTIONS(1978), + [aux_sym_string_literal_token1] = ACTIONS(1978), + [sym_char_literal] = ACTIONS(1978), + [anon_sym_true] = ACTIONS(1980), + [anon_sym_false] = ACTIONS(1980), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1980), + [sym_super] = ACTIONS(1980), + [sym_crate] = ACTIONS(1980), + [sym_metavariable] = ACTIONS(1978), + [sym_raw_string_literal] = ACTIONS(1978), + [sym_float_literal] = ACTIONS(1978), [sym_block_comment] = ACTIONS(3), }, [470] = { - [ts_builtin_sym_end] = ACTIONS(1960), - [sym_identifier] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1960), - [anon_sym_macro_rules_BANG] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1960), - [anon_sym_LBRACE] = ACTIONS(1960), - [anon_sym_RBRACE] = ACTIONS(1960), - [anon_sym_LBRACK] = ACTIONS(1960), - [anon_sym_STAR] = ACTIONS(1960), - [anon_sym_u8] = ACTIONS(1962), - [anon_sym_i8] = ACTIONS(1962), - [anon_sym_u16] = ACTIONS(1962), - [anon_sym_i16] = ACTIONS(1962), - [anon_sym_u32] = ACTIONS(1962), - [anon_sym_i32] = ACTIONS(1962), - [anon_sym_u64] = ACTIONS(1962), - [anon_sym_i64] = ACTIONS(1962), - [anon_sym_u128] = ACTIONS(1962), - [anon_sym_i128] = ACTIONS(1962), - [anon_sym_isize] = ACTIONS(1962), - [anon_sym_usize] = ACTIONS(1962), - [anon_sym_f32] = ACTIONS(1962), - [anon_sym_f64] = ACTIONS(1962), - [anon_sym_bool] = ACTIONS(1962), - [anon_sym_str] = ACTIONS(1962), - [anon_sym_char] = ACTIONS(1962), - [anon_sym_SQUOTE] = ACTIONS(1962), - [anon_sym_async] = ACTIONS(1962), - [anon_sym_break] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_continue] = ACTIONS(1962), - [anon_sym_default] = ACTIONS(1962), - [anon_sym_enum] = ACTIONS(1962), - [anon_sym_fn] = ACTIONS(1962), - [anon_sym_for] = ACTIONS(1962), - [anon_sym_if] = ACTIONS(1962), - [anon_sym_impl] = ACTIONS(1962), - [anon_sym_let] = ACTIONS(1962), - [anon_sym_loop] = ACTIONS(1962), - [anon_sym_match] = ACTIONS(1962), - [anon_sym_mod] = ACTIONS(1962), - [anon_sym_pub] = ACTIONS(1962), - [anon_sym_return] = ACTIONS(1962), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_struct] = ACTIONS(1962), - [anon_sym_trait] = ACTIONS(1962), - [anon_sym_type] = ACTIONS(1962), - [anon_sym_union] = ACTIONS(1962), - [anon_sym_unsafe] = ACTIONS(1962), - [anon_sym_use] = ACTIONS(1962), - [anon_sym_while] = ACTIONS(1962), - [anon_sym_POUND] = ACTIONS(1960), - [anon_sym_BANG] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1960), - [anon_sym_COLON_COLON] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_DOT_DOT] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1960), - [anon_sym_PIPE] = ACTIONS(1960), - [anon_sym_yield] = ACTIONS(1962), - [anon_sym_move] = ACTIONS(1962), - [sym_integer_literal] = ACTIONS(1960), - [aux_sym_string_literal_token1] = ACTIONS(1960), - [sym_char_literal] = ACTIONS(1960), - [anon_sym_true] = ACTIONS(1962), - [anon_sym_false] = ACTIONS(1962), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1962), - [sym_super] = ACTIONS(1962), - [sym_crate] = ACTIONS(1962), - [sym_metavariable] = ACTIONS(1960), - [sym_raw_string_literal] = ACTIONS(1960), - [sym_float_literal] = ACTIONS(1960), + [ts_builtin_sym_end] = ACTIONS(1982), + [sym_identifier] = ACTIONS(1984), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_macro_rules_BANG] = ACTIONS(1982), + [anon_sym_LPAREN] = ACTIONS(1982), + [anon_sym_LBRACE] = ACTIONS(1982), + [anon_sym_RBRACE] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1982), + [anon_sym_STAR] = ACTIONS(1982), + [anon_sym_u8] = ACTIONS(1984), + [anon_sym_i8] = ACTIONS(1984), + [anon_sym_u16] = ACTIONS(1984), + [anon_sym_i16] = ACTIONS(1984), + [anon_sym_u32] = ACTIONS(1984), + [anon_sym_i32] = ACTIONS(1984), + [anon_sym_u64] = ACTIONS(1984), + [anon_sym_i64] = ACTIONS(1984), + [anon_sym_u128] = ACTIONS(1984), + [anon_sym_i128] = ACTIONS(1984), + [anon_sym_isize] = ACTIONS(1984), + [anon_sym_usize] = ACTIONS(1984), + [anon_sym_f32] = ACTIONS(1984), + [anon_sym_f64] = ACTIONS(1984), + [anon_sym_bool] = ACTIONS(1984), + [anon_sym_str] = ACTIONS(1984), + [anon_sym_char] = ACTIONS(1984), + [anon_sym_SQUOTE] = ACTIONS(1984), + [anon_sym_async] = ACTIONS(1984), + [anon_sym_break] = ACTIONS(1984), + [anon_sym_const] = ACTIONS(1984), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_default] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1984), + [anon_sym_fn] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1984), + [anon_sym_if] = ACTIONS(1984), + [anon_sym_impl] = ACTIONS(1984), + [anon_sym_let] = ACTIONS(1984), + [anon_sym_loop] = ACTIONS(1984), + [anon_sym_match] = ACTIONS(1984), + [anon_sym_mod] = ACTIONS(1984), + [anon_sym_pub] = ACTIONS(1984), + [anon_sym_return] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1984), + [anon_sym_struct] = ACTIONS(1984), + [anon_sym_trait] = ACTIONS(1984), + [anon_sym_type] = ACTIONS(1984), + [anon_sym_union] = ACTIONS(1984), + [anon_sym_unsafe] = ACTIONS(1984), + [anon_sym_use] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1984), + [anon_sym_POUND] = ACTIONS(1982), + [anon_sym_BANG] = ACTIONS(1982), + [anon_sym_extern] = ACTIONS(1984), + [anon_sym_LT] = ACTIONS(1982), + [anon_sym_COLON_COLON] = ACTIONS(1982), + [anon_sym_AMP] = ACTIONS(1982), + [anon_sym_DOT_DOT] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_yield] = ACTIONS(1984), + [anon_sym_move] = ACTIONS(1984), + [sym_integer_literal] = ACTIONS(1982), + [aux_sym_string_literal_token1] = ACTIONS(1982), + [sym_char_literal] = ACTIONS(1982), + [anon_sym_true] = ACTIONS(1984), + [anon_sym_false] = ACTIONS(1984), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1984), + [sym_super] = ACTIONS(1984), + [sym_crate] = ACTIONS(1984), + [sym_metavariable] = ACTIONS(1982), + [sym_raw_string_literal] = ACTIONS(1982), + [sym_float_literal] = ACTIONS(1982), [sym_block_comment] = ACTIONS(3), }, [471] = { - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_macro_rules_BANG] = ACTIONS(1964), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_u8] = ACTIONS(1966), - [anon_sym_i8] = ACTIONS(1966), - [anon_sym_u16] = ACTIONS(1966), - [anon_sym_i16] = ACTIONS(1966), - [anon_sym_u32] = ACTIONS(1966), - [anon_sym_i32] = ACTIONS(1966), - [anon_sym_u64] = ACTIONS(1966), - [anon_sym_i64] = ACTIONS(1966), - [anon_sym_u128] = ACTIONS(1966), - [anon_sym_i128] = ACTIONS(1966), - [anon_sym_isize] = ACTIONS(1966), - [anon_sym_usize] = ACTIONS(1966), - [anon_sym_f32] = ACTIONS(1966), - [anon_sym_f64] = ACTIONS(1966), - [anon_sym_bool] = ACTIONS(1966), - [anon_sym_str] = ACTIONS(1966), - [anon_sym_char] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1966), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_break] = ACTIONS(1966), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_continue] = ACTIONS(1966), - [anon_sym_default] = ACTIONS(1966), - [anon_sym_enum] = ACTIONS(1966), - [anon_sym_fn] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_impl] = ACTIONS(1966), - [anon_sym_let] = ACTIONS(1966), - [anon_sym_loop] = ACTIONS(1966), - [anon_sym_match] = ACTIONS(1966), - [anon_sym_mod] = ACTIONS(1966), - [anon_sym_pub] = ACTIONS(1966), - [anon_sym_return] = ACTIONS(1966), - [anon_sym_static] = ACTIONS(1966), - [anon_sym_struct] = ACTIONS(1966), - [anon_sym_trait] = ACTIONS(1966), - [anon_sym_type] = ACTIONS(1966), - [anon_sym_union] = ACTIONS(1966), - [anon_sym_unsafe] = ACTIONS(1966), - [anon_sym_use] = ACTIONS(1966), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_POUND] = ACTIONS(1964), - [anon_sym_BANG] = ACTIONS(1964), - [anon_sym_extern] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1964), - [anon_sym_COLON_COLON] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1964), - [anon_sym_DOT_DOT] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_yield] = ACTIONS(1966), - [anon_sym_move] = ACTIONS(1966), - [sym_integer_literal] = ACTIONS(1964), - [aux_sym_string_literal_token1] = ACTIONS(1964), - [sym_char_literal] = ACTIONS(1964), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1966), - [sym_super] = ACTIONS(1966), - [sym_crate] = ACTIONS(1966), - [sym_metavariable] = ACTIONS(1964), - [sym_raw_string_literal] = ACTIONS(1964), - [sym_float_literal] = ACTIONS(1964), + [ts_builtin_sym_end] = ACTIONS(1986), + [sym_identifier] = ACTIONS(1988), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_macro_rules_BANG] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1986), + [anon_sym_LBRACE] = ACTIONS(1986), + [anon_sym_RBRACE] = ACTIONS(1986), + [anon_sym_LBRACK] = ACTIONS(1986), + [anon_sym_STAR] = ACTIONS(1986), + [anon_sym_u8] = ACTIONS(1988), + [anon_sym_i8] = ACTIONS(1988), + [anon_sym_u16] = ACTIONS(1988), + [anon_sym_i16] = ACTIONS(1988), + [anon_sym_u32] = ACTIONS(1988), + [anon_sym_i32] = ACTIONS(1988), + [anon_sym_u64] = ACTIONS(1988), + [anon_sym_i64] = ACTIONS(1988), + [anon_sym_u128] = ACTIONS(1988), + [anon_sym_i128] = ACTIONS(1988), + [anon_sym_isize] = ACTIONS(1988), + [anon_sym_usize] = ACTIONS(1988), + [anon_sym_f32] = ACTIONS(1988), + [anon_sym_f64] = ACTIONS(1988), + [anon_sym_bool] = ACTIONS(1988), + [anon_sym_str] = ACTIONS(1988), + [anon_sym_char] = ACTIONS(1988), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_async] = ACTIONS(1988), + [anon_sym_break] = ACTIONS(1988), + [anon_sym_const] = ACTIONS(1988), + [anon_sym_continue] = ACTIONS(1988), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_enum] = ACTIONS(1988), + [anon_sym_fn] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_impl] = ACTIONS(1988), + [anon_sym_let] = ACTIONS(1988), + [anon_sym_loop] = ACTIONS(1988), + [anon_sym_match] = ACTIONS(1988), + [anon_sym_mod] = ACTIONS(1988), + [anon_sym_pub] = ACTIONS(1988), + [anon_sym_return] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1988), + [anon_sym_trait] = ACTIONS(1988), + [anon_sym_type] = ACTIONS(1988), + [anon_sym_union] = ACTIONS(1988), + [anon_sym_unsafe] = ACTIONS(1988), + [anon_sym_use] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_POUND] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1986), + [anon_sym_extern] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1986), + [anon_sym_COLON_COLON] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1986), + [anon_sym_DOT_DOT] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_PIPE] = ACTIONS(1986), + [anon_sym_yield] = ACTIONS(1988), + [anon_sym_move] = ACTIONS(1988), + [sym_integer_literal] = ACTIONS(1986), + [aux_sym_string_literal_token1] = ACTIONS(1986), + [sym_char_literal] = ACTIONS(1986), + [anon_sym_true] = ACTIONS(1988), + [anon_sym_false] = ACTIONS(1988), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1988), + [sym_super] = ACTIONS(1988), + [sym_crate] = ACTIONS(1988), + [sym_metavariable] = ACTIONS(1986), + [sym_raw_string_literal] = ACTIONS(1986), + [sym_float_literal] = ACTIONS(1986), [sym_block_comment] = ACTIONS(3), }, [472] = { - [ts_builtin_sym_end] = ACTIONS(1968), - [sym_identifier] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_macro_rules_BANG] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1968), - [anon_sym_LBRACE] = ACTIONS(1968), - [anon_sym_RBRACE] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1968), - [anon_sym_STAR] = ACTIONS(1968), - [anon_sym_u8] = ACTIONS(1970), - [anon_sym_i8] = ACTIONS(1970), - [anon_sym_u16] = ACTIONS(1970), - [anon_sym_i16] = ACTIONS(1970), - [anon_sym_u32] = ACTIONS(1970), - [anon_sym_i32] = ACTIONS(1970), - [anon_sym_u64] = ACTIONS(1970), - [anon_sym_i64] = ACTIONS(1970), - [anon_sym_u128] = ACTIONS(1970), - [anon_sym_i128] = ACTIONS(1970), - [anon_sym_isize] = ACTIONS(1970), - [anon_sym_usize] = ACTIONS(1970), - [anon_sym_f32] = ACTIONS(1970), - [anon_sym_f64] = ACTIONS(1970), - [anon_sym_bool] = ACTIONS(1970), - [anon_sym_str] = ACTIONS(1970), - [anon_sym_char] = ACTIONS(1970), - [anon_sym_SQUOTE] = ACTIONS(1970), - [anon_sym_async] = ACTIONS(1970), - [anon_sym_break] = ACTIONS(1970), - [anon_sym_const] = ACTIONS(1970), - [anon_sym_continue] = ACTIONS(1970), - [anon_sym_default] = ACTIONS(1970), - [anon_sym_enum] = ACTIONS(1970), - [anon_sym_fn] = ACTIONS(1970), - [anon_sym_for] = ACTIONS(1970), - [anon_sym_if] = ACTIONS(1970), - [anon_sym_impl] = ACTIONS(1970), - [anon_sym_let] = ACTIONS(1970), - [anon_sym_loop] = ACTIONS(1970), - [anon_sym_match] = ACTIONS(1970), - [anon_sym_mod] = ACTIONS(1970), - [anon_sym_pub] = ACTIONS(1970), - [anon_sym_return] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1970), - [anon_sym_struct] = ACTIONS(1970), - [anon_sym_trait] = ACTIONS(1970), - [anon_sym_type] = ACTIONS(1970), - [anon_sym_union] = ACTIONS(1970), - [anon_sym_unsafe] = ACTIONS(1970), - [anon_sym_use] = ACTIONS(1970), - [anon_sym_while] = ACTIONS(1970), - [anon_sym_POUND] = ACTIONS(1968), - [anon_sym_BANG] = ACTIONS(1968), - [anon_sym_extern] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1968), - [anon_sym_COLON_COLON] = ACTIONS(1968), - [anon_sym_AMP] = ACTIONS(1968), - [anon_sym_DOT_DOT] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1968), - [anon_sym_yield] = ACTIONS(1970), - [anon_sym_move] = ACTIONS(1970), - [sym_integer_literal] = ACTIONS(1968), - [aux_sym_string_literal_token1] = ACTIONS(1968), - [sym_char_literal] = ACTIONS(1968), - [anon_sym_true] = ACTIONS(1970), - [anon_sym_false] = ACTIONS(1970), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1970), - [sym_super] = ACTIONS(1970), - [sym_crate] = ACTIONS(1970), - [sym_metavariable] = ACTIONS(1968), - [sym_raw_string_literal] = ACTIONS(1968), - [sym_float_literal] = ACTIONS(1968), + [ts_builtin_sym_end] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1992), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_macro_rules_BANG] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_RBRACE] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_u8] = ACTIONS(1992), + [anon_sym_i8] = ACTIONS(1992), + [anon_sym_u16] = ACTIONS(1992), + [anon_sym_i16] = ACTIONS(1992), + [anon_sym_u32] = ACTIONS(1992), + [anon_sym_i32] = ACTIONS(1992), + [anon_sym_u64] = ACTIONS(1992), + [anon_sym_i64] = ACTIONS(1992), + [anon_sym_u128] = ACTIONS(1992), + [anon_sym_i128] = ACTIONS(1992), + [anon_sym_isize] = ACTIONS(1992), + [anon_sym_usize] = ACTIONS(1992), + [anon_sym_f32] = ACTIONS(1992), + [anon_sym_f64] = ACTIONS(1992), + [anon_sym_bool] = ACTIONS(1992), + [anon_sym_str] = ACTIONS(1992), + [anon_sym_char] = ACTIONS(1992), + [anon_sym_SQUOTE] = ACTIONS(1992), + [anon_sym_async] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_impl] = ACTIONS(1992), + [anon_sym_let] = ACTIONS(1992), + [anon_sym_loop] = ACTIONS(1992), + [anon_sym_match] = ACTIONS(1992), + [anon_sym_mod] = ACTIONS(1992), + [anon_sym_pub] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_trait] = ACTIONS(1992), + [anon_sym_type] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_unsafe] = ACTIONS(1992), + [anon_sym_use] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_POUND] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym_LT] = ACTIONS(1990), + [anon_sym_COLON_COLON] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_DOT_DOT] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1990), + [anon_sym_yield] = ACTIONS(1992), + [anon_sym_move] = ACTIONS(1992), + [sym_integer_literal] = ACTIONS(1990), + [aux_sym_string_literal_token1] = ACTIONS(1990), + [sym_char_literal] = ACTIONS(1990), + [anon_sym_true] = ACTIONS(1992), + [anon_sym_false] = ACTIONS(1992), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_crate] = ACTIONS(1992), + [sym_metavariable] = ACTIONS(1990), + [sym_raw_string_literal] = ACTIONS(1990), + [sym_float_literal] = ACTIONS(1990), [sym_block_comment] = ACTIONS(3), }, [473] = { - [ts_builtin_sym_end] = ACTIONS(1972), - [sym_identifier] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_macro_rules_BANG] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_LBRACK] = ACTIONS(1972), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_u8] = ACTIONS(1974), - [anon_sym_i8] = ACTIONS(1974), - [anon_sym_u16] = ACTIONS(1974), - [anon_sym_i16] = ACTIONS(1974), - [anon_sym_u32] = ACTIONS(1974), - [anon_sym_i32] = ACTIONS(1974), - [anon_sym_u64] = ACTIONS(1974), - [anon_sym_i64] = ACTIONS(1974), - [anon_sym_u128] = ACTIONS(1974), - [anon_sym_i128] = ACTIONS(1974), - [anon_sym_isize] = ACTIONS(1974), - [anon_sym_usize] = ACTIONS(1974), - [anon_sym_f32] = ACTIONS(1974), - [anon_sym_f64] = ACTIONS(1974), - [anon_sym_bool] = ACTIONS(1974), - [anon_sym_str] = ACTIONS(1974), - [anon_sym_char] = ACTIONS(1974), - [anon_sym_SQUOTE] = ACTIONS(1974), - [anon_sym_async] = ACTIONS(1974), - [anon_sym_break] = ACTIONS(1974), - [anon_sym_const] = ACTIONS(1974), - [anon_sym_continue] = ACTIONS(1974), - [anon_sym_default] = ACTIONS(1974), - [anon_sym_enum] = ACTIONS(1974), - [anon_sym_fn] = ACTIONS(1974), - [anon_sym_for] = ACTIONS(1974), - [anon_sym_if] = ACTIONS(1974), - [anon_sym_impl] = ACTIONS(1974), - [anon_sym_let] = ACTIONS(1974), - [anon_sym_loop] = ACTIONS(1974), - [anon_sym_match] = ACTIONS(1974), - [anon_sym_mod] = ACTIONS(1974), - [anon_sym_pub] = ACTIONS(1974), - [anon_sym_return] = ACTIONS(1974), - [anon_sym_static] = ACTIONS(1974), - [anon_sym_struct] = ACTIONS(1974), - [anon_sym_trait] = ACTIONS(1974), - [anon_sym_type] = ACTIONS(1974), - [anon_sym_union] = ACTIONS(1974), - [anon_sym_unsafe] = ACTIONS(1974), - [anon_sym_use] = ACTIONS(1974), - [anon_sym_while] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(1972), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1972), - [anon_sym_COLON_COLON] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_yield] = ACTIONS(1974), - [anon_sym_move] = ACTIONS(1974), - [sym_integer_literal] = ACTIONS(1972), - [aux_sym_string_literal_token1] = ACTIONS(1972), - [sym_char_literal] = ACTIONS(1972), - [anon_sym_true] = ACTIONS(1974), - [anon_sym_false] = ACTIONS(1974), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1974), - [sym_super] = ACTIONS(1974), - [sym_crate] = ACTIONS(1974), - [sym_metavariable] = ACTIONS(1972), - [sym_raw_string_literal] = ACTIONS(1972), - [sym_float_literal] = ACTIONS(1972), + [ts_builtin_sym_end] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_macro_rules_BANG] = ACTIONS(1994), + [anon_sym_LPAREN] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_u8] = ACTIONS(1996), + [anon_sym_i8] = ACTIONS(1996), + [anon_sym_u16] = ACTIONS(1996), + [anon_sym_i16] = ACTIONS(1996), + [anon_sym_u32] = ACTIONS(1996), + [anon_sym_i32] = ACTIONS(1996), + [anon_sym_u64] = ACTIONS(1996), + [anon_sym_i64] = ACTIONS(1996), + [anon_sym_u128] = ACTIONS(1996), + [anon_sym_i128] = ACTIONS(1996), + [anon_sym_isize] = ACTIONS(1996), + [anon_sym_usize] = ACTIONS(1996), + [anon_sym_f32] = ACTIONS(1996), + [anon_sym_f64] = ACTIONS(1996), + [anon_sym_bool] = ACTIONS(1996), + [anon_sym_str] = ACTIONS(1996), + [anon_sym_char] = ACTIONS(1996), + [anon_sym_SQUOTE] = ACTIONS(1996), + [anon_sym_async] = ACTIONS(1996), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_const] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(1996), + [anon_sym_default] = ACTIONS(1996), + [anon_sym_enum] = ACTIONS(1996), + [anon_sym_fn] = ACTIONS(1996), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1996), + [anon_sym_impl] = ACTIONS(1996), + [anon_sym_let] = ACTIONS(1996), + [anon_sym_loop] = ACTIONS(1996), + [anon_sym_match] = ACTIONS(1996), + [anon_sym_mod] = ACTIONS(1996), + [anon_sym_pub] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_static] = ACTIONS(1996), + [anon_sym_struct] = ACTIONS(1996), + [anon_sym_trait] = ACTIONS(1996), + [anon_sym_type] = ACTIONS(1996), + [anon_sym_union] = ACTIONS(1996), + [anon_sym_unsafe] = ACTIONS(1996), + [anon_sym_use] = ACTIONS(1996), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_POUND] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_extern] = ACTIONS(1996), + [anon_sym_LT] = ACTIONS(1994), + [anon_sym_COLON_COLON] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_DOT_DOT] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1994), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_yield] = ACTIONS(1996), + [anon_sym_move] = ACTIONS(1996), + [sym_integer_literal] = ACTIONS(1994), + [aux_sym_string_literal_token1] = ACTIONS(1994), + [sym_char_literal] = ACTIONS(1994), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1996), + [sym_super] = ACTIONS(1996), + [sym_crate] = ACTIONS(1996), + [sym_metavariable] = ACTIONS(1994), + [sym_raw_string_literal] = ACTIONS(1994), + [sym_float_literal] = ACTIONS(1994), [sym_block_comment] = ACTIONS(3), }, [474] = { - [ts_builtin_sym_end] = ACTIONS(1976), - [sym_identifier] = ACTIONS(1978), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_macro_rules_BANG] = ACTIONS(1976), - [anon_sym_LPAREN] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1976), - [anon_sym_RBRACE] = ACTIONS(1976), - [anon_sym_LBRACK] = ACTIONS(1976), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_u8] = ACTIONS(1978), - [anon_sym_i8] = ACTIONS(1978), - [anon_sym_u16] = ACTIONS(1978), - [anon_sym_i16] = ACTIONS(1978), - [anon_sym_u32] = ACTIONS(1978), - [anon_sym_i32] = ACTIONS(1978), - [anon_sym_u64] = ACTIONS(1978), - [anon_sym_i64] = ACTIONS(1978), - [anon_sym_u128] = ACTIONS(1978), - [anon_sym_i128] = ACTIONS(1978), - [anon_sym_isize] = ACTIONS(1978), - [anon_sym_usize] = ACTIONS(1978), - [anon_sym_f32] = ACTIONS(1978), - [anon_sym_f64] = ACTIONS(1978), - [anon_sym_bool] = ACTIONS(1978), - [anon_sym_str] = ACTIONS(1978), - [anon_sym_char] = ACTIONS(1978), - [anon_sym_SQUOTE] = ACTIONS(1978), - [anon_sym_async] = ACTIONS(1978), - [anon_sym_break] = ACTIONS(1978), - [anon_sym_const] = ACTIONS(1978), - [anon_sym_continue] = ACTIONS(1978), - [anon_sym_default] = ACTIONS(1978), - [anon_sym_enum] = ACTIONS(1978), - [anon_sym_fn] = ACTIONS(1978), - [anon_sym_for] = ACTIONS(1978), - [anon_sym_if] = ACTIONS(1978), - [anon_sym_impl] = ACTIONS(1978), - [anon_sym_let] = ACTIONS(1978), - [anon_sym_loop] = ACTIONS(1978), - [anon_sym_match] = ACTIONS(1978), - [anon_sym_mod] = ACTIONS(1978), - [anon_sym_pub] = ACTIONS(1978), - [anon_sym_return] = ACTIONS(1978), - [anon_sym_static] = ACTIONS(1978), - [anon_sym_struct] = ACTIONS(1978), - [anon_sym_trait] = ACTIONS(1978), - [anon_sym_type] = ACTIONS(1978), - [anon_sym_union] = ACTIONS(1978), - [anon_sym_unsafe] = ACTIONS(1978), - [anon_sym_use] = ACTIONS(1978), - [anon_sym_while] = ACTIONS(1978), - [anon_sym_POUND] = ACTIONS(1976), - [anon_sym_BANG] = ACTIONS(1976), - [anon_sym_extern] = ACTIONS(1978), - [anon_sym_LT] = ACTIONS(1976), - [anon_sym_COLON_COLON] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym_DOT_DOT] = ACTIONS(1976), - [anon_sym_DASH] = ACTIONS(1976), - [anon_sym_PIPE] = ACTIONS(1976), - [anon_sym_yield] = ACTIONS(1978), - [anon_sym_move] = ACTIONS(1978), - [sym_integer_literal] = ACTIONS(1976), - [aux_sym_string_literal_token1] = ACTIONS(1976), - [sym_char_literal] = ACTIONS(1976), - [anon_sym_true] = ACTIONS(1978), - [anon_sym_false] = ACTIONS(1978), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1978), - [sym_super] = ACTIONS(1978), - [sym_crate] = ACTIONS(1978), - [sym_metavariable] = ACTIONS(1976), - [sym_raw_string_literal] = ACTIONS(1976), - [sym_float_literal] = ACTIONS(1976), + [ts_builtin_sym_end] = ACTIONS(1998), + [sym_identifier] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym_macro_rules_BANG] = ACTIONS(1998), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_RBRACE] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1998), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_u8] = ACTIONS(2000), + [anon_sym_i8] = ACTIONS(2000), + [anon_sym_u16] = ACTIONS(2000), + [anon_sym_i16] = ACTIONS(2000), + [anon_sym_u32] = ACTIONS(2000), + [anon_sym_i32] = ACTIONS(2000), + [anon_sym_u64] = ACTIONS(2000), + [anon_sym_i64] = ACTIONS(2000), + [anon_sym_u128] = ACTIONS(2000), + [anon_sym_i128] = ACTIONS(2000), + [anon_sym_isize] = ACTIONS(2000), + [anon_sym_usize] = ACTIONS(2000), + [anon_sym_f32] = ACTIONS(2000), + [anon_sym_f64] = ACTIONS(2000), + [anon_sym_bool] = ACTIONS(2000), + [anon_sym_str] = ACTIONS(2000), + [anon_sym_char] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_async] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_default] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + [anon_sym_fn] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_impl] = ACTIONS(2000), + [anon_sym_let] = ACTIONS(2000), + [anon_sym_loop] = ACTIONS(2000), + [anon_sym_match] = ACTIONS(2000), + [anon_sym_mod] = ACTIONS(2000), + [anon_sym_pub] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_struct] = ACTIONS(2000), + [anon_sym_trait] = ACTIONS(2000), + [anon_sym_type] = ACTIONS(2000), + [anon_sym_union] = ACTIONS(2000), + [anon_sym_unsafe] = ACTIONS(2000), + [anon_sym_use] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(1998), + [anon_sym_BANG] = ACTIONS(1998), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_AMP] = ACTIONS(1998), + [anon_sym_DOT_DOT] = ACTIONS(1998), + [anon_sym_DASH] = ACTIONS(1998), + [anon_sym_PIPE] = ACTIONS(1998), + [anon_sym_yield] = ACTIONS(2000), + [anon_sym_move] = ACTIONS(2000), + [sym_integer_literal] = ACTIONS(1998), + [aux_sym_string_literal_token1] = ACTIONS(1998), + [sym_char_literal] = ACTIONS(1998), + [anon_sym_true] = ACTIONS(2000), + [anon_sym_false] = ACTIONS(2000), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2000), + [sym_super] = ACTIONS(2000), + [sym_crate] = ACTIONS(2000), + [sym_metavariable] = ACTIONS(1998), + [sym_raw_string_literal] = ACTIONS(1998), + [sym_float_literal] = ACTIONS(1998), [sym_block_comment] = ACTIONS(3), }, [475] = { - [ts_builtin_sym_end] = ACTIONS(1980), - [sym_identifier] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_macro_rules_BANG] = ACTIONS(1980), - [anon_sym_LPAREN] = ACTIONS(1980), - [anon_sym_LBRACE] = ACTIONS(1980), - [anon_sym_RBRACE] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1980), - [anon_sym_STAR] = ACTIONS(1980), - [anon_sym_u8] = ACTIONS(1982), - [anon_sym_i8] = ACTIONS(1982), - [anon_sym_u16] = ACTIONS(1982), - [anon_sym_i16] = ACTIONS(1982), - [anon_sym_u32] = ACTIONS(1982), - [anon_sym_i32] = ACTIONS(1982), - [anon_sym_u64] = ACTIONS(1982), - [anon_sym_i64] = ACTIONS(1982), - [anon_sym_u128] = ACTIONS(1982), - [anon_sym_i128] = ACTIONS(1982), - [anon_sym_isize] = ACTIONS(1982), - [anon_sym_usize] = ACTIONS(1982), - [anon_sym_f32] = ACTIONS(1982), - [anon_sym_f64] = ACTIONS(1982), - [anon_sym_bool] = ACTIONS(1982), - [anon_sym_str] = ACTIONS(1982), - [anon_sym_char] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1982), - [anon_sym_async] = ACTIONS(1982), - [anon_sym_break] = ACTIONS(1982), - [anon_sym_const] = ACTIONS(1982), - [anon_sym_continue] = ACTIONS(1982), - [anon_sym_default] = ACTIONS(1982), - [anon_sym_enum] = ACTIONS(1982), - [anon_sym_fn] = ACTIONS(1982), - [anon_sym_for] = ACTIONS(1982), - [anon_sym_if] = ACTIONS(1982), - [anon_sym_impl] = ACTIONS(1982), - [anon_sym_let] = ACTIONS(1982), - [anon_sym_loop] = ACTIONS(1982), - [anon_sym_match] = ACTIONS(1982), - [anon_sym_mod] = ACTIONS(1982), - [anon_sym_pub] = ACTIONS(1982), - [anon_sym_return] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1982), - [anon_sym_struct] = ACTIONS(1982), - [anon_sym_trait] = ACTIONS(1982), - [anon_sym_type] = ACTIONS(1982), - [anon_sym_union] = ACTIONS(1982), - [anon_sym_unsafe] = ACTIONS(1982), - [anon_sym_use] = ACTIONS(1982), - [anon_sym_while] = ACTIONS(1982), - [anon_sym_POUND] = ACTIONS(1980), - [anon_sym_BANG] = ACTIONS(1980), - [anon_sym_extern] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1980), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_DOT_DOT] = ACTIONS(1980), - [anon_sym_DASH] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_yield] = ACTIONS(1982), - [anon_sym_move] = ACTIONS(1982), - [sym_integer_literal] = ACTIONS(1980), - [aux_sym_string_literal_token1] = ACTIONS(1980), - [sym_char_literal] = ACTIONS(1980), - [anon_sym_true] = ACTIONS(1982), - [anon_sym_false] = ACTIONS(1982), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1982), - [sym_super] = ACTIONS(1982), - [sym_crate] = ACTIONS(1982), - [sym_metavariable] = ACTIONS(1980), - [sym_raw_string_literal] = ACTIONS(1980), - [sym_float_literal] = ACTIONS(1980), + [ts_builtin_sym_end] = ACTIONS(2002), + [sym_identifier] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_macro_rules_BANG] = ACTIONS(2002), + [anon_sym_LPAREN] = ACTIONS(2002), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_u8] = ACTIONS(2004), + [anon_sym_i8] = ACTIONS(2004), + [anon_sym_u16] = ACTIONS(2004), + [anon_sym_i16] = ACTIONS(2004), + [anon_sym_u32] = ACTIONS(2004), + [anon_sym_i32] = ACTIONS(2004), + [anon_sym_u64] = ACTIONS(2004), + [anon_sym_i64] = ACTIONS(2004), + [anon_sym_u128] = ACTIONS(2004), + [anon_sym_i128] = ACTIONS(2004), + [anon_sym_isize] = ACTIONS(2004), + [anon_sym_usize] = ACTIONS(2004), + [anon_sym_f32] = ACTIONS(2004), + [anon_sym_f64] = ACTIONS(2004), + [anon_sym_bool] = ACTIONS(2004), + [anon_sym_str] = ACTIONS(2004), + [anon_sym_char] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_async] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_fn] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_impl] = ACTIONS(2004), + [anon_sym_let] = ACTIONS(2004), + [anon_sym_loop] = ACTIONS(2004), + [anon_sym_match] = ACTIONS(2004), + [anon_sym_mod] = ACTIONS(2004), + [anon_sym_pub] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_trait] = ACTIONS(2004), + [anon_sym_type] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_unsafe] = ACTIONS(2004), + [anon_sym_use] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_POUND] = ACTIONS(2002), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_COLON_COLON] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_yield] = ACTIONS(2004), + [anon_sym_move] = ACTIONS(2004), + [sym_integer_literal] = ACTIONS(2002), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2002), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_crate] = ACTIONS(2004), + [sym_metavariable] = ACTIONS(2002), + [sym_raw_string_literal] = ACTIONS(2002), + [sym_float_literal] = ACTIONS(2002), [sym_block_comment] = ACTIONS(3), }, [476] = { - [ts_builtin_sym_end] = ACTIONS(1984), - [sym_identifier] = ACTIONS(1986), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_macro_rules_BANG] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1984), - [anon_sym_RBRACE] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_u8] = ACTIONS(1986), - [anon_sym_i8] = ACTIONS(1986), - [anon_sym_u16] = ACTIONS(1986), - [anon_sym_i16] = ACTIONS(1986), - [anon_sym_u32] = ACTIONS(1986), - [anon_sym_i32] = ACTIONS(1986), - [anon_sym_u64] = ACTIONS(1986), - [anon_sym_i64] = ACTIONS(1986), - [anon_sym_u128] = ACTIONS(1986), - [anon_sym_i128] = ACTIONS(1986), - [anon_sym_isize] = ACTIONS(1986), - [anon_sym_usize] = ACTIONS(1986), - [anon_sym_f32] = ACTIONS(1986), - [anon_sym_f64] = ACTIONS(1986), - [anon_sym_bool] = ACTIONS(1986), - [anon_sym_str] = ACTIONS(1986), - [anon_sym_char] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), - [anon_sym_async] = ACTIONS(1986), - [anon_sym_break] = ACTIONS(1986), - [anon_sym_const] = ACTIONS(1986), - [anon_sym_continue] = ACTIONS(1986), - [anon_sym_default] = ACTIONS(1986), - [anon_sym_enum] = ACTIONS(1986), - [anon_sym_fn] = ACTIONS(1986), - [anon_sym_for] = ACTIONS(1986), - [anon_sym_if] = ACTIONS(1986), - [anon_sym_impl] = ACTIONS(1986), - [anon_sym_let] = ACTIONS(1986), - [anon_sym_loop] = ACTIONS(1986), - [anon_sym_match] = ACTIONS(1986), - [anon_sym_mod] = ACTIONS(1986), - [anon_sym_pub] = ACTIONS(1986), - [anon_sym_return] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1986), - [anon_sym_struct] = ACTIONS(1986), - [anon_sym_trait] = ACTIONS(1986), - [anon_sym_type] = ACTIONS(1986), - [anon_sym_union] = ACTIONS(1986), - [anon_sym_unsafe] = ACTIONS(1986), - [anon_sym_use] = ACTIONS(1986), - [anon_sym_while] = ACTIONS(1986), - [anon_sym_POUND] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_extern] = ACTIONS(1986), - [anon_sym_LT] = ACTIONS(1984), - [anon_sym_COLON_COLON] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_DOT_DOT] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(1984), - [anon_sym_yield] = ACTIONS(1986), - [anon_sym_move] = ACTIONS(1986), - [sym_integer_literal] = ACTIONS(1984), - [aux_sym_string_literal_token1] = ACTIONS(1984), - [sym_char_literal] = ACTIONS(1984), - [anon_sym_true] = ACTIONS(1986), - [anon_sym_false] = ACTIONS(1986), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1986), - [sym_super] = ACTIONS(1986), - [sym_crate] = ACTIONS(1986), - [sym_metavariable] = ACTIONS(1984), - [sym_raw_string_literal] = ACTIONS(1984), - [sym_float_literal] = ACTIONS(1984), - [sym_block_comment] = ACTIONS(3), - }, - [477] = { - [ts_builtin_sym_end] = ACTIONS(1988), - [sym_identifier] = ACTIONS(1990), - [anon_sym_SEMI] = ACTIONS(1988), - [anon_sym_macro_rules_BANG] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_RBRACE] = ACTIONS(1988), - [anon_sym_LBRACK] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_u8] = ACTIONS(1990), - [anon_sym_i8] = ACTIONS(1990), - [anon_sym_u16] = ACTIONS(1990), - [anon_sym_i16] = ACTIONS(1990), - [anon_sym_u32] = ACTIONS(1990), - [anon_sym_i32] = ACTIONS(1990), - [anon_sym_u64] = ACTIONS(1990), - [anon_sym_i64] = ACTIONS(1990), - [anon_sym_u128] = ACTIONS(1990), - [anon_sym_i128] = ACTIONS(1990), - [anon_sym_isize] = ACTIONS(1990), - [anon_sym_usize] = ACTIONS(1990), - [anon_sym_f32] = ACTIONS(1990), - [anon_sym_f64] = ACTIONS(1990), - [anon_sym_bool] = ACTIONS(1990), - [anon_sym_str] = ACTIONS(1990), - [anon_sym_char] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_async] = ACTIONS(1990), - [anon_sym_break] = ACTIONS(1990), - [anon_sym_const] = ACTIONS(1990), - [anon_sym_continue] = ACTIONS(1990), - [anon_sym_default] = ACTIONS(1990), - [anon_sym_enum] = ACTIONS(1990), - [anon_sym_fn] = ACTIONS(1990), - [anon_sym_for] = ACTIONS(1990), - [anon_sym_if] = ACTIONS(1990), - [anon_sym_impl] = ACTIONS(1990), - [anon_sym_let] = ACTIONS(1990), - [anon_sym_loop] = ACTIONS(1990), - [anon_sym_match] = ACTIONS(1990), - [anon_sym_mod] = ACTIONS(1990), - [anon_sym_pub] = ACTIONS(1990), - [anon_sym_return] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1990), - [anon_sym_struct] = ACTIONS(1990), - [anon_sym_trait] = ACTIONS(1990), - [anon_sym_type] = ACTIONS(1990), - [anon_sym_union] = ACTIONS(1990), - [anon_sym_unsafe] = ACTIONS(1990), - [anon_sym_use] = ACTIONS(1990), - [anon_sym_while] = ACTIONS(1990), - [anon_sym_POUND] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1990), - [anon_sym_LT] = ACTIONS(1988), - [anon_sym_COLON_COLON] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1988), - [anon_sym_DOT_DOT] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [anon_sym_PIPE] = ACTIONS(1988), - [anon_sym_yield] = ACTIONS(1990), - [anon_sym_move] = ACTIONS(1990), - [sym_integer_literal] = ACTIONS(1988), - [aux_sym_string_literal_token1] = ACTIONS(1988), - [sym_char_literal] = ACTIONS(1988), - [anon_sym_true] = ACTIONS(1990), - [anon_sym_false] = ACTIONS(1990), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1990), - [sym_super] = ACTIONS(1990), - [sym_crate] = ACTIONS(1990), - [sym_metavariable] = ACTIONS(1988), - [sym_raw_string_literal] = ACTIONS(1988), - [sym_float_literal] = ACTIONS(1988), - [sym_block_comment] = ACTIONS(3), - }, - [478] = { - [ts_builtin_sym_end] = ACTIONS(1992), - [sym_identifier] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1992), - [anon_sym_macro_rules_BANG] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1992), - [anon_sym_u8] = ACTIONS(1994), - [anon_sym_i8] = ACTIONS(1994), - [anon_sym_u16] = ACTIONS(1994), - [anon_sym_i16] = ACTIONS(1994), - [anon_sym_u32] = ACTIONS(1994), - [anon_sym_i32] = ACTIONS(1994), - [anon_sym_u64] = ACTIONS(1994), - [anon_sym_i64] = ACTIONS(1994), - [anon_sym_u128] = ACTIONS(1994), - [anon_sym_i128] = ACTIONS(1994), - [anon_sym_isize] = ACTIONS(1994), - [anon_sym_usize] = ACTIONS(1994), - [anon_sym_f32] = ACTIONS(1994), - [anon_sym_f64] = ACTIONS(1994), - [anon_sym_bool] = ACTIONS(1994), - [anon_sym_str] = ACTIONS(1994), - [anon_sym_char] = ACTIONS(1994), - [anon_sym_SQUOTE] = ACTIONS(1994), - [anon_sym_async] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_fn] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_impl] = ACTIONS(1994), - [anon_sym_let] = ACTIONS(1994), - [anon_sym_loop] = ACTIONS(1994), - [anon_sym_match] = ACTIONS(1994), - [anon_sym_mod] = ACTIONS(1994), - [anon_sym_pub] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_trait] = ACTIONS(1994), - [anon_sym_type] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_unsafe] = ACTIONS(1994), - [anon_sym_use] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_POUND] = ACTIONS(1992), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_COLON_COLON] = ACTIONS(1992), - [anon_sym_AMP] = ACTIONS(1992), - [anon_sym_DOT_DOT] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PIPE] = ACTIONS(1992), - [anon_sym_yield] = ACTIONS(1994), - [anon_sym_move] = ACTIONS(1994), - [sym_integer_literal] = ACTIONS(1992), - [aux_sym_string_literal_token1] = ACTIONS(1992), - [sym_char_literal] = ACTIONS(1992), - [anon_sym_true] = ACTIONS(1994), - [anon_sym_false] = ACTIONS(1994), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_crate] = ACTIONS(1994), - [sym_metavariable] = ACTIONS(1992), - [sym_raw_string_literal] = ACTIONS(1992), - [sym_float_literal] = ACTIONS(1992), - [sym_block_comment] = ACTIONS(3), - }, - [479] = { - [ts_builtin_sym_end] = ACTIONS(1996), - [sym_identifier] = ACTIONS(1998), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_macro_rules_BANG] = ACTIONS(1996), - [anon_sym_LPAREN] = ACTIONS(1996), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_RBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_u8] = ACTIONS(1998), - [anon_sym_i8] = ACTIONS(1998), - [anon_sym_u16] = ACTIONS(1998), - [anon_sym_i16] = ACTIONS(1998), - [anon_sym_u32] = ACTIONS(1998), - [anon_sym_i32] = ACTIONS(1998), - [anon_sym_u64] = ACTIONS(1998), - [anon_sym_i64] = ACTIONS(1998), - [anon_sym_u128] = ACTIONS(1998), - [anon_sym_i128] = ACTIONS(1998), - [anon_sym_isize] = ACTIONS(1998), - [anon_sym_usize] = ACTIONS(1998), - [anon_sym_f32] = ACTIONS(1998), - [anon_sym_f64] = ACTIONS(1998), - [anon_sym_bool] = ACTIONS(1998), - [anon_sym_str] = ACTIONS(1998), - [anon_sym_char] = ACTIONS(1998), - [anon_sym_SQUOTE] = ACTIONS(1998), - [anon_sym_async] = ACTIONS(1998), - [anon_sym_break] = ACTIONS(1998), - [anon_sym_const] = ACTIONS(1998), - [anon_sym_continue] = ACTIONS(1998), - [anon_sym_default] = ACTIONS(1998), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_fn] = ACTIONS(1998), - [anon_sym_for] = ACTIONS(1998), - [anon_sym_if] = ACTIONS(1998), - [anon_sym_impl] = ACTIONS(1998), - [anon_sym_let] = ACTIONS(1998), - [anon_sym_loop] = ACTIONS(1998), - [anon_sym_match] = ACTIONS(1998), - [anon_sym_mod] = ACTIONS(1998), - [anon_sym_pub] = ACTIONS(1998), - [anon_sym_return] = ACTIONS(1998), - [anon_sym_static] = ACTIONS(1998), - [anon_sym_struct] = ACTIONS(1998), - [anon_sym_trait] = ACTIONS(1998), - [anon_sym_type] = ACTIONS(1998), - [anon_sym_union] = ACTIONS(1998), - [anon_sym_unsafe] = ACTIONS(1998), - [anon_sym_use] = ACTIONS(1998), - [anon_sym_while] = ACTIONS(1998), - [anon_sym_POUND] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_extern] = ACTIONS(1998), - [anon_sym_LT] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_DOT_DOT] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(1996), - [anon_sym_yield] = ACTIONS(1998), - [anon_sym_move] = ACTIONS(1998), - [sym_integer_literal] = ACTIONS(1996), - [aux_sym_string_literal_token1] = ACTIONS(1996), - [sym_char_literal] = ACTIONS(1996), - [anon_sym_true] = ACTIONS(1998), - [anon_sym_false] = ACTIONS(1998), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1998), - [sym_super] = ACTIONS(1998), - [sym_crate] = ACTIONS(1998), - [sym_metavariable] = ACTIONS(1996), - [sym_raw_string_literal] = ACTIONS(1996), - [sym_float_literal] = ACTIONS(1996), - [sym_block_comment] = ACTIONS(3), - }, - [480] = { - [ts_builtin_sym_end] = ACTIONS(2000), - [sym_identifier] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_macro_rules_BANG] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(2000), - [anon_sym_RBRACE] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2000), - [anon_sym_STAR] = ACTIONS(2000), - [anon_sym_u8] = ACTIONS(2002), - [anon_sym_i8] = ACTIONS(2002), - [anon_sym_u16] = ACTIONS(2002), - [anon_sym_i16] = ACTIONS(2002), - [anon_sym_u32] = ACTIONS(2002), - [anon_sym_i32] = ACTIONS(2002), - [anon_sym_u64] = ACTIONS(2002), - [anon_sym_i64] = ACTIONS(2002), - [anon_sym_u128] = ACTIONS(2002), - [anon_sym_i128] = ACTIONS(2002), - [anon_sym_isize] = ACTIONS(2002), - [anon_sym_usize] = ACTIONS(2002), - [anon_sym_f32] = ACTIONS(2002), - [anon_sym_f64] = ACTIONS(2002), - [anon_sym_bool] = ACTIONS(2002), - [anon_sym_str] = ACTIONS(2002), - [anon_sym_char] = ACTIONS(2002), - [anon_sym_SQUOTE] = ACTIONS(2002), - [anon_sym_async] = ACTIONS(2002), - [anon_sym_break] = ACTIONS(2002), - [anon_sym_const] = ACTIONS(2002), - [anon_sym_continue] = ACTIONS(2002), - [anon_sym_default] = ACTIONS(2002), - [anon_sym_enum] = ACTIONS(2002), - [anon_sym_fn] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_impl] = ACTIONS(2002), - [anon_sym_let] = ACTIONS(2002), - [anon_sym_loop] = ACTIONS(2002), - [anon_sym_match] = ACTIONS(2002), - [anon_sym_mod] = ACTIONS(2002), - [anon_sym_pub] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_static] = ACTIONS(2002), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_trait] = ACTIONS(2002), - [anon_sym_type] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2002), - [anon_sym_unsafe] = ACTIONS(2002), - [anon_sym_use] = ACTIONS(2002), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_POUND] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2000), - [anon_sym_extern] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2000), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_AMP] = ACTIONS(2000), - [anon_sym_DOT_DOT] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(2000), - [anon_sym_PIPE] = ACTIONS(2000), - [anon_sym_yield] = ACTIONS(2002), - [anon_sym_move] = ACTIONS(2002), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2000), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2002), - [anon_sym_false] = ACTIONS(2002), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2002), - [sym_super] = ACTIONS(2002), - [sym_crate] = ACTIONS(2002), - [sym_metavariable] = ACTIONS(2000), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), - [sym_block_comment] = ACTIONS(3), - }, - [481] = { - [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__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), + [ts_builtin_sym_end] = ACTIONS(2006), [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_SEMI] = ACTIONS(2006), + [anon_sym_macro_rules_BANG] = ACTIONS(2006), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(2006), [anon_sym_u8] = ACTIONS(2008), [anon_sym_i8] = ACTIONS(2008), [anon_sym_u16] = ACTIONS(2008), @@ -59146,11 +58360,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2008), [anon_sym_str] = ACTIONS(2008), [anon_sym_char] = ACTIONS(2008), - [aux_sym__non_special_token_token1] = ACTIONS(2008), [anon_sym_SQUOTE] = ACTIONS(2008), - [anon_sym_as] = ACTIONS(2008), [anon_sym_async] = ACTIONS(2008), - [anon_sym_await] = ACTIONS(2008), [anon_sym_break] = ACTIONS(2008), [anon_sym_const] = ACTIONS(2008), [anon_sym_continue] = ACTIONS(2008), @@ -59173,38 +58384,350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2008), [anon_sym_unsafe] = ACTIONS(2008), [anon_sym_use] = ACTIONS(2008), - [anon_sym_where] = ACTIONS(2008), [anon_sym_while] = ACTIONS(2008), - [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), + [anon_sym_POUND] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_extern] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_DOT_DOT] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2006), + [anon_sym_yield] = ACTIONS(2008), + [anon_sym_move] = ACTIONS(2008), + [sym_integer_literal] = ACTIONS(2006), + [aux_sym_string_literal_token1] = ACTIONS(2006), + [sym_char_literal] = ACTIONS(2006), + [anon_sym_true] = ACTIONS(2008), + [anon_sym_false] = ACTIONS(2008), + [sym_line_comment] = ACTIONS(3), [sym_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_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2006), + [sym_float_literal] = ACTIONS(2006), [sym_block_comment] = ACTIONS(3), }, - [483] = { - [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), + [477] = { + [ts_builtin_sym_end] = ACTIONS(2010), + [sym_identifier] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_macro_rules_BANG] = ACTIONS(2010), [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_RBRACE] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(2010), + [anon_sym_u8] = ACTIONS(2012), + [anon_sym_i8] = ACTIONS(2012), + [anon_sym_u16] = ACTIONS(2012), + [anon_sym_i16] = ACTIONS(2012), + [anon_sym_u32] = ACTIONS(2012), + [anon_sym_i32] = ACTIONS(2012), + [anon_sym_u64] = ACTIONS(2012), + [anon_sym_i64] = ACTIONS(2012), + [anon_sym_u128] = ACTIONS(2012), + [anon_sym_i128] = ACTIONS(2012), + [anon_sym_isize] = ACTIONS(2012), + [anon_sym_usize] = ACTIONS(2012), + [anon_sym_f32] = ACTIONS(2012), + [anon_sym_f64] = ACTIONS(2012), + [anon_sym_bool] = ACTIONS(2012), + [anon_sym_str] = ACTIONS(2012), + [anon_sym_char] = ACTIONS(2012), + [anon_sym_SQUOTE] = ACTIONS(2012), + [anon_sym_async] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_fn] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_impl] = ACTIONS(2012), + [anon_sym_let] = ACTIONS(2012), + [anon_sym_loop] = ACTIONS(2012), + [anon_sym_match] = ACTIONS(2012), + [anon_sym_mod] = ACTIONS(2012), + [anon_sym_pub] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_trait] = ACTIONS(2012), + [anon_sym_type] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_unsafe] = ACTIONS(2012), + [anon_sym_use] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_POUND] = ACTIONS(2010), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2010), + [anon_sym_COLON_COLON] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2010), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2010), + [anon_sym_PIPE] = ACTIONS(2010), + [anon_sym_yield] = ACTIONS(2012), + [anon_sym_move] = ACTIONS(2012), + [sym_integer_literal] = ACTIONS(2010), + [aux_sym_string_literal_token1] = ACTIONS(2010), + [sym_char_literal] = ACTIONS(2010), + [anon_sym_true] = ACTIONS(2012), + [anon_sym_false] = ACTIONS(2012), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2012), + [sym_super] = ACTIONS(2012), + [sym_crate] = ACTIONS(2012), + [sym_metavariable] = ACTIONS(2010), + [sym_raw_string_literal] = ACTIONS(2010), + [sym_float_literal] = ACTIONS(2010), + [sym_block_comment] = ACTIONS(3), + }, + [478] = { + [ts_builtin_sym_end] = ACTIONS(2014), + [sym_identifier] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_macro_rules_BANG] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2014), [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_u8] = ACTIONS(2016), + [anon_sym_i8] = ACTIONS(2016), + [anon_sym_u16] = ACTIONS(2016), + [anon_sym_i16] = ACTIONS(2016), + [anon_sym_u32] = ACTIONS(2016), + [anon_sym_i32] = ACTIONS(2016), + [anon_sym_u64] = ACTIONS(2016), + [anon_sym_i64] = ACTIONS(2016), + [anon_sym_u128] = ACTIONS(2016), + [anon_sym_i128] = ACTIONS(2016), + [anon_sym_isize] = ACTIONS(2016), + [anon_sym_usize] = ACTIONS(2016), + [anon_sym_f32] = ACTIONS(2016), + [anon_sym_f64] = ACTIONS(2016), + [anon_sym_bool] = ACTIONS(2016), + [anon_sym_str] = ACTIONS(2016), + [anon_sym_char] = ACTIONS(2016), + [anon_sym_SQUOTE] = ACTIONS(2016), + [anon_sym_async] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_fn] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_impl] = ACTIONS(2016), + [anon_sym_let] = ACTIONS(2016), + [anon_sym_loop] = ACTIONS(2016), + [anon_sym_match] = ACTIONS(2016), + [anon_sym_mod] = ACTIONS(2016), + [anon_sym_pub] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_trait] = ACTIONS(2016), + [anon_sym_type] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_unsafe] = ACTIONS(2016), + [anon_sym_use] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_POUND] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym_LT] = ACTIONS(2014), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_DOT_DOT] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2014), + [anon_sym_yield] = ACTIONS(2016), + [anon_sym_move] = ACTIONS(2016), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2014), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2016), + [anon_sym_false] = ACTIONS(2016), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_crate] = ACTIONS(2016), + [sym_metavariable] = ACTIONS(2014), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), + [sym_block_comment] = ACTIONS(3), + }, + [479] = { + [ts_builtin_sym_end] = ACTIONS(2018), + [sym_identifier] = ACTIONS(2020), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_macro_rules_BANG] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2020), + [anon_sym_i8] = ACTIONS(2020), + [anon_sym_u16] = ACTIONS(2020), + [anon_sym_i16] = ACTIONS(2020), + [anon_sym_u32] = ACTIONS(2020), + [anon_sym_i32] = ACTIONS(2020), + [anon_sym_u64] = ACTIONS(2020), + [anon_sym_i64] = ACTIONS(2020), + [anon_sym_u128] = ACTIONS(2020), + [anon_sym_i128] = ACTIONS(2020), + [anon_sym_isize] = ACTIONS(2020), + [anon_sym_usize] = ACTIONS(2020), + [anon_sym_f32] = ACTIONS(2020), + [anon_sym_f64] = ACTIONS(2020), + [anon_sym_bool] = ACTIONS(2020), + [anon_sym_str] = ACTIONS(2020), + [anon_sym_char] = ACTIONS(2020), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(2020), + [anon_sym_break] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_continue] = ACTIONS(2020), + [anon_sym_default] = ACTIONS(2020), + [anon_sym_enum] = ACTIONS(2020), + [anon_sym_fn] = ACTIONS(2020), + [anon_sym_for] = ACTIONS(2020), + [anon_sym_if] = ACTIONS(2020), + [anon_sym_impl] = ACTIONS(2020), + [anon_sym_let] = ACTIONS(2020), + [anon_sym_loop] = ACTIONS(2020), + [anon_sym_match] = ACTIONS(2020), + [anon_sym_mod] = ACTIONS(2020), + [anon_sym_pub] = ACTIONS(2020), + [anon_sym_return] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2020), + [anon_sym_struct] = ACTIONS(2020), + [anon_sym_trait] = ACTIONS(2020), + [anon_sym_type] = ACTIONS(2020), + [anon_sym_union] = ACTIONS(2020), + [anon_sym_unsafe] = ACTIONS(2020), + [anon_sym_use] = ACTIONS(2020), + [anon_sym_while] = ACTIONS(2020), + [anon_sym_POUND] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2020), + [anon_sym_LT] = ACTIONS(2018), + [anon_sym_COLON_COLON] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_DOT_DOT] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2018), + [anon_sym_PIPE] = ACTIONS(2018), + [anon_sym_yield] = ACTIONS(2020), + [anon_sym_move] = ACTIONS(2020), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2018), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2020), + [anon_sym_false] = ACTIONS(2020), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2020), + [sym_super] = ACTIONS(2020), + [sym_crate] = ACTIONS(2020), + [sym_metavariable] = ACTIONS(2018), + [sym_raw_string_literal] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + [sym_block_comment] = ACTIONS(3), + }, + [480] = { + [ts_builtin_sym_end] = ACTIONS(2022), + [sym_identifier] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2022), + [anon_sym_macro_rules_BANG] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2022), + [anon_sym_STAR] = ACTIONS(2022), + [anon_sym_u8] = ACTIONS(2024), + [anon_sym_i8] = ACTIONS(2024), + [anon_sym_u16] = ACTIONS(2024), + [anon_sym_i16] = ACTIONS(2024), + [anon_sym_u32] = ACTIONS(2024), + [anon_sym_i32] = ACTIONS(2024), + [anon_sym_u64] = ACTIONS(2024), + [anon_sym_i64] = ACTIONS(2024), + [anon_sym_u128] = ACTIONS(2024), + [anon_sym_i128] = ACTIONS(2024), + [anon_sym_isize] = ACTIONS(2024), + [anon_sym_usize] = ACTIONS(2024), + [anon_sym_f32] = ACTIONS(2024), + [anon_sym_f64] = ACTIONS(2024), + [anon_sym_bool] = ACTIONS(2024), + [anon_sym_str] = ACTIONS(2024), + [anon_sym_char] = ACTIONS(2024), + [anon_sym_SQUOTE] = ACTIONS(2024), + [anon_sym_async] = ACTIONS(2024), + [anon_sym_break] = ACTIONS(2024), + [anon_sym_const] = ACTIONS(2024), + [anon_sym_continue] = ACTIONS(2024), + [anon_sym_default] = ACTIONS(2024), + [anon_sym_enum] = ACTIONS(2024), + [anon_sym_fn] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2024), + [anon_sym_if] = ACTIONS(2024), + [anon_sym_impl] = ACTIONS(2024), + [anon_sym_let] = ACTIONS(2024), + [anon_sym_loop] = ACTIONS(2024), + [anon_sym_match] = ACTIONS(2024), + [anon_sym_mod] = ACTIONS(2024), + [anon_sym_pub] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2024), + [anon_sym_static] = ACTIONS(2024), + [anon_sym_struct] = ACTIONS(2024), + [anon_sym_trait] = ACTIONS(2024), + [anon_sym_type] = ACTIONS(2024), + [anon_sym_union] = ACTIONS(2024), + [anon_sym_unsafe] = ACTIONS(2024), + [anon_sym_use] = ACTIONS(2024), + [anon_sym_while] = ACTIONS(2024), + [anon_sym_POUND] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2022), + [anon_sym_extern] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2022), + [anon_sym_COLON_COLON] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_DOT_DOT] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2022), + [anon_sym_yield] = ACTIONS(2024), + [anon_sym_move] = ACTIONS(2024), + [sym_integer_literal] = ACTIONS(2022), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2022), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2024), + [sym_super] = ACTIONS(2024), + [sym_crate] = ACTIONS(2024), + [sym_metavariable] = ACTIONS(2022), + [sym_raw_string_literal] = ACTIONS(2022), + [sym_float_literal] = ACTIONS(2022), + [sym_block_comment] = ACTIONS(3), + }, + [481] = { + [ts_builtin_sym_end] = ACTIONS(2026), + [sym_identifier] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_macro_rules_BANG] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_STAR] = ACTIONS(2026), [anon_sym_u8] = ACTIONS(2028), [anon_sym_i8] = ACTIONS(2028), [anon_sym_u16] = ACTIONS(2028), @@ -59222,11 +58745,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -59249,38 +58769,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_POUND] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2026), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2026), + [anon_sym_COLON_COLON] = ACTIONS(2026), + [anon_sym_AMP] = ACTIONS(2026), + [anon_sym_DOT_DOT] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2026), + [anon_sym_yield] = ACTIONS(2028), + [anon_sym_move] = ACTIONS(2028), + [sym_integer_literal] = ACTIONS(2026), + [aux_sym_string_literal_token1] = ACTIONS(2026), + [sym_char_literal] = ACTIONS(2026), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [sym_line_comment] = ACTIONS(3), [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_raw_string_literal] = ACTIONS(2026), + [sym_float_literal] = ACTIONS(2026), [sym_block_comment] = ACTIONS(3), }, - [484] = { - [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), + [482] = { + [ts_builtin_sym_end] = ACTIONS(2030), [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_SEMI] = ACTIONS(2030), + [anon_sym_macro_rules_BANG] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_STAR] = ACTIONS(2030), [anon_sym_u8] = ACTIONS(2032), [anon_sym_i8] = ACTIONS(2032), [anon_sym_u16] = ACTIONS(2032), @@ -59298,11 +58822,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -59325,312 +58846,473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_POUND] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2030), + [anon_sym_COLON_COLON] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_DOT_DOT] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2030), + [anon_sym_yield] = ACTIONS(2032), + [anon_sym_move] = ACTIONS(2032), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2030), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2032), + [anon_sym_false] = ACTIONS(2032), + [sym_line_comment] = ACTIONS(3), [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_metavariable] = ACTIONS(2030), + [sym_raw_string_literal] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + [sym_block_comment] = ACTIONS(3), + }, + [483] = { + [sym_token_tree] = STATE(483), + [sym_token_repetition] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2034), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_RPAREN] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2042), + [anon_sym_RBRACE] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(2045), + [anon_sym_RBRACK] = ACTIONS(2040), + [anon_sym_DOLLAR] = ACTIONS(2048), + [anon_sym_u8] = ACTIONS(2034), + [anon_sym_i8] = ACTIONS(2034), + [anon_sym_u16] = ACTIONS(2034), + [anon_sym_i16] = ACTIONS(2034), + [anon_sym_u32] = ACTIONS(2034), + [anon_sym_i32] = ACTIONS(2034), + [anon_sym_u64] = ACTIONS(2034), + [anon_sym_i64] = ACTIONS(2034), + [anon_sym_u128] = ACTIONS(2034), + [anon_sym_i128] = ACTIONS(2034), + [anon_sym_isize] = ACTIONS(2034), + [anon_sym_usize] = ACTIONS(2034), + [anon_sym_f32] = ACTIONS(2034), + [anon_sym_f64] = ACTIONS(2034), + [anon_sym_bool] = ACTIONS(2034), + [anon_sym_str] = ACTIONS(2034), + [anon_sym_char] = ACTIONS(2034), + [aux_sym__non_special_token_token1] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_as] = ACTIONS(2034), + [anon_sym_async] = ACTIONS(2034), + [anon_sym_await] = ACTIONS(2034), + [anon_sym_break] = ACTIONS(2034), + [anon_sym_const] = ACTIONS(2034), + [anon_sym_continue] = ACTIONS(2034), + [anon_sym_default] = ACTIONS(2034), + [anon_sym_enum] = ACTIONS(2034), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_for] = ACTIONS(2034), + [anon_sym_if] = ACTIONS(2034), + [anon_sym_impl] = ACTIONS(2034), + [anon_sym_let] = ACTIONS(2034), + [anon_sym_loop] = ACTIONS(2034), + [anon_sym_match] = ACTIONS(2034), + [anon_sym_mod] = ACTIONS(2034), + [anon_sym_pub] = ACTIONS(2034), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2034), + [anon_sym_struct] = ACTIONS(2034), + [anon_sym_trait] = ACTIONS(2034), + [anon_sym_type] = ACTIONS(2034), + [anon_sym_union] = ACTIONS(2034), + [anon_sym_unsafe] = ACTIONS(2034), + [anon_sym_use] = ACTIONS(2034), + [anon_sym_where] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2034), + [sym_mutable_specifier] = ACTIONS(2034), + [sym_integer_literal] = ACTIONS(2051), + [aux_sym_string_literal_token1] = ACTIONS(2054), + [sym_char_literal] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2034), + [sym_super] = ACTIONS(2034), + [sym_crate] = ACTIONS(2034), + [sym_metavariable] = ACTIONS(2060), + [sym_raw_string_literal] = ACTIONS(2051), + [sym_float_literal] = ACTIONS(2051), + [sym_block_comment] = ACTIONS(3), + }, + [484] = { + [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(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_pattern_repeat1] = STATE(494), + [sym_identifier] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_RPAREN] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [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(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2063), + [sym_super] = ACTIONS(2063), + [sym_crate] = ACTIONS(2063), + [sym_metavariable] = ACTIONS(2081), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, [485] = { - [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__token_pattern] = STATE(491), + [sym_token_tree_pattern] = STATE(491), + [sym_token_binding_pattern] = STATE(491), + [sym_token_repetition_pattern] = STATE(491), + [sym__literal] = STATE(491), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_pattern_repeat1] = STATE(491), + [sym_identifier] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_RPAREN] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_u8] = ACTIONS(2083), + [anon_sym_i8] = ACTIONS(2083), + [anon_sym_u16] = ACTIONS(2083), + [anon_sym_i16] = ACTIONS(2083), + [anon_sym_u32] = ACTIONS(2083), + [anon_sym_i32] = ACTIONS(2083), + [anon_sym_u64] = ACTIONS(2083), + [anon_sym_i64] = ACTIONS(2083), + [anon_sym_u128] = ACTIONS(2083), + [anon_sym_i128] = ACTIONS(2083), + [anon_sym_isize] = ACTIONS(2083), + [anon_sym_usize] = ACTIONS(2083), + [anon_sym_f32] = ACTIONS(2083), + [anon_sym_f64] = ACTIONS(2083), + [anon_sym_bool] = ACTIONS(2083), + [anon_sym_str] = ACTIONS(2083), + [anon_sym_char] = ACTIONS(2083), + [aux_sym__non_special_token_token1] = ACTIONS(2083), + [anon_sym_SQUOTE] = ACTIONS(2083), + [anon_sym_as] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_await] = ACTIONS(2083), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_default] = ACTIONS(2083), + [anon_sym_enum] = ACTIONS(2083), + [anon_sym_fn] = ACTIONS(2083), + [anon_sym_for] = ACTIONS(2083), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_impl] = ACTIONS(2083), + [anon_sym_let] = ACTIONS(2083), + [anon_sym_loop] = ACTIONS(2083), + [anon_sym_match] = ACTIONS(2083), + [anon_sym_mod] = ACTIONS(2083), + [anon_sym_pub] = ACTIONS(2083), + [anon_sym_return] = ACTIONS(2083), + [anon_sym_static] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(2083), + [anon_sym_trait] = ACTIONS(2083), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_union] = ACTIONS(2083), + [anon_sym_unsafe] = ACTIONS(2083), + [anon_sym_use] = ACTIONS(2083), + [anon_sym_where] = ACTIONS(2083), + [anon_sym_while] = ACTIONS(2083), + [sym_mutable_specifier] = ACTIONS(2083), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2083), + [sym_super] = ACTIONS(2083), + [sym_crate] = ACTIONS(2083), + [sym_metavariable] = ACTIONS(2081), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, [486] = { - [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__token_pattern] = STATE(492), + [sym_token_tree_pattern] = STATE(492), + [sym_token_binding_pattern] = STATE(492), + [sym_token_repetition_pattern] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_pattern_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_u8] = ACTIONS(2087), + [anon_sym_i8] = ACTIONS(2087), + [anon_sym_u16] = ACTIONS(2087), + [anon_sym_i16] = ACTIONS(2087), + [anon_sym_u32] = ACTIONS(2087), + [anon_sym_i32] = ACTIONS(2087), + [anon_sym_u64] = ACTIONS(2087), + [anon_sym_i64] = ACTIONS(2087), + [anon_sym_u128] = ACTIONS(2087), + [anon_sym_i128] = ACTIONS(2087), + [anon_sym_isize] = ACTIONS(2087), + [anon_sym_usize] = ACTIONS(2087), + [anon_sym_f32] = ACTIONS(2087), + [anon_sym_f64] = ACTIONS(2087), + [anon_sym_bool] = ACTIONS(2087), + [anon_sym_str] = ACTIONS(2087), + [anon_sym_char] = ACTIONS(2087), + [aux_sym__non_special_token_token1] = ACTIONS(2087), + [anon_sym_SQUOTE] = ACTIONS(2087), + [anon_sym_as] = ACTIONS(2087), + [anon_sym_async] = ACTIONS(2087), + [anon_sym_await] = ACTIONS(2087), + [anon_sym_break] = ACTIONS(2087), + [anon_sym_const] = ACTIONS(2087), + [anon_sym_continue] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(2087), + [anon_sym_enum] = ACTIONS(2087), + [anon_sym_fn] = ACTIONS(2087), + [anon_sym_for] = ACTIONS(2087), + [anon_sym_if] = ACTIONS(2087), + [anon_sym_impl] = ACTIONS(2087), + [anon_sym_let] = ACTIONS(2087), + [anon_sym_loop] = ACTIONS(2087), + [anon_sym_match] = ACTIONS(2087), + [anon_sym_mod] = ACTIONS(2087), + [anon_sym_pub] = ACTIONS(2087), + [anon_sym_return] = ACTIONS(2087), + [anon_sym_static] = ACTIONS(2087), + [anon_sym_struct] = ACTIONS(2087), + [anon_sym_trait] = ACTIONS(2087), + [anon_sym_type] = ACTIONS(2087), + [anon_sym_union] = ACTIONS(2087), + [anon_sym_unsafe] = ACTIONS(2087), + [anon_sym_use] = ACTIONS(2087), + [anon_sym_where] = ACTIONS(2087), + [anon_sym_while] = ACTIONS(2087), + [sym_mutable_specifier] = ACTIONS(2087), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2087), + [sym_super] = ACTIONS(2087), + [sym_crate] = ACTIONS(2087), + [sym_metavariable] = ACTIONS(2081), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, [487] = { - [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__token_pattern] = STATE(493), + [sym_token_tree_pattern] = STATE(493), + [sym_token_binding_pattern] = STATE(493), + [sym_token_repetition_pattern] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_pattern_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2085), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_u8] = ACTIONS(2089), + [anon_sym_i8] = ACTIONS(2089), + [anon_sym_u16] = ACTIONS(2089), + [anon_sym_i16] = ACTIONS(2089), + [anon_sym_u32] = ACTIONS(2089), + [anon_sym_i32] = ACTIONS(2089), + [anon_sym_u64] = ACTIONS(2089), + [anon_sym_i64] = ACTIONS(2089), + [anon_sym_u128] = ACTIONS(2089), + [anon_sym_i128] = ACTIONS(2089), + [anon_sym_isize] = ACTIONS(2089), + [anon_sym_usize] = ACTIONS(2089), + [anon_sym_f32] = ACTIONS(2089), + [anon_sym_f64] = ACTIONS(2089), + [anon_sym_bool] = ACTIONS(2089), + [anon_sym_str] = ACTIONS(2089), + [anon_sym_char] = ACTIONS(2089), + [aux_sym__non_special_token_token1] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_as] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_default] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [anon_sym_fn] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_impl] = ACTIONS(2089), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_loop] = ACTIONS(2089), + [anon_sym_match] = ACTIONS(2089), + [anon_sym_mod] = ACTIONS(2089), + [anon_sym_pub] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(2089), + [anon_sym_trait] = ACTIONS(2089), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_union] = ACTIONS(2089), + [anon_sym_unsafe] = ACTIONS(2089), + [anon_sym_use] = ACTIONS(2089), + [anon_sym_where] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [sym_mutable_specifier] = ACTIONS(2089), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2089), + [sym_super] = ACTIONS(2089), + [sym_crate] = ACTIONS(2089), + [sym_metavariable] = ACTIONS(2081), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, [488] = { - [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), + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_macro_invocation] = STATE(2506), + [sym_scoped_identifier] = STATE(1571), + [sym_scoped_type_identifier] = STATE(1936), + [sym_match_arm] = STATE(515), + [sym_last_match_arm] = STATE(2476), + [sym_match_pattern] = STATE(2451), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1924), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(515), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -59638,75 +59320,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [489] = { - [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), + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_macro_invocation] = STATE(2506), + [sym_scoped_identifier] = STATE(1571), + [sym_scoped_type_identifier] = STATE(1936), + [sym_match_arm] = STATE(515), + [sym_last_match_arm] = STATE(2547), + [sym_match_pattern] = STATE(2451), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1924), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(515), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -59714,151 +59396,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [490] = { - [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_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_macro_invocation] = STATE(2506), + [sym_scoped_identifier] = STATE(1571), + [sym_scoped_type_identifier] = STATE(1936), + [sym_match_arm] = STATE(515), [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), + [sym_match_pattern] = STATE(2451), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1924), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(515), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -59866,2116 +59472,1538 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, + [491] = { + [sym__token_pattern] = STATE(253), + [sym_token_tree_pattern] = STATE(253), + [sym_token_binding_pattern] = STATE(253), + [sym_token_repetition_pattern] = STATE(253), + [sym__literal] = STATE(253), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_RPAREN] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_u8] = ACTIONS(2091), + [anon_sym_i8] = ACTIONS(2091), + [anon_sym_u16] = ACTIONS(2091), + [anon_sym_i16] = ACTIONS(2091), + [anon_sym_u32] = ACTIONS(2091), + [anon_sym_i32] = ACTIONS(2091), + [anon_sym_u64] = ACTIONS(2091), + [anon_sym_i64] = ACTIONS(2091), + [anon_sym_u128] = ACTIONS(2091), + [anon_sym_i128] = ACTIONS(2091), + [anon_sym_isize] = ACTIONS(2091), + [anon_sym_usize] = ACTIONS(2091), + [anon_sym_f32] = ACTIONS(2091), + [anon_sym_f64] = ACTIONS(2091), + [anon_sym_bool] = ACTIONS(2091), + [anon_sym_str] = ACTIONS(2091), + [anon_sym_char] = ACTIONS(2091), + [aux_sym__non_special_token_token1] = ACTIONS(2091), + [anon_sym_SQUOTE] = ACTIONS(2091), + [anon_sym_as] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_default] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_fn] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_impl] = ACTIONS(2091), + [anon_sym_let] = ACTIONS(2091), + [anon_sym_loop] = ACTIONS(2091), + [anon_sym_match] = ACTIONS(2091), + [anon_sym_mod] = ACTIONS(2091), + [anon_sym_pub] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_trait] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_use] = ACTIONS(2091), + [anon_sym_where] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [sym_mutable_specifier] = ACTIONS(2091), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2091), + [sym_super] = ACTIONS(2091), + [sym_crate] = ACTIONS(2091), + [sym_metavariable] = ACTIONS(2081), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [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__token_pattern] = STATE(253), + [sym_token_tree_pattern] = STATE(253), + [sym_token_binding_pattern] = STATE(253), + [sym_token_repetition_pattern] = STATE(253), + [sym__literal] = STATE(253), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_u8] = ACTIONS(2091), + [anon_sym_i8] = ACTIONS(2091), + [anon_sym_u16] = ACTIONS(2091), + [anon_sym_i16] = ACTIONS(2091), + [anon_sym_u32] = ACTIONS(2091), + [anon_sym_i32] = ACTIONS(2091), + [anon_sym_u64] = ACTIONS(2091), + [anon_sym_i64] = ACTIONS(2091), + [anon_sym_u128] = ACTIONS(2091), + [anon_sym_i128] = ACTIONS(2091), + [anon_sym_isize] = ACTIONS(2091), + [anon_sym_usize] = ACTIONS(2091), + [anon_sym_f32] = ACTIONS(2091), + [anon_sym_f64] = ACTIONS(2091), + [anon_sym_bool] = ACTIONS(2091), + [anon_sym_str] = ACTIONS(2091), + [anon_sym_char] = ACTIONS(2091), + [aux_sym__non_special_token_token1] = ACTIONS(2091), + [anon_sym_SQUOTE] = ACTIONS(2091), + [anon_sym_as] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_default] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_fn] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_impl] = ACTIONS(2091), + [anon_sym_let] = ACTIONS(2091), + [anon_sym_loop] = ACTIONS(2091), + [anon_sym_match] = ACTIONS(2091), + [anon_sym_mod] = ACTIONS(2091), + [anon_sym_pub] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_trait] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_use] = ACTIONS(2091), + [anon_sym_where] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [sym_mutable_specifier] = ACTIONS(2091), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2091), + [sym_super] = ACTIONS(2091), + [sym_crate] = ACTIONS(2091), + [sym_metavariable] = ACTIONS(2081), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [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(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), - [anon_sym_i16] = ACTIONS(2069), - [anon_sym_u32] = ACTIONS(2069), - [anon_sym_i32] = ACTIONS(2069), - [anon_sym_u64] = ACTIONS(2069), - [anon_sym_i64] = ACTIONS(2069), - [anon_sym_u128] = ACTIONS(2069), - [anon_sym_i128] = ACTIONS(2069), - [anon_sym_isize] = ACTIONS(2069), - [anon_sym_usize] = ACTIONS(2069), - [anon_sym_f32] = ACTIONS(2069), - [anon_sym_f64] = ACTIONS(2069), - [anon_sym_bool] = ACTIONS(2069), - [anon_sym_str] = ACTIONS(2069), - [anon_sym_char] = ACTIONS(2069), - [aux_sym__non_special_token_token1] = ACTIONS(2069), - [anon_sym_SQUOTE] = ACTIONS(2069), - [anon_sym_as] = ACTIONS(2069), - [anon_sym_async] = ACTIONS(2069), - [anon_sym_await] = ACTIONS(2069), - [anon_sym_break] = ACTIONS(2069), - [anon_sym_const] = ACTIONS(2069), - [anon_sym_continue] = ACTIONS(2069), - [anon_sym_default] = ACTIONS(2069), - [anon_sym_enum] = ACTIONS(2069), - [anon_sym_fn] = ACTIONS(2069), - [anon_sym_for] = ACTIONS(2069), - [anon_sym_if] = ACTIONS(2069), - [anon_sym_impl] = ACTIONS(2069), - [anon_sym_let] = ACTIONS(2069), - [anon_sym_loop] = ACTIONS(2069), - [anon_sym_match] = ACTIONS(2069), - [anon_sym_mod] = ACTIONS(2069), - [anon_sym_pub] = ACTIONS(2069), - [anon_sym_return] = ACTIONS(2069), - [anon_sym_static] = ACTIONS(2069), - [anon_sym_struct] = ACTIONS(2069), - [anon_sym_trait] = ACTIONS(2069), - [anon_sym_type] = ACTIONS(2069), - [anon_sym_union] = ACTIONS(2069), - [anon_sym_unsafe] = ACTIONS(2069), - [anon_sym_use] = ACTIONS(2069), - [anon_sym_where] = ACTIONS(2069), - [anon_sym_while] = ACTIONS(2069), - [sym_mutable_specifier] = ACTIONS(2069), - [sym_integer_literal] = ACTIONS(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(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym__token_pattern] = STATE(253), + [sym_token_tree_pattern] = STATE(253), + [sym_token_binding_pattern] = STATE(253), + [sym_token_repetition_pattern] = STATE(253), + [sym__literal] = STATE(253), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2093), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_u8] = ACTIONS(2091), + [anon_sym_i8] = ACTIONS(2091), + [anon_sym_u16] = ACTIONS(2091), + [anon_sym_i16] = ACTIONS(2091), + [anon_sym_u32] = ACTIONS(2091), + [anon_sym_i32] = ACTIONS(2091), + [anon_sym_u64] = ACTIONS(2091), + [anon_sym_i64] = ACTIONS(2091), + [anon_sym_u128] = ACTIONS(2091), + [anon_sym_i128] = ACTIONS(2091), + [anon_sym_isize] = ACTIONS(2091), + [anon_sym_usize] = ACTIONS(2091), + [anon_sym_f32] = ACTIONS(2091), + [anon_sym_f64] = ACTIONS(2091), + [anon_sym_bool] = ACTIONS(2091), + [anon_sym_str] = ACTIONS(2091), + [anon_sym_char] = ACTIONS(2091), + [aux_sym__non_special_token_token1] = ACTIONS(2091), + [anon_sym_SQUOTE] = ACTIONS(2091), + [anon_sym_as] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_default] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_fn] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_impl] = ACTIONS(2091), + [anon_sym_let] = ACTIONS(2091), + [anon_sym_loop] = ACTIONS(2091), + [anon_sym_match] = ACTIONS(2091), + [anon_sym_mod] = ACTIONS(2091), + [anon_sym_pub] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_trait] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_use] = ACTIONS(2091), + [anon_sym_where] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [sym_mutable_specifier] = ACTIONS(2091), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2091), + [sym_super] = ACTIONS(2091), + [sym_crate] = ACTIONS(2091), + [sym_metavariable] = ACTIONS(2081), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, [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__token_pattern] = STATE(253), + [sym_token_tree_pattern] = STATE(253), + [sym_token_binding_pattern] = STATE(253), + [sym_token_repetition_pattern] = STATE(253), + [sym__literal] = STATE(253), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_RPAREN] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_u8] = ACTIONS(2091), + [anon_sym_i8] = ACTIONS(2091), + [anon_sym_u16] = ACTIONS(2091), + [anon_sym_i16] = ACTIONS(2091), + [anon_sym_u32] = ACTIONS(2091), + [anon_sym_i32] = ACTIONS(2091), + [anon_sym_u64] = ACTIONS(2091), + [anon_sym_i64] = ACTIONS(2091), + [anon_sym_u128] = ACTIONS(2091), + [anon_sym_i128] = ACTIONS(2091), + [anon_sym_isize] = ACTIONS(2091), + [anon_sym_usize] = ACTIONS(2091), + [anon_sym_f32] = ACTIONS(2091), + [anon_sym_f64] = ACTIONS(2091), + [anon_sym_bool] = ACTIONS(2091), + [anon_sym_str] = ACTIONS(2091), + [anon_sym_char] = ACTIONS(2091), + [aux_sym__non_special_token_token1] = ACTIONS(2091), + [anon_sym_SQUOTE] = ACTIONS(2091), + [anon_sym_as] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_default] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_fn] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_impl] = ACTIONS(2091), + [anon_sym_let] = ACTIONS(2091), + [anon_sym_loop] = ACTIONS(2091), + [anon_sym_match] = ACTIONS(2091), + [anon_sym_mod] = ACTIONS(2091), + [anon_sym_pub] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_trait] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_use] = ACTIONS(2091), + [anon_sym_where] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [sym_mutable_specifier] = ACTIONS(2091), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2091), + [sym_super] = ACTIONS(2091), + [sym_crate] = ACTIONS(2091), + [sym_metavariable] = ACTIONS(2081), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, [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(2010), - [anon_sym_RPAREN] = ACTIONS(2075), - [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), - [anon_sym_i16] = ACTIONS(2073), - [anon_sym_u32] = ACTIONS(2073), - [anon_sym_i32] = ACTIONS(2073), - [anon_sym_u64] = ACTIONS(2073), - [anon_sym_i64] = ACTIONS(2073), - [anon_sym_u128] = ACTIONS(2073), - [anon_sym_i128] = ACTIONS(2073), - [anon_sym_isize] = ACTIONS(2073), - [anon_sym_usize] = ACTIONS(2073), - [anon_sym_f32] = ACTIONS(2073), - [anon_sym_f64] = ACTIONS(2073), - [anon_sym_bool] = ACTIONS(2073), - [anon_sym_str] = ACTIONS(2073), - [anon_sym_char] = ACTIONS(2073), - [aux_sym__non_special_token_token1] = ACTIONS(2073), - [anon_sym_SQUOTE] = ACTIONS(2073), - [anon_sym_as] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2073), - [anon_sym_await] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_default] = ACTIONS(2073), - [anon_sym_enum] = ACTIONS(2073), - [anon_sym_fn] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_impl] = ACTIONS(2073), - [anon_sym_let] = ACTIONS(2073), - [anon_sym_loop] = ACTIONS(2073), - [anon_sym_match] = ACTIONS(2073), - [anon_sym_mod] = ACTIONS(2073), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_static] = ACTIONS(2073), - [anon_sym_struct] = ACTIONS(2073), - [anon_sym_trait] = ACTIONS(2073), - [anon_sym_type] = ACTIONS(2073), - [anon_sym_union] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(2073), - [anon_sym_use] = ACTIONS(2073), - [anon_sym_where] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [sym_mutable_specifier] = ACTIONS(2073), - [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(2026), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym__token_pattern] = STATE(253), + [sym_token_tree_pattern] = STATE(253), + [sym_token_binding_pattern] = STATE(253), + [sym_token_repetition_pattern] = STATE(253), + [sym__literal] = STATE(253), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2097), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_u8] = ACTIONS(2091), + [anon_sym_i8] = ACTIONS(2091), + [anon_sym_u16] = ACTIONS(2091), + [anon_sym_i16] = ACTIONS(2091), + [anon_sym_u32] = ACTIONS(2091), + [anon_sym_i32] = ACTIONS(2091), + [anon_sym_u64] = ACTIONS(2091), + [anon_sym_i64] = ACTIONS(2091), + [anon_sym_u128] = ACTIONS(2091), + [anon_sym_i128] = ACTIONS(2091), + [anon_sym_isize] = ACTIONS(2091), + [anon_sym_usize] = ACTIONS(2091), + [anon_sym_f32] = ACTIONS(2091), + [anon_sym_f64] = ACTIONS(2091), + [anon_sym_bool] = ACTIONS(2091), + [anon_sym_str] = ACTIONS(2091), + [anon_sym_char] = ACTIONS(2091), + [aux_sym__non_special_token_token1] = ACTIONS(2091), + [anon_sym_SQUOTE] = ACTIONS(2091), + [anon_sym_as] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_default] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_fn] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_impl] = ACTIONS(2091), + [anon_sym_let] = ACTIONS(2091), + [anon_sym_loop] = ACTIONS(2091), + [anon_sym_match] = ACTIONS(2091), + [anon_sym_mod] = ACTIONS(2091), + [anon_sym_pub] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_trait] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_use] = ACTIONS(2091), + [anon_sym_where] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [sym_mutable_specifier] = ACTIONS(2091), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2091), + [sym_super] = ACTIONS(2091), + [sym_crate] = ACTIONS(2091), + [sym_metavariable] = ACTIONS(2081), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, [496] = { - [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__token_pattern] = STATE(500), + [sym_token_tree_pattern] = STATE(500), + [sym_token_binding_pattern] = STATE(500), + [sym_token_repetition_pattern] = STATE(500), + [sym__literal] = STATE(500), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_pattern_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_RPAREN] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_u8] = ACTIONS(2099), + [anon_sym_i8] = ACTIONS(2099), + [anon_sym_u16] = ACTIONS(2099), + [anon_sym_i16] = ACTIONS(2099), + [anon_sym_u32] = ACTIONS(2099), + [anon_sym_i32] = ACTIONS(2099), + [anon_sym_u64] = ACTIONS(2099), + [anon_sym_i64] = ACTIONS(2099), + [anon_sym_u128] = ACTIONS(2099), + [anon_sym_i128] = ACTIONS(2099), + [anon_sym_isize] = ACTIONS(2099), + [anon_sym_usize] = ACTIONS(2099), + [anon_sym_f32] = ACTIONS(2099), + [anon_sym_f64] = ACTIONS(2099), + [anon_sym_bool] = ACTIONS(2099), + [anon_sym_str] = ACTIONS(2099), + [anon_sym_char] = ACTIONS(2099), + [aux_sym__non_special_token_token1] = ACTIONS(2099), + [anon_sym_SQUOTE] = ACTIONS(2099), + [anon_sym_as] = ACTIONS(2099), + [anon_sym_async] = ACTIONS(2099), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_break] = ACTIONS(2099), + [anon_sym_const] = ACTIONS(2099), + [anon_sym_continue] = ACTIONS(2099), + [anon_sym_default] = ACTIONS(2099), + [anon_sym_enum] = ACTIONS(2099), + [anon_sym_fn] = ACTIONS(2099), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_impl] = ACTIONS(2099), + [anon_sym_let] = ACTIONS(2099), + [anon_sym_loop] = ACTIONS(2099), + [anon_sym_match] = ACTIONS(2099), + [anon_sym_mod] = ACTIONS(2099), + [anon_sym_pub] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2099), + [anon_sym_static] = ACTIONS(2099), + [anon_sym_struct] = ACTIONS(2099), + [anon_sym_trait] = ACTIONS(2099), + [anon_sym_type] = ACTIONS(2099), + [anon_sym_union] = ACTIONS(2099), + [anon_sym_unsafe] = ACTIONS(2099), + [anon_sym_use] = ACTIONS(2099), + [anon_sym_where] = ACTIONS(2099), + [anon_sym_while] = ACTIONS(2099), + [sym_mutable_specifier] = ACTIONS(2099), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2099), + [sym_super] = ACTIONS(2099), + [sym_crate] = ACTIONS(2099), + [sym_metavariable] = ACTIONS(2081), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, [497] = { - [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_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__token_pattern] = STATE(253), + [sym_token_tree_pattern] = STATE(253), + [sym_token_binding_pattern] = STATE(253), + [sym_token_repetition_pattern] = STATE(253), + [sym__literal] = STATE(253), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_u8] = ACTIONS(2091), + [anon_sym_i8] = ACTIONS(2091), + [anon_sym_u16] = ACTIONS(2091), + [anon_sym_i16] = ACTIONS(2091), + [anon_sym_u32] = ACTIONS(2091), + [anon_sym_i32] = ACTIONS(2091), + [anon_sym_u64] = ACTIONS(2091), + [anon_sym_i64] = ACTIONS(2091), + [anon_sym_u128] = ACTIONS(2091), + [anon_sym_i128] = ACTIONS(2091), + [anon_sym_isize] = ACTIONS(2091), + [anon_sym_usize] = ACTIONS(2091), + [anon_sym_f32] = ACTIONS(2091), + [anon_sym_f64] = ACTIONS(2091), + [anon_sym_bool] = ACTIONS(2091), + [anon_sym_str] = ACTIONS(2091), + [anon_sym_char] = ACTIONS(2091), + [aux_sym__non_special_token_token1] = ACTIONS(2091), + [anon_sym_SQUOTE] = ACTIONS(2091), + [anon_sym_as] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_default] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_fn] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_impl] = ACTIONS(2091), + [anon_sym_let] = ACTIONS(2091), + [anon_sym_loop] = ACTIONS(2091), + [anon_sym_match] = ACTIONS(2091), + [anon_sym_mod] = ACTIONS(2091), + [anon_sym_pub] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_trait] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_use] = ACTIONS(2091), + [anon_sym_where] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [sym_mutable_specifier] = ACTIONS(2091), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2091), + [sym_super] = ACTIONS(2091), + [sym_crate] = ACTIONS(2091), + [sym_metavariable] = ACTIONS(2081), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, - [499] = { - [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_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(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(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(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(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(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(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(501), - [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(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(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), - [anon_sym_i16] = ACTIONS(2179), - [anon_sym_u32] = ACTIONS(2179), - [anon_sym_i32] = ACTIONS(2179), - [anon_sym_u64] = ACTIONS(2179), - [anon_sym_i64] = ACTIONS(2179), - [anon_sym_u128] = ACTIONS(2179), - [anon_sym_i128] = ACTIONS(2179), - [anon_sym_isize] = ACTIONS(2179), - [anon_sym_usize] = ACTIONS(2179), - [anon_sym_f32] = ACTIONS(2179), - [anon_sym_f64] = ACTIONS(2179), - [anon_sym_bool] = ACTIONS(2179), - [anon_sym_str] = ACTIONS(2179), - [anon_sym_char] = ACTIONS(2179), - [aux_sym__non_special_token_token1] = ACTIONS(2179), - [anon_sym_SQUOTE] = ACTIONS(2179), - [anon_sym_as] = ACTIONS(2179), - [anon_sym_async] = ACTIONS(2179), - [anon_sym_await] = ACTIONS(2179), - [anon_sym_break] = ACTIONS(2179), - [anon_sym_const] = ACTIONS(2179), - [anon_sym_continue] = ACTIONS(2179), - [anon_sym_default] = ACTIONS(2179), - [anon_sym_enum] = ACTIONS(2179), - [anon_sym_fn] = ACTIONS(2179), - [anon_sym_for] = ACTIONS(2179), - [anon_sym_if] = ACTIONS(2179), - [anon_sym_impl] = ACTIONS(2179), - [anon_sym_let] = ACTIONS(2179), - [anon_sym_loop] = ACTIONS(2179), - [anon_sym_match] = ACTIONS(2179), - [anon_sym_mod] = ACTIONS(2179), - [anon_sym_pub] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2179), - [anon_sym_static] = ACTIONS(2179), - [anon_sym_struct] = ACTIONS(2179), - [anon_sym_trait] = ACTIONS(2179), - [anon_sym_type] = ACTIONS(2179), - [anon_sym_union] = ACTIONS(2179), - [anon_sym_unsafe] = ACTIONS(2179), - [anon_sym_use] = ACTIONS(2179), - [anon_sym_where] = ACTIONS(2179), - [anon_sym_while] = ACTIONS(2179), - [sym_mutable_specifier] = ACTIONS(2179), - [sym_integer_literal] = ACTIONS(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(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [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(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), - [anon_sym_i16] = ACTIONS(2183), - [anon_sym_u32] = ACTIONS(2183), - [anon_sym_i32] = ACTIONS(2183), - [anon_sym_u64] = ACTIONS(2183), - [anon_sym_i64] = ACTIONS(2183), - [anon_sym_u128] = ACTIONS(2183), - [anon_sym_i128] = ACTIONS(2183), - [anon_sym_isize] = ACTIONS(2183), - [anon_sym_usize] = ACTIONS(2183), - [anon_sym_f32] = ACTIONS(2183), - [anon_sym_f64] = ACTIONS(2183), - [anon_sym_bool] = ACTIONS(2183), - [anon_sym_str] = ACTIONS(2183), - [anon_sym_char] = ACTIONS(2183), - [aux_sym__non_special_token_token1] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_default] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [anon_sym_fn] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_impl] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_loop] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_mod] = ACTIONS(2183), - [anon_sym_pub] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2183), - [anon_sym_trait] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_union] = ACTIONS(2183), - [anon_sym_unsafe] = ACTIONS(2183), - [anon_sym_use] = ACTIONS(2183), - [anon_sym_where] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [sym_mutable_specifier] = ACTIONS(2183), - [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(2185), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), - [sym_block_comment] = ACTIONS(3), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [498] = { + [sym__token_pattern] = STATE(497), + [sym_token_tree_pattern] = STATE(497), + [sym_token_binding_pattern] = STATE(497), + [sym_token_repetition_pattern] = STATE(497), + [sym__literal] = STATE(497), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_pattern_repeat1] = STATE(497), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_u8] = ACTIONS(2103), + [anon_sym_i8] = ACTIONS(2103), + [anon_sym_u16] = ACTIONS(2103), + [anon_sym_i16] = ACTIONS(2103), + [anon_sym_u32] = ACTIONS(2103), + [anon_sym_i32] = ACTIONS(2103), + [anon_sym_u64] = ACTIONS(2103), + [anon_sym_i64] = ACTIONS(2103), + [anon_sym_u128] = ACTIONS(2103), + [anon_sym_i128] = ACTIONS(2103), + [anon_sym_isize] = ACTIONS(2103), + [anon_sym_usize] = ACTIONS(2103), + [anon_sym_f32] = ACTIONS(2103), + [anon_sym_f64] = ACTIONS(2103), + [anon_sym_bool] = ACTIONS(2103), + [anon_sym_str] = ACTIONS(2103), + [anon_sym_char] = ACTIONS(2103), + [aux_sym__non_special_token_token1] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_as] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2103), + [anon_sym_default] = ACTIONS(2103), + [anon_sym_enum] = ACTIONS(2103), + [anon_sym_fn] = ACTIONS(2103), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2103), + [anon_sym_impl] = ACTIONS(2103), + [anon_sym_let] = ACTIONS(2103), + [anon_sym_loop] = ACTIONS(2103), + [anon_sym_match] = ACTIONS(2103), + [anon_sym_mod] = ACTIONS(2103), + [anon_sym_pub] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2103), + [anon_sym_static] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2103), + [anon_sym_trait] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2103), + [anon_sym_union] = ACTIONS(2103), + [anon_sym_unsafe] = ACTIONS(2103), + [anon_sym_use] = ACTIONS(2103), + [anon_sym_where] = ACTIONS(2103), + [anon_sym_while] = ACTIONS(2103), + [sym_mutable_specifier] = ACTIONS(2103), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2103), + [sym_super] = ACTIONS(2103), + [sym_crate] = ACTIONS(2103), + [sym_metavariable] = ACTIONS(2081), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [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), + [499] = { + [sym__token_pattern] = STATE(495), + [sym_token_tree_pattern] = STATE(495), + [sym_token_binding_pattern] = STATE(495), + [sym_token_repetition_pattern] = STATE(495), + [sym__literal] = STATE(495), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_pattern_repeat1] = STATE(495), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_RBRACK] = ACTIONS(2101), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_u8] = ACTIONS(2105), + [anon_sym_i8] = ACTIONS(2105), + [anon_sym_u16] = ACTIONS(2105), + [anon_sym_i16] = ACTIONS(2105), + [anon_sym_u32] = ACTIONS(2105), + [anon_sym_i32] = ACTIONS(2105), + [anon_sym_u64] = ACTIONS(2105), + [anon_sym_i64] = ACTIONS(2105), + [anon_sym_u128] = ACTIONS(2105), + [anon_sym_i128] = ACTIONS(2105), + [anon_sym_isize] = ACTIONS(2105), + [anon_sym_usize] = ACTIONS(2105), + [anon_sym_f32] = ACTIONS(2105), + [anon_sym_f64] = ACTIONS(2105), + [anon_sym_bool] = ACTIONS(2105), + [anon_sym_str] = ACTIONS(2105), + [anon_sym_char] = ACTIONS(2105), + [aux_sym__non_special_token_token1] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_impl] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_loop] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_mod] = ACTIONS(2105), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_trait] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(2105), + [anon_sym_unsafe] = ACTIONS(2105), + [anon_sym_use] = ACTIONS(2105), + [anon_sym_where] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [sym_mutable_specifier] = ACTIONS(2105), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_crate] = ACTIONS(2105), + [sym_metavariable] = ACTIONS(2081), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [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), + [500] = { + [sym__token_pattern] = STATE(253), + [sym_token_tree_pattern] = STATE(253), + [sym_token_binding_pattern] = STATE(253), + [sym_token_repetition_pattern] = STATE(253), + [sym__literal] = STATE(253), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_RPAREN] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_u8] = ACTIONS(2091), + [anon_sym_i8] = ACTIONS(2091), + [anon_sym_u16] = ACTIONS(2091), + [anon_sym_i16] = ACTIONS(2091), + [anon_sym_u32] = ACTIONS(2091), + [anon_sym_i32] = ACTIONS(2091), + [anon_sym_u64] = ACTIONS(2091), + [anon_sym_i64] = ACTIONS(2091), + [anon_sym_u128] = ACTIONS(2091), + [anon_sym_i128] = ACTIONS(2091), + [anon_sym_isize] = ACTIONS(2091), + [anon_sym_usize] = ACTIONS(2091), + [anon_sym_f32] = ACTIONS(2091), + [anon_sym_f64] = ACTIONS(2091), + [anon_sym_bool] = ACTIONS(2091), + [anon_sym_str] = ACTIONS(2091), + [anon_sym_char] = ACTIONS(2091), + [aux_sym__non_special_token_token1] = ACTIONS(2091), + [anon_sym_SQUOTE] = ACTIONS(2091), + [anon_sym_as] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_default] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_fn] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_impl] = ACTIONS(2091), + [anon_sym_let] = ACTIONS(2091), + [anon_sym_loop] = ACTIONS(2091), + [anon_sym_match] = ACTIONS(2091), + [anon_sym_mod] = ACTIONS(2091), + [anon_sym_pub] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_trait] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_use] = ACTIONS(2091), + [anon_sym_where] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [sym_mutable_specifier] = ACTIONS(2091), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2091), + [sym_super] = ACTIONS(2091), + [sym_crate] = ACTIONS(2091), + [sym_metavariable] = ACTIONS(2081), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [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), + [501] = { + [sym_delim_token_tree] = STATE(504), + [sym__delim_tokens] = STATE(504), + [sym__non_delim_token] = STATE(504), + [sym__literal] = STATE(504), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(504), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_RBRACK] = ACTIONS(2115), + [anon_sym_DOLLAR] = ACTIONS(2107), + [anon_sym_u8] = ACTIONS(2107), + [anon_sym_i8] = ACTIONS(2107), + [anon_sym_u16] = ACTIONS(2107), + [anon_sym_i16] = ACTIONS(2107), + [anon_sym_u32] = ACTIONS(2107), + [anon_sym_i32] = ACTIONS(2107), + [anon_sym_u64] = ACTIONS(2107), + [anon_sym_i64] = ACTIONS(2107), + [anon_sym_u128] = ACTIONS(2107), + [anon_sym_i128] = ACTIONS(2107), + [anon_sym_isize] = ACTIONS(2107), + [anon_sym_usize] = ACTIONS(2107), + [anon_sym_f32] = ACTIONS(2107), + [anon_sym_f64] = ACTIONS(2107), + [anon_sym_bool] = ACTIONS(2107), + [anon_sym_str] = ACTIONS(2107), + [anon_sym_char] = ACTIONS(2107), + [aux_sym__non_special_token_token1] = ACTIONS(2107), + [anon_sym_SQUOTE] = ACTIONS(2107), + [anon_sym_as] = ACTIONS(2107), + [anon_sym_async] = ACTIONS(2107), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_const] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2107), + [anon_sym_default] = ACTIONS(2107), + [anon_sym_enum] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(2107), + [anon_sym_for] = ACTIONS(2107), + [anon_sym_if] = ACTIONS(2107), + [anon_sym_impl] = ACTIONS(2107), + [anon_sym_let] = ACTIONS(2107), + [anon_sym_loop] = ACTIONS(2107), + [anon_sym_match] = ACTIONS(2107), + [anon_sym_mod] = ACTIONS(2107), + [anon_sym_pub] = ACTIONS(2107), + [anon_sym_return] = ACTIONS(2107), + [anon_sym_static] = ACTIONS(2107), + [anon_sym_struct] = ACTIONS(2107), + [anon_sym_trait] = ACTIONS(2107), + [anon_sym_type] = ACTIONS(2107), + [anon_sym_union] = ACTIONS(2107), + [anon_sym_unsafe] = ACTIONS(2107), + [anon_sym_use] = ACTIONS(2107), + [anon_sym_where] = ACTIONS(2107), + [anon_sym_while] = ACTIONS(2107), + [sym_mutable_specifier] = ACTIONS(2107), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2107), + [sym_super] = ACTIONS(2107), + [sym_crate] = ACTIONS(2107), + [sym_metavariable] = ACTIONS(2117), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [502] = { + [sym_delim_token_tree] = STATE(510), + [sym__delim_tokens] = STATE(510), + [sym__non_delim_token] = STATE(510), + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(510), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2119), + [anon_sym_u8] = ACTIONS(2119), + [anon_sym_i8] = ACTIONS(2119), + [anon_sym_u16] = ACTIONS(2119), + [anon_sym_i16] = ACTIONS(2119), + [anon_sym_u32] = ACTIONS(2119), + [anon_sym_i32] = ACTIONS(2119), + [anon_sym_u64] = ACTIONS(2119), + [anon_sym_i64] = ACTIONS(2119), + [anon_sym_u128] = ACTIONS(2119), + [anon_sym_i128] = ACTIONS(2119), + [anon_sym_isize] = ACTIONS(2119), + [anon_sym_usize] = ACTIONS(2119), + [anon_sym_f32] = ACTIONS(2119), + [anon_sym_f64] = ACTIONS(2119), + [anon_sym_bool] = ACTIONS(2119), + [anon_sym_str] = ACTIONS(2119), + [anon_sym_char] = ACTIONS(2119), + [aux_sym__non_special_token_token1] = ACTIONS(2119), + [anon_sym_SQUOTE] = ACTIONS(2119), + [anon_sym_as] = ACTIONS(2119), + [anon_sym_async] = ACTIONS(2119), + [anon_sym_await] = ACTIONS(2119), + [anon_sym_break] = ACTIONS(2119), + [anon_sym_const] = ACTIONS(2119), + [anon_sym_continue] = ACTIONS(2119), + [anon_sym_default] = ACTIONS(2119), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_fn] = ACTIONS(2119), + [anon_sym_for] = ACTIONS(2119), + [anon_sym_if] = ACTIONS(2119), + [anon_sym_impl] = ACTIONS(2119), + [anon_sym_let] = ACTIONS(2119), + [anon_sym_loop] = ACTIONS(2119), + [anon_sym_match] = ACTIONS(2119), + [anon_sym_mod] = ACTIONS(2119), + [anon_sym_pub] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2119), + [anon_sym_static] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(2119), + [anon_sym_trait] = ACTIONS(2119), + [anon_sym_type] = ACTIONS(2119), + [anon_sym_union] = ACTIONS(2119), + [anon_sym_unsafe] = ACTIONS(2119), + [anon_sym_use] = ACTIONS(2119), + [anon_sym_where] = ACTIONS(2119), + [anon_sym_while] = ACTIONS(2119), + [sym_mutable_specifier] = ACTIONS(2119), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2119), + [sym_super] = ACTIONS(2119), + [sym_crate] = ACTIONS(2119), + [sym_metavariable] = ACTIONS(2123), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [503] = { + [sym_delim_token_tree] = STATE(281), + [sym__delim_tokens] = STATE(281), + [sym__non_delim_token] = STATE(281), + [sym__literal] = STATE(281), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_RBRACK] = ACTIONS(2127), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__non_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2129), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [504] = { + [sym_delim_token_tree] = STATE(281), + [sym__delim_tokens] = STATE(281), + [sym__non_delim_token] = STATE(281), + [sym__literal] = STATE(281), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_RBRACK] = ACTIONS(2131), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__non_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2129), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [505] = { + [sym_delim_token_tree] = STATE(281), + [sym__delim_tokens] = STATE(281), + [sym__non_delim_token] = STATE(281), + [sym__literal] = STATE(281), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__non_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2129), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [506] = { + [sym_delim_token_tree] = STATE(281), + [sym__delim_tokens] = STATE(281), + [sym__non_delim_token] = STATE(281), + [sym__literal] = STATE(281), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__non_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2129), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [507] = { + [sym_delim_token_tree] = STATE(281), + [sym__delim_tokens] = STATE(281), + [sym__non_delim_token] = STATE(281), + [sym__literal] = STATE(281), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_RBRACK] = ACTIONS(2133), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__non_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2129), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [508] = { + [sym_delim_token_tree] = STATE(281), + [sym__delim_tokens] = STATE(281), + [sym__non_delim_token] = STATE(281), + [sym__literal] = STATE(281), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__non_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2129), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [509] = { + [sym_delim_token_tree] = STATE(526), + [sym__delim_tokens] = STATE(526), + [sym__non_delim_token] = STATE(526), + [sym__literal] = STATE(526), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(526), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2135), + [anon_sym_u8] = ACTIONS(2135), + [anon_sym_i8] = ACTIONS(2135), + [anon_sym_u16] = ACTIONS(2135), + [anon_sym_i16] = ACTIONS(2135), + [anon_sym_u32] = ACTIONS(2135), + [anon_sym_i32] = ACTIONS(2135), + [anon_sym_u64] = ACTIONS(2135), + [anon_sym_i64] = ACTIONS(2135), + [anon_sym_u128] = ACTIONS(2135), + [anon_sym_i128] = ACTIONS(2135), + [anon_sym_isize] = ACTIONS(2135), + [anon_sym_usize] = ACTIONS(2135), + [anon_sym_f32] = ACTIONS(2135), + [anon_sym_f64] = ACTIONS(2135), + [anon_sym_bool] = ACTIONS(2135), + [anon_sym_str] = ACTIONS(2135), + [anon_sym_char] = ACTIONS(2135), + [aux_sym__non_special_token_token1] = ACTIONS(2135), + [anon_sym_SQUOTE] = ACTIONS(2135), + [anon_sym_as] = ACTIONS(2135), + [anon_sym_async] = ACTIONS(2135), + [anon_sym_await] = ACTIONS(2135), + [anon_sym_break] = ACTIONS(2135), + [anon_sym_const] = ACTIONS(2135), + [anon_sym_continue] = ACTIONS(2135), + [anon_sym_default] = ACTIONS(2135), + [anon_sym_enum] = ACTIONS(2135), + [anon_sym_fn] = ACTIONS(2135), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2135), + [anon_sym_impl] = ACTIONS(2135), + [anon_sym_let] = ACTIONS(2135), + [anon_sym_loop] = ACTIONS(2135), + [anon_sym_match] = ACTIONS(2135), + [anon_sym_mod] = ACTIONS(2135), + [anon_sym_pub] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2135), + [anon_sym_static] = ACTIONS(2135), + [anon_sym_struct] = ACTIONS(2135), + [anon_sym_trait] = ACTIONS(2135), + [anon_sym_type] = ACTIONS(2135), + [anon_sym_union] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2135), + [anon_sym_use] = ACTIONS(2135), + [anon_sym_where] = ACTIONS(2135), + [anon_sym_while] = ACTIONS(2135), + [sym_mutable_specifier] = ACTIONS(2135), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2135), + [sym_super] = ACTIONS(2135), + [sym_crate] = ACTIONS(2135), + [sym_metavariable] = ACTIONS(2139), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [510] = { + [sym_delim_token_tree] = STATE(281), + [sym__delim_tokens] = STATE(281), + [sym__non_delim_token] = STATE(281), + [sym__literal] = STATE(281), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__non_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2129), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [511] = { + [sym_delim_token_tree] = STATE(527), + [sym__delim_tokens] = STATE(527), + [sym__non_delim_token] = STATE(527), + [sym__literal] = STATE(527), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(527), [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2141), [anon_sym_u8] = ACTIONS(2141), [anon_sym_i8] = ACTIONS(2141), [anon_sym_u16] = ACTIONS(2141), @@ -62023,329 +61051,409 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), [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_metavariable] = ACTIONS(2143), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, - [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(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), - [anon_sym_i16] = ACTIONS(2197), - [anon_sym_u32] = ACTIONS(2197), - [anon_sym_i32] = ACTIONS(2197), - [anon_sym_u64] = ACTIONS(2197), - [anon_sym_i64] = ACTIONS(2197), - [anon_sym_u128] = ACTIONS(2197), - [anon_sym_i128] = ACTIONS(2197), - [anon_sym_isize] = ACTIONS(2197), - [anon_sym_usize] = ACTIONS(2197), - [anon_sym_f32] = ACTIONS(2197), - [anon_sym_f64] = ACTIONS(2197), - [anon_sym_bool] = ACTIONS(2197), - [anon_sym_str] = ACTIONS(2197), - [anon_sym_char] = ACTIONS(2197), - [aux_sym__non_special_token_token1] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_default] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [anon_sym_fn] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_impl] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_loop] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_mod] = ACTIONS(2197), - [anon_sym_pub] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(2197), - [anon_sym_trait] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_union] = ACTIONS(2197), - [anon_sym_unsafe] = ACTIONS(2197), - [anon_sym_use] = ACTIONS(2197), - [anon_sym_where] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [sym_mutable_specifier] = ACTIONS(2197), - [sym_integer_literal] = ACTIONS(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(2201), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [512] = { + [sym_delim_token_tree] = STATE(528), + [sym__delim_tokens] = STATE(528), + [sym__non_delim_token] = STATE(528), + [sym__literal] = STATE(528), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(528), + [sym_identifier] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_RBRACK] = ACTIONS(2137), + [anon_sym_DOLLAR] = ACTIONS(2145), + [anon_sym_u8] = ACTIONS(2145), + [anon_sym_i8] = ACTIONS(2145), + [anon_sym_u16] = ACTIONS(2145), + [anon_sym_i16] = ACTIONS(2145), + [anon_sym_u32] = ACTIONS(2145), + [anon_sym_i32] = ACTIONS(2145), + [anon_sym_u64] = ACTIONS(2145), + [anon_sym_i64] = ACTIONS(2145), + [anon_sym_u128] = ACTIONS(2145), + [anon_sym_i128] = ACTIONS(2145), + [anon_sym_isize] = ACTIONS(2145), + [anon_sym_usize] = ACTIONS(2145), + [anon_sym_f32] = ACTIONS(2145), + [anon_sym_f64] = ACTIONS(2145), + [anon_sym_bool] = ACTIONS(2145), + [anon_sym_str] = ACTIONS(2145), + [anon_sym_char] = ACTIONS(2145), + [aux_sym__non_special_token_token1] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_as] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_default] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2145), + [anon_sym_fn] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_impl] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_loop] = ACTIONS(2145), + [anon_sym_match] = ACTIONS(2145), + [anon_sym_mod] = ACTIONS(2145), + [anon_sym_pub] = ACTIONS(2145), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2145), + [anon_sym_trait] = ACTIONS(2145), + [anon_sym_type] = ACTIONS(2145), + [anon_sym_union] = ACTIONS(2145), + [anon_sym_unsafe] = ACTIONS(2145), + [anon_sym_use] = ACTIONS(2145), + [anon_sym_where] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [sym_mutable_specifier] = ACTIONS(2145), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2145), + [sym_super] = ACTIONS(2145), + [sym_crate] = ACTIONS(2145), + [sym_metavariable] = ACTIONS(2147), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, - [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), + [513] = { + [sym_delim_token_tree] = STATE(520), + [sym__delim_tokens] = STATE(520), + [sym__non_delim_token] = STATE(520), + [sym__literal] = STATE(520), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(520), + [sym_identifier] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2149), + [anon_sym_i8] = ACTIONS(2149), + [anon_sym_u16] = ACTIONS(2149), + [anon_sym_i16] = ACTIONS(2149), + [anon_sym_u32] = ACTIONS(2149), + [anon_sym_i32] = ACTIONS(2149), + [anon_sym_u64] = ACTIONS(2149), + [anon_sym_i64] = ACTIONS(2149), + [anon_sym_u128] = ACTIONS(2149), + [anon_sym_i128] = ACTIONS(2149), + [anon_sym_isize] = ACTIONS(2149), + [anon_sym_usize] = ACTIONS(2149), + [anon_sym_f32] = ACTIONS(2149), + [anon_sym_f64] = ACTIONS(2149), + [anon_sym_bool] = ACTIONS(2149), + [anon_sym_str] = ACTIONS(2149), + [anon_sym_char] = ACTIONS(2149), + [aux_sym__non_special_token_token1] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2149), + [anon_sym_as] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_default] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), + [anon_sym_fn] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_impl] = ACTIONS(2149), + [anon_sym_let] = ACTIONS(2149), + [anon_sym_loop] = ACTIONS(2149), + [anon_sym_match] = ACTIONS(2149), + [anon_sym_mod] = ACTIONS(2149), + [anon_sym_pub] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_static] = ACTIONS(2149), + [anon_sym_struct] = ACTIONS(2149), + [anon_sym_trait] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_union] = ACTIONS(2149), + [anon_sym_unsafe] = ACTIONS(2149), + [anon_sym_use] = ACTIONS(2149), + [anon_sym_where] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [sym_mutable_specifier] = ACTIONS(2149), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2149), + [sym_super] = ACTIONS(2149), + [sym_crate] = ACTIONS(2149), + [sym_metavariable] = ACTIONS(2151), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, - [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), + [514] = { + [sym_delim_token_tree] = STATE(516), + [sym__delim_tokens] = STATE(516), + [sym__non_delim_token] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(2153), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2153), + [anon_sym_u8] = ACTIONS(2153), + [anon_sym_i8] = ACTIONS(2153), + [anon_sym_u16] = ACTIONS(2153), + [anon_sym_i16] = ACTIONS(2153), + [anon_sym_u32] = ACTIONS(2153), + [anon_sym_i32] = ACTIONS(2153), + [anon_sym_u64] = ACTIONS(2153), + [anon_sym_i64] = ACTIONS(2153), + [anon_sym_u128] = ACTIONS(2153), + [anon_sym_i128] = ACTIONS(2153), + [anon_sym_isize] = ACTIONS(2153), + [anon_sym_usize] = ACTIONS(2153), + [anon_sym_f32] = ACTIONS(2153), + [anon_sym_f64] = ACTIONS(2153), + [anon_sym_bool] = ACTIONS(2153), + [anon_sym_str] = ACTIONS(2153), + [anon_sym_char] = ACTIONS(2153), + [aux_sym__non_special_token_token1] = ACTIONS(2153), + [anon_sym_SQUOTE] = ACTIONS(2153), + [anon_sym_as] = ACTIONS(2153), + [anon_sym_async] = ACTIONS(2153), + [anon_sym_await] = ACTIONS(2153), + [anon_sym_break] = ACTIONS(2153), + [anon_sym_const] = ACTIONS(2153), + [anon_sym_continue] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(2153), + [anon_sym_enum] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(2153), + [anon_sym_for] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2153), + [anon_sym_impl] = ACTIONS(2153), + [anon_sym_let] = ACTIONS(2153), + [anon_sym_loop] = ACTIONS(2153), + [anon_sym_match] = ACTIONS(2153), + [anon_sym_mod] = ACTIONS(2153), + [anon_sym_pub] = ACTIONS(2153), + [anon_sym_return] = ACTIONS(2153), + [anon_sym_static] = ACTIONS(2153), + [anon_sym_struct] = ACTIONS(2153), + [anon_sym_trait] = ACTIONS(2153), + [anon_sym_type] = ACTIONS(2153), + [anon_sym_union] = ACTIONS(2153), + [anon_sym_unsafe] = ACTIONS(2153), + [anon_sym_use] = ACTIONS(2153), + [anon_sym_where] = ACTIONS(2153), + [anon_sym_while] = ACTIONS(2153), + [sym_mutable_specifier] = ACTIONS(2153), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2153), + [sym_super] = ACTIONS(2153), + [sym_crate] = ACTIONS(2153), + [sym_metavariable] = ACTIONS(2155), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, - [524] = { - [sym_token_tree] = STATE(514), - [sym_token_repetition] = STATE(514), - [sym__literal] = STATE(514), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(514), - [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), + [515] = { + [sym_attribute_item] = STATE(546), + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_macro_invocation] = STATE(2506), + [sym_scoped_identifier] = STATE(1571), + [sym_scoped_type_identifier] = STATE(1936), + [sym_match_arm] = STATE(515), + [sym_match_pattern] = STATE(2506), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1924), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_enum_variant_list_repeat1] = STATE(546), + [aux_sym_match_block_repeat1] = STATE(515), + [sym_identifier] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_u8] = ACTIONS(2166), + [anon_sym_i8] = ACTIONS(2166), + [anon_sym_u16] = ACTIONS(2166), + [anon_sym_i16] = ACTIONS(2166), + [anon_sym_u32] = ACTIONS(2166), + [anon_sym_i32] = ACTIONS(2166), + [anon_sym_u64] = ACTIONS(2166), + [anon_sym_i64] = ACTIONS(2166), + [anon_sym_u128] = ACTIONS(2166), + [anon_sym_i128] = ACTIONS(2166), + [anon_sym_isize] = ACTIONS(2166), + [anon_sym_usize] = ACTIONS(2166), + [anon_sym_f32] = ACTIONS(2166), + [anon_sym_f64] = ACTIONS(2166), + [anon_sym_bool] = ACTIONS(2166), + [anon_sym_str] = ACTIONS(2166), + [anon_sym_char] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2169), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_union] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_ref] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym__] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2190), + [sym_mutable_specifier] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2202), + [aux_sym_string_literal_token1] = ACTIONS(2205), + [sym_char_literal] = ACTIONS(2202), + [anon_sym_true] = ACTIONS(2208), + [anon_sym_false] = ACTIONS(2208), + [sym_line_comment] = ACTIONS(3), [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_metavariable] = ACTIONS(2214), + [sym_raw_string_literal] = ACTIONS(2202), + [sym_float_literal] = ACTIONS(2202), [sym_block_comment] = ACTIONS(3), }, - [525] = { - [sym_token_tree] = STATE(517), - [sym_token_repetition] = STATE(517), - [sym__literal] = STATE(517), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(517), + [516] = { + [sym_delim_token_tree] = STATE(281), + [sym__delim_tokens] = STATE(281), + [sym__non_delim_token] = STATE(281), + [sym__literal] = STATE(281), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__non_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2129), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [517] = { + [sym_delim_token_tree] = STATE(529), + [sym__delim_tokens] = STATE(529), + [sym__non_delim_token] = STATE(529), + [sym__literal] = STATE(529), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(529), [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_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_RBRACK] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2217), [anon_sym_u8] = ACTIONS(2217), [anon_sym_i8] = ACTIONS(2217), [anon_sym_u16] = ACTIONS(2217), @@ -62393,107 +61501,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), [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), - }, - [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_metavariable] = ACTIONS(2221), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, - [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), + [518] = { + [sym_delim_token_tree] = STATE(525), + [sym__delim_tokens] = STATE(525), + [sym__non_delim_token] = STATE(525), + [sym__literal] = STATE(525), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(525), [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_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2223), [anon_sym_u8] = ACTIONS(2223), [anon_sym_i8] = ACTIONS(2223), [anon_sym_u16] = ACTIONS(2223), @@ -62541,33 +61576,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), [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_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, - [528] = { - [sym_token_tree] = STATE(530), - [sym_token_repetition] = STATE(530), + [519] = { + [sym_delim_token_tree] = STATE(530), + [sym__delim_tokens] = STATE(530), + [sym__non_delim_token] = STATE(530), [sym__literal] = STATE(530), - [sym_string_literal] = STATE(556), - [sym_boolean_literal] = STATE(556), - [aux_sym_token_tree_repeat1] = STATE(530), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_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_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2227), [anon_sym_u8] = ACTIONS(2227), [anon_sym_i8] = ACTIONS(2227), [anon_sym_u16] = ACTIONS(2227), @@ -62615,447 +61651,2014 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2227), [anon_sym_while] = ACTIONS(2227), [sym_mutable_specifier] = ACTIONS(2227), - [sym_integer_literal] = ACTIONS(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_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), [sym_self] = ACTIONS(2227), [sym_super] = ACTIONS(2227), [sym_crate] = ACTIONS(2227), - [sym_metavariable] = ACTIONS(2231), - [sym_raw_string_literal] = ACTIONS(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_metavariable] = ACTIONS(2229), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [520] = { + [sym_delim_token_tree] = STATE(281), + [sym__delim_tokens] = STATE(281), + [sym__non_delim_token] = STATE(281), + [sym__literal] = STATE(281), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2131), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__non_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2129), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [521] = { + [sym_delim_token_tree] = STATE(507), + [sym__delim_tokens] = STATE(507), + [sym__non_delim_token] = STATE(507), + [sym__literal] = STATE(507), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(507), + [sym_identifier] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_RBRACK] = ACTIONS(2121), + [anon_sym_DOLLAR] = ACTIONS(2231), + [anon_sym_u8] = ACTIONS(2231), + [anon_sym_i8] = ACTIONS(2231), + [anon_sym_u16] = ACTIONS(2231), + [anon_sym_i16] = ACTIONS(2231), + [anon_sym_u32] = ACTIONS(2231), + [anon_sym_i32] = ACTIONS(2231), + [anon_sym_u64] = ACTIONS(2231), + [anon_sym_i64] = ACTIONS(2231), + [anon_sym_u128] = ACTIONS(2231), + [anon_sym_i128] = ACTIONS(2231), + [anon_sym_isize] = ACTIONS(2231), + [anon_sym_usize] = ACTIONS(2231), + [anon_sym_f32] = ACTIONS(2231), + [anon_sym_f64] = ACTIONS(2231), + [anon_sym_bool] = ACTIONS(2231), + [anon_sym_str] = ACTIONS(2231), + [anon_sym_char] = ACTIONS(2231), + [aux_sym__non_special_token_token1] = ACTIONS(2231), + [anon_sym_SQUOTE] = ACTIONS(2231), + [anon_sym_as] = ACTIONS(2231), + [anon_sym_async] = ACTIONS(2231), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(2231), + [anon_sym_const] = ACTIONS(2231), + [anon_sym_continue] = ACTIONS(2231), + [anon_sym_default] = ACTIONS(2231), + [anon_sym_enum] = ACTIONS(2231), + [anon_sym_fn] = ACTIONS(2231), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_impl] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_loop] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_mod] = ACTIONS(2231), + [anon_sym_pub] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_static] = ACTIONS(2231), + [anon_sym_struct] = ACTIONS(2231), + [anon_sym_trait] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2231), + [anon_sym_union] = ACTIONS(2231), + [anon_sym_unsafe] = ACTIONS(2231), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_where] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [sym_mutable_specifier] = ACTIONS(2231), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2231), + [sym_super] = ACTIONS(2231), + [sym_crate] = ACTIONS(2231), + [sym_metavariable] = ACTIONS(2233), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [522] = { + [sym_delim_token_tree] = STATE(503), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_RBRACK] = ACTIONS(2237), + [anon_sym_DOLLAR] = ACTIONS(2235), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u128] = ACTIONS(2235), + [anon_sym_i128] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_str] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [aux_sym__non_special_token_token1] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_fn] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_impl] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_mod] = ACTIONS(2235), + [anon_sym_pub] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_trait] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_unsafe] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_where] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [sym_mutable_specifier] = ACTIONS(2235), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2239), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [523] = { + [sym_delim_token_tree] = STATE(505), + [sym__delim_tokens] = STATE(505), + [sym__non_delim_token] = STATE(505), + [sym__literal] = STATE(505), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2241), + [anon_sym_i8] = ACTIONS(2241), + [anon_sym_u16] = ACTIONS(2241), + [anon_sym_i16] = ACTIONS(2241), + [anon_sym_u32] = ACTIONS(2241), + [anon_sym_i32] = ACTIONS(2241), + [anon_sym_u64] = ACTIONS(2241), + [anon_sym_i64] = ACTIONS(2241), + [anon_sym_u128] = ACTIONS(2241), + [anon_sym_i128] = ACTIONS(2241), + [anon_sym_isize] = ACTIONS(2241), + [anon_sym_usize] = ACTIONS(2241), + [anon_sym_f32] = ACTIONS(2241), + [anon_sym_f64] = ACTIONS(2241), + [anon_sym_bool] = ACTIONS(2241), + [anon_sym_str] = ACTIONS(2241), + [anon_sym_char] = ACTIONS(2241), + [aux_sym__non_special_token_token1] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_as] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [anon_sym_fn] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_impl] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_loop] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_mod] = ACTIONS(2241), + [anon_sym_pub] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(2241), + [anon_sym_trait] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_union] = ACTIONS(2241), + [anon_sym_unsafe] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_where] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [sym_mutable_specifier] = ACTIONS(2241), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_crate] = ACTIONS(2241), + [sym_metavariable] = ACTIONS(2243), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [524] = { + [sym_delim_token_tree] = STATE(506), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2245), + [anon_sym_u8] = ACTIONS(2245), + [anon_sym_i8] = ACTIONS(2245), + [anon_sym_u16] = ACTIONS(2245), + [anon_sym_i16] = ACTIONS(2245), + [anon_sym_u32] = ACTIONS(2245), + [anon_sym_i32] = ACTIONS(2245), + [anon_sym_u64] = ACTIONS(2245), + [anon_sym_i64] = ACTIONS(2245), + [anon_sym_u128] = ACTIONS(2245), + [anon_sym_i128] = ACTIONS(2245), + [anon_sym_isize] = ACTIONS(2245), + [anon_sym_usize] = ACTIONS(2245), + [anon_sym_f32] = ACTIONS(2245), + [anon_sym_f64] = ACTIONS(2245), + [anon_sym_bool] = ACTIONS(2245), + [anon_sym_str] = ACTIONS(2245), + [anon_sym_char] = ACTIONS(2245), + [aux_sym__non_special_token_token1] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_as] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_fn] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_impl] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_loop] = ACTIONS(2245), + [anon_sym_match] = ACTIONS(2245), + [anon_sym_mod] = ACTIONS(2245), + [anon_sym_pub] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_struct] = ACTIONS(2245), + [anon_sym_trait] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_union] = ACTIONS(2245), + [anon_sym_unsafe] = ACTIONS(2245), + [anon_sym_use] = ACTIONS(2245), + [anon_sym_where] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [sym_mutable_specifier] = ACTIONS(2245), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2245), + [sym_super] = ACTIONS(2245), + [sym_crate] = ACTIONS(2245), + [sym_metavariable] = ACTIONS(2247), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [525] = { + [sym_delim_token_tree] = STATE(281), + [sym__delim_tokens] = STATE(281), + [sym__non_delim_token] = STATE(281), + [sym__literal] = STATE(281), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__non_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2129), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [526] = { + [sym_delim_token_tree] = STATE(281), + [sym__delim_tokens] = STATE(281), + [sym__non_delim_token] = STATE(281), + [sym__literal] = STATE(281), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__non_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2129), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [527] = { + [sym_delim_token_tree] = STATE(281), + [sym__delim_tokens] = STATE(281), + [sym__non_delim_token] = STATE(281), + [sym__literal] = STATE(281), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__non_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2129), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [528] = { + [sym_delim_token_tree] = STATE(281), + [sym__delim_tokens] = STATE(281), + [sym__non_delim_token] = STATE(281), + [sym__literal] = STATE(281), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_RBRACK] = ACTIONS(2251), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__non_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2129), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, [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_delim_token_tree] = STATE(281), + [sym__delim_tokens] = STATE(281), + [sym__non_delim_token] = STATE(281), + [sym__literal] = STATE(281), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_RBRACK] = ACTIONS(2249), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__non_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2129), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [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(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_delim_token_tree] = STATE(281), + [sym__delim_tokens] = STATE(281), + [sym__non_delim_token] = STATE(281), + [sym__literal] = STATE(281), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__non_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2129), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, [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(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), - [anon_sym_i16] = ACTIONS(2233), - [anon_sym_u32] = ACTIONS(2233), - [anon_sym_i32] = ACTIONS(2233), - [anon_sym_u64] = ACTIONS(2233), - [anon_sym_i64] = ACTIONS(2233), - [anon_sym_u128] = ACTIONS(2233), - [anon_sym_i128] = ACTIONS(2233), - [anon_sym_isize] = ACTIONS(2233), - [anon_sym_usize] = ACTIONS(2233), - [anon_sym_f32] = ACTIONS(2233), - [anon_sym_f64] = ACTIONS(2233), - [anon_sym_bool] = ACTIONS(2233), - [anon_sym_str] = ACTIONS(2233), - [anon_sym_char] = ACTIONS(2233), - [aux_sym__non_special_token_token1] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_as] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [anon_sym_fn] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_impl] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2233), - [anon_sym_loop] = ACTIONS(2233), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_mod] = ACTIONS(2233), - [anon_sym_pub] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_struct] = ACTIONS(2233), - [anon_sym_trait] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_union] = ACTIONS(2233), - [anon_sym_unsafe] = ACTIONS(2233), - [anon_sym_use] = ACTIONS(2233), - [anon_sym_where] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [sym_mutable_specifier] = ACTIONS(2233), - [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(2020), - [sym_float_literal] = ACTIONS(2020), + [sym_delim_token_tree] = STATE(508), + [sym__delim_tokens] = STATE(508), + [sym__non_delim_token] = STATE(508), + [sym__literal] = STATE(508), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_delim_token_tree_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2121), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2253), + [anon_sym_u8] = ACTIONS(2253), + [anon_sym_i8] = ACTIONS(2253), + [anon_sym_u16] = ACTIONS(2253), + [anon_sym_i16] = ACTIONS(2253), + [anon_sym_u32] = ACTIONS(2253), + [anon_sym_i32] = ACTIONS(2253), + [anon_sym_u64] = ACTIONS(2253), + [anon_sym_i64] = ACTIONS(2253), + [anon_sym_u128] = ACTIONS(2253), + [anon_sym_i128] = ACTIONS(2253), + [anon_sym_isize] = ACTIONS(2253), + [anon_sym_usize] = ACTIONS(2253), + [anon_sym_f32] = ACTIONS(2253), + [anon_sym_f64] = ACTIONS(2253), + [anon_sym_bool] = ACTIONS(2253), + [anon_sym_str] = ACTIONS(2253), + [anon_sym_char] = ACTIONS(2253), + [aux_sym__non_special_token_token1] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_as] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_default] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [anon_sym_fn] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_impl] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_loop] = ACTIONS(2253), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_mod] = ACTIONS(2253), + [anon_sym_pub] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_struct] = ACTIONS(2253), + [anon_sym_trait] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_union] = ACTIONS(2253), + [anon_sym_unsafe] = ACTIONS(2253), + [anon_sym_use] = ACTIONS(2253), + [anon_sym_where] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [sym_mutable_specifier] = ACTIONS(2253), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_crate] = ACTIONS(2253), + [sym_metavariable] = ACTIONS(2255), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, [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_token_tree] = STATE(545), + [sym_token_repetition] = STATE(545), + [sym__literal] = STATE(545), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_repeat1] = STATE(545), + [sym_identifier] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_RPAREN] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2257), + [anon_sym_i8] = ACTIONS(2257), + [anon_sym_u16] = ACTIONS(2257), + [anon_sym_i16] = ACTIONS(2257), + [anon_sym_u32] = ACTIONS(2257), + [anon_sym_i32] = ACTIONS(2257), + [anon_sym_u64] = ACTIONS(2257), + [anon_sym_i64] = ACTIONS(2257), + [anon_sym_u128] = ACTIONS(2257), + [anon_sym_i128] = ACTIONS(2257), + [anon_sym_isize] = ACTIONS(2257), + [anon_sym_usize] = ACTIONS(2257), + [anon_sym_f32] = ACTIONS(2257), + [anon_sym_f64] = ACTIONS(2257), + [anon_sym_bool] = ACTIONS(2257), + [anon_sym_str] = ACTIONS(2257), + [anon_sym_char] = ACTIONS(2257), + [aux_sym__non_special_token_token1] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_as] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_await] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_default] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_fn] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_impl] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2257), + [anon_sym_loop] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_mod] = ACTIONS(2257), + [anon_sym_pub] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_struct] = ACTIONS(2257), + [anon_sym_trait] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_union] = ACTIONS(2257), + [anon_sym_unsafe] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_where] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [sym_mutable_specifier] = ACTIONS(2257), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2257), + [sym_super] = ACTIONS(2257), + [sym_crate] = ACTIONS(2257), + [sym_metavariable] = ACTIONS(2269), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [533] = { + [sym_token_tree] = STATE(483), + [sym_token_repetition] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2271), + [anon_sym_i8] = ACTIONS(2271), + [anon_sym_u16] = ACTIONS(2271), + [anon_sym_i16] = ACTIONS(2271), + [anon_sym_u32] = ACTIONS(2271), + [anon_sym_i32] = ACTIONS(2271), + [anon_sym_u64] = ACTIONS(2271), + [anon_sym_i64] = ACTIONS(2271), + [anon_sym_u128] = ACTIONS(2271), + [anon_sym_i128] = ACTIONS(2271), + [anon_sym_isize] = ACTIONS(2271), + [anon_sym_usize] = ACTIONS(2271), + [anon_sym_f32] = ACTIONS(2271), + [anon_sym_f64] = ACTIONS(2271), + [anon_sym_bool] = ACTIONS(2271), + [anon_sym_str] = ACTIONS(2271), + [anon_sym_char] = ACTIONS(2271), + [aux_sym__non_special_token_token1] = ACTIONS(2271), + [anon_sym_SQUOTE] = ACTIONS(2271), + [anon_sym_as] = ACTIONS(2271), + [anon_sym_async] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_break] = ACTIONS(2271), + [anon_sym_const] = ACTIONS(2271), + [anon_sym_continue] = ACTIONS(2271), + [anon_sym_default] = ACTIONS(2271), + [anon_sym_enum] = ACTIONS(2271), + [anon_sym_fn] = ACTIONS(2271), + [anon_sym_for] = ACTIONS(2271), + [anon_sym_if] = ACTIONS(2271), + [anon_sym_impl] = ACTIONS(2271), + [anon_sym_let] = ACTIONS(2271), + [anon_sym_loop] = ACTIONS(2271), + [anon_sym_match] = ACTIONS(2271), + [anon_sym_mod] = ACTIONS(2271), + [anon_sym_pub] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2271), + [anon_sym_static] = ACTIONS(2271), + [anon_sym_struct] = ACTIONS(2271), + [anon_sym_trait] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2271), + [anon_sym_union] = ACTIONS(2271), + [anon_sym_unsafe] = ACTIONS(2271), + [anon_sym_use] = ACTIONS(2271), + [anon_sym_where] = ACTIONS(2271), + [anon_sym_while] = ACTIONS(2271), + [sym_mutable_specifier] = ACTIONS(2271), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2271), + [sym_super] = ACTIONS(2271), + [sym_crate] = ACTIONS(2271), + [sym_metavariable] = ACTIONS(2275), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [534] = { + [sym_token_tree] = STATE(483), + [sym_token_repetition] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2271), + [anon_sym_i8] = ACTIONS(2271), + [anon_sym_u16] = ACTIONS(2271), + [anon_sym_i16] = ACTIONS(2271), + [anon_sym_u32] = ACTIONS(2271), + [anon_sym_i32] = ACTIONS(2271), + [anon_sym_u64] = ACTIONS(2271), + [anon_sym_i64] = ACTIONS(2271), + [anon_sym_u128] = ACTIONS(2271), + [anon_sym_i128] = ACTIONS(2271), + [anon_sym_isize] = ACTIONS(2271), + [anon_sym_usize] = ACTIONS(2271), + [anon_sym_f32] = ACTIONS(2271), + [anon_sym_f64] = ACTIONS(2271), + [anon_sym_bool] = ACTIONS(2271), + [anon_sym_str] = ACTIONS(2271), + [anon_sym_char] = ACTIONS(2271), + [aux_sym__non_special_token_token1] = ACTIONS(2271), + [anon_sym_SQUOTE] = ACTIONS(2271), + [anon_sym_as] = ACTIONS(2271), + [anon_sym_async] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_break] = ACTIONS(2271), + [anon_sym_const] = ACTIONS(2271), + [anon_sym_continue] = ACTIONS(2271), + [anon_sym_default] = ACTIONS(2271), + [anon_sym_enum] = ACTIONS(2271), + [anon_sym_fn] = ACTIONS(2271), + [anon_sym_for] = ACTIONS(2271), + [anon_sym_if] = ACTIONS(2271), + [anon_sym_impl] = ACTIONS(2271), + [anon_sym_let] = ACTIONS(2271), + [anon_sym_loop] = ACTIONS(2271), + [anon_sym_match] = ACTIONS(2271), + [anon_sym_mod] = ACTIONS(2271), + [anon_sym_pub] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2271), + [anon_sym_static] = ACTIONS(2271), + [anon_sym_struct] = ACTIONS(2271), + [anon_sym_trait] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2271), + [anon_sym_union] = ACTIONS(2271), + [anon_sym_unsafe] = ACTIONS(2271), + [anon_sym_use] = ACTIONS(2271), + [anon_sym_where] = ACTIONS(2271), + [anon_sym_while] = ACTIONS(2271), + [sym_mutable_specifier] = ACTIONS(2271), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2271), + [sym_super] = ACTIONS(2271), + [sym_crate] = ACTIONS(2271), + [sym_metavariable] = ACTIONS(2275), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [535] = { + [sym_token_tree] = STATE(483), + [sym_token_repetition] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_RPAREN] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2271), + [anon_sym_i8] = ACTIONS(2271), + [anon_sym_u16] = ACTIONS(2271), + [anon_sym_i16] = ACTIONS(2271), + [anon_sym_u32] = ACTIONS(2271), + [anon_sym_i32] = ACTIONS(2271), + [anon_sym_u64] = ACTIONS(2271), + [anon_sym_i64] = ACTIONS(2271), + [anon_sym_u128] = ACTIONS(2271), + [anon_sym_i128] = ACTIONS(2271), + [anon_sym_isize] = ACTIONS(2271), + [anon_sym_usize] = ACTIONS(2271), + [anon_sym_f32] = ACTIONS(2271), + [anon_sym_f64] = ACTIONS(2271), + [anon_sym_bool] = ACTIONS(2271), + [anon_sym_str] = ACTIONS(2271), + [anon_sym_char] = ACTIONS(2271), + [aux_sym__non_special_token_token1] = ACTIONS(2271), + [anon_sym_SQUOTE] = ACTIONS(2271), + [anon_sym_as] = ACTIONS(2271), + [anon_sym_async] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_break] = ACTIONS(2271), + [anon_sym_const] = ACTIONS(2271), + [anon_sym_continue] = ACTIONS(2271), + [anon_sym_default] = ACTIONS(2271), + [anon_sym_enum] = ACTIONS(2271), + [anon_sym_fn] = ACTIONS(2271), + [anon_sym_for] = ACTIONS(2271), + [anon_sym_if] = ACTIONS(2271), + [anon_sym_impl] = ACTIONS(2271), + [anon_sym_let] = ACTIONS(2271), + [anon_sym_loop] = ACTIONS(2271), + [anon_sym_match] = ACTIONS(2271), + [anon_sym_mod] = ACTIONS(2271), + [anon_sym_pub] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2271), + [anon_sym_static] = ACTIONS(2271), + [anon_sym_struct] = ACTIONS(2271), + [anon_sym_trait] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2271), + [anon_sym_union] = ACTIONS(2271), + [anon_sym_unsafe] = ACTIONS(2271), + [anon_sym_use] = ACTIONS(2271), + [anon_sym_where] = ACTIONS(2271), + [anon_sym_while] = ACTIONS(2271), + [sym_mutable_specifier] = ACTIONS(2271), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2271), + [sym_super] = ACTIONS(2271), + [sym_crate] = ACTIONS(2271), + [sym_metavariable] = ACTIONS(2275), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [536] = { + [sym_token_tree] = STATE(483), + [sym_token_repetition] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_RPAREN] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2271), + [anon_sym_i8] = ACTIONS(2271), + [anon_sym_u16] = ACTIONS(2271), + [anon_sym_i16] = ACTIONS(2271), + [anon_sym_u32] = ACTIONS(2271), + [anon_sym_i32] = ACTIONS(2271), + [anon_sym_u64] = ACTIONS(2271), + [anon_sym_i64] = ACTIONS(2271), + [anon_sym_u128] = ACTIONS(2271), + [anon_sym_i128] = ACTIONS(2271), + [anon_sym_isize] = ACTIONS(2271), + [anon_sym_usize] = ACTIONS(2271), + [anon_sym_f32] = ACTIONS(2271), + [anon_sym_f64] = ACTIONS(2271), + [anon_sym_bool] = ACTIONS(2271), + [anon_sym_str] = ACTIONS(2271), + [anon_sym_char] = ACTIONS(2271), + [aux_sym__non_special_token_token1] = ACTIONS(2271), + [anon_sym_SQUOTE] = ACTIONS(2271), + [anon_sym_as] = ACTIONS(2271), + [anon_sym_async] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_break] = ACTIONS(2271), + [anon_sym_const] = ACTIONS(2271), + [anon_sym_continue] = ACTIONS(2271), + [anon_sym_default] = ACTIONS(2271), + [anon_sym_enum] = ACTIONS(2271), + [anon_sym_fn] = ACTIONS(2271), + [anon_sym_for] = ACTIONS(2271), + [anon_sym_if] = ACTIONS(2271), + [anon_sym_impl] = ACTIONS(2271), + [anon_sym_let] = ACTIONS(2271), + [anon_sym_loop] = ACTIONS(2271), + [anon_sym_match] = ACTIONS(2271), + [anon_sym_mod] = ACTIONS(2271), + [anon_sym_pub] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2271), + [anon_sym_static] = ACTIONS(2271), + [anon_sym_struct] = ACTIONS(2271), + [anon_sym_trait] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2271), + [anon_sym_union] = ACTIONS(2271), + [anon_sym_unsafe] = ACTIONS(2271), + [anon_sym_use] = ACTIONS(2271), + [anon_sym_where] = ACTIONS(2271), + [anon_sym_while] = ACTIONS(2271), + [sym_mutable_specifier] = ACTIONS(2271), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2271), + [sym_super] = ACTIONS(2271), + [sym_crate] = ACTIONS(2271), + [sym_metavariable] = ACTIONS(2275), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [537] = { + [sym_token_tree] = STATE(483), + [sym_token_repetition] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(2277), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2271), + [anon_sym_i8] = ACTIONS(2271), + [anon_sym_u16] = ACTIONS(2271), + [anon_sym_i16] = ACTIONS(2271), + [anon_sym_u32] = ACTIONS(2271), + [anon_sym_i32] = ACTIONS(2271), + [anon_sym_u64] = ACTIONS(2271), + [anon_sym_i64] = ACTIONS(2271), + [anon_sym_u128] = ACTIONS(2271), + [anon_sym_i128] = ACTIONS(2271), + [anon_sym_isize] = ACTIONS(2271), + [anon_sym_usize] = ACTIONS(2271), + [anon_sym_f32] = ACTIONS(2271), + [anon_sym_f64] = ACTIONS(2271), + [anon_sym_bool] = ACTIONS(2271), + [anon_sym_str] = ACTIONS(2271), + [anon_sym_char] = ACTIONS(2271), + [aux_sym__non_special_token_token1] = ACTIONS(2271), + [anon_sym_SQUOTE] = ACTIONS(2271), + [anon_sym_as] = ACTIONS(2271), + [anon_sym_async] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_break] = ACTIONS(2271), + [anon_sym_const] = ACTIONS(2271), + [anon_sym_continue] = ACTIONS(2271), + [anon_sym_default] = ACTIONS(2271), + [anon_sym_enum] = ACTIONS(2271), + [anon_sym_fn] = ACTIONS(2271), + [anon_sym_for] = ACTIONS(2271), + [anon_sym_if] = ACTIONS(2271), + [anon_sym_impl] = ACTIONS(2271), + [anon_sym_let] = ACTIONS(2271), + [anon_sym_loop] = ACTIONS(2271), + [anon_sym_match] = ACTIONS(2271), + [anon_sym_mod] = ACTIONS(2271), + [anon_sym_pub] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2271), + [anon_sym_static] = ACTIONS(2271), + [anon_sym_struct] = ACTIONS(2271), + [anon_sym_trait] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2271), + [anon_sym_union] = ACTIONS(2271), + [anon_sym_unsafe] = ACTIONS(2271), + [anon_sym_use] = ACTIONS(2271), + [anon_sym_where] = ACTIONS(2271), + [anon_sym_while] = ACTIONS(2271), + [sym_mutable_specifier] = ACTIONS(2271), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2271), + [sym_super] = ACTIONS(2271), + [sym_crate] = ACTIONS(2271), + [sym_metavariable] = ACTIONS(2275), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [538] = { + [sym_token_tree] = STATE(483), + [sym_token_repetition] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(2273), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2271), + [anon_sym_i8] = ACTIONS(2271), + [anon_sym_u16] = ACTIONS(2271), + [anon_sym_i16] = ACTIONS(2271), + [anon_sym_u32] = ACTIONS(2271), + [anon_sym_i32] = ACTIONS(2271), + [anon_sym_u64] = ACTIONS(2271), + [anon_sym_i64] = ACTIONS(2271), + [anon_sym_u128] = ACTIONS(2271), + [anon_sym_i128] = ACTIONS(2271), + [anon_sym_isize] = ACTIONS(2271), + [anon_sym_usize] = ACTIONS(2271), + [anon_sym_f32] = ACTIONS(2271), + [anon_sym_f64] = ACTIONS(2271), + [anon_sym_bool] = ACTIONS(2271), + [anon_sym_str] = ACTIONS(2271), + [anon_sym_char] = ACTIONS(2271), + [aux_sym__non_special_token_token1] = ACTIONS(2271), + [anon_sym_SQUOTE] = ACTIONS(2271), + [anon_sym_as] = ACTIONS(2271), + [anon_sym_async] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_break] = ACTIONS(2271), + [anon_sym_const] = ACTIONS(2271), + [anon_sym_continue] = ACTIONS(2271), + [anon_sym_default] = ACTIONS(2271), + [anon_sym_enum] = ACTIONS(2271), + [anon_sym_fn] = ACTIONS(2271), + [anon_sym_for] = ACTIONS(2271), + [anon_sym_if] = ACTIONS(2271), + [anon_sym_impl] = ACTIONS(2271), + [anon_sym_let] = ACTIONS(2271), + [anon_sym_loop] = ACTIONS(2271), + [anon_sym_match] = ACTIONS(2271), + [anon_sym_mod] = ACTIONS(2271), + [anon_sym_pub] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2271), + [anon_sym_static] = ACTIONS(2271), + [anon_sym_struct] = ACTIONS(2271), + [anon_sym_trait] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2271), + [anon_sym_union] = ACTIONS(2271), + [anon_sym_unsafe] = ACTIONS(2271), + [anon_sym_use] = ACTIONS(2271), + [anon_sym_where] = ACTIONS(2271), + [anon_sym_while] = ACTIONS(2271), + [sym_mutable_specifier] = ACTIONS(2271), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2271), + [sym_super] = ACTIONS(2271), + [sym_crate] = ACTIONS(2271), + [sym_metavariable] = ACTIONS(2275), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [539] = { + [sym_token_tree] = STATE(537), + [sym_token_repetition] = STATE(537), + [sym__literal] = STATE(537), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_repeat1] = STATE(537), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(2281), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2279), + [anon_sym_i8] = ACTIONS(2279), + [anon_sym_u16] = ACTIONS(2279), + [anon_sym_i16] = ACTIONS(2279), + [anon_sym_u32] = ACTIONS(2279), + [anon_sym_i32] = ACTIONS(2279), + [anon_sym_u64] = ACTIONS(2279), + [anon_sym_i64] = ACTIONS(2279), + [anon_sym_u128] = ACTIONS(2279), + [anon_sym_i128] = ACTIONS(2279), + [anon_sym_isize] = ACTIONS(2279), + [anon_sym_usize] = ACTIONS(2279), + [anon_sym_f32] = ACTIONS(2279), + [anon_sym_f64] = ACTIONS(2279), + [anon_sym_bool] = ACTIONS(2279), + [anon_sym_str] = ACTIONS(2279), + [anon_sym_char] = ACTIONS(2279), + [aux_sym__non_special_token_token1] = ACTIONS(2279), + [anon_sym_SQUOTE] = ACTIONS(2279), + [anon_sym_as] = ACTIONS(2279), + [anon_sym_async] = ACTIONS(2279), + [anon_sym_await] = ACTIONS(2279), + [anon_sym_break] = ACTIONS(2279), + [anon_sym_const] = ACTIONS(2279), + [anon_sym_continue] = ACTIONS(2279), + [anon_sym_default] = ACTIONS(2279), + [anon_sym_enum] = ACTIONS(2279), + [anon_sym_fn] = ACTIONS(2279), + [anon_sym_for] = ACTIONS(2279), + [anon_sym_if] = ACTIONS(2279), + [anon_sym_impl] = ACTIONS(2279), + [anon_sym_let] = ACTIONS(2279), + [anon_sym_loop] = ACTIONS(2279), + [anon_sym_match] = ACTIONS(2279), + [anon_sym_mod] = ACTIONS(2279), + [anon_sym_pub] = ACTIONS(2279), + [anon_sym_return] = ACTIONS(2279), + [anon_sym_static] = ACTIONS(2279), + [anon_sym_struct] = ACTIONS(2279), + [anon_sym_trait] = ACTIONS(2279), + [anon_sym_type] = ACTIONS(2279), + [anon_sym_union] = ACTIONS(2279), + [anon_sym_unsafe] = ACTIONS(2279), + [anon_sym_use] = ACTIONS(2279), + [anon_sym_where] = ACTIONS(2279), + [anon_sym_while] = ACTIONS(2279), + [sym_mutable_specifier] = ACTIONS(2279), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2279), + [sym_super] = ACTIONS(2279), + [sym_crate] = ACTIONS(2279), + [sym_metavariable] = ACTIONS(2283), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [540] = { + [sym_token_tree] = STATE(538), + [sym_token_repetition] = STATE(538), + [sym__literal] = STATE(538), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_repeat1] = STATE(538), + [sym_identifier] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(2287), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2285), + [anon_sym_i8] = ACTIONS(2285), + [anon_sym_u16] = ACTIONS(2285), + [anon_sym_i16] = ACTIONS(2285), + [anon_sym_u32] = ACTIONS(2285), + [anon_sym_i32] = ACTIONS(2285), + [anon_sym_u64] = ACTIONS(2285), + [anon_sym_i64] = ACTIONS(2285), + [anon_sym_u128] = ACTIONS(2285), + [anon_sym_i128] = ACTIONS(2285), + [anon_sym_isize] = ACTIONS(2285), + [anon_sym_usize] = ACTIONS(2285), + [anon_sym_f32] = ACTIONS(2285), + [anon_sym_f64] = ACTIONS(2285), + [anon_sym_bool] = ACTIONS(2285), + [anon_sym_str] = ACTIONS(2285), + [anon_sym_char] = ACTIONS(2285), + [aux_sym__non_special_token_token1] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_as] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [anon_sym_fn] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_impl] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_loop] = ACTIONS(2285), + [anon_sym_match] = ACTIONS(2285), + [anon_sym_mod] = ACTIONS(2285), + [anon_sym_pub] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_struct] = ACTIONS(2285), + [anon_sym_trait] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_union] = ACTIONS(2285), + [anon_sym_unsafe] = ACTIONS(2285), + [anon_sym_use] = ACTIONS(2285), + [anon_sym_where] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [sym_mutable_specifier] = ACTIONS(2285), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_crate] = ACTIONS(2285), + [sym_metavariable] = ACTIONS(2289), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [541] = { + [sym_token_tree] = STATE(533), + [sym_token_repetition] = STATE(533), + [sym__literal] = STATE(533), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_repeat1] = STATE(533), + [sym_identifier] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2291), + [anon_sym_i8] = ACTIONS(2291), + [anon_sym_u16] = ACTIONS(2291), + [anon_sym_i16] = ACTIONS(2291), + [anon_sym_u32] = ACTIONS(2291), + [anon_sym_i32] = ACTIONS(2291), + [anon_sym_u64] = ACTIONS(2291), + [anon_sym_i64] = ACTIONS(2291), + [anon_sym_u128] = ACTIONS(2291), + [anon_sym_i128] = ACTIONS(2291), + [anon_sym_isize] = ACTIONS(2291), + [anon_sym_usize] = ACTIONS(2291), + [anon_sym_f32] = ACTIONS(2291), + [anon_sym_f64] = ACTIONS(2291), + [anon_sym_bool] = ACTIONS(2291), + [anon_sym_str] = ACTIONS(2291), + [anon_sym_char] = ACTIONS(2291), + [aux_sym__non_special_token_token1] = ACTIONS(2291), + [anon_sym_SQUOTE] = ACTIONS(2291), + [anon_sym_as] = ACTIONS(2291), + [anon_sym_async] = ACTIONS(2291), + [anon_sym_await] = ACTIONS(2291), + [anon_sym_break] = ACTIONS(2291), + [anon_sym_const] = ACTIONS(2291), + [anon_sym_continue] = ACTIONS(2291), + [anon_sym_default] = ACTIONS(2291), + [anon_sym_enum] = ACTIONS(2291), + [anon_sym_fn] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(2291), + [anon_sym_if] = ACTIONS(2291), + [anon_sym_impl] = ACTIONS(2291), + [anon_sym_let] = ACTIONS(2291), + [anon_sym_loop] = ACTIONS(2291), + [anon_sym_match] = ACTIONS(2291), + [anon_sym_mod] = ACTIONS(2291), + [anon_sym_pub] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2291), + [anon_sym_static] = ACTIONS(2291), + [anon_sym_struct] = ACTIONS(2291), + [anon_sym_trait] = ACTIONS(2291), + [anon_sym_type] = ACTIONS(2291), + [anon_sym_union] = ACTIONS(2291), + [anon_sym_unsafe] = ACTIONS(2291), + [anon_sym_use] = ACTIONS(2291), + [anon_sym_where] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2291), + [sym_mutable_specifier] = ACTIONS(2291), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2291), + [sym_super] = ACTIONS(2291), + [sym_crate] = ACTIONS(2291), + [sym_metavariable] = ACTIONS(2293), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [542] = { + [sym_token_tree] = STATE(536), + [sym_token_repetition] = STATE(536), + [sym__literal] = STATE(536), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_repeat1] = STATE(536), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_RPAREN] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_DOLLAR] = ACTIONS(2267), + [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(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2295), + [sym_super] = ACTIONS(2295), + [sym_crate] = ACTIONS(2295), + [sym_metavariable] = ACTIONS(2297), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [543] = { + [sym_token_tree] = STATE(534), + [sym_token_repetition] = STATE(534), + [sym__literal] = STATE(534), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_repeat1] = STATE(534), + [sym_identifier] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2299), + [anon_sym_i8] = ACTIONS(2299), + [anon_sym_u16] = ACTIONS(2299), + [anon_sym_i16] = ACTIONS(2299), + [anon_sym_u32] = ACTIONS(2299), + [anon_sym_i32] = ACTIONS(2299), + [anon_sym_u64] = ACTIONS(2299), + [anon_sym_i64] = ACTIONS(2299), + [anon_sym_u128] = ACTIONS(2299), + [anon_sym_i128] = ACTIONS(2299), + [anon_sym_isize] = ACTIONS(2299), + [anon_sym_usize] = ACTIONS(2299), + [anon_sym_f32] = ACTIONS(2299), + [anon_sym_f64] = ACTIONS(2299), + [anon_sym_bool] = ACTIONS(2299), + [anon_sym_str] = ACTIONS(2299), + [anon_sym_char] = ACTIONS(2299), + [aux_sym__non_special_token_token1] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_as] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [anon_sym_fn] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_impl] = ACTIONS(2299), + [anon_sym_let] = ACTIONS(2299), + [anon_sym_loop] = ACTIONS(2299), + [anon_sym_match] = ACTIONS(2299), + [anon_sym_mod] = ACTIONS(2299), + [anon_sym_pub] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_struct] = ACTIONS(2299), + [anon_sym_trait] = ACTIONS(2299), + [anon_sym_type] = ACTIONS(2299), + [anon_sym_union] = ACTIONS(2299), + [anon_sym_unsafe] = ACTIONS(2299), + [anon_sym_use] = ACTIONS(2299), + [anon_sym_where] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [sym_mutable_specifier] = ACTIONS(2299), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2299), + [sym_super] = ACTIONS(2299), + [sym_crate] = ACTIONS(2299), + [sym_metavariable] = ACTIONS(2301), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), + [sym_block_comment] = ACTIONS(3), + }, + [544] = { + [sym_token_tree] = STATE(535), + [sym_token_repetition] = STATE(535), + [sym__literal] = STATE(535), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_repeat1] = STATE(535), + [sym_identifier] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_RPAREN] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2303), + [anon_sym_i8] = ACTIONS(2303), + [anon_sym_u16] = ACTIONS(2303), + [anon_sym_i16] = ACTIONS(2303), + [anon_sym_u32] = ACTIONS(2303), + [anon_sym_i32] = ACTIONS(2303), + [anon_sym_u64] = ACTIONS(2303), + [anon_sym_i64] = ACTIONS(2303), + [anon_sym_u128] = ACTIONS(2303), + [anon_sym_i128] = ACTIONS(2303), + [anon_sym_isize] = ACTIONS(2303), + [anon_sym_usize] = ACTIONS(2303), + [anon_sym_f32] = ACTIONS(2303), + [anon_sym_f64] = ACTIONS(2303), + [anon_sym_bool] = ACTIONS(2303), + [anon_sym_str] = ACTIONS(2303), + [anon_sym_char] = ACTIONS(2303), + [aux_sym__non_special_token_token1] = ACTIONS(2303), + [anon_sym_SQUOTE] = ACTIONS(2303), + [anon_sym_as] = ACTIONS(2303), + [anon_sym_async] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(2303), + [anon_sym_enum] = ACTIONS(2303), + [anon_sym_fn] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_impl] = ACTIONS(2303), + [anon_sym_let] = ACTIONS(2303), + [anon_sym_loop] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2303), + [anon_sym_mod] = ACTIONS(2303), + [anon_sym_pub] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_static] = ACTIONS(2303), + [anon_sym_struct] = ACTIONS(2303), + [anon_sym_trait] = ACTIONS(2303), + [anon_sym_type] = ACTIONS(2303), + [anon_sym_union] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(2303), + [anon_sym_use] = ACTIONS(2303), + [anon_sym_where] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [sym_mutable_specifier] = ACTIONS(2303), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2303), + [sym_super] = ACTIONS(2303), + [sym_crate] = ACTIONS(2303), + [sym_metavariable] = ACTIONS(2305), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [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(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), + [545] = { + [sym_token_tree] = STATE(483), + [sym_token_repetition] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(570), + [sym_boolean_literal] = STATE(570), + [aux_sym_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_RPAREN] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2271), + [anon_sym_i8] = ACTIONS(2271), + [anon_sym_u16] = ACTIONS(2271), + [anon_sym_i16] = ACTIONS(2271), + [anon_sym_u32] = ACTIONS(2271), + [anon_sym_i32] = ACTIONS(2271), + [anon_sym_u64] = ACTIONS(2271), + [anon_sym_i64] = ACTIONS(2271), + [anon_sym_u128] = ACTIONS(2271), + [anon_sym_i128] = ACTIONS(2271), + [anon_sym_isize] = ACTIONS(2271), + [anon_sym_usize] = ACTIONS(2271), + [anon_sym_f32] = ACTIONS(2271), + [anon_sym_f64] = ACTIONS(2271), + [anon_sym_bool] = ACTIONS(2271), + [anon_sym_str] = ACTIONS(2271), + [anon_sym_char] = ACTIONS(2271), + [aux_sym__non_special_token_token1] = ACTIONS(2271), + [anon_sym_SQUOTE] = ACTIONS(2271), + [anon_sym_as] = ACTIONS(2271), + [anon_sym_async] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_break] = ACTIONS(2271), + [anon_sym_const] = ACTIONS(2271), + [anon_sym_continue] = ACTIONS(2271), + [anon_sym_default] = ACTIONS(2271), + [anon_sym_enum] = ACTIONS(2271), + [anon_sym_fn] = ACTIONS(2271), + [anon_sym_for] = ACTIONS(2271), + [anon_sym_if] = ACTIONS(2271), + [anon_sym_impl] = ACTIONS(2271), + [anon_sym_let] = ACTIONS(2271), + [anon_sym_loop] = ACTIONS(2271), + [anon_sym_match] = ACTIONS(2271), + [anon_sym_mod] = ACTIONS(2271), + [anon_sym_pub] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2271), + [anon_sym_static] = ACTIONS(2271), + [anon_sym_struct] = ACTIONS(2271), + [anon_sym_trait] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2271), + [anon_sym_union] = ACTIONS(2271), + [anon_sym_unsafe] = ACTIONS(2271), + [anon_sym_use] = ACTIONS(2271), + [anon_sym_where] = ACTIONS(2271), + [anon_sym_while] = ACTIONS(2271), + [sym_mutable_specifier] = ACTIONS(2271), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2271), + [sym_super] = ACTIONS(2271), + [sym_crate] = ACTIONS(2271), + [sym_metavariable] = ACTIONS(2275), + [sym_raw_string_literal] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, - [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), + [546] = { + [sym_attribute_item] = STATE(623), + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_macro_invocation] = STATE(2465), + [sym_scoped_identifier] = STATE(1571), + [sym_scoped_type_identifier] = STATE(1936), + [sym_match_pattern] = STATE(2465), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1924), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_enum_variant_list_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -63063,260 +63666,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [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(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_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(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(2253), - [sym_metavariable] = ACTIONS(908), - [sym_block_comment] = ACTIONS(3), - }, - [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(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_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(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(2253), - [sym_metavariable] = ACTIONS(908), - [sym_block_comment] = ACTIONS(3), - }, - [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(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_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(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(2253), - [sym_metavariable] = ACTIONS(908), - [sym_block_comment] = ACTIONS(3), - }, - [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(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_enum_variant_list_repeat1] = STATE(543), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [547] = { + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym_visibility_modifier] = STATE(684), + [sym__type] = STATE(1804), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2259), + [anon_sym_RPAREN] = ACTIONS(2311), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63336,18 +63722,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [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_pub] = ACTIONS(2315), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(2319), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), @@ -63356,111 +63743,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2321), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(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_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), + [548] = { + [sym_attribute_item] = STATE(623), + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_macro_invocation] = STATE(2465), + [sym_scoped_identifier] = STATE(1571), + [sym_scoped_type_identifier] = STATE(1936), + [sym_match_pattern] = STATE(2328), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1924), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [aux_sym_enum_variant_list_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_union] = ACTIONS(1178), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), - [sym_metavariable] = ACTIONS(908), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [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(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_enum_variant_list_repeat1] = STATE(543), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [549] = { + [sym_attribute_item] = STATE(557), + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym_visibility_modifier] = STATE(732), + [sym__type] = STATE(1975), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_enum_variant_list_repeat1] = STATE(557), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2323), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63480,17 +63868,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [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_pub] = ACTIONS(2315), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -63500,39 +63888,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2321), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(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_enum_variant_list_repeat1] = STATE(543), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [550] = { + [sym_attribute_item] = STATE(557), + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym_visibility_modifier] = STATE(732), + [sym__type] = STATE(1975), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_enum_variant_list_repeat1] = STATE(557), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2265), + [anon_sym_RPAREN] = ACTIONS(2325), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63552,17 +63940,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [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_pub] = ACTIONS(2315), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -63572,109 +63960,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2321), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(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_enum_variant_list_repeat1] = STATE(1058), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [551] = { + [sym_attribute_item] = STATE(557), + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym_visibility_modifier] = STATE(732), + [sym__type] = STATE(1975), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_enum_variant_list_repeat1] = STATE(557), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2327), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63694,17 +64012,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [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_pub] = ACTIONS(2315), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -63714,38 +64032,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2321), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(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_enum_variant_list_repeat1] = STATE(543), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [552] = { + [sym_attribute_item] = STATE(557), + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym_visibility_modifier] = STATE(732), + [sym__type] = STATE(1975), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_enum_variant_list_repeat1] = STATE(557), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2329), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63765,17 +64084,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [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_pub] = ACTIONS(2315), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -63785,38 +64104,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2253), + [sym_crate] = ACTIONS(2321), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(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_enum_variant_list_repeat1] = STATE(1058), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2241), + [553] = { + [sym_attribute_item] = STATE(557), + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym_visibility_modifier] = STATE(732), + [sym__type] = STATE(1975), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_enum_variant_list_repeat1] = STATE(557), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2331), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63825,560 +64145,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(2253), - [sym_metavariable] = ACTIONS(908), - [sym_block_comment] = ACTIONS(3), - }, - [546] = { - [sym_identifier] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_RPAREN] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_RBRACK] = ACTIONS(2275), - [anon_sym_DOLLAR] = ACTIONS(2273), - [anon_sym_u8] = ACTIONS(2273), - [anon_sym_i8] = ACTIONS(2273), - [anon_sym_u16] = ACTIONS(2273), - [anon_sym_i16] = ACTIONS(2273), - [anon_sym_u32] = ACTIONS(2273), - [anon_sym_i32] = ACTIONS(2273), - [anon_sym_u64] = ACTIONS(2273), - [anon_sym_i64] = ACTIONS(2273), - [anon_sym_u128] = ACTIONS(2273), - [anon_sym_i128] = ACTIONS(2273), - [anon_sym_isize] = ACTIONS(2273), - [anon_sym_usize] = ACTIONS(2273), - [anon_sym_f32] = ACTIONS(2273), - [anon_sym_f64] = ACTIONS(2273), - [anon_sym_bool] = ACTIONS(2273), - [anon_sym_str] = ACTIONS(2273), - [anon_sym_char] = ACTIONS(2273), - [aux_sym__non_special_token_token1] = ACTIONS(2273), - [anon_sym_SQUOTE] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_async] = ACTIONS(2273), - [anon_sym_await] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_default] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_fn] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_impl] = ACTIONS(2273), - [anon_sym_let] = ACTIONS(2273), - [anon_sym_loop] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_mod] = ACTIONS(2273), - [anon_sym_pub] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_static] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_trait] = ACTIONS(2273), - [anon_sym_type] = ACTIONS(2273), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2273), - [anon_sym_where] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [sym_mutable_specifier] = ACTIONS(2273), - [sym_integer_literal] = ACTIONS(2275), - [aux_sym_string_literal_token1] = ACTIONS(2275), - [sym_char_literal] = ACTIONS(2275), - [anon_sym_true] = ACTIONS(2273), - [anon_sym_false] = ACTIONS(2273), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2273), - [sym_super] = ACTIONS(2273), - [sym_crate] = ACTIONS(2273), - [sym_metavariable] = ACTIONS(2275), - [sym_raw_string_literal] = ACTIONS(2275), - [sym_float_literal] = ACTIONS(2275), - [sym_block_comment] = ACTIONS(3), - }, - [547] = { - [sym_identifier] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_RBRACK] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2277), - [anon_sym_u8] = ACTIONS(2277), - [anon_sym_i8] = ACTIONS(2277), - [anon_sym_u16] = ACTIONS(2277), - [anon_sym_i16] = ACTIONS(2277), - [anon_sym_u32] = ACTIONS(2277), - [anon_sym_i32] = ACTIONS(2277), - [anon_sym_u64] = ACTIONS(2277), - [anon_sym_i64] = ACTIONS(2277), - [anon_sym_u128] = ACTIONS(2277), - [anon_sym_i128] = ACTIONS(2277), - [anon_sym_isize] = ACTIONS(2277), - [anon_sym_usize] = ACTIONS(2277), - [anon_sym_f32] = ACTIONS(2277), - [anon_sym_f64] = ACTIONS(2277), - [anon_sym_bool] = ACTIONS(2277), - [anon_sym_str] = ACTIONS(2277), - [anon_sym_char] = ACTIONS(2277), - [aux_sym__non_special_token_token1] = ACTIONS(2277), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_as] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2277), - [anon_sym_await] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_default] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), - [anon_sym_fn] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_impl] = ACTIONS(2277), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_loop] = ACTIONS(2277), - [anon_sym_match] = ACTIONS(2277), - [anon_sym_mod] = ACTIONS(2277), - [anon_sym_pub] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_static] = ACTIONS(2277), - [anon_sym_struct] = ACTIONS(2277), - [anon_sym_trait] = ACTIONS(2277), - [anon_sym_type] = ACTIONS(2277), - [anon_sym_union] = ACTIONS(2277), - [anon_sym_unsafe] = ACTIONS(2277), - [anon_sym_use] = ACTIONS(2277), - [anon_sym_where] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [sym_mutable_specifier] = ACTIONS(2277), - [sym_integer_literal] = ACTIONS(2279), - [aux_sym_string_literal_token1] = ACTIONS(2279), - [sym_char_literal] = ACTIONS(2279), - [anon_sym_true] = ACTIONS(2277), - [anon_sym_false] = ACTIONS(2277), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2277), - [sym_super] = ACTIONS(2277), - [sym_crate] = ACTIONS(2277), - [sym_metavariable] = ACTIONS(2279), - [sym_raw_string_literal] = ACTIONS(2279), - [sym_float_literal] = ACTIONS(2279), - [sym_block_comment] = ACTIONS(3), - }, - [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(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(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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [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(2313), + [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(2315), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2317), + [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(2321), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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), + [554] = { + [sym_attribute_item] = STATE(557), + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym_visibility_modifier] = STATE(732), + [sym__type] = STATE(1975), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_enum_variant_list_repeat1] = STATE(557), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2333), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -64398,15 +64228,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(2301), + [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(2315), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -64416,695 +64248,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(2303), - [sym_block_comment] = ACTIONS(3), - }, - [554] = { - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_RPAREN] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_RBRACE] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_RBRACK] = ACTIONS(2307), - [anon_sym_DOLLAR] = ACTIONS(2305), - [anon_sym_u8] = ACTIONS(2305), - [anon_sym_i8] = ACTIONS(2305), - [anon_sym_u16] = ACTIONS(2305), - [anon_sym_i16] = ACTIONS(2305), - [anon_sym_u32] = ACTIONS(2305), - [anon_sym_i32] = ACTIONS(2305), - [anon_sym_u64] = ACTIONS(2305), - [anon_sym_i64] = ACTIONS(2305), - [anon_sym_u128] = ACTIONS(2305), - [anon_sym_i128] = ACTIONS(2305), - [anon_sym_isize] = ACTIONS(2305), - [anon_sym_usize] = ACTIONS(2305), - [anon_sym_f32] = ACTIONS(2305), - [anon_sym_f64] = ACTIONS(2305), - [anon_sym_bool] = ACTIONS(2305), - [anon_sym_str] = ACTIONS(2305), - [anon_sym_char] = ACTIONS(2305), - [aux_sym__non_special_token_token1] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_as] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2305), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_default] = ACTIONS(2305), - [anon_sym_enum] = ACTIONS(2305), - [anon_sym_fn] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_impl] = ACTIONS(2305), - [anon_sym_let] = ACTIONS(2305), - [anon_sym_loop] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_mod] = ACTIONS(2305), - [anon_sym_pub] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_static] = ACTIONS(2305), - [anon_sym_struct] = ACTIONS(2305), - [anon_sym_trait] = ACTIONS(2305), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_union] = ACTIONS(2305), - [anon_sym_unsafe] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2305), - [anon_sym_where] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [sym_mutable_specifier] = ACTIONS(2305), - [sym_integer_literal] = ACTIONS(2307), - [aux_sym_string_literal_token1] = ACTIONS(2307), - [sym_char_literal] = ACTIONS(2307), - [anon_sym_true] = ACTIONS(2305), - [anon_sym_false] = ACTIONS(2305), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2305), - [sym_super] = ACTIONS(2305), - [sym_crate] = ACTIONS(2305), - [sym_metavariable] = ACTIONS(2307), - [sym_raw_string_literal] = ACTIONS(2307), - [sym_float_literal] = ACTIONS(2307), + [sym_crate] = ACTIONS(2321), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, [555] = { + [sym_attribute_item] = STATE(557), + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym_visibility_modifier] = STATE(732), + [sym__type] = STATE(1975), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_enum_variant_list_repeat1] = STATE(557), + [aux_sym_function_modifiers_repeat1] = STATE(1557), [sym_identifier] = ACTIONS(2309), - [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), + [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(2313), + [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(2315), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2317), + [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(2321), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, [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_identifier] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_RBRACK] = ACTIONS(2337), + [anon_sym_COLON] = ACTIONS(2339), + [anon_sym_DOLLAR] = ACTIONS(2335), + [anon_sym_u8] = ACTIONS(2335), + [anon_sym_i8] = ACTIONS(2335), + [anon_sym_u16] = ACTIONS(2335), + [anon_sym_i16] = ACTIONS(2335), + [anon_sym_u32] = ACTIONS(2335), + [anon_sym_i32] = ACTIONS(2335), + [anon_sym_u64] = ACTIONS(2335), + [anon_sym_i64] = ACTIONS(2335), + [anon_sym_u128] = ACTIONS(2335), + [anon_sym_i128] = ACTIONS(2335), + [anon_sym_isize] = ACTIONS(2335), + [anon_sym_usize] = ACTIONS(2335), + [anon_sym_f32] = ACTIONS(2335), + [anon_sym_f64] = ACTIONS(2335), + [anon_sym_bool] = ACTIONS(2335), + [anon_sym_str] = ACTIONS(2335), + [anon_sym_char] = ACTIONS(2335), + [aux_sym__non_special_token_token1] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_as] = ACTIONS(2335), + [anon_sym_async] = ACTIONS(2335), + [anon_sym_await] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_default] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [anon_sym_fn] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_impl] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_loop] = ACTIONS(2335), + [anon_sym_match] = ACTIONS(2335), + [anon_sym_mod] = ACTIONS(2335), + [anon_sym_pub] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_static] = ACTIONS(2335), + [anon_sym_struct] = ACTIONS(2335), + [anon_sym_trait] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2335), + [anon_sym_union] = ACTIONS(2335), + [anon_sym_unsafe] = ACTIONS(2335), + [anon_sym_use] = ACTIONS(2335), + [anon_sym_where] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [sym_mutable_specifier] = ACTIONS(2335), + [sym_integer_literal] = ACTIONS(2337), + [aux_sym_string_literal_token1] = ACTIONS(2337), + [sym_char_literal] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(2335), + [anon_sym_false] = ACTIONS(2335), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2335), + [sym_super] = ACTIONS(2335), + [sym_crate] = ACTIONS(2335), + [sym_metavariable] = ACTIONS(2337), + [sym_raw_string_literal] = ACTIONS(2337), + [sym_float_literal] = ACTIONS(2337), [sym_block_comment] = ACTIONS(3), }, [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_attribute_item] = STATE(1135), + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym_visibility_modifier] = STATE(710), + [sym__type] = STATE(1905), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_enum_variant_list_repeat1] = STATE(1135), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), + [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(2313), + [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(2315), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2317), + [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(2321), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, [558] = { - [sym_identifier] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2319), - [anon_sym_RPAREN] = ACTIONS(2319), - [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), - }, - [559] = { - [sym_identifier] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_RPAREN] = ACTIONS(2323), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_LBRACK] = ACTIONS(2323), - [anon_sym_RBRACK] = ACTIONS(2323), - [anon_sym_DOLLAR] = ACTIONS(2321), - [anon_sym_u8] = ACTIONS(2321), - [anon_sym_i8] = ACTIONS(2321), - [anon_sym_u16] = ACTIONS(2321), - [anon_sym_i16] = ACTIONS(2321), - [anon_sym_u32] = ACTIONS(2321), - [anon_sym_i32] = ACTIONS(2321), - [anon_sym_u64] = ACTIONS(2321), - [anon_sym_i64] = ACTIONS(2321), - [anon_sym_u128] = ACTIONS(2321), - [anon_sym_i128] = ACTIONS(2321), - [anon_sym_isize] = ACTIONS(2321), - [anon_sym_usize] = ACTIONS(2321), - [anon_sym_f32] = ACTIONS(2321), - [anon_sym_f64] = ACTIONS(2321), - [anon_sym_bool] = ACTIONS(2321), - [anon_sym_str] = ACTIONS(2321), - [anon_sym_char] = ACTIONS(2321), - [aux_sym__non_special_token_token1] = ACTIONS(2321), - [anon_sym_SQUOTE] = ACTIONS(2321), - [anon_sym_as] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2321), - [anon_sym_await] = ACTIONS(2321), - [anon_sym_break] = ACTIONS(2321), - [anon_sym_const] = ACTIONS(2321), - [anon_sym_continue] = ACTIONS(2321), - [anon_sym_default] = ACTIONS(2321), - [anon_sym_enum] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_impl] = ACTIONS(2321), - [anon_sym_let] = ACTIONS(2321), - [anon_sym_loop] = ACTIONS(2321), - [anon_sym_match] = ACTIONS(2321), - [anon_sym_mod] = ACTIONS(2321), - [anon_sym_pub] = ACTIONS(2321), - [anon_sym_return] = ACTIONS(2321), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_struct] = ACTIONS(2321), - [anon_sym_trait] = ACTIONS(2321), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_union] = ACTIONS(2321), - [anon_sym_unsafe] = ACTIONS(2321), - [anon_sym_use] = ACTIONS(2321), - [anon_sym_where] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [sym_mutable_specifier] = ACTIONS(2321), - [sym_integer_literal] = ACTIONS(2323), - [aux_sym_string_literal_token1] = ACTIONS(2323), - [sym_char_literal] = ACTIONS(2323), - [anon_sym_true] = ACTIONS(2321), - [anon_sym_false] = ACTIONS(2321), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2321), - [sym_super] = ACTIONS(2321), + [sym_attribute_item] = STATE(1135), + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym_visibility_modifier] = STATE(658), + [sym__type] = STATE(1838), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_enum_variant_list_repeat1] = STATE(1135), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), + [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(2313), + [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(2315), + [anon_sym_union] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(2317), + [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(2321), - [sym_metavariable] = ACTIONS(2323), - [sym_raw_string_literal] = ACTIONS(2323), - [sym_float_literal] = ACTIONS(2323), - [sym_block_comment] = ACTIONS(3), - }, - [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_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), - }, - [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), - [anon_sym_LBRACE] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_RBRACK] = ACTIONS(2335), - [anon_sym_DOLLAR] = ACTIONS(2333), - [anon_sym_u8] = ACTIONS(2333), - [anon_sym_i8] = ACTIONS(2333), - [anon_sym_u16] = ACTIONS(2333), - [anon_sym_i16] = ACTIONS(2333), - [anon_sym_u32] = ACTIONS(2333), - [anon_sym_i32] = ACTIONS(2333), - [anon_sym_u64] = ACTIONS(2333), - [anon_sym_i64] = ACTIONS(2333), - [anon_sym_u128] = ACTIONS(2333), - [anon_sym_i128] = ACTIONS(2333), - [anon_sym_isize] = ACTIONS(2333), - [anon_sym_usize] = ACTIONS(2333), - [anon_sym_f32] = ACTIONS(2333), - [anon_sym_f64] = ACTIONS(2333), - [anon_sym_bool] = ACTIONS(2333), - [anon_sym_str] = ACTIONS(2333), - [anon_sym_char] = ACTIONS(2333), - [aux_sym__non_special_token_token1] = ACTIONS(2333), - [anon_sym_SQUOTE] = ACTIONS(2333), - [anon_sym_as] = ACTIONS(2333), - [anon_sym_async] = ACTIONS(2333), - [anon_sym_await] = ACTIONS(2333), - [anon_sym_break] = ACTIONS(2333), - [anon_sym_const] = ACTIONS(2333), - [anon_sym_continue] = ACTIONS(2333), - [anon_sym_default] = ACTIONS(2333), - [anon_sym_enum] = ACTIONS(2333), - [anon_sym_fn] = ACTIONS(2333), - [anon_sym_for] = ACTIONS(2333), - [anon_sym_if] = ACTIONS(2333), - [anon_sym_impl] = ACTIONS(2333), - [anon_sym_let] = ACTIONS(2333), - [anon_sym_loop] = ACTIONS(2333), - [anon_sym_match] = ACTIONS(2333), - [anon_sym_mod] = ACTIONS(2333), - [anon_sym_pub] = ACTIONS(2333), - [anon_sym_return] = ACTIONS(2333), - [anon_sym_static] = ACTIONS(2333), - [anon_sym_struct] = ACTIONS(2333), - [anon_sym_trait] = ACTIONS(2333), - [anon_sym_type] = ACTIONS(2333), - [anon_sym_union] = ACTIONS(2333), - [anon_sym_unsafe] = ACTIONS(2333), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_where] = ACTIONS(2333), - [anon_sym_while] = ACTIONS(2333), - [sym_mutable_specifier] = ACTIONS(2333), - [sym_integer_literal] = ACTIONS(2335), - [aux_sym_string_literal_token1] = ACTIONS(2335), - [sym_char_literal] = ACTIONS(2335), - [anon_sym_true] = ACTIONS(2333), - [anon_sym_false] = ACTIONS(2333), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2333), - [sym_super] = ACTIONS(2333), - [sym_crate] = ACTIONS(2333), - [sym_metavariable] = ACTIONS(2335), - [sym_raw_string_literal] = ACTIONS(2335), - [sym_float_literal] = ACTIONS(2335), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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), + [559] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1808), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_COMMA] = ACTIONS(812), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -65112,254 +64598,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [564] = { - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_RPAREN] = ACTIONS(2343), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_RBRACK] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2341), - [anon_sym_u8] = ACTIONS(2341), - [anon_sym_i8] = ACTIONS(2341), - [anon_sym_u16] = ACTIONS(2341), - [anon_sym_i16] = ACTIONS(2341), - [anon_sym_u32] = ACTIONS(2341), - [anon_sym_i32] = ACTIONS(2341), - [anon_sym_u64] = ACTIONS(2341), - [anon_sym_i64] = ACTIONS(2341), - [anon_sym_u128] = ACTIONS(2341), - [anon_sym_i128] = ACTIONS(2341), - [anon_sym_isize] = ACTIONS(2341), - [anon_sym_usize] = ACTIONS(2341), - [anon_sym_f32] = ACTIONS(2341), - [anon_sym_f64] = ACTIONS(2341), - [anon_sym_bool] = ACTIONS(2341), - [anon_sym_str] = ACTIONS(2341), - [anon_sym_char] = ACTIONS(2341), - [aux_sym__non_special_token_token1] = ACTIONS(2341), - [anon_sym_SQUOTE] = ACTIONS(2341), - [anon_sym_as] = ACTIONS(2341), - [anon_sym_async] = ACTIONS(2341), - [anon_sym_await] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_default] = ACTIONS(2341), - [anon_sym_enum] = ACTIONS(2341), - [anon_sym_fn] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_impl] = ACTIONS(2341), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_loop] = ACTIONS(2341), - [anon_sym_match] = ACTIONS(2341), - [anon_sym_mod] = ACTIONS(2341), - [anon_sym_pub] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_static] = ACTIONS(2341), - [anon_sym_struct] = ACTIONS(2341), - [anon_sym_trait] = ACTIONS(2341), - [anon_sym_type] = ACTIONS(2341), - [anon_sym_union] = ACTIONS(2341), - [anon_sym_unsafe] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_where] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [sym_mutable_specifier] = ACTIONS(2341), - [sym_integer_literal] = ACTIONS(2343), - [aux_sym_string_literal_token1] = ACTIONS(2343), - [sym_char_literal] = ACTIONS(2343), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2341), - [sym_super] = ACTIONS(2341), - [sym_crate] = ACTIONS(2341), - [sym_metavariable] = ACTIONS(2343), - [sym_raw_string_literal] = ACTIONS(2343), - [sym_float_literal] = ACTIONS(2343), - [sym_block_comment] = ACTIONS(3), - }, - [565] = { - [sym_identifier] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_RPAREN] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_RBRACK] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(2345), - [anon_sym_u8] = ACTIONS(2345), - [anon_sym_i8] = ACTIONS(2345), - [anon_sym_u16] = ACTIONS(2345), - [anon_sym_i16] = ACTIONS(2345), - [anon_sym_u32] = ACTIONS(2345), - [anon_sym_i32] = ACTIONS(2345), - [anon_sym_u64] = ACTIONS(2345), - [anon_sym_i64] = ACTIONS(2345), - [anon_sym_u128] = ACTIONS(2345), - [anon_sym_i128] = ACTIONS(2345), - [anon_sym_isize] = ACTIONS(2345), - [anon_sym_usize] = ACTIONS(2345), - [anon_sym_f32] = ACTIONS(2345), - [anon_sym_f64] = ACTIONS(2345), - [anon_sym_bool] = ACTIONS(2345), - [anon_sym_str] = ACTIONS(2345), - [anon_sym_char] = ACTIONS(2345), - [aux_sym__non_special_token_token1] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_as] = ACTIONS(2345), - [anon_sym_async] = ACTIONS(2345), - [anon_sym_await] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_enum] = ACTIONS(2345), - [anon_sym_fn] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_impl] = ACTIONS(2345), - [anon_sym_let] = ACTIONS(2345), - [anon_sym_loop] = ACTIONS(2345), - [anon_sym_match] = ACTIONS(2345), - [anon_sym_mod] = ACTIONS(2345), - [anon_sym_pub] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2345), - [anon_sym_struct] = ACTIONS(2345), - [anon_sym_trait] = ACTIONS(2345), - [anon_sym_type] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), - [anon_sym_unsafe] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2345), - [anon_sym_where] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [sym_mutable_specifier] = ACTIONS(2345), - [sym_integer_literal] = ACTIONS(2347), - [aux_sym_string_literal_token1] = ACTIONS(2347), - [sym_char_literal] = ACTIONS(2347), - [anon_sym_true] = ACTIONS(2345), - [anon_sym_false] = ACTIONS(2345), - [sym_line_comment] = ACTIONS(1004), - [sym_self] = ACTIONS(2345), - [sym_super] = ACTIONS(2345), - [sym_crate] = ACTIONS(2345), - [sym_metavariable] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2347), - [sym_float_literal] = ACTIONS(2347), - [sym_block_comment] = ACTIONS(3), - }, - [566] = { - [sym_identifier] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_RPAREN] = ACTIONS(2351), - [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), - }, - [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(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), + [560] = { + [sym_function_modifiers] = STATE(2405), + [sym_const_parameter] = STATE(1876), + [sym_constrained_type_parameter] = STATE(1820), + [sym_optional_type_parameter] = STATE(1876), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1980), + [sym_bracketed_type] = STATE(2380), + [sym_qualified_type] = STATE(2362), + [sym_lifetime] = STATE(1686), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2347), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2353), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -65377,12 +64654,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), + [anon_sym_const] = ACTIONS(2349), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), @@ -65396,63 +64673,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), + [sym_metavariable] = ACTIONS(2351), [sym_block_comment] = ACTIONS(3), }, - [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(1200), + [561] = { + [sym_identifier] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_RBRACK] = ACTIONS(2355), + [anon_sym_DOLLAR] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(2353), + [anon_sym_i8] = ACTIONS(2353), + [anon_sym_u16] = ACTIONS(2353), + [anon_sym_i16] = ACTIONS(2353), + [anon_sym_u32] = ACTIONS(2353), + [anon_sym_i32] = ACTIONS(2353), + [anon_sym_u64] = ACTIONS(2353), + [anon_sym_i64] = ACTIONS(2353), + [anon_sym_u128] = ACTIONS(2353), + [anon_sym_i128] = ACTIONS(2353), + [anon_sym_isize] = ACTIONS(2353), + [anon_sym_usize] = ACTIONS(2353), + [anon_sym_f32] = ACTIONS(2353), + [anon_sym_f64] = ACTIONS(2353), + [anon_sym_bool] = ACTIONS(2353), + [anon_sym_str] = ACTIONS(2353), + [anon_sym_char] = ACTIONS(2353), + [aux_sym__non_special_token_token1] = ACTIONS(2353), + [anon_sym_SQUOTE] = ACTIONS(2353), + [anon_sym_as] = ACTIONS(2353), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_await] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_default] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_fn] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_impl] = ACTIONS(2353), + [anon_sym_let] = ACTIONS(2353), + [anon_sym_loop] = ACTIONS(2353), + [anon_sym_match] = ACTIONS(2353), + [anon_sym_mod] = ACTIONS(2353), + [anon_sym_pub] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_trait] = ACTIONS(2353), + [anon_sym_type] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [anon_sym_unsafe] = ACTIONS(2353), + [anon_sym_use] = ACTIONS(2353), + [anon_sym_where] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [sym_mutable_specifier] = ACTIONS(2353), + [sym_integer_literal] = ACTIONS(2355), + [aux_sym_string_literal_token1] = ACTIONS(2355), + [sym_char_literal] = ACTIONS(2355), + [anon_sym_true] = ACTIONS(2353), + [anon_sym_false] = ACTIONS(2353), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2353), + [sym_super] = ACTIONS(2353), + [sym_crate] = ACTIONS(2353), + [sym_metavariable] = ACTIONS(2355), + [sym_raw_string_literal] = ACTIONS(2355), + [sym_float_literal] = ACTIONS(2355), + [sym_block_comment] = ACTIONS(3), + }, + [562] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1817), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), [anon_sym_RPAREN] = ACTIONS(2357), - [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_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_COMMA] = ACTIONS(2359), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -65460,68 +64808,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [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(1200), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(2359), - [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), + [563] = { + [sym_parameter] = STATE(1988), + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1797), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(2365), + [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(2367), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [564] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1811), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_RBRACK] = ACTIONS(828), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_COMMA] = ACTIONS(836), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -65529,68 +64948,1327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, + [565] = { + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_RBRACK] = ACTIONS(2371), + [anon_sym_DOLLAR] = ACTIONS(2369), + [anon_sym_u8] = ACTIONS(2369), + [anon_sym_i8] = ACTIONS(2369), + [anon_sym_u16] = ACTIONS(2369), + [anon_sym_i16] = ACTIONS(2369), + [anon_sym_u32] = ACTIONS(2369), + [anon_sym_i32] = ACTIONS(2369), + [anon_sym_u64] = ACTIONS(2369), + [anon_sym_i64] = ACTIONS(2369), + [anon_sym_u128] = ACTIONS(2369), + [anon_sym_i128] = ACTIONS(2369), + [anon_sym_isize] = ACTIONS(2369), + [anon_sym_usize] = ACTIONS(2369), + [anon_sym_f32] = ACTIONS(2369), + [anon_sym_f64] = ACTIONS(2369), + [anon_sym_bool] = ACTIONS(2369), + [anon_sym_str] = ACTIONS(2369), + [anon_sym_char] = ACTIONS(2369), + [aux_sym__non_special_token_token1] = ACTIONS(2369), + [anon_sym_SQUOTE] = ACTIONS(2369), + [anon_sym_as] = ACTIONS(2369), + [anon_sym_async] = ACTIONS(2369), + [anon_sym_await] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_default] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_fn] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_impl] = ACTIONS(2369), + [anon_sym_let] = ACTIONS(2369), + [anon_sym_loop] = ACTIONS(2369), + [anon_sym_match] = ACTIONS(2369), + [anon_sym_mod] = ACTIONS(2369), + [anon_sym_pub] = ACTIONS(2369), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2369), + [anon_sym_struct] = ACTIONS(2369), + [anon_sym_trait] = ACTIONS(2369), + [anon_sym_type] = ACTIONS(2369), + [anon_sym_union] = ACTIONS(2369), + [anon_sym_unsafe] = ACTIONS(2369), + [anon_sym_use] = ACTIONS(2369), + [anon_sym_where] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [sym_mutable_specifier] = ACTIONS(2369), + [sym_integer_literal] = ACTIONS(2371), + [aux_sym_string_literal_token1] = ACTIONS(2371), + [sym_char_literal] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(2369), + [anon_sym_false] = ACTIONS(2369), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2369), + [sym_super] = ACTIONS(2369), + [sym_crate] = ACTIONS(2369), + [sym_metavariable] = ACTIONS(2371), + [sym_raw_string_literal] = ACTIONS(2371), + [sym_float_literal] = ACTIONS(2371), + [sym_block_comment] = ACTIONS(3), + }, + [566] = { + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_RPAREN] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_RBRACK] = ACTIONS(2375), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_u8] = ACTIONS(2373), + [anon_sym_i8] = ACTIONS(2373), + [anon_sym_u16] = ACTIONS(2373), + [anon_sym_i16] = ACTIONS(2373), + [anon_sym_u32] = ACTIONS(2373), + [anon_sym_i32] = ACTIONS(2373), + [anon_sym_u64] = ACTIONS(2373), + [anon_sym_i64] = ACTIONS(2373), + [anon_sym_u128] = ACTIONS(2373), + [anon_sym_i128] = ACTIONS(2373), + [anon_sym_isize] = ACTIONS(2373), + [anon_sym_usize] = ACTIONS(2373), + [anon_sym_f32] = ACTIONS(2373), + [anon_sym_f64] = ACTIONS(2373), + [anon_sym_bool] = ACTIONS(2373), + [anon_sym_str] = ACTIONS(2373), + [anon_sym_char] = ACTIONS(2373), + [aux_sym__non_special_token_token1] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_async] = ACTIONS(2373), + [anon_sym_await] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_impl] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_loop] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_mod] = ACTIONS(2373), + [anon_sym_pub] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_trait] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_where] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [sym_mutable_specifier] = ACTIONS(2373), + [sym_integer_literal] = ACTIONS(2375), + [aux_sym_string_literal_token1] = ACTIONS(2375), + [sym_char_literal] = ACTIONS(2375), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2373), + [sym_super] = ACTIONS(2373), + [sym_crate] = ACTIONS(2373), + [sym_metavariable] = ACTIONS(2375), + [sym_raw_string_literal] = ACTIONS(2375), + [sym_float_literal] = ACTIONS(2375), + [sym_block_comment] = ACTIONS(3), + }, + [567] = { + [sym_identifier] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_RPAREN] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_RBRACK] = ACTIONS(2379), + [anon_sym_DOLLAR] = ACTIONS(2377), + [anon_sym_u8] = ACTIONS(2377), + [anon_sym_i8] = ACTIONS(2377), + [anon_sym_u16] = ACTIONS(2377), + [anon_sym_i16] = ACTIONS(2377), + [anon_sym_u32] = ACTIONS(2377), + [anon_sym_i32] = ACTIONS(2377), + [anon_sym_u64] = ACTIONS(2377), + [anon_sym_i64] = ACTIONS(2377), + [anon_sym_u128] = ACTIONS(2377), + [anon_sym_i128] = ACTIONS(2377), + [anon_sym_isize] = ACTIONS(2377), + [anon_sym_usize] = ACTIONS(2377), + [anon_sym_f32] = ACTIONS(2377), + [anon_sym_f64] = ACTIONS(2377), + [anon_sym_bool] = ACTIONS(2377), + [anon_sym_str] = ACTIONS(2377), + [anon_sym_char] = ACTIONS(2377), + [aux_sym__non_special_token_token1] = ACTIONS(2377), + [anon_sym_SQUOTE] = ACTIONS(2377), + [anon_sym_as] = ACTIONS(2377), + [anon_sym_async] = ACTIONS(2377), + [anon_sym_await] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_default] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_fn] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_impl] = ACTIONS(2377), + [anon_sym_let] = ACTIONS(2377), + [anon_sym_loop] = ACTIONS(2377), + [anon_sym_match] = ACTIONS(2377), + [anon_sym_mod] = ACTIONS(2377), + [anon_sym_pub] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2377), + [anon_sym_struct] = ACTIONS(2377), + [anon_sym_trait] = ACTIONS(2377), + [anon_sym_type] = ACTIONS(2377), + [anon_sym_union] = ACTIONS(2377), + [anon_sym_unsafe] = ACTIONS(2377), + [anon_sym_use] = ACTIONS(2377), + [anon_sym_where] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [sym_mutable_specifier] = ACTIONS(2377), + [sym_integer_literal] = ACTIONS(2379), + [aux_sym_string_literal_token1] = ACTIONS(2379), + [sym_char_literal] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(2377), + [anon_sym_false] = ACTIONS(2377), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2377), + [sym_super] = ACTIONS(2377), + [sym_crate] = ACTIONS(2377), + [sym_metavariable] = ACTIONS(2379), + [sym_raw_string_literal] = ACTIONS(2379), + [sym_float_literal] = ACTIONS(2379), + [sym_block_comment] = ACTIONS(3), + }, + [568] = { + [sym_identifier] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_RPAREN] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2383), + [anon_sym_RBRACK] = ACTIONS(2383), + [anon_sym_DOLLAR] = ACTIONS(2381), + [anon_sym_u8] = ACTIONS(2381), + [anon_sym_i8] = ACTIONS(2381), + [anon_sym_u16] = ACTIONS(2381), + [anon_sym_i16] = ACTIONS(2381), + [anon_sym_u32] = ACTIONS(2381), + [anon_sym_i32] = ACTIONS(2381), + [anon_sym_u64] = ACTIONS(2381), + [anon_sym_i64] = ACTIONS(2381), + [anon_sym_u128] = ACTIONS(2381), + [anon_sym_i128] = ACTIONS(2381), + [anon_sym_isize] = ACTIONS(2381), + [anon_sym_usize] = ACTIONS(2381), + [anon_sym_f32] = ACTIONS(2381), + [anon_sym_f64] = ACTIONS(2381), + [anon_sym_bool] = ACTIONS(2381), + [anon_sym_str] = ACTIONS(2381), + [anon_sym_char] = ACTIONS(2381), + [aux_sym__non_special_token_token1] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(2381), + [anon_sym_as] = ACTIONS(2381), + [anon_sym_async] = ACTIONS(2381), + [anon_sym_await] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_default] = ACTIONS(2381), + [anon_sym_enum] = ACTIONS(2381), + [anon_sym_fn] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_impl] = ACTIONS(2381), + [anon_sym_let] = ACTIONS(2381), + [anon_sym_loop] = ACTIONS(2381), + [anon_sym_match] = ACTIONS(2381), + [anon_sym_mod] = ACTIONS(2381), + [anon_sym_pub] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_static] = ACTIONS(2381), + [anon_sym_struct] = ACTIONS(2381), + [anon_sym_trait] = ACTIONS(2381), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_union] = ACTIONS(2381), + [anon_sym_unsafe] = ACTIONS(2381), + [anon_sym_use] = ACTIONS(2381), + [anon_sym_where] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [sym_mutable_specifier] = ACTIONS(2381), + [sym_integer_literal] = ACTIONS(2383), + [aux_sym_string_literal_token1] = ACTIONS(2383), + [sym_char_literal] = ACTIONS(2383), + [anon_sym_true] = ACTIONS(2381), + [anon_sym_false] = ACTIONS(2381), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2381), + [sym_super] = ACTIONS(2381), + [sym_crate] = ACTIONS(2381), + [sym_metavariable] = ACTIONS(2383), + [sym_raw_string_literal] = ACTIONS(2383), + [sym_float_literal] = ACTIONS(2383), + [sym_block_comment] = ACTIONS(3), + }, + [569] = { + [sym_identifier] = ACTIONS(2385), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_RPAREN] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_LBRACK] = ACTIONS(2387), + [anon_sym_RBRACK] = ACTIONS(2387), + [anon_sym_DOLLAR] = ACTIONS(2385), + [anon_sym_u8] = ACTIONS(2385), + [anon_sym_i8] = ACTIONS(2385), + [anon_sym_u16] = ACTIONS(2385), + [anon_sym_i16] = ACTIONS(2385), + [anon_sym_u32] = ACTIONS(2385), + [anon_sym_i32] = ACTIONS(2385), + [anon_sym_u64] = ACTIONS(2385), + [anon_sym_i64] = ACTIONS(2385), + [anon_sym_u128] = ACTIONS(2385), + [anon_sym_i128] = ACTIONS(2385), + [anon_sym_isize] = ACTIONS(2385), + [anon_sym_usize] = ACTIONS(2385), + [anon_sym_f32] = ACTIONS(2385), + [anon_sym_f64] = ACTIONS(2385), + [anon_sym_bool] = ACTIONS(2385), + [anon_sym_str] = ACTIONS(2385), + [anon_sym_char] = ACTIONS(2385), + [aux_sym__non_special_token_token1] = ACTIONS(2385), + [anon_sym_SQUOTE] = ACTIONS(2385), + [anon_sym_as] = ACTIONS(2385), + [anon_sym_async] = ACTIONS(2385), + [anon_sym_await] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_default] = ACTIONS(2385), + [anon_sym_enum] = ACTIONS(2385), + [anon_sym_fn] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_impl] = ACTIONS(2385), + [anon_sym_let] = ACTIONS(2385), + [anon_sym_loop] = ACTIONS(2385), + [anon_sym_match] = ACTIONS(2385), + [anon_sym_mod] = ACTIONS(2385), + [anon_sym_pub] = ACTIONS(2385), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_static] = ACTIONS(2385), + [anon_sym_struct] = ACTIONS(2385), + [anon_sym_trait] = ACTIONS(2385), + [anon_sym_type] = ACTIONS(2385), + [anon_sym_union] = ACTIONS(2385), + [anon_sym_unsafe] = ACTIONS(2385), + [anon_sym_use] = ACTIONS(2385), + [anon_sym_where] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [sym_mutable_specifier] = ACTIONS(2385), + [sym_integer_literal] = ACTIONS(2387), + [aux_sym_string_literal_token1] = ACTIONS(2387), + [sym_char_literal] = ACTIONS(2387), + [anon_sym_true] = ACTIONS(2385), + [anon_sym_false] = ACTIONS(2385), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2385), + [sym_super] = ACTIONS(2385), + [sym_crate] = ACTIONS(2385), + [sym_metavariable] = ACTIONS(2387), + [sym_raw_string_literal] = ACTIONS(2387), + [sym_float_literal] = ACTIONS(2387), + [sym_block_comment] = ACTIONS(3), + }, [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(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), + [sym_identifier] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_RPAREN] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_LBRACK] = ACTIONS(2391), + [anon_sym_RBRACK] = ACTIONS(2391), + [anon_sym_DOLLAR] = ACTIONS(2389), + [anon_sym_u8] = ACTIONS(2389), + [anon_sym_i8] = ACTIONS(2389), + [anon_sym_u16] = ACTIONS(2389), + [anon_sym_i16] = ACTIONS(2389), + [anon_sym_u32] = ACTIONS(2389), + [anon_sym_i32] = ACTIONS(2389), + [anon_sym_u64] = ACTIONS(2389), + [anon_sym_i64] = ACTIONS(2389), + [anon_sym_u128] = ACTIONS(2389), + [anon_sym_i128] = ACTIONS(2389), + [anon_sym_isize] = ACTIONS(2389), + [anon_sym_usize] = ACTIONS(2389), + [anon_sym_f32] = ACTIONS(2389), + [anon_sym_f64] = ACTIONS(2389), + [anon_sym_bool] = ACTIONS(2389), + [anon_sym_str] = ACTIONS(2389), + [anon_sym_char] = ACTIONS(2389), + [aux_sym__non_special_token_token1] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(2389), + [anon_sym_as] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2389), + [anon_sym_await] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_default] = ACTIONS(2389), + [anon_sym_enum] = ACTIONS(2389), + [anon_sym_fn] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_impl] = ACTIONS(2389), + [anon_sym_let] = ACTIONS(2389), + [anon_sym_loop] = ACTIONS(2389), + [anon_sym_match] = ACTIONS(2389), + [anon_sym_mod] = ACTIONS(2389), + [anon_sym_pub] = ACTIONS(2389), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_struct] = ACTIONS(2389), + [anon_sym_trait] = ACTIONS(2389), + [anon_sym_type] = ACTIONS(2389), + [anon_sym_union] = ACTIONS(2389), + [anon_sym_unsafe] = ACTIONS(2389), + [anon_sym_use] = ACTIONS(2389), + [anon_sym_where] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [sym_mutable_specifier] = ACTIONS(2389), + [sym_integer_literal] = ACTIONS(2391), + [aux_sym_string_literal_token1] = ACTIONS(2391), + [sym_char_literal] = ACTIONS(2391), + [anon_sym_true] = ACTIONS(2389), + [anon_sym_false] = ACTIONS(2389), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2389), + [sym_super] = ACTIONS(2389), + [sym_crate] = ACTIONS(2389), + [sym_metavariable] = ACTIONS(2391), + [sym_raw_string_literal] = ACTIONS(2391), + [sym_float_literal] = ACTIONS(2391), + [sym_block_comment] = ACTIONS(3), + }, + [571] = { + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_RPAREN] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_RBRACK] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2393), + [anon_sym_u8] = ACTIONS(2393), + [anon_sym_i8] = ACTIONS(2393), + [anon_sym_u16] = ACTIONS(2393), + [anon_sym_i16] = ACTIONS(2393), + [anon_sym_u32] = ACTIONS(2393), + [anon_sym_i32] = ACTIONS(2393), + [anon_sym_u64] = ACTIONS(2393), + [anon_sym_i64] = ACTIONS(2393), + [anon_sym_u128] = ACTIONS(2393), + [anon_sym_i128] = ACTIONS(2393), + [anon_sym_isize] = ACTIONS(2393), + [anon_sym_usize] = ACTIONS(2393), + [anon_sym_f32] = ACTIONS(2393), + [anon_sym_f64] = ACTIONS(2393), + [anon_sym_bool] = ACTIONS(2393), + [anon_sym_str] = ACTIONS(2393), + [anon_sym_char] = ACTIONS(2393), + [aux_sym__non_special_token_token1] = ACTIONS(2393), + [anon_sym_SQUOTE] = ACTIONS(2393), + [anon_sym_as] = ACTIONS(2393), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_await] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_default] = ACTIONS(2393), + [anon_sym_enum] = ACTIONS(2393), + [anon_sym_fn] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_impl] = ACTIONS(2393), + [anon_sym_let] = ACTIONS(2393), + [anon_sym_loop] = ACTIONS(2393), + [anon_sym_match] = ACTIONS(2393), + [anon_sym_mod] = ACTIONS(2393), + [anon_sym_pub] = ACTIONS(2393), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(2393), + [anon_sym_trait] = ACTIONS(2393), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_union] = ACTIONS(2393), + [anon_sym_unsafe] = ACTIONS(2393), + [anon_sym_use] = ACTIONS(2393), + [anon_sym_where] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [sym_mutable_specifier] = ACTIONS(2393), + [sym_integer_literal] = ACTIONS(2395), + [aux_sym_string_literal_token1] = ACTIONS(2395), + [sym_char_literal] = ACTIONS(2395), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2393), + [sym_super] = ACTIONS(2393), + [sym_crate] = ACTIONS(2393), + [sym_metavariable] = ACTIONS(2395), + [sym_raw_string_literal] = ACTIONS(2395), + [sym_float_literal] = ACTIONS(2395), + [sym_block_comment] = ACTIONS(3), + }, + [572] = { + [sym_identifier] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_RPAREN] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_RBRACK] = ACTIONS(2399), + [anon_sym_DOLLAR] = ACTIONS(2397), + [anon_sym_u8] = ACTIONS(2397), + [anon_sym_i8] = ACTIONS(2397), + [anon_sym_u16] = ACTIONS(2397), + [anon_sym_i16] = ACTIONS(2397), + [anon_sym_u32] = ACTIONS(2397), + [anon_sym_i32] = ACTIONS(2397), + [anon_sym_u64] = ACTIONS(2397), + [anon_sym_i64] = ACTIONS(2397), + [anon_sym_u128] = ACTIONS(2397), + [anon_sym_i128] = ACTIONS(2397), + [anon_sym_isize] = ACTIONS(2397), + [anon_sym_usize] = ACTIONS(2397), + [anon_sym_f32] = ACTIONS(2397), + [anon_sym_f64] = ACTIONS(2397), + [anon_sym_bool] = ACTIONS(2397), + [anon_sym_str] = ACTIONS(2397), + [anon_sym_char] = ACTIONS(2397), + [aux_sym__non_special_token_token1] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_as] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_await] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_default] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_fn] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_impl] = ACTIONS(2397), + [anon_sym_let] = ACTIONS(2397), + [anon_sym_loop] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_mod] = ACTIONS(2397), + [anon_sym_pub] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_trait] = ACTIONS(2397), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [anon_sym_unsafe] = ACTIONS(2397), + [anon_sym_use] = ACTIONS(2397), + [anon_sym_where] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [sym_mutable_specifier] = ACTIONS(2397), + [sym_integer_literal] = ACTIONS(2399), + [aux_sym_string_literal_token1] = ACTIONS(2399), + [sym_char_literal] = ACTIONS(2399), + [anon_sym_true] = ACTIONS(2397), + [anon_sym_false] = ACTIONS(2397), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2397), + [sym_super] = ACTIONS(2397), + [sym_crate] = ACTIONS(2397), + [sym_metavariable] = ACTIONS(2399), + [sym_raw_string_literal] = ACTIONS(2399), + [sym_float_literal] = ACTIONS(2399), + [sym_block_comment] = ACTIONS(3), + }, + [573] = { + [sym_identifier] = ACTIONS(646), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_LBRACE] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_RBRACK] = ACTIONS(644), + [anon_sym_DOLLAR] = ACTIONS(646), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(646), + [anon_sym_SQUOTE] = ACTIONS(646), + [anon_sym_as] = ACTIONS(646), + [anon_sym_async] = ACTIONS(646), + [anon_sym_await] = 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_where] = ACTIONS(646), + [anon_sym_while] = ACTIONS(646), + [sym_mutable_specifier] = 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(1089), + [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), + }, + [574] = { + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_RBRACK] = ACTIONS(2403), + [anon_sym_DOLLAR] = ACTIONS(2401), + [anon_sym_u8] = ACTIONS(2401), + [anon_sym_i8] = ACTIONS(2401), + [anon_sym_u16] = ACTIONS(2401), + [anon_sym_i16] = ACTIONS(2401), + [anon_sym_u32] = ACTIONS(2401), + [anon_sym_i32] = ACTIONS(2401), + [anon_sym_u64] = ACTIONS(2401), + [anon_sym_i64] = ACTIONS(2401), + [anon_sym_u128] = ACTIONS(2401), + [anon_sym_i128] = ACTIONS(2401), + [anon_sym_isize] = ACTIONS(2401), + [anon_sym_usize] = ACTIONS(2401), + [anon_sym_f32] = ACTIONS(2401), + [anon_sym_f64] = ACTIONS(2401), + [anon_sym_bool] = ACTIONS(2401), + [anon_sym_str] = ACTIONS(2401), + [anon_sym_char] = ACTIONS(2401), + [aux_sym__non_special_token_token1] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_async] = ACTIONS(2401), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_default] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_impl] = ACTIONS(2401), + [anon_sym_let] = ACTIONS(2401), + [anon_sym_loop] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_mod] = ACTIONS(2401), + [anon_sym_pub] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_trait] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_union] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_use] = ACTIONS(2401), + [anon_sym_where] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [sym_mutable_specifier] = ACTIONS(2401), + [sym_integer_literal] = ACTIONS(2403), + [aux_sym_string_literal_token1] = ACTIONS(2403), + [sym_char_literal] = ACTIONS(2403), + [anon_sym_true] = ACTIONS(2401), + [anon_sym_false] = ACTIONS(2401), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2401), + [sym_super] = ACTIONS(2401), + [sym_crate] = ACTIONS(2401), + [sym_metavariable] = ACTIONS(2403), + [sym_raw_string_literal] = ACTIONS(2403), + [sym_float_literal] = ACTIONS(2403), + [sym_block_comment] = ACTIONS(3), + }, + [575] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_RPAREN] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_RBRACK] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_u8] = ACTIONS(2405), + [anon_sym_i8] = ACTIONS(2405), + [anon_sym_u16] = ACTIONS(2405), + [anon_sym_i16] = ACTIONS(2405), + [anon_sym_u32] = ACTIONS(2405), + [anon_sym_i32] = ACTIONS(2405), + [anon_sym_u64] = ACTIONS(2405), + [anon_sym_i64] = ACTIONS(2405), + [anon_sym_u128] = ACTIONS(2405), + [anon_sym_i128] = ACTIONS(2405), + [anon_sym_isize] = ACTIONS(2405), + [anon_sym_usize] = ACTIONS(2405), + [anon_sym_f32] = ACTIONS(2405), + [anon_sym_f64] = ACTIONS(2405), + [anon_sym_bool] = ACTIONS(2405), + [anon_sym_str] = ACTIONS(2405), + [anon_sym_char] = ACTIONS(2405), + [aux_sym__non_special_token_token1] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_as] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_await] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_fn] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_impl] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_loop] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_mod] = ACTIONS(2405), + [anon_sym_pub] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_trait] = ACTIONS(2405), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_unsafe] = ACTIONS(2405), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_where] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [sym_mutable_specifier] = ACTIONS(2405), + [sym_integer_literal] = ACTIONS(2407), + [aux_sym_string_literal_token1] = ACTIONS(2407), + [sym_char_literal] = ACTIONS(2407), + [anon_sym_true] = ACTIONS(2405), + [anon_sym_false] = ACTIONS(2405), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2405), + [sym_super] = ACTIONS(2405), + [sym_crate] = ACTIONS(2405), + [sym_metavariable] = ACTIONS(2407), + [sym_raw_string_literal] = ACTIONS(2407), + [sym_float_literal] = ACTIONS(2407), + [sym_block_comment] = ACTIONS(3), + }, + [576] = { + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_RBRACE] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_RBRACK] = ACTIONS(2411), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [aux_sym__non_special_token_token1] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_as] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_await] = ACTIONS(2409), + [anon_sym_break] = ACTIONS(2409), + [anon_sym_const] = ACTIONS(2409), + [anon_sym_continue] = ACTIONS(2409), + [anon_sym_default] = ACTIONS(2409), + [anon_sym_enum] = ACTIONS(2409), + [anon_sym_fn] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2409), + [anon_sym_if] = ACTIONS(2409), + [anon_sym_impl] = ACTIONS(2409), + [anon_sym_let] = ACTIONS(2409), + [anon_sym_loop] = ACTIONS(2409), + [anon_sym_match] = ACTIONS(2409), + [anon_sym_mod] = ACTIONS(2409), + [anon_sym_pub] = ACTIONS(2409), + [anon_sym_return] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_struct] = ACTIONS(2409), + [anon_sym_trait] = ACTIONS(2409), + [anon_sym_type] = ACTIONS(2409), + [anon_sym_union] = ACTIONS(2409), + [anon_sym_unsafe] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2409), + [anon_sym_where] = ACTIONS(2409), + [anon_sym_while] = ACTIONS(2409), + [sym_mutable_specifier] = ACTIONS(2409), + [sym_integer_literal] = ACTIONS(2411), + [aux_sym_string_literal_token1] = ACTIONS(2411), + [sym_char_literal] = ACTIONS(2411), + [anon_sym_true] = ACTIONS(2409), + [anon_sym_false] = ACTIONS(2409), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2409), + [sym_super] = ACTIONS(2409), + [sym_crate] = ACTIONS(2409), + [sym_metavariable] = ACTIONS(2411), + [sym_raw_string_literal] = ACTIONS(2411), + [sym_float_literal] = ACTIONS(2411), + [sym_block_comment] = ACTIONS(3), + }, + [577] = { + [sym_identifier] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_RBRACK] = ACTIONS(2415), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_u8] = ACTIONS(2413), + [anon_sym_i8] = ACTIONS(2413), + [anon_sym_u16] = ACTIONS(2413), + [anon_sym_i16] = ACTIONS(2413), + [anon_sym_u32] = ACTIONS(2413), + [anon_sym_i32] = ACTIONS(2413), + [anon_sym_u64] = ACTIONS(2413), + [anon_sym_i64] = ACTIONS(2413), + [anon_sym_u128] = ACTIONS(2413), + [anon_sym_i128] = ACTIONS(2413), + [anon_sym_isize] = ACTIONS(2413), + [anon_sym_usize] = ACTIONS(2413), + [anon_sym_f32] = ACTIONS(2413), + [anon_sym_f64] = ACTIONS(2413), + [anon_sym_bool] = ACTIONS(2413), + [anon_sym_str] = ACTIONS(2413), + [anon_sym_char] = ACTIONS(2413), + [aux_sym__non_special_token_token1] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_as] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_await] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(2413), + [anon_sym_enum] = ACTIONS(2413), + [anon_sym_fn] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_impl] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_mod] = ACTIONS(2413), + [anon_sym_pub] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_struct] = ACTIONS(2413), + [anon_sym_trait] = ACTIONS(2413), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_union] = ACTIONS(2413), + [anon_sym_unsafe] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_where] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [sym_mutable_specifier] = ACTIONS(2413), + [sym_integer_literal] = ACTIONS(2415), + [aux_sym_string_literal_token1] = ACTIONS(2415), + [sym_char_literal] = ACTIONS(2415), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2413), + [sym_super] = ACTIONS(2413), + [sym_crate] = ACTIONS(2413), + [sym_metavariable] = ACTIONS(2415), + [sym_raw_string_literal] = ACTIONS(2415), + [sym_float_literal] = ACTIONS(2415), + [sym_block_comment] = ACTIONS(3), + }, + [578] = { + [sym_identifier] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_RBRACK] = ACTIONS(2419), + [anon_sym_DOLLAR] = ACTIONS(2417), + [anon_sym_u8] = ACTIONS(2417), + [anon_sym_i8] = ACTIONS(2417), + [anon_sym_u16] = ACTIONS(2417), + [anon_sym_i16] = ACTIONS(2417), + [anon_sym_u32] = ACTIONS(2417), + [anon_sym_i32] = ACTIONS(2417), + [anon_sym_u64] = ACTIONS(2417), + [anon_sym_i64] = ACTIONS(2417), + [anon_sym_u128] = ACTIONS(2417), + [anon_sym_i128] = ACTIONS(2417), + [anon_sym_isize] = ACTIONS(2417), + [anon_sym_usize] = ACTIONS(2417), + [anon_sym_f32] = ACTIONS(2417), + [anon_sym_f64] = ACTIONS(2417), + [anon_sym_bool] = ACTIONS(2417), + [anon_sym_str] = ACTIONS(2417), + [anon_sym_char] = ACTIONS(2417), + [aux_sym__non_special_token_token1] = ACTIONS(2417), + [anon_sym_SQUOTE] = ACTIONS(2417), + [anon_sym_as] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_enum] = ACTIONS(2417), + [anon_sym_fn] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_impl] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), + [anon_sym_loop] = ACTIONS(2417), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_mod] = ACTIONS(2417), + [anon_sym_pub] = ACTIONS(2417), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_struct] = ACTIONS(2417), + [anon_sym_trait] = ACTIONS(2417), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_unsafe] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_where] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [sym_mutable_specifier] = ACTIONS(2417), + [sym_integer_literal] = ACTIONS(2419), + [aux_sym_string_literal_token1] = ACTIONS(2419), + [sym_char_literal] = ACTIONS(2419), + [anon_sym_true] = ACTIONS(2417), + [anon_sym_false] = ACTIONS(2417), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2417), + [sym_super] = ACTIONS(2417), + [sym_crate] = ACTIONS(2417), + [sym_metavariable] = ACTIONS(2419), + [sym_raw_string_literal] = ACTIONS(2419), + [sym_float_literal] = ACTIONS(2419), + [sym_block_comment] = ACTIONS(3), + }, + [579] = { + [sym_identifier] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_RPAREN] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(2423), + [anon_sym_RBRACK] = ACTIONS(2423), + [anon_sym_DOLLAR] = ACTIONS(2421), + [anon_sym_u8] = ACTIONS(2421), + [anon_sym_i8] = ACTIONS(2421), + [anon_sym_u16] = ACTIONS(2421), + [anon_sym_i16] = ACTIONS(2421), + [anon_sym_u32] = ACTIONS(2421), + [anon_sym_i32] = ACTIONS(2421), + [anon_sym_u64] = ACTIONS(2421), + [anon_sym_i64] = ACTIONS(2421), + [anon_sym_u128] = ACTIONS(2421), + [anon_sym_i128] = ACTIONS(2421), + [anon_sym_isize] = ACTIONS(2421), + [anon_sym_usize] = ACTIONS(2421), + [anon_sym_f32] = ACTIONS(2421), + [anon_sym_f64] = ACTIONS(2421), + [anon_sym_bool] = ACTIONS(2421), + [anon_sym_str] = ACTIONS(2421), + [anon_sym_char] = ACTIONS(2421), + [aux_sym__non_special_token_token1] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_as] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_await] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_default] = ACTIONS(2421), + [anon_sym_enum] = ACTIONS(2421), + [anon_sym_fn] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_impl] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), + [anon_sym_loop] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_mod] = ACTIONS(2421), + [anon_sym_pub] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(2421), + [anon_sym_trait] = ACTIONS(2421), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_union] = ACTIONS(2421), + [anon_sym_unsafe] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_where] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [sym_mutable_specifier] = ACTIONS(2421), + [sym_integer_literal] = ACTIONS(2423), + [aux_sym_string_literal_token1] = ACTIONS(2423), + [sym_char_literal] = ACTIONS(2423), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2421), + [sym_super] = ACTIONS(2421), + [sym_crate] = ACTIONS(2421), + [sym_metavariable] = ACTIONS(2423), + [sym_raw_string_literal] = ACTIONS(2423), + [sym_float_literal] = ACTIONS(2423), + [sym_block_comment] = ACTIONS(3), + }, + [580] = { + [sym_identifier] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_RPAREN] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_RBRACK] = ACTIONS(2427), + [anon_sym_DOLLAR] = ACTIONS(2425), + [anon_sym_u8] = ACTIONS(2425), + [anon_sym_i8] = ACTIONS(2425), + [anon_sym_u16] = ACTIONS(2425), + [anon_sym_i16] = ACTIONS(2425), + [anon_sym_u32] = ACTIONS(2425), + [anon_sym_i32] = ACTIONS(2425), + [anon_sym_u64] = ACTIONS(2425), + [anon_sym_i64] = ACTIONS(2425), + [anon_sym_u128] = ACTIONS(2425), + [anon_sym_i128] = ACTIONS(2425), + [anon_sym_isize] = ACTIONS(2425), + [anon_sym_usize] = ACTIONS(2425), + [anon_sym_f32] = ACTIONS(2425), + [anon_sym_f64] = ACTIONS(2425), + [anon_sym_bool] = ACTIONS(2425), + [anon_sym_str] = ACTIONS(2425), + [anon_sym_char] = ACTIONS(2425), + [aux_sym__non_special_token_token1] = ACTIONS(2425), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_await] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_fn] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_impl] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_mod] = ACTIONS(2425), + [anon_sym_pub] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_trait] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_unsafe] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_where] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [sym_mutable_specifier] = ACTIONS(2425), + [sym_integer_literal] = ACTIONS(2427), + [aux_sym_string_literal_token1] = ACTIONS(2427), + [sym_char_literal] = ACTIONS(2427), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(2425), + [sym_super] = ACTIONS(2425), + [sym_crate] = ACTIONS(2425), + [sym_metavariable] = ACTIONS(2427), + [sym_raw_string_literal] = ACTIONS(2427), + [sym_float_literal] = ACTIONS(2427), + [sym_block_comment] = ACTIONS(3), + }, + [581] = { + [sym_identifier] = ACTIONS(626), + [anon_sym_LPAREN] = ACTIONS(624), + [anon_sym_RPAREN] = ACTIONS(624), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_RBRACK] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_u8] = ACTIONS(626), + [anon_sym_i8] = ACTIONS(626), + [anon_sym_u16] = ACTIONS(626), + [anon_sym_i16] = ACTIONS(626), + [anon_sym_u32] = ACTIONS(626), + [anon_sym_i32] = ACTIONS(626), + [anon_sym_u64] = ACTIONS(626), + [anon_sym_i64] = ACTIONS(626), + [anon_sym_u128] = ACTIONS(626), + [anon_sym_i128] = ACTIONS(626), + [anon_sym_isize] = ACTIONS(626), + [anon_sym_usize] = ACTIONS(626), + [anon_sym_f32] = ACTIONS(626), + [anon_sym_f64] = ACTIONS(626), + [anon_sym_bool] = ACTIONS(626), + [anon_sym_str] = ACTIONS(626), + [anon_sym_char] = ACTIONS(626), + [aux_sym__non_special_token_token1] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(626), + [anon_sym_as] = ACTIONS(626), + [anon_sym_async] = ACTIONS(626), + [anon_sym_await] = ACTIONS(626), + [anon_sym_break] = ACTIONS(626), + [anon_sym_const] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [anon_sym_enum] = ACTIONS(626), + [anon_sym_fn] = ACTIONS(626), + [anon_sym_for] = ACTIONS(626), + [anon_sym_if] = ACTIONS(626), + [anon_sym_impl] = ACTIONS(626), + [anon_sym_let] = ACTIONS(626), + [anon_sym_loop] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_mod] = ACTIONS(626), + [anon_sym_pub] = ACTIONS(626), + [anon_sym_return] = ACTIONS(626), + [anon_sym_static] = ACTIONS(626), + [anon_sym_struct] = ACTIONS(626), + [anon_sym_trait] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_union] = ACTIONS(626), + [anon_sym_unsafe] = ACTIONS(626), + [anon_sym_use] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_while] = ACTIONS(626), + [sym_mutable_specifier] = ACTIONS(626), + [sym_integer_literal] = ACTIONS(624), + [aux_sym_string_literal_token1] = ACTIONS(624), + [sym_char_literal] = ACTIONS(624), + [anon_sym_true] = ACTIONS(626), + [anon_sym_false] = ACTIONS(626), + [sym_line_comment] = ACTIONS(1089), + [sym_self] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_crate] = ACTIONS(626), + [sym_metavariable] = ACTIONS(624), + [sym_raw_string_literal] = ACTIONS(624), + [sym_float_literal] = ACTIONS(624), + [sym_block_comment] = ACTIONS(3), + }, + [582] = { + [sym_parameter] = STATE(2219), + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1879), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(2363), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2367), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [583] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1855), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -65598,44 +66276,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [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(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), + [584] = { + [sym_function_modifiers] = STATE(2405), + [sym_higher_ranked_trait_bound] = STATE(1588), + [sym_removed_trait_bound] = STATE(1588), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1589), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(1591), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_QMARK] = ACTIONS(2431), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -65653,12 +66331,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [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_for] = ACTIONS(2433), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), @@ -65675,105 +66353,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(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), + [585] = { + [sym_function_modifiers] = STATE(2405), + [sym_higher_ranked_trait_bound] = STATE(1588), + [sym_removed_trait_bound] = STATE(1588), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1600), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(1591), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_QMARK] = ACTIONS(2431), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -65791,12 +66400,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [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_for] = ACTIONS(2433), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), @@ -65813,60 +66422,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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), + [586] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1855), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -65874,44 +66483,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [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(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), + [587] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1855), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_RBRACK] = ACTIONS(2437), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [588] = { + [sym_function_modifiers] = STATE(2405), + [sym_higher_ranked_trait_bound] = STATE(1588), + [sym_removed_trait_bound] = STATE(1588), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1600), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(1602), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_QMARK] = ACTIONS(2431), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -65929,12 +66607,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [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_for] = ACTIONS(2433), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), @@ -65951,333 +66629,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(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(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_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_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(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), - }, - [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(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(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), - }, - [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(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), - }, - [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(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), + [589] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1855), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_RBRACK] = ACTIONS(2439), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -66285,135 +66690,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [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(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), - }, - [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(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), + [590] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1855), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -66421,42 +66759,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [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(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), + [591] = { + [sym_function_modifiers] = STATE(2405), + [sym_higher_ranked_trait_bound] = STATE(1558), + [sym_removed_trait_bound] = STATE(1558), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1545), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(1565), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(2405), [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2431), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -66474,12 +66814,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [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_for] = ACTIONS(2433), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), @@ -66489,7 +66829,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(906), [sym_super] = ACTIONS(906), @@ -66497,263 +66836,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(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), - }, - [585] = { - [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(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(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(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), - }, - [587] = { - [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(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), + [592] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1855), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -66761,67 +66897,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [588] = { - [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(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), + [593] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2181), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -66829,67 +66965,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [589] = { - [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(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), + [594] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -66897,67 +67033,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [590] = { - [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(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), + [595] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2031), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -66965,41 +67101,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [591] = { - [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), + [596] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(2192), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2445), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), @@ -67018,7 +67154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -67033,67 +67169,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2413), + [sym_mutable_specifier] = ACTIONS(2447), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2415), + [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [592] = { - [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(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), + [597] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2174), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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(2417), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67101,67 +67237,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [593] = { - [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_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), + [598] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2206), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67169,135 +67305,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [594] = { - [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), + [599] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2175), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [595] = { - [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(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), + [600] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1844), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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(2426), - [anon_sym_DOT_DOT] = ACTIONS(828), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67305,67 +67441,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [596] = { - [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(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), + [601] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2250), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67373,67 +67509,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [597] = { - [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(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), + [602] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1832), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67441,67 +67577,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [598] = { - [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), + [603] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2180), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67509,67 +67645,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [599] = { - [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(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), + [604] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2165), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67577,67 +67713,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [600] = { - [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(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), + [605] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1476), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67645,67 +67781,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [601] = { - [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(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), + [606] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2313), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67713,67 +67849,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [602] = { - [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(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), + [607] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1390), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(2445), + [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(2313), + [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(2449), + [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), + }, + [608] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1856), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(2451), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67781,67 +67985,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [603] = { - [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(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), + [609] = { + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1099), + [sym_bracketed_type] = STATE(2473), + [sym_lifetime] = STATE(2382), + [sym_array_type] = STATE(1068), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1068), + [sym_tuple_type] = STATE(1068), + [sym_unit_type] = STATE(1068), + [sym_generic_type] = STATE(840), + [sym_generic_type_with_turbofish] = STATE(2474), + [sym_bounded_type] = STATE(1068), + [sym_reference_type] = STATE(1068), + [sym_pointer_type] = STATE(1068), + [sym_empty_type] = STATE(1068), + [sym_abstract_type] = STATE(1068), + [sym_dynamic_type] = STATE(1068), + [sym_macro_invocation] = STATE(1068), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(768), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_u8] = ACTIONS(2463), + [anon_sym_i8] = ACTIONS(2463), + [anon_sym_u16] = ACTIONS(2463), + [anon_sym_i16] = ACTIONS(2463), + [anon_sym_u32] = ACTIONS(2463), + [anon_sym_i32] = ACTIONS(2463), + [anon_sym_u64] = ACTIONS(2463), + [anon_sym_i64] = ACTIONS(2463), + [anon_sym_u128] = ACTIONS(2463), + [anon_sym_i128] = ACTIONS(2463), + [anon_sym_isize] = ACTIONS(2463), + [anon_sym_usize] = ACTIONS(2463), + [anon_sym_f32] = ACTIONS(2463), + [anon_sym_f64] = ACTIONS(2463), + [anon_sym_bool] = ACTIONS(2463), + [anon_sym_str] = ACTIONS(2463), + [anon_sym_char] = ACTIONS(2463), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2465), + [anon_sym_fn] = ACTIONS(2467), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2469), + [anon_sym_union] = ACTIONS(2471), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2473), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2477), + [anon_sym_dyn] = ACTIONS(2479), + [sym_mutable_specifier] = ACTIONS(2481), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2483), + [sym_super] = ACTIONS(2483), + [sym_crate] = ACTIONS(2483), + [sym_metavariable] = ACTIONS(2485), + [sym_block_comment] = ACTIONS(3), + }, + [610] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1455), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [611] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1446), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67849,67 +68189,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [604] = { - [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(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), + [612] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1864), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2487), + [anon_sym_union] = ACTIONS(2487), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67917,67 +68257,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(2489), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [605] = { - [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(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), + [613] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2225), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67985,41 +68325,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [606] = { - [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(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), + [614] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1390), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2445), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), @@ -68038,7 +68378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -68053,67 +68393,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2428), + [sym_mutable_specifier] = ACTIONS(2491), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), + [sym_self] = ACTIONS(2493), [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), + [615] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1456), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(2495), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68121,67 +68461,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [608] = { - [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), + [616] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1895), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68189,67 +68529,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [609] = { - [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), + [617] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1855), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68257,67 +68597,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [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), + [618] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2195), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68325,67 +68665,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [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), + [619] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1913), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68393,67 +68733,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [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), + [620] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1461), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68461,67 +68801,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [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), + [621] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1864), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2487), + [anon_sym_union] = ACTIONS(2487), [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_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -68529,39 +68869,515 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(2497), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), [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(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), + [622] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1458), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [623] = { + [sym_attribute_item] = STATE(623), + [aux_sym_enum_variant_list_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(2499), + [anon_sym_LPAREN] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_RBRACK] = ACTIONS(2501), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_u8] = ACTIONS(2499), + [anon_sym_i8] = ACTIONS(2499), + [anon_sym_u16] = ACTIONS(2499), + [anon_sym_i16] = ACTIONS(2499), + [anon_sym_u32] = ACTIONS(2499), + [anon_sym_i32] = ACTIONS(2499), + [anon_sym_u64] = ACTIONS(2499), + [anon_sym_i64] = ACTIONS(2499), + [anon_sym_u128] = ACTIONS(2499), + [anon_sym_i128] = ACTIONS(2499), + [anon_sym_isize] = ACTIONS(2499), + [anon_sym_usize] = ACTIONS(2499), + [anon_sym_f32] = ACTIONS(2499), + [anon_sym_f64] = ACTIONS(2499), + [anon_sym_bool] = ACTIONS(2499), + [anon_sym_str] = ACTIONS(2499), + [anon_sym_char] = ACTIONS(2499), + [anon_sym_SQUOTE] = ACTIONS(2499), + [anon_sym_async] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_default] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_loop] = ACTIONS(2499), + [anon_sym_match] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_unsafe] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(2503), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_COMMA] = ACTIONS(2501), + [anon_sym_ref] = ACTIONS(2499), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym__] = ACTIONS(2499), + [anon_sym_AMP] = ACTIONS(2501), + [sym_mutable_specifier] = ACTIONS(2499), + [anon_sym_DOT_DOT] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_PIPE] = ACTIONS(2501), + [anon_sym_yield] = ACTIONS(2499), + [anon_sym_move] = ACTIONS(2499), + [sym_integer_literal] = ACTIONS(2501), + [aux_sym_string_literal_token1] = ACTIONS(2501), + [sym_char_literal] = ACTIONS(2501), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2499), + [sym_super] = ACTIONS(2499), + [sym_crate] = ACTIONS(2499), + [sym_metavariable] = ACTIONS(2501), + [sym_raw_string_literal] = ACTIONS(2501), + [sym_float_literal] = ACTIONS(2501), + [sym_block_comment] = ACTIONS(3), + }, + [624] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [625] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2201), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [626] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2190), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [627] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(1790), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(2506), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [628] = { + [sym_bracketed_type] = STATE(2434), + [sym_generic_type] = STATE(2419), + [sym_generic_type_with_turbofish] = STATE(2432), + [sym_scoped_identifier] = STATE(1355), + [sym_scoped_type_identifier] = STATE(1936), + [sym_const_block] = STATE(1449), + [sym__pattern] = STATE(2281), + [sym_tuple_pattern] = STATE(1449), + [sym_slice_pattern] = STATE(1449), + [sym_tuple_struct_pattern] = STATE(1449), + [sym_struct_pattern] = STATE(1449), + [sym_remaining_field_pattern] = STATE(1449), + [sym_mut_pattern] = STATE(1449), + [sym_range_pattern] = STATE(1449), + [sym_ref_pattern] = STATE(1449), + [sym_captured_pattern] = STATE(1449), + [sym_reference_pattern] = STATE(1449), + [sym_or_pattern] = STATE(1449), + [sym__literal_pattern] = STATE(1418), + [sym_negative_literal] = STATE(1406), + [sym_string_literal] = STATE(1406), + [sym_boolean_literal] = STATE(1406), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_u8] = ACTIONS(1174), + [anon_sym_i8] = ACTIONS(1174), + [anon_sym_u16] = ACTIONS(1174), + [anon_sym_i16] = ACTIONS(1174), + [anon_sym_u32] = ACTIONS(1174), + [anon_sym_i32] = ACTIONS(1174), + [anon_sym_u64] = ACTIONS(1174), + [anon_sym_i64] = ACTIONS(1174), + [anon_sym_u128] = ACTIONS(1174), + [anon_sym_i128] = ACTIONS(1174), + [anon_sym_isize] = ACTIONS(1174), + [anon_sym_usize] = ACTIONS(1174), + [anon_sym_f32] = ACTIONS(1174), + [anon_sym_f64] = ACTIONS(1174), + [anon_sym_bool] = ACTIONS(1174), + [anon_sym_str] = ACTIONS(1174), + [anon_sym_char] = ACTIONS(1174), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1180), + [anon_sym__] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(1182), + [sym_mutable_specifier] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [629] = { + [sym_function_modifiers] = STATE(2405), + [sym_type_parameters] = STATE(731), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1670), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1675), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1522), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2508), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -68582,7 +69398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -68593,7 +69409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(2510), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -68604,32 +69420,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(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), + [630] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(2246), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(596), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [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), @@ -68649,7 +69464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2512), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -68664,6 +69479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2514), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), @@ -68671,32 +69487,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(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), + [631] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1998), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2434), + [anon_sym_RPAREN] = ACTIONS(2516), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -68716,7 +69532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -68738,32 +69554,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(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), + [632] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1848), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2436), + [anon_sym_RPAREN] = ACTIONS(2518), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -68783,7 +69599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -68805,30 +69621,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(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), + [633] = { + [sym_function_modifiers] = STATE(2405), + [sym_type_parameters] = STATE(707), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1656), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1655), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1510), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2520), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -68849,7 +69666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -68860,11 +69677,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(2510), [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), @@ -68872,99 +69688,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(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), + [634] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1998), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2444), + [anon_sym_RPAREN] = ACTIONS(2522), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -68984,7 +69733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69006,31 +69755,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [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), - [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(1515), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2446), + [635] = { + [sym_function_modifiers] = STATE(2384), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1106), + [sym_bracketed_type] = STATE(2473), + [sym_lifetime] = STATE(609), + [sym_array_type] = STATE(1068), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1068), + [sym_tuple_type] = STATE(1068), + [sym_unit_type] = STATE(1068), + [sym_generic_type] = STATE(840), + [sym_generic_type_with_turbofish] = STATE(2474), + [sym_bounded_type] = STATE(1068), + [sym_reference_type] = STATE(1068), + [sym_pointer_type] = STATE(1068), + [sym_empty_type] = STATE(1068), + [sym_abstract_type] = STATE(1068), + [sym_dynamic_type] = STATE(1068), + [sym_macro_invocation] = STATE(1068), + [sym_scoped_identifier] = STATE(2304), + [sym_scoped_type_identifier] = STATE(768), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_u8] = ACTIONS(2463), + [anon_sym_i8] = ACTIONS(2463), + [anon_sym_u16] = ACTIONS(2463), + [anon_sym_i16] = ACTIONS(2463), + [anon_sym_u32] = ACTIONS(2463), + [anon_sym_i32] = ACTIONS(2463), + [anon_sym_u64] = ACTIONS(2463), + [anon_sym_i64] = ACTIONS(2463), + [anon_sym_u128] = ACTIONS(2463), + [anon_sym_i128] = ACTIONS(2463), + [anon_sym_isize] = ACTIONS(2463), + [anon_sym_usize] = ACTIONS(2463), + [anon_sym_f32] = ACTIONS(2463), + [anon_sym_f64] = ACTIONS(2463), + [anon_sym_bool] = ACTIONS(2463), + [anon_sym_str] = ACTIONS(2463), + [anon_sym_char] = ACTIONS(2463), + [anon_sym_SQUOTE] = ACTIONS(2512), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2465), + [anon_sym_fn] = ACTIONS(2467), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2469), + [anon_sym_union] = ACTIONS(2471), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2473), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2477), + [anon_sym_dyn] = ACTIONS(2479), + [sym_mutable_specifier] = ACTIONS(2524), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2483), + [sym_super] = ACTIONS(2483), + [sym_crate] = ACTIONS(2483), + [sym_metavariable] = ACTIONS(2485), + [sym_block_comment] = ACTIONS(3), + }, + [636] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1415), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(607), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -69051,7 +69866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2512), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69062,10 +69877,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2448), + [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(2526), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), @@ -69073,31 +69889,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(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), + [637] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1998), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2528), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -69117,7 +69934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69132,7 +69949,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(906), [sym_super] = ACTIONS(906), @@ -69140,31 +69956,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [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), - [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(1516), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2452), + [638] = { + [sym_function_modifiers] = STATE(2405), + [sym_type_parameters] = STATE(697), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1637), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1640), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1532), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2530), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -69185,7 +70001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69196,7 +70012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2448), + [anon_sym_LT] = ACTIONS(2510), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -69207,32 +70023,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(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), + [639] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1998), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2454), + [anon_sym_RPAREN] = ACTIONS(2532), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -69252,7 +70068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69274,32 +70090,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(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), + [640] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1815), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2456), + [anon_sym_RPAREN] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -69319,7 +70135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69341,31 +70157,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [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(1188), - [sym_function_type] = STATE(1392), - [sym_tuple_type] = STATE(1392), - [sym_unit_type] = STATE(1392), - [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), - [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(1518), - [aux_sym_function_modifiers_repeat1] = STATE(1549), - [sym_identifier] = ACTIONS(2458), + [641] = { + [sym_function_modifiers] = STATE(2405), + [sym_type_parameters] = STATE(654), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1643), + [sym_bracketed_type] = STATE(2380), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1644), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1517), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2536), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -69386,7 +70202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69397,7 +70213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2448), + [anon_sym_LT] = ACTIONS(2510), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -69408,31 +70224,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [642] = { + [sym_function_modifiers] = STATE(2405), + [sym_extern_modifier] = STATE(1557), + [sym__type] = STATE(1980), + [sym_bracketed_type] = STATE(2380), + [sym_qualified_type] = STATE(2362), + [sym_lifetime] = STATE(2403), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1200), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1386), + [sym_generic_type_with_turbofish] = STATE(2381), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2314), + [sym_scoped_type_identifier] = STATE(1346), + [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_identifier] = ACTIONS(2309), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -69453,7 +70269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69464,7 +70280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2448), + [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -69477,7 +70293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, }; -static const uint16_t ts_small_parse_table[] = { +static uint16_t ts_small_parse_table[] = { [0] = 32, ACTIONS(77), 1, anon_sym_LT, @@ -69509,32 +70325,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1885), 1, + STATE(1674), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -69545,7 +70361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69576,6 +70392,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, [129] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + anon_sym_LBRACK, + ACTIONS(2461), 1, + anon_sym_STAR, + ACTIONS(2465), 1, + anon_sym_default, + ACTIONS(2467), 1, + anon_sym_fn, + ACTIONS(2469), 1, + anon_sym_impl, + ACTIONS(2471), 1, + anon_sym_union, + ACTIONS(2473), 1, + anon_sym_BANG, + ACTIONS(2475), 1, + anon_sym_COLON_COLON, + ACTIONS(2477), 1, + anon_sym_AMP, + ACTIONS(2479), 1, + anon_sym_dyn, + ACTIONS(2485), 1, + sym_metavariable, + STATE(768), 1, + sym_scoped_type_identifier, + STATE(840), 1, + sym_generic_type, + STATE(1104), 1, + sym__type, + STATE(1196), 1, + sym_for_lifetimes, + STATE(2304), 1, + sym_scoped_identifier, + STATE(2382), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, + STATE(2473), 1, + sym_bracketed_type, + STATE(2474), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1557), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2483), 3, + sym_self, + sym_super, + sym_crate, + STATE(1068), 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(2463), 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(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + anon_sym_LBRACK, + ACTIONS(2461), 1, + anon_sym_STAR, + ACTIONS(2465), 1, + anon_sym_default, + ACTIONS(2467), 1, + anon_sym_fn, + ACTIONS(2469), 1, + anon_sym_impl, + ACTIONS(2471), 1, + anon_sym_union, + ACTIONS(2473), 1, + anon_sym_BANG, + ACTIONS(2475), 1, + anon_sym_COLON_COLON, + ACTIONS(2477), 1, + anon_sym_AMP, + ACTIONS(2479), 1, + anon_sym_dyn, + ACTIONS(2485), 1, + sym_metavariable, + STATE(768), 1, + sym_scoped_type_identifier, + STATE(840), 1, + sym_generic_type, + STATE(1124), 1, + sym__type, + STATE(1196), 1, + sym_for_lifetimes, + STATE(2304), 1, + sym_scoped_identifier, + STATE(2382), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, + STATE(2473), 1, + sym_bracketed_type, + STATE(2474), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1557), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2483), 3, + sym_self, + sym_super, + sym_crate, + STATE(1068), 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(2463), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [387] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -69606,32 +70616,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1678), 1, + STATE(1634), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -69642,7 +70652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69672,7 +70682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [258] = 32, + [516] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -69703,32 +70713,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2172), 1, + STATE(2191), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -69739,7 +70749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69769,74 +70779,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [387] = 32, + [645] = 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(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2395), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(753), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(808), 1, + STATE(1386), 1, sym_generic_type, - STATE(1044), 1, + STATE(2024), 1, sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, + STATE(2403), 1, + sym_lifetime, + STATE(2405), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1091), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69848,7 +70858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2381), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69866,7 +70876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [516] = 32, + [774] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -69897,32 +70907,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1670), 1, + STATE(2148), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -69933,7 +70943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69963,7 +70973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [645] = 33, + [903] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -69994,44 +71004,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(2462), 1, - sym_self, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1394), 1, + STATE(1712), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(906), 2, + STATE(1557), 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(1549), 2, + STATE(1393), 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, + [1032] = 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(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1346), 1, + sym_scoped_type_identifier, + STATE(1386), 1, + sym_generic_type, + STATE(1397), 1, + sym__type, + STATE(2314), 1, + sym_scoped_identifier, + STATE(2380), 1, + sym_bracketed_type, + STATE(2381), 1, + sym_generic_type_with_turbofish, + STATE(2403), 1, + sym_lifetime, + STATE(2405), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - STATE(1392), 11, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70061,74 +71167,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [776] = 32, + [1161] = 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, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2455), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2457), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2461), 1, + anon_sym_STAR, + ACTIONS(2465), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2467), 1, + anon_sym_fn, + ACTIONS(2469), 1, + anon_sym_impl, + ACTIONS(2471), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2473), 1, + anon_sym_BANG, + ACTIONS(2475), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2477), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2479), 1, + anon_sym_dyn, + ACTIONS(2485), 1, sym_metavariable, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1490), 1, + STATE(768), 1, sym_scoped_type_identifier, - STATE(1665), 1, + STATE(840), 1, sym_generic_type, - STATE(1666), 1, + STATE(1125), 1, sym__type, - STATE(2280), 1, + STATE(1196), 1, + sym_for_lifetimes, + STATE(2304), 1, sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2382), 1, sym_lifetime, - STATE(2404), 1, + STATE(2384), 1, sym_function_modifiers, + STATE(2473), 1, + sym_bracketed_type, + STATE(2474), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2483), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1068), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70140,7 +71246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2463), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70158,7 +71264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [905] = 32, + [1290] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -70189,32 +71295,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1900), 1, + STATE(2041), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -70225,7 +71331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70255,7 +71361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1034] = 32, + [1419] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -70286,32 +71392,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(2466), 1, + ACTIONS(2538), 1, sym_identifier, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1523), 1, + STATE(1507), 1, sym_scoped_type_identifier, - STATE(1617), 1, - sym__type, - STATE(1623), 1, + STATE(1633), 1, sym_generic_type, - STATE(2280), 1, + STATE(1710), 1, + sym__type, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -70322,7 +71428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70352,74 +71458,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1163] = 32, + [1548] = 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, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2455), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2457), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2461), 1, + anon_sym_STAR, + ACTIONS(2465), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2467), 1, + anon_sym_fn, + ACTIONS(2469), 1, + anon_sym_impl, + ACTIONS(2471), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2473), 1, + anon_sym_BANG, + ACTIONS(2475), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2477), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2479), 1, + anon_sym_dyn, + ACTIONS(2485), 1, sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, + STATE(768), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(840), 1, sym_generic_type, - STATE(1393), 1, + STATE(1042), 1, sym__type, - STATE(2280), 1, + STATE(1196), 1, + sym_for_lifetimes, + STATE(2304), 1, sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2382), 1, sym_lifetime, - STATE(2404), 1, + STATE(2384), 1, sym_function_modifiers, + STATE(2473), 1, + sym_bracketed_type, + STATE(2474), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2483), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1068), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70431,7 +71537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2463), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70449,7 +71555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1292] = 32, + [1677] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -70480,32 +71586,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1890), 1, + STATE(1964), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -70516,7 +71622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70546,7 +71652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1421] = 32, + [1806] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -70577,32 +71683,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1945), 1, + STATE(1989), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -70613,7 +71719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70643,7 +71749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1550] = 32, + [1935] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -70674,32 +71780,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1986), 1, + STATE(1794), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -70710,7 +71816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70740,7 +71846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1679] = 32, + [2064] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -70771,32 +71877,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2162), 1, + STATE(1391), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -70807,7 +71913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70837,7 +71943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1808] = 32, + [2193] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -70868,32 +71974,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1778), 1, + STATE(1987), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -70904,7 +72010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70934,7 +72040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1937] = 32, + [2322] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -70965,32 +72071,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2087), 1, + STATE(1404), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71001,7 +72107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71031,7 +72137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2066] = 32, + [2451] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71062,32 +72168,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2120), 1, + STATE(1683), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71098,7 +72204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71128,7 +72234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2195] = 32, + [2580] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71159,32 +72265,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1954), 1, + STATE(1682), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71195,7 +72301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71225,7 +72331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2324] = 32, + [2709] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71256,32 +72362,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2003), 1, + STATE(1639), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71292,7 +72398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71322,7 +72428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2453] = 32, + [2838] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71353,32 +72459,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1654), 1, + STATE(1978), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71389,7 +72495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71419,7 +72525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2582] = 32, + [2967] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71450,32 +72556,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1649), 1, + STATE(2254), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71486,7 +72592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71516,7 +72622,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2711] = 32, + [3096] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2455), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + anon_sym_LBRACK, + ACTIONS(2461), 1, + anon_sym_STAR, + ACTIONS(2465), 1, + anon_sym_default, + ACTIONS(2467), 1, + anon_sym_fn, + ACTIONS(2469), 1, + anon_sym_impl, + ACTIONS(2471), 1, + anon_sym_union, + ACTIONS(2473), 1, + anon_sym_BANG, + ACTIONS(2475), 1, + anon_sym_COLON_COLON, + ACTIONS(2477), 1, + anon_sym_AMP, + ACTIONS(2479), 1, + anon_sym_dyn, + ACTIONS(2485), 1, + sym_metavariable, + STATE(768), 1, + sym_scoped_type_identifier, + STATE(840), 1, + sym_generic_type, + STATE(1048), 1, + sym__type, + STATE(1196), 1, + sym_for_lifetimes, + STATE(2304), 1, + sym_scoped_identifier, + STATE(2382), 1, + sym_lifetime, + STATE(2384), 1, + sym_function_modifiers, + STATE(2473), 1, + sym_bracketed_type, + STATE(2474), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1557), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2483), 3, + sym_self, + sym_super, + sym_crate, + STATE(1068), 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(2463), 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, + [3225] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71547,32 +72750,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1394), 1, + STATE(1870), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71583,7 +72786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71613,7 +72816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2840] = 32, + [3354] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71644,32 +72847,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1400), 1, + STATE(1969), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71680,7 +72883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71710,7 +72913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2969] = 32, + [3483] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71741,32 +72944,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1626), 1, + STATE(1678), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71777,7 +72980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71807,7 +73010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3098] = 32, + [3612] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71838,32 +73041,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2046), 1, + STATE(1872), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71874,7 +73077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71904,7 +73107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3227] = 32, + [3741] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71935,32 +73138,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1809), 1, + STATE(1646), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71971,7 +73174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72001,7 +73204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3356] = 32, + [3870] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72032,32 +73235,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1928), 1, + STATE(1688), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72068,7 +73271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72098,7 +73301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3485] = 32, + [3999] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72129,32 +73332,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1625), 1, + STATE(1689), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72165,7 +73368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72195,7 +73398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3614] = 32, + [4128] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72226,32 +73429,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1811), 1, + STATE(2212), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72262,7 +73465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72292,7 +73495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3743] = 32, + [4257] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72323,32 +73526,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1841), 1, + STATE(1400), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72359,7 +73562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72389,7 +73592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3872] = 32, + [4386] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72420,32 +73623,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1402), 1, + STATE(2159), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72456,7 +73659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72486,7 +73689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4001] = 32, + [4515] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72517,32 +73720,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1398), 1, + STATE(1926), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72553,7 +73756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72583,7 +73786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4130] = 32, + [4644] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72614,32 +73817,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1399), 1, + STATE(2058), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72650,7 +73853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72680,7 +73883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4259] = 32, + [4773] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72711,32 +73914,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1840), 1, + STATE(1396), 1, + sym_lifetime, + STATE(1400), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, - sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72747,7 +73950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72777,7 +73980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4388] = 32, + [4902] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72808,32 +74011,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2016), 1, + STATE(1611), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72844,7 +74047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72874,7 +74077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4517] = 32, + [5031] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72905,32 +74108,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2074), 1, + STATE(1420), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72941,7 +74144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72971,32 +74174,86 @@ static const uint16_t ts_small_parse_table[] = { 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, + [5160] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(688), 1, anon_sym_STAR, - anon_sym_POUND, + ACTIONS(700), 1, + anon_sym_fn, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(704), 1, + anon_sym_impl, + ACTIONS(710), 1, anon_sym_BANG, - anon_sym_COMMA, - anon_sym_LT, + 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, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(908), 1, sym_metavariable, - ACTIONS(1176), 42, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1346), 1, + sym_scoped_type_identifier, + STATE(1386), 1, + sym_generic_type, + STATE(1419), 1, + sym__type, + STATE(2314), 1, + sym_scoped_identifier, + STATE(2380), 1, + sym_bracketed_type, + STATE(2381), 1, + sym_generic_type_with_turbofish, + STATE(2403), 1, + sym_lifetime, + STATE(2405), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1557), 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(1393), 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, @@ -73014,99 +74271,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4717] = 32, + [5289] = 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(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2395), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(753), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(808), 1, + STATE(1386), 1, sym_generic_type, - STATE(1080), 1, + STATE(1838), 1, sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, + STATE(2403), 1, + sym_lifetime, + STATE(2405), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1091), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73118,7 +74350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2381), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73136,7 +74368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4846] = 32, + [5418] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73167,32 +74399,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2468), 1, + ACTIONS(2309), 1, sym_identifier, - STATE(1188), 1, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1200), 1, sym_for_lifetimes, - STATE(1519), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1624), 1, - sym__type, - STATE(1635), 1, + STATE(1386), 1, sym_generic_type, - STATE(2280), 1, + STATE(1649), 1, + sym__type, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73203,7 +74435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73233,7 +74465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4975] = 32, + [5547] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73264,32 +74496,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2280), 1, - sym_scoped_identifier, - STATE(2309), 1, + STATE(2127), 1, sym__type, - STATE(2347), 1, + STATE(2314), 1, + sym_scoped_identifier, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73300,7 +74532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73330,7 +74562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5104] = 32, + [5676] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73361,32 +74593,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1396), 1, + STATE(1889), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73397,7 +74629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73427,7 +74659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5233] = 32, + [5805] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73458,32 +74690,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1999), 1, + STATE(1679), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73494,7 +74726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73524,7 +74756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5362] = 32, + [5934] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73555,32 +74787,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1674), 1, + STATE(1417), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73591,7 +74823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73621,7 +74853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5491] = 32, + [6063] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73652,32 +74884,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2106), 1, + STATE(1881), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73688,7 +74920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73718,7 +74950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5620] = 32, + [6192] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73749,32 +74981,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1971), 1, + STATE(1390), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73785,7 +75017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73815,7 +75047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5749] = 32, + [6321] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73846,32 +75078,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2075), 1, + STATE(2040), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73882,7 +75114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73912,7 +75144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5878] = 32, + [6450] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73943,32 +75175,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1618), 1, + STATE(1897), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73979,7 +75211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74009,7 +75241,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6007] = 32, + [6579] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1204), 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(1206), 42, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6650] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74040,32 +75340,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1401), 1, + STATE(2104), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74076,7 +75376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74106,7 +75406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6136] = 32, + [6779] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74137,32 +75437,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1698), 1, + STATE(2067), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74173,7 +75473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74203,7 +75503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6265] = 32, + [6908] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74234,32 +75534,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + ACTIONS(2540), 1, + sym_identifier, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1540), 1, sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(1868), 1, + STATE(1676), 1, sym__type, - STATE(2280), 1, + STATE(1713), 1, + sym_generic_type, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74270,7 +75570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74300,7 +75600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6394] = 32, + [7037] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74331,32 +75631,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1888), 1, + STATE(2301), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74367,7 +75667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74397,7 +75697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6523] = 32, + [7166] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74428,32 +75728,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2105), 1, + STATE(2115), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74464,7 +75764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74494,7 +75794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6652] = 32, + [7295] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74525,32 +75825,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2121), 1, + STATE(2010), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74561,7 +75861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74591,7 +75891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6781] = 32, + [7424] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74622,32 +75922,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2030), 1, + STATE(1597), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74658,7 +75958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74688,7 +75988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6910] = 32, + [7553] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74719,32 +76019,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2012), 1, + STATE(1661), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74755,7 +76055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74785,298 +76085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7039] = 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(1109), 1, - sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, - sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - 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, - STATE(1091), 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(2381), 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, - [7168] = 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(1125), 1, - sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, - sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - 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, - STATE(1091), 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(2381), 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, - [7297] = 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(1124), 1, - sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, - sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - 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, - STATE(1091), 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(2381), 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, - [7426] = 32, + [7682] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75107,32 +76116,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1847), 1, + STATE(2125), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75143,7 +76152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75173,7 +76182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7555] = 32, + [7811] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75204,32 +76213,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2156), 1, + STATE(2028), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75240,7 +76249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75270,7 +76279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7684] = 32, + [7940] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75301,32 +76310,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1865), 1, + STATE(2167), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75337,7 +76346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75367,7 +76376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7813] = 32, + [8069] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75398,32 +76407,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1677), 1, + STATE(1709), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75434,7 +76443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75464,7 +76473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7942] = 32, + [8198] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75495,32 +76504,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + ACTIONS(2542), 1, + sym_identifier, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1529), 1, sym_scoped_type_identifier, - STATE(1370), 1, - sym_generic_type, - STATE(2180), 1, + STATE(1641), 1, sym__type, - STATE(2280), 1, + STATE(1647), 1, + sym_generic_type, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75531,7 +76540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75561,7 +76570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8071] = 32, + [8327] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75592,32 +76601,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2470), 1, + ACTIONS(2309), 1, sym_identifier, - STATE(1188), 1, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1200), 1, sym_for_lifetimes, - STATE(1498), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1650), 1, - sym__type, - STATE(1651), 1, + STATE(1386), 1, sym_generic_type, - STATE(2280), 1, + STATE(2059), 1, + sym__type, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75628,7 +76637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75658,7 +76667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8200] = 32, + [8456] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75689,32 +76698,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2183), 1, + STATE(1708), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75725,7 +76734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75755,7 +76764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8329] = 32, + [8585] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75786,32 +76795,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1699), 1, + STATE(1896), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75822,7 +76831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75852,7 +76861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8458] = 32, + [8714] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75883,32 +76892,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1689), 1, + STATE(2057), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75919,7 +76928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75949,7 +76958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8587] = 32, + [8843] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75980,32 +76989,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2208), 1, + STATE(1412), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76016,7 +77025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76046,74 +77055,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8716] = 32, + [8972] = 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(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2395), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(753), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(808), 1, + STATE(1386), 1, sym_generic_type, - STATE(1104), 1, + STATE(1409), 1, sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, + STATE(2403), 1, + sym_lifetime, + STATE(2405), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1091), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76125,7 +77134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2381), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76143,7 +77152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8845] = 32, + [9101] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76174,32 +77183,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1672), 1, + STATE(1690), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76210,7 +77219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76240,7 +77249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8974] = 32, + [9230] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76271,32 +77280,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1914), 1, + STATE(2226), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76307,7 +77316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76337,171 +77346,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9103] = 32, + [9359] = 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, + ACTIONS(688), 1, anon_sym_STAR, - ACTIONS(2383), 1, - anon_sym_default, - ACTIONS(2385), 1, + ACTIONS(700), 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(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - 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, - STATE(1091), 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(2381), 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, - [9232] = 32, - ACTIONS(77), 1, - anon_sym_LT, 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(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2395), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(753), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(808), 1, + STATE(1386), 1, sym_generic_type, - STATE(1031), 1, + STATE(1673), 1, sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, + STATE(2403), 1, + sym_lifetime, + STATE(2405), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1091), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76513,7 +77425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2381), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76531,7 +77443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9361] = 32, + [9488] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76562,32 +77474,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2092), 1, + STATE(1653), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76598,7 +77510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76628,7 +77540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9490] = 32, + [9617] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76659,32 +77571,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1603), 1, + STATE(1692), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76695,7 +77607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76725,7 +77637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9619] = 32, + [9746] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76756,32 +77668,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1693), 1, + STATE(1685), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76792,7 +77704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76822,74 +77734,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9748] = 32, + [9875] = 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(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2395), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(753), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(808), 1, + STATE(1386), 1, sym_generic_type, - STATE(1049), 1, + STATE(1671), 1, sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, + STATE(2403), 1, + sym_lifetime, + STATE(2405), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1091), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76901,7 +77813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2381), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76919,7 +77831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9877] = 32, + [10004] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76950,32 +77862,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2141), 1, + STATE(1405), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76986,7 +77898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77016,74 +77928,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10006] = 32, + [10133] = 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, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2455), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2457), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2461), 1, + anon_sym_STAR, + ACTIONS(2465), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2467), 1, + anon_sym_fn, + ACTIONS(2469), 1, + anon_sym_impl, + ACTIONS(2471), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2473), 1, + anon_sym_BANG, + ACTIONS(2475), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2477), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2479), 1, + anon_sym_dyn, + ACTIONS(2485), 1, sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, + STATE(768), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(840), 1, sym_generic_type, - STATE(1643), 1, + STATE(1071), 1, sym__type, - STATE(2280), 1, + STATE(1196), 1, + sym_for_lifetimes, + STATE(2304), 1, sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2382), 1, sym_lifetime, - STATE(2404), 1, + STATE(2384), 1, sym_function_modifiers, + STATE(2473), 1, + sym_bracketed_type, + STATE(2474), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2483), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1068), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77095,7 +78007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2463), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77113,7 +78025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10135] = 32, + [10262] = 33, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77144,43 +78056,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + ACTIONS(2544), 1, + sym_self, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1925), 1, + STATE(1397), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + ACTIONS(906), 2, + sym_super, + sym_crate, + STATE(1557), 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, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77210,74 +78123,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10264] = 32, + [10393] = 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, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2455), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2457), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2461), 1, + anon_sym_STAR, + ACTIONS(2465), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2467), 1, + anon_sym_fn, + ACTIONS(2469), 1, + anon_sym_impl, + ACTIONS(2471), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2473), 1, + anon_sym_BANG, + ACTIONS(2475), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2477), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2479), 1, + anon_sym_dyn, + ACTIONS(2485), 1, sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, + STATE(768), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(840), 1, sym_generic_type, - STATE(2203), 1, + STATE(1099), 1, sym__type, - STATE(2280), 1, + STATE(1196), 1, + sym_for_lifetimes, + STATE(2304), 1, sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2382), 1, sym_lifetime, - STATE(2404), 1, + STATE(2384), 1, sym_function_modifiers, + STATE(2473), 1, + sym_bracketed_type, + STATE(2474), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2483), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1068), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77289,7 +78202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2463), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77307,7 +78220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10393] = 32, + [10522] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77338,32 +78251,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2041), 1, + STATE(2192), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77374,7 +78287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77404,7 +78317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10522] = 32, + [10651] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77435,32 +78348,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1685), 1, + STATE(1822), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77471,7 +78384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77501,103 +78414,6 @@ static const uint16_t ts_small_parse_table[] = { 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(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - 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, - STATE(1091), 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(2381), 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, [10780] = 32, ACTIONS(77), 1, anon_sym_LT, @@ -77629,32 +78445,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1644), 1, + STATE(1645), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77665,7 +78481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77726,32 +78542,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2213), 1, + STATE(1672), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77762,7 +78578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77823,32 +78639,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1802), 1, + STATE(1824), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77859,7 +78675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77920,32 +78736,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1376), 1, + STATE(1714), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77956,7 +78772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78017,32 +78833,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + ACTIONS(2546), 1, + sym_identifier, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1513), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1680), 1, sym_generic_type, - STATE(2214), 1, + STATE(1681), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78053,7 +78869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78114,32 +78930,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1690), 1, + STATE(1905), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78150,7 +78966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78211,32 +79027,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1376), 1, + STATE(2090), 1, sym__type, - STATE(1387), 1, - sym_lifetime, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2404), 1, + STATE(2403), 1, + sym_lifetime, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78247,7 +79063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78280,71 +79096,71 @@ static const uint16_t ts_small_parse_table[] = { [11683] = 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, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2455), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2457), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2461), 1, + anon_sym_STAR, + ACTIONS(2465), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2467), 1, + anon_sym_fn, + ACTIONS(2469), 1, + anon_sym_impl, + ACTIONS(2471), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2473), 1, + anon_sym_BANG, + ACTIONS(2475), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2477), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2479), 1, + anon_sym_dyn, + ACTIONS(2485), 1, sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, + STATE(768), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(840), 1, sym_generic_type, - STATE(1582), 1, + STATE(1098), 1, sym__type, - STATE(2280), 1, + STATE(1196), 1, + sym_for_lifetimes, + STATE(2304), 1, sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2382), 1, sym_lifetime, - STATE(2404), 1, + STATE(2384), 1, sym_function_modifiers, + STATE(2473), 1, + sym_bracketed_type, + STATE(2474), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2483), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1068), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78356,7 +79172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2463), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78405,32 +79221,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1694), 1, + STATE(2183), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78441,7 +79257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78502,32 +79318,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1634), 1, + STATE(2142), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78538,7 +79354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78571,71 +79387,71 @@ static const uint16_t ts_small_parse_table[] = { [12070] = 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, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2455), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2457), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2461), 1, + anon_sym_STAR, + ACTIONS(2465), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2467), 1, + anon_sym_fn, + ACTIONS(2469), 1, + anon_sym_impl, + ACTIONS(2471), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2473), 1, + anon_sym_BANG, + ACTIONS(2475), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2477), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2479), 1, + anon_sym_dyn, + ACTIONS(2485), 1, sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, + STATE(768), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(840), 1, sym_generic_type, - STATE(2273), 1, + STATE(1078), 1, sym__type, - STATE(2280), 1, + STATE(1196), 1, + sym_for_lifetimes, + STATE(2304), 1, sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2382), 1, sym_lifetime, - STATE(2404), 1, + STATE(2384), 1, sym_function_modifiers, + STATE(2473), 1, + sym_bracketed_type, + STATE(2474), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2483), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1068), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78647,7 +79463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2463), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78668,71 +79484,71 @@ static const uint16_t ts_small_parse_table[] = { [12199] = 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, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2455), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2457), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2461), 1, + anon_sym_STAR, + ACTIONS(2465), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2467), 1, + anon_sym_fn, + ACTIONS(2469), 1, + anon_sym_impl, + ACTIONS(2471), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2473), 1, + anon_sym_BANG, + ACTIONS(2475), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2477), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2479), 1, + anon_sym_dyn, + ACTIONS(2485), 1, sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, + STATE(768), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(840), 1, sym_generic_type, - STATE(1631), 1, + STATE(1137), 1, sym__type, - STATE(2280), 1, + STATE(1196), 1, + sym_for_lifetimes, + STATE(2304), 1, sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2382), 1, sym_lifetime, - STATE(2404), 1, + STATE(2384), 1, sym_function_modifiers, + STATE(2473), 1, + sym_bracketed_type, + STATE(2474), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2483), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1068), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78744,7 +79560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2463), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78793,32 +79609,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2079), 1, + STATE(1815), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78829,7 +79645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78862,71 +79678,71 @@ static const uint16_t ts_small_parse_table[] = { [12457] = 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(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2395), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(753), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(808), 1, + STATE(1386), 1, sym_generic_type, - STATE(1040), 1, - sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, + STATE(2317), 1, + sym__type, + STATE(2380), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, + STATE(2403), 1, + sym_lifetime, + STATE(2405), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1091), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78938,7 +79754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2381), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78959,71 +79775,71 @@ static const uint16_t ts_small_parse_table[] = { [12586] = 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, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2455), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2457), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2461), 1, + anon_sym_STAR, + ACTIONS(2465), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2467), 1, + anon_sym_fn, + ACTIONS(2469), 1, + anon_sym_impl, + ACTIONS(2471), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2473), 1, + anon_sym_BANG, + ACTIONS(2475), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2477), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2479), 1, + anon_sym_dyn, + ACTIONS(2485), 1, sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, + STATE(768), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(840), 1, sym_generic_type, - STATE(1655), 1, + STATE(1140), 1, sym__type, - STATE(2280), 1, + STATE(1196), 1, + sym_for_lifetimes, + STATE(2304), 1, sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2382), 1, sym_lifetime, - STATE(2404), 1, + STATE(2384), 1, sym_function_modifiers, + STATE(2473), 1, + sym_bracketed_type, + STATE(2474), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2483), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1068), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79035,7 +79851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2463), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79056,71 +79872,71 @@ static const uint16_t ts_small_parse_table[] = { [12715] = 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, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2453), 1, + sym_identifier, + ACTIONS(2455), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2457), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2461), 1, + anon_sym_STAR, + ACTIONS(2465), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2467), 1, + anon_sym_fn, + ACTIONS(2469), 1, + anon_sym_impl, + ACTIONS(2471), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2473), 1, + anon_sym_BANG, + ACTIONS(2475), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2477), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2479), 1, + anon_sym_dyn, + ACTIONS(2485), 1, sym_metavariable, - ACTIONS(2241), 1, - sym_identifier, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1333), 1, + STATE(768), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(840), 1, sym_generic_type, - STATE(1638), 1, + STATE(1119), 1, sym__type, - STATE(2280), 1, + STATE(1196), 1, + sym_for_lifetimes, + STATE(2304), 1, sym_scoped_identifier, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2382), 1, sym_lifetime, - STATE(2404), 1, + STATE(2384), 1, sym_function_modifiers, + STATE(2473), 1, + sym_bracketed_type, + STATE(2474), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2483), 3, sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1068), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79132,7 +79948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2463), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79181,32 +79997,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1380), 1, + STATE(1908), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79217,7 +80033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79278,32 +80094,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1640), 1, + STATE(1706), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79314,7 +80130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79375,32 +80191,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1383), 1, + STATE(2098), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79411,7 +80227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79472,32 +80288,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(2205), 1, + STATE(1705), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79508,7 +80324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79569,32 +80385,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1682), 1, + STATE(1704), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79605,7 +80421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79666,32 +80482,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1695), 1, + STATE(2094), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79702,7 +80518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79763,32 +80579,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1691), 1, + STATE(1998), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79799,7 +80615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79860,32 +80676,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1877), 1, + STATE(1891), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79896,7 +80712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79957,32 +80773,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2241), 1, + ACTIONS(2309), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_generic_type, - STATE(1656), 1, + STATE(2196), 1, sym__type, - STATE(2280), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2392), 1, + STATE(2403), 1, sym_lifetime, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79993,7 +80809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1392), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80026,71 +80842,71 @@ static const uint16_t ts_small_parse_table[] = { [14005] = 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(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2371), 1, - sym_identifier, - ACTIONS(2373), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_STAR, - ACTIONS(2383), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2385), 1, - anon_sym_fn, - ACTIONS(2387), 1, - anon_sym_impl, - ACTIONS(2389), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2391), 1, - anon_sym_BANG, - ACTIONS(2393), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2395), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2397), 1, - anon_sym_dyn, - ACTIONS(2403), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(753), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1346), 1, sym_scoped_type_identifier, - STATE(808), 1, + STATE(1386), 1, sym_generic_type, - STATE(1065), 1, + STATE(1703), 1, sym__type, - STATE(1182), 1, - sym_for_lifetimes, - STATE(2295), 1, + STATE(2314), 1, sym_scoped_identifier, - STATE(2325), 1, - sym_lifetime, - STATE(2353), 1, - sym_function_modifiers, - STATE(2456), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, + STATE(2403), 1, + sym_lifetime, + STATE(2405), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1091), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80102,7 +80918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2381), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80124,7 +80940,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2474), 17, + ACTIONS(880), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -80142,7 +80958,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2472), 40, + ACTIONS(878), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80187,7 +81003,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(880), 17, + ACTIONS(2550), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -80205,7 +81021,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(878), 40, + ACTIONS(2548), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80250,25 +81066,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2478), 17, + ACTIONS(404), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, - anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2476), 40, + ACTIONS(2552), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80300,7 +81117,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, - anon_sym_DASH, anon_sym_yield, anon_sym_move, anon_sym_true, @@ -80313,26 +81129,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(396), 18, + ACTIONS(2556), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, + anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2480), 39, + ACTIONS(2554), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80364,6 +81179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, + anon_sym_DASH, anon_sym_yield, anon_sym_move, anon_sym_true, @@ -80376,7 +81192,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1174), 15, + ACTIONS(1204), 15, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -80392,7 +81208,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1176), 38, + ACTIONS(1206), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80432,22 +81248,22 @@ static const uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [14460] = 9, - ACTIONS(2484), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(2564), 1, anon_sym_BANG, - ACTIONS(2490), 1, + ACTIONS(2566), 1, anon_sym_COLON_COLON, - ACTIONS(2492), 1, + ACTIONS(2568), 1, anon_sym_LT2, - STATE(851), 1, + STATE(893), 1, sym_type_arguments, - STATE(884), 1, + STATE(979), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2486), 17, + ACTIONS(2562), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80465,7 +81281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2482), 26, + ACTIONS(2558), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -80493,20 +81309,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, [14530] = 8, - ACTIONS(2484), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2490), 1, + ACTIONS(2566), 1, anon_sym_COLON_COLON, - ACTIONS(2492), 1, + ACTIONS(2568), 1, anon_sym_LT2, - STATE(851), 1, + STATE(893), 1, sym_type_arguments, - STATE(884), 1, + STATE(979), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2496), 17, + ACTIONS(2572), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80524,7 +81340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2494), 26, + ACTIONS(2570), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -80552,20 +81368,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, [14597] = 8, - ACTIONS(2484), 1, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2490), 1, + ACTIONS(2566), 1, anon_sym_COLON_COLON, - ACTIONS(2492), 1, + ACTIONS(2568), 1, anon_sym_LT2, - STATE(851), 1, + STATE(893), 1, sym_type_arguments, - STATE(884), 1, + STATE(979), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2500), 17, + ACTIONS(2576), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80583,7 +81399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2498), 26, + ACTIONS(2574), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -80614,7 +81430,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1872), 9, + ACTIONS(1866), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80624,7 +81440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1874), 38, + ACTIONS(1868), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80663,19 +81479,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14720] = 7, - ACTIONS(2484), 1, + [14720] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1458), 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(1460), 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, + [14776] = 7, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2492), 1, + ACTIONS(2568), 1, anon_sym_LT2, - STATE(855), 1, + STATE(905), 1, sym_type_arguments, - STATE(907), 1, + STATE(988), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2504), 17, + ACTIONS(2580), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80693,7 +81562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2502), 26, + ACTIONS(2578), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -80720,19 +81589,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14784] = 7, - ACTIONS(2484), 1, + [14840] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1588), 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(1590), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14896] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1270), 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(1272), 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, + [14952] = 7, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(2492), 1, + ACTIONS(2568), 1, anon_sym_LT2, - STATE(855), 1, + STATE(905), 1, sym_type_arguments, - STATE(907), 1, + STATE(988), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2508), 17, + ACTIONS(2584), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80750,7 +81725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2506), 26, + ACTIONS(2582), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -80777,17 +81752,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14848] = 5, - ACTIONS(2514), 1, + [15016] = 6, + ACTIONS(2592), 1, anon_sym_BANG, - ACTIONS(2516), 1, + ACTIONS(2594), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2512), 17, + ACTIONS(2590), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(2588), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -80796,32 +81779,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2510), 28, + ACTIONS(2586), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -80831,16 +81806,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14908] = 5, - ACTIONS(2522), 1, - anon_sym_BANG, - ACTIONS(2524), 1, - anon_sym_COLON_COLON, + [15078] = 7, + ACTIONS(2560), 1, + anon_sym_LPAREN, + ACTIONS(2568), 1, + anon_sym_LT2, + STATE(905), 1, + sym_type_arguments, + STATE(988), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2520), 17, + ACTIONS(2598), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80858,9 +81838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2518), 28, + ACTIONS(2596), 26, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -80871,7 +81850,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -80887,15 +81865,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14968] = 5, - ACTIONS(2530), 1, + [15142] = 5, + ACTIONS(2604), 1, anon_sym_BANG, - ACTIONS(2532), 1, + ACTIONS(2606), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2528), 17, + ACTIONS(2602), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80913,7 +81891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2526), 28, + ACTIONS(2600), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -80942,25 +81920,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15028] = 6, - ACTIONS(2540), 1, + [15202] = 5, + ACTIONS(2612), 1, anon_sym_BANG, - ACTIONS(2542), 1, + ACTIONS(2614), 1, anon_sym_COLON_COLON, 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, - ACTIONS(2536), 16, + ACTIONS(2610), 17, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -80969,24 +81939,32 @@ 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(2534), 23, + ACTIONS(2608), 28, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -80996,21 +81974,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [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, + [15262] = 5, + ACTIONS(2620), 1, + anon_sym_BANG, + ACTIONS(2622), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2546), 17, + ACTIONS(2618), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81028,8 +82001,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2544), 26, + ACTIONS(2616), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -81040,6 +82014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -81055,11 +82030,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15154] = 3, + [15322] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1756), 9, + ACTIONS(1534), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81069,7 +82044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1758), 38, + ACTIONS(1536), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81108,72 +82083,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15210] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1656), 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(1658), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15266] = 7, - ACTIONS(2488), 1, + [15378] = 7, + ACTIONS(2564), 1, anon_sym_BANG, - ACTIONS(2548), 1, + ACTIONS(2624), 1, anon_sym_LBRACE, - ACTIONS(2550), 1, + ACTIONS(2626), 1, anon_sym_COLON_COLON, - STATE(1094), 1, + STATE(1111), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(572), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81189,205 +82111,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 28, + ACTIONS(570), 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, - [15330] = 5, - ACTIONS(2556), 1, - anon_sym_BANG, - ACTIONS(2558), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2554), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2552), 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, - [15390] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1836), 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(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(1832), 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(1834), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15502] = 5, - ACTIONS(2560), 1, - anon_sym_else, - STATE(1035), 1, - sym_else_clause, + 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, + [15442] = 5, + ACTIONS(2632), 1, + anon_sym_BANG, + ACTIONS(2634), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(498), 15, + ACTIONS(2630), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81398,12 +82159,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(496), 29, + ACTIONS(2628), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81416,12 +82179,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, @@ -81431,15 +82194,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15561] = 4, - ACTIONS(2562), 1, + [15502] = 4, + ACTIONS(2636), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2556), 16, + ACTIONS(2632), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -81456,7 +82218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2558), 29, + ACTIONS(2634), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81486,13 +82248,67 @@ 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(2638), 1, + anon_sym_else, + STATE(1090), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(392), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(390), 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, [15618] = 4, - ACTIONS(2564), 1, + ACTIONS(2640), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2514), 16, + ACTIONS(2612), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -81509,7 +82325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2516), 29, + ACTIONS(2614), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81540,14 +82356,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [15675] = 5, - ACTIONS(2570), 1, + ACTIONS(2646), 1, anon_sym_SQUOTE, - STATE(1066), 1, + STATE(1069), 1, sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2568), 15, + ACTIONS(2644), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81563,7 +82379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2566), 29, + ACTIONS(2642), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81593,13 +82409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15734] = 4, - ACTIONS(2572), 1, - anon_sym_LBRACE, + [15734] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2522), 16, + ACTIONS(2604), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -81616,10 +82430,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2524), 29, + 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, @@ -81646,15 +82461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15791] = 5, - ACTIONS(2560), 1, + [15789] = 5, + ACTIONS(2638), 1, anon_sym_else, - STATE(1082), 1, + STATE(1091), 1, sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(490), 15, + ACTIONS(498), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81670,7 +82485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(488), 29, + ACTIONS(496), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81700,11 +82515,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15850] = 3, + [15848] = 4, + ACTIONS(2648), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2514), 16, + ACTIONS(2604), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -81721,11 +82538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2516), 30, + ACTIONS(2606), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -81753,12 +82569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [15905] = 4, - ACTIONS(2574), 1, + ACTIONS(2650), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2530), 16, + ACTIONS(2620), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -81775,7 +82591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2532), 29, + ACTIONS(2622), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81809,7 +82625,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1508), 7, + ACTIONS(1754), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81817,7 +82633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1510), 38, + ACTIONS(1756), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81860,7 +82676,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1940), 7, + ACTIONS(1568), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81868,7 +82684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1942), 38, + ACTIONS(1570), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81911,7 +82727,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1384), 7, + ACTIONS(1826), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81919,7 +82735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1386), 38, + ACTIONS(1828), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81962,7 +82778,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1220), 7, + ACTIONS(1786), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81970,7 +82786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1222), 38, + ACTIONS(1788), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82009,116 +82825,215 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16178] = 5, - ACTIONS(2578), 1, - anon_sym_LPAREN, - STATE(1098), 1, - sym_arguments, + [16178] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1758), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2576), 28, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1760), 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, + [16232] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1730), 7, 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_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, - [16236] = 4, - ACTIONS(2582), 1, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1732), 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, + [16286] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1822), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(566), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1824), 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, + [16340] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1710), 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, - [16292] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1712), 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, + [16394] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1154), 7, + ACTIONS(1814), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82126,7 +83041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1156), 38, + ACTIONS(1816), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82165,11 +83080,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16346] = 3, + [16448] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1118), 7, + ACTIONS(1694), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82177,7 +83092,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1120), 38, + ACTIONS(1696), 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, + [16502] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1690), 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(1692), 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, + [16556] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1682), 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(1684), 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, + [16610] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1806), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1808), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82216,11 +83284,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16400] = 3, + [16664] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1224), 7, + ACTIONS(1678), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82228,7 +83296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1226), 38, + ACTIONS(1680), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82267,11 +83335,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16454] = 3, + [16718] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1236), 7, + ACTIONS(1674), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82279,7 +83347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1238), 38, + ACTIONS(1676), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82318,11 +83386,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16508] = 3, + [16772] = 5, + ACTIONS(2654), 1, + anon_sym_LPAREN, + STATE(1115), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 15, + ACTIONS(2656), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82338,9 +83410,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2584), 30, + ACTIONS(2652), 28, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82350,7 +83421,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, @@ -82369,11 +83439,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16562] = 3, + [16830] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1284), 7, + ACTIONS(1818), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82381,7 +83451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1286), 38, + ACTIONS(1820), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82420,11 +83490,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16616] = 3, + [16884] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1688), 7, + ACTIONS(1670), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82432,7 +83502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1690), 38, + ACTIONS(1672), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82471,11 +83541,167 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16670] = 3, + [16938] = 4, + ACTIONS(2658), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1456), 7, + ACTIONS(572), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(570), 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, + [16994] = 5, + ACTIONS(2594), 1, + anon_sym_COLON_COLON, + ACTIONS(2660), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2588), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2586), 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, + [17052] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(848), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(850), 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, + [17106] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1666), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82483,7 +83709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1458), 38, + ACTIONS(1668), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82522,11 +83748,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16724] = 3, + [17160] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1288), 7, + ACTIONS(1846), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82534,7 +83760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1290), 38, + ACTIONS(1848), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82573,11 +83799,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16778] = 3, + [17214] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1300), 7, + ACTIONS(1798), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82585,7 +83811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1302), 38, + ACTIONS(1800), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82624,11 +83850,64 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16832] = 3, + [17268] = 5, + ACTIONS(2564), 1, + anon_sym_BANG, + ACTIONS(2662), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1480), 7, + ACTIONS(572), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(570), 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, + [17326] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1654), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82636,7 +83915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1482), 38, + ACTIONS(1656), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82675,11 +83954,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16886] = 3, + [17380] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1316), 7, + ACTIONS(1636), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82687,7 +83966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1318), 38, + ACTIONS(1638), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82726,62 +84005,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16940] = 3, + [17434] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2588), 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, - [16994] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1504), 7, + ACTIONS(1580), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82789,7 +84017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1506), 38, + ACTIONS(1582), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82828,11 +84056,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17048] = 3, + [17488] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1578), 7, + ACTIONS(554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82840,7 +84068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1580), 38, + ACTIONS(556), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82879,11 +84107,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17102] = 3, + [17542] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1582), 7, + ACTIONS(516), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82891,7 +84119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1584), 38, + ACTIONS(518), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82930,64 +84158,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [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(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, + [17596] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1590), 7, + ACTIONS(1850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82995,7 +84170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1592), 38, + ACTIONS(1852), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83034,62 +84209,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17268] = 3, + [17650] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(848), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(850), 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, - [17322] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1594), 7, + ACTIONS(1858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83097,7 +84221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1596), 38, + ACTIONS(1860), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83136,11 +84260,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17376] = 3, + [17704] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1610), 7, + ACTIONS(1098), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83148,7 +84272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1612), 38, + ACTIONS(1100), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83187,11 +84311,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17430] = 3, + [17758] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1660), 7, + ACTIONS(1862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83199,7 +84323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1662), 38, + ACTIONS(1864), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83238,11 +84362,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17484] = 3, + [17812] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1804), 7, + ACTIONS(1558), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83250,7 +84374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1806), 38, + ACTIONS(1560), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83289,11 +84413,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17538] = 3, + [17866] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1668), 7, + ACTIONS(546), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83301,7 +84425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1670), 38, + ACTIONS(548), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83340,11 +84464,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17592] = 3, + [17920] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1672), 7, + ACTIONS(644), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83352,7 +84476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1674), 38, + ACTIONS(646), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83391,64 +84515,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17646] = 5, - ACTIONS(2488), 1, - anon_sym_BANG, - ACTIONS(2594), 1, - anon_sym_COLON_COLON, + [17974] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, + ACTIONS(624), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83456,7 +84527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1842), 38, + ACTIONS(626), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83495,11 +84566,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17758] = 3, + [18028] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1732), 7, + ACTIONS(1874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83507,7 +84578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1734), 38, + ACTIONS(1876), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83546,11 +84617,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17812] = 3, + [18082] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1110), 7, + ACTIONS(1526), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83558,7 +84629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1112), 38, + ACTIONS(1528), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83597,114 +84668,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17866] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(532), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(530), 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, - [17920] = 4, - ACTIONS(2596), 1, - anon_sym_COLON_COLON, + [18136] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - 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, - [17976] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1740), 7, + ACTIONS(1510), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83712,7 +84680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1742), 38, + ACTIONS(1512), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83751,13 +84719,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18030] = 4, - ACTIONS(2598), 1, - anon_sym_COLON_COLON, + [18190] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2546), 15, + ACTIONS(548), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83773,7 +84739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2544), 29, + ACTIONS(546), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83803,64 +84769,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18086] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1864), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1866), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18140] = 4, - ACTIONS(2600), 1, + anon_sym_else, + [18244] = 4, + ACTIONS(2664), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2546), 15, + ACTIONS(2598), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83876,7 +84792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2544), 29, + ACTIONS(2596), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83906,11 +84822,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18196] = 3, + [18300] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1744), 7, + ACTIONS(1878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83918,7 +84834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1746), 38, + ACTIONS(1880), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83957,11 +84873,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18250] = 3, + [18354] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1972), 7, + ACTIONS(1204), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83969,7 +84885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1974), 38, + ACTIONS(1206), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84008,11 +84924,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18304] = 3, + [18408] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1348), 7, + ACTIONS(1882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84020,7 +84936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1350), 38, + ACTIONS(1884), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84059,11 +84975,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18358] = 3, + [18462] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1344), 7, + ACTIONS(1898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84071,7 +84987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1346), 38, + ACTIONS(1900), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84110,11 +85026,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18412] = 3, + [18516] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1880), 7, + ACTIONS(656), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84122,7 +85038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1882), 38, + ACTIONS(658), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84161,62 +85077,115 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18466] = 3, + [18570] = 4, + ACTIONS(2666), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1884), 7, + ACTIONS(2598), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2596), 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, + [18626] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2670), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1886), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18520] = 3, + ACTIONS(2672), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2668), 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, + [18682] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1892), 7, + ACTIONS(608), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84224,7 +85193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1894), 38, + ACTIONS(610), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84263,11 +85232,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18574] = 3, + [18736] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1996), 7, + ACTIONS(1922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84275,7 +85244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1998), 38, + ACTIONS(1924), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84314,11 +85283,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18628] = 3, + [18790] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1988), 7, + ACTIONS(1094), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84326,7 +85295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1990), 38, + ACTIONS(1096), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84365,11 +85334,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18682] = 3, + [18844] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1976), 7, + ACTIONS(1926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84377,7 +85346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1978), 38, + ACTIONS(1928), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84416,62 +85385,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18736] = 3, + [18898] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1968), 7, + ACTIONS(2676), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2674), 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(1970), 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, - [18790] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18952] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1960), 7, + ACTIONS(1958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84479,7 +85448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1962), 38, + ACTIONS(1960), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84518,11 +85487,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18844] = 3, + [19006] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1952), 7, + ACTIONS(1970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84530,7 +85499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1954), 38, + ACTIONS(1972), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84569,11 +85538,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18898] = 3, + [19060] = 4, + ACTIONS(2678), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(554), 7, + ACTIONS(2598), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2596), 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, + [19116] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1486), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84581,7 +85602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(556), 38, + ACTIONS(1488), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84620,11 +85641,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18952] = 3, + [19170] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1948), 7, + ACTIONS(1478), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84632,7 +85653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1950), 38, + ACTIONS(1480), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84671,11 +85692,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19006] = 3, + [19224] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1932), 7, + ACTIONS(1546), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84683,7 +85704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1934), 38, + ACTIONS(1548), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84722,62 +85743,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19060] = 3, + [19278] = 4, + ACTIONS(2684), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1912), 7, + ACTIONS(2682), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2680), 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(1914), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19114] = 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, + [19334] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(540), 7, + ACTIONS(1974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84785,7 +85807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(542), 38, + ACTIONS(1976), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84824,11 +85846,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19168] = 3, + [19388] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(530), 7, + ACTIONS(1462), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84836,7 +85858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(532), 38, + ACTIONS(1464), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84875,11 +85897,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19222] = 3, + [19442] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 7, + ACTIONS(1982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84887,7 +85909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(588), 38, + ACTIONS(1984), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84926,11 +85948,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19276] = 3, + [19496] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(602), 7, + ACTIONS(1454), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84938,7 +85960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(604), 38, + ACTIONS(1456), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84977,11 +85999,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19330] = 3, + [19550] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1984), 7, + ACTIONS(1474), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84989,7 +86011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1986), 38, + ACTIONS(1476), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85028,14 +86050,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19384] = 4, + [19604] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2606), 15, + ACTIONS(2688), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85051,10 +86070,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2602), 28, + ACTIONS(2686), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85062,6 +86082,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, @@ -85080,113 +86101,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19440] = 3, + [19658] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1174), 7, + ACTIONS(2692), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2690), 30, anon_sym_SEMI, - anon_sym_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(1176), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19494] = 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, + [19712] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(648), 7, + ACTIONS(2696), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2694), 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(650), 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, - [19548] = 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, + [19766] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(590), 7, + ACTIONS(1450), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85194,7 +86215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(592), 38, + ACTIONS(1452), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85233,113 +86254,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19602] = 3, + [19820] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2004), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + ACTIONS(2698), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(2006), 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, - [19656] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2000), 7, + ACTIONS(2672), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2668), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(2002), 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, - [19710] = 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, + [19876] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1992), 7, + ACTIONS(1386), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85347,7 +86318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1994), 38, + ACTIONS(1388), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85386,62 +86357,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19764] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - 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_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - 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, - [19818] = 3, + [19930] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1964), 7, + ACTIONS(1350), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85449,7 +86369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1966), 38, + ACTIONS(1352), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85488,11 +86408,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19872] = 3, + [19984] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1780), 7, + ACTIONS(1446), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85500,7 +86420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1782), 38, + ACTIONS(1448), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85539,11 +86459,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19926] = 3, + [20038] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1736), 7, + ACTIONS(1498), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85551,7 +86471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1738), 38, + ACTIONS(1500), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85590,11 +86510,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19980] = 3, + [20092] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1724), 7, + ACTIONS(1346), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85602,7 +86522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1726), 38, + ACTIONS(1348), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85641,11 +86561,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20034] = 3, + [20146] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1888), 7, + ACTIONS(1298), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85653,7 +86573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1890), 38, + ACTIONS(1300), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85692,11 +86612,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20088] = 3, + [20200] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1876), 7, + ACTIONS(1274), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85704,7 +86624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1878), 38, + ACTIONS(1276), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85743,11 +86663,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20142] = 3, + [20254] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1716), 7, + ACTIONS(1494), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85755,7 +86675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1718), 38, + ACTIONS(1496), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85794,11 +86714,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20196] = 3, + [20308] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1848), 7, + ACTIONS(1216), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85806,7 +86726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1850), 38, + ACTIONS(1218), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85845,11 +86765,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20250] = 3, + [20362] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1182), 7, + ACTIONS(1212), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85857,7 +86777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1184), 38, + ACTIONS(1214), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85896,62 +86816,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20304] = 3, + [20416] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, + ACTIONS(1102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85959,7 +86828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1710), 38, + ACTIONS(1104), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85998,62 +86867,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20412] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - 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_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - 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, - [20466] = 3, + [20470] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 15, + ACTIONS(2702), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86069,7 +86887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2616), 30, + ACTIONS(2700), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86100,11 +86918,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20520] = 3, + [20524] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1808), 7, + ACTIONS(1334), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86112,7 +86930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1810), 38, + ACTIONS(1336), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86151,11 +86969,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20574] = 3, + [20578] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1700), 7, + ACTIONS(1122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86163,7 +86981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1702), 38, + ACTIONS(1124), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86202,11 +87020,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20628] = 3, + [20632] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1800), 7, + ACTIONS(1258), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86214,7 +87032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1802), 38, + ACTIONS(1260), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86253,62 +87071,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20682] = 3, + [20686] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2620), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - 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, + ACTIONS(1330), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86316,7 +87083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1698), 38, + ACTIONS(1332), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86355,63 +87122,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20790] = 4, - ACTIONS(2628), 1, - anon_sym_DASH_GT, + [20740] = 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, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - 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, + ACTIONS(1624), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86419,7 +87134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1100), 38, + ACTIONS(1626), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86458,11 +87173,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20900] = 3, + [20794] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1788), 7, + ACTIONS(1310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86470,7 +87185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1790), 38, + ACTIONS(1312), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86509,11 +87224,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20954] = 3, + [20848] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1676), 7, + ACTIONS(1266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86521,7 +87236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1678), 38, + ACTIONS(1268), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86560,11 +87275,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21008] = 3, + [20902] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1776), 7, + ACTIONS(1522), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86572,7 +87287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1778), 38, + ACTIONS(1524), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86611,11 +87326,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21062] = 3, + [20956] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1094), 7, + ACTIONS(1286), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86623,7 +87338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1096), 38, + ACTIONS(1288), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86662,11 +87377,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21116] = 3, + [21010] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1618), 7, + ACTIONS(1142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86674,7 +87389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1620), 38, + ACTIONS(1144), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86713,11 +87428,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21170] = 3, + [21064] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1562), 7, + ACTIONS(1134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86725,7 +87440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1564), 38, + ACTIONS(1136), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86764,13 +87479,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21224] = 4, - ACTIONS(2634), 1, - anon_sym_DASH_GT, + [21118] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2632), 15, + ACTIONS(2706), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86786,7 +87499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2630), 29, + ACTIONS(2704), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86798,6 +87511,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, @@ -86816,63 +87530,11 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, + [21172] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1768), 7, + ACTIONS(1612), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86880,7 +87542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1770), 38, + ACTIONS(1614), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86919,11 +87581,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21390] = 3, + [21226] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1760), 7, + ACTIONS(1616), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86931,7 +87593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1762), 38, + ACTIONS(1618), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86970,11 +87632,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21444] = 3, + [21280] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1460), 7, + ACTIONS(1254), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86982,7 +87644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1462), 38, + ACTIONS(1256), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87021,11 +87683,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21498] = 3, + [21334] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1448), 7, + ACTIONS(1910), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87033,7 +87695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1450), 38, + ACTIONS(1912), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87072,11 +87734,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21552] = 3, + [21388] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1444), 7, + ACTIONS(1246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87084,7 +87746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1446), 38, + ACTIONS(1248), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87123,13 +87785,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21606] = 4, - ACTIONS(2600), 1, - anon_sym_COLON_COLON, + [21442] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2508), 15, + ACTIONS(518), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87145,7 +87805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2506), 29, + ACTIONS(516), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87175,113 +87835,12 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, - [21716] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1752), 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(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, + anon_sym_else, + [21496] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1432), 7, + ACTIONS(1208), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87289,7 +87848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1434), 38, + ACTIONS(1210), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87328,11 +87887,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21824] = 3, + [21550] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1412), 7, + ACTIONS(1196), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87340,7 +87899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1414), 38, + ACTIONS(1198), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87379,11 +87938,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21878] = 3, + [21604] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1748), 7, + ACTIONS(2030), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87391,7 +87950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1750), 38, + ACTIONS(2032), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87430,11 +87989,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21932] = 3, + [21658] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1126), 7, + ACTIONS(1188), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87442,7 +88001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1128), 38, + ACTIONS(1190), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87481,11 +88040,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21986] = 3, + [21712] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1404), 7, + ACTIONS(1250), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87493,7 +88052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1406), 38, + ACTIONS(1252), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87532,63 +88091,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22040] = 4, - ACTIONS(2600), 1, - anon_sym_COLON_COLON, + [21766] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2504), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2502), 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, - [22096] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1134), 7, + ACTIONS(2006), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87596,7 +88103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1136), 38, + ACTIONS(2008), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87635,11 +88142,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22150] = 3, + [21820] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1400), 7, + ACTIONS(1192), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87647,7 +88154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1402), 38, + ACTIONS(1194), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87686,11 +88193,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22204] = 3, + [21874] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1142), 7, + ACTIONS(1842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87698,7 +88205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1144), 38, + ACTIONS(1844), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87737,13 +88244,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22258] = 4, - ACTIONS(2642), 1, - anon_sym_DASH_GT, + [21928] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, + ACTIONS(2710), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87759,7 +88264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2638), 29, + ACTIONS(2708), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87771,6 +88276,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, @@ -87789,11 +88295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22314] = 3, + [21982] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1170), 7, + ACTIONS(1118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87801,7 +88307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1172), 38, + ACTIONS(1120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87840,62 +88346,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22368] = 3, + [22036] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, + ACTIONS(1126), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22422] = 3, + sym_metavariable, + ACTIONS(1128), 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, + [22090] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(1130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87903,7 +88409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1654), 38, + ACTIONS(1132), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87942,11 +88448,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22476] = 3, + [22144] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1648), 7, + ACTIONS(1138), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87954,7 +88460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1650), 38, + ACTIONS(1140), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87993,11 +88499,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22530] = 3, + [22198] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1392), 7, + ACTIONS(1794), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88005,7 +88511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1394), 38, + ACTIONS(1796), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88044,11 +88550,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22584] = 3, + [22252] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1644), 7, + ACTIONS(1306), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88056,7 +88562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1646), 38, + ACTIONS(1308), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88095,11 +88601,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22638] = 3, + [22306] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1626), 7, + ACTIONS(1790), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88107,7 +88613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1628), 38, + ACTIONS(1792), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88146,11 +88652,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22692] = 3, + [22360] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1388), 7, + ACTIONS(1150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88158,7 +88664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1390), 38, + ACTIONS(1152), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88197,11 +88703,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22746] = 3, + [22414] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1484), 7, + ACTIONS(1154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88209,7 +88715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1486), 38, + ACTIONS(1156), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88248,11 +88754,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22800] = 3, + [22468] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1380), 7, + ACTIONS(1782), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88260,7 +88766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1382), 38, + ACTIONS(1784), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88299,11 +88805,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22854] = 3, + [22522] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1492), 7, + ACTIONS(1158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88311,7 +88817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1494), 38, + ACTIONS(1160), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88350,11 +88856,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22908] = 3, + [22576] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 15, + ACTIONS(2714), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88370,7 +88876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2648), 30, + ACTIONS(2712), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88382,7 +88888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -88401,11 +88907,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22962] = 3, + [22630] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1232), 7, + ACTIONS(1162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88413,7 +88919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1234), 38, + ACTIONS(1164), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88452,11 +88958,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23016] = 3, + [22684] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1512), 7, + ACTIONS(1200), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88464,7 +88970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1514), 38, + ACTIONS(1202), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88503,11 +89009,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23070] = 3, + [22738] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1468), 7, + ACTIONS(1466), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88515,7 +89021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1470), 38, + ACTIONS(1468), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88554,11 +89060,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23124] = 3, + [22792] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1368), 7, + ACTIONS(1778), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88566,7 +89072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1370), 38, + ACTIONS(1780), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88605,11 +89111,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23178] = 3, + [22846] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1296), 7, + ACTIONS(1762), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88617,7 +89123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1298), 38, + ACTIONS(1764), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88656,11 +89162,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23232] = 3, + [22900] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1364), 7, + ACTIONS(1302), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88668,7 +89174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1366), 38, + ACTIONS(1304), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88707,11 +89213,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23286] = 3, + [22954] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1542), 7, + ACTIONS(1632), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88719,7 +89225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1544), 38, + ACTIONS(1634), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88758,11 +89264,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23340] = 3, + [23008] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1634), 7, + ACTIONS(1314), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88770,7 +89276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1636), 38, + ACTIONS(1316), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88809,11 +89315,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23394] = 3, + [23062] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1340), 7, + ACTIONS(1322), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88821,7 +89327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1342), 38, + ACTIONS(1324), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88860,11 +89366,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23448] = 3, + [23116] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1408), 7, + ACTIONS(1342), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88872,7 +89378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1410), 38, + ACTIONS(1344), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88911,63 +89417,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23502] = 4, - ACTIONS(2656), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2654), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2652), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23558] = 3, + [23170] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1528), 7, + ACTIONS(1358), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88975,7 +89429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1530), 38, + ACTIONS(1360), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89014,11 +89468,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23612] = 3, + [23224] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1396), 7, + ACTIONS(1370), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89026,7 +89480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1398), 38, + ACTIONS(1372), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89065,11 +89519,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23666] = 3, + [23278] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1546), 7, + ACTIONS(1374), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89077,7 +89531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1548), 38, + ACTIONS(1376), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89116,11 +89570,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23720] = 3, + [23332] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1328), 7, + ACTIONS(1698), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89128,7 +89582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1330), 38, + ACTIONS(1700), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89167,11 +89621,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23774] = 3, + [23386] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1324), 7, + ACTIONS(1382), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89179,7 +89633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1326), 38, + ACTIONS(1384), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89218,11 +89672,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23828] = 3, + [23440] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1276), 7, + ACTIONS(1394), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89230,7 +89684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1278), 38, + ACTIONS(1396), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89269,11 +89723,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23882] = 3, + [23494] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1550), 7, + ACTIONS(1398), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89281,7 +89735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1552), 38, + ACTIONS(1400), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89320,11 +89774,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23936] = 3, + [23548] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1574), 7, + ACTIONS(1706), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89332,7 +89786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1576), 38, + ACTIONS(1708), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89371,11 +89825,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23990] = 3, + [23602] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1280), 7, + ACTIONS(1746), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89383,7 +89837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1282), 38, + ACTIONS(1748), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89422,11 +89876,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24044] = 3, + [23656] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1264), 7, + ACTIONS(1414), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89434,7 +89888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1266), 38, + ACTIONS(1416), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89473,11 +89927,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24098] = 3, + [23710] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1252), 7, + ACTIONS(1426), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89485,7 +89939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1254), 38, + ACTIONS(1428), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89524,11 +89978,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24152] = 3, + [23764] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1166), 7, + ACTIONS(1742), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89536,7 +89990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1168), 38, + ACTIONS(1744), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89575,11 +90029,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24206] = 3, + [23818] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1146), 7, + ACTIONS(1434), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89587,7 +90041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1148), 38, + ACTIONS(1436), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89626,11 +90080,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24260] = 3, + [23872] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1684), 7, + ACTIONS(1722), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89638,7 +90092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1686), 38, + ACTIONS(1724), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89677,11 +90131,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24314] = 3, + [23926] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1138), 7, + ACTIONS(1718), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89689,7 +90143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1140), 38, + ACTIONS(1720), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89728,11 +90182,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24368] = 3, + [23980] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1130), 7, + ACTIONS(1442), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89740,7 +90194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1132), 38, + ACTIONS(1444), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89779,11 +90233,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24422] = 3, + [24034] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1586), 7, + ACTIONS(1714), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89791,7 +90245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1588), 38, + ACTIONS(1716), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89830,11 +90284,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24476] = 3, + [24088] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1272), 7, + ACTIONS(1750), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89842,7 +90296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1274), 38, + ACTIONS(1752), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89881,11 +90335,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24530] = 3, + [24142] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1260), 7, + ACTIONS(1766), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89893,7 +90347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1262), 38, + ACTIONS(1768), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89932,11 +90386,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24584] = 3, + [24196] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1106), 7, + ACTIONS(1834), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89944,7 +90398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1108), 38, + ACTIONS(1836), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89983,11 +90437,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24638] = 3, + [24250] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1606), 7, + ACTIONS(1686), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89995,7 +90449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1608), 38, + ACTIONS(1688), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90034,11 +90488,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24692] = 3, + [24304] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1244), 7, + ACTIONS(1620), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90046,7 +90500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1246), 38, + ACTIONS(1622), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90085,11 +90539,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24746] = 3, + [24358] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1150), 7, + ACTIONS(1838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90097,7 +90551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1152), 38, + ACTIONS(1840), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90136,11 +90590,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24800] = 3, + [24412] = 4, + ACTIONS(2720), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2660), 15, + ACTIONS(2718), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90156,7 +90612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2658), 30, + ACTIONS(2716), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90168,7 +90624,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, @@ -90187,62 +90642,11 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1116), 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, - [24908] = 3, + [24468] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1728), 7, + ACTIONS(1894), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90250,7 +90654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1730), 38, + ACTIONS(1896), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90289,11 +90693,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24962] = 3, + [24522] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1102), 7, + ACTIONS(1542), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90301,7 +90705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1104), 38, + ACTIONS(1544), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90340,11 +90744,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25016] = 3, + [24576] = 4, + ACTIONS(2678), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1622), 7, + ACTIONS(2580), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2578), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24632] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1518), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90352,7 +90808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1624), 38, + ACTIONS(1520), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90391,11 +90847,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25070] = 3, + [24686] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1428), 7, + ACTIONS(1502), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90403,7 +90859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1430), 38, + ACTIONS(1504), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90442,11 +90898,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25124] = 3, + [24740] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1638), 7, + ACTIONS(1482), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90454,7 +90910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1640), 38, + ACTIONS(1484), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90493,11 +90949,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25178] = 3, + [24794] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1122), 7, + ACTIONS(1470), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90505,7 +90961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1124), 38, + ACTIONS(1472), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90544,11 +91000,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25232] = 3, + [24848] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1416), 7, + ACTIONS(1438), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90556,7 +91012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1418), 38, + ACTIONS(1440), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90595,11 +91051,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25286] = 3, + [24902] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1712), 7, + ACTIONS(1584), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90607,7 +91063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1714), 38, + ACTIONS(1586), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90646,11 +91102,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25340] = 3, + [24956] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1436), 7, + ACTIONS(1430), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90658,7 +91114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1438), 38, + ACTIONS(1432), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90697,11 +91153,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25394] = 3, + [25010] = 4, + ACTIONS(2726), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1784), 7, + ACTIONS(2724), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2722), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25066] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1422), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90709,7 +91217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1786), 38, + ACTIONS(1424), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90748,11 +91256,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25448] = 3, + [25120] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1868), 7, + ACTIONS(1914), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90760,7 +91268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1870), 38, + ACTIONS(1916), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90799,11 +91307,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25502] = 3, + [25174] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1944), 7, + ACTIONS(1938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90811,7 +91319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1946), 38, + ACTIONS(1940), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90850,11 +91358,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25556] = 3, + [25228] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1816), 7, + ACTIONS(1418), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90862,7 +91370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1818), 38, + ACTIONS(1420), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90901,11 +91409,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25610] = 3, + [25282] = 4, + ACTIONS(2732), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2664), 15, + ACTIONS(2730), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90921,7 +91431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2662), 30, + ACTIONS(2728), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90933,7 +91443,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, @@ -90952,11 +91461,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25664] = 3, + [25338] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1820), 7, + ACTIONS(1410), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90964,7 +91473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1822), 38, + ACTIONS(1412), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91003,11 +91512,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25718] = 3, + [25392] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1904), 7, + ACTIONS(1406), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91015,7 +91524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1906), 38, + ACTIONS(1408), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91054,11 +91563,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25772] = 3, + [25446] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1186), 7, + ACTIONS(1592), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91066,7 +91575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1188), 38, + ACTIONS(1594), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91105,11 +91614,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25826] = 3, + [25500] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1452), 7, + ACTIONS(1600), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91117,7 +91626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1454), 38, + ACTIONS(1602), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91156,11 +91665,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25880] = 3, + [25554] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1472), 7, + ACTIONS(1990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91168,7 +91677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1474), 38, + ACTIONS(1992), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91207,11 +91716,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25934] = 3, + [25608] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1476), 7, + ACTIONS(2026), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91219,7 +91728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1478), 38, + ACTIONS(2028), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91258,11 +91767,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25988] = 3, + [25662] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1308), 7, + ACTIONS(1930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91270,7 +91779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1310), 38, + ACTIONS(1932), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91309,11 +91818,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26042] = 3, + [25716] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1390), 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(1392), 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, + [25770] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1924), 7, + ACTIONS(1378), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91321,7 +91881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1926), 38, + ACTIONS(1380), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91360,11 +91920,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26096] = 3, + [25824] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1704), 7, + ACTIONS(1402), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91372,7 +91932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1706), 38, + ACTIONS(1404), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91411,11 +91971,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26150] = 3, + [25878] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1312), 7, + ACTIONS(1646), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91423,7 +91983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1314), 38, + ACTIONS(1648), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91462,11 +92022,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26204] = 3, + [25932] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1488), 7, + ACTIONS(1650), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91474,7 +92034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1490), 38, + ACTIONS(1652), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91513,11 +92073,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26258] = 3, + [25986] = 4, + ACTIONS(2738), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1614), 7, + ACTIONS(2736), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2734), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26042] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1326), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91525,7 +92137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1616), 38, + ACTIONS(1328), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91564,11 +92176,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26312] = 3, + [26096] = 4, + ACTIONS(2678), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2584), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2582), 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, + [26152] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1372), 7, + ACTIONS(1294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91576,7 +92240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1374), 38, + ACTIONS(1296), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91615,11 +92279,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26366] = 3, + [26206] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1500), 7, + ACTIONS(1146), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91627,7 +92291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1502), 38, + ACTIONS(1148), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91666,11 +92330,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26420] = 3, + [26260] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1516), 7, + ACTIONS(1338), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91678,7 +92342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1518), 38, + ACTIONS(1340), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91717,11 +92381,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26474] = 3, + [26314] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1520), 7, + ACTIONS(1554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91729,7 +92393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1522), 38, + ACTIONS(1556), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91768,11 +92432,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26528] = 3, + [26368] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1420), 7, + ACTIONS(1870), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91780,7 +92444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1422), 38, + ACTIONS(1872), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91819,11 +92483,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26582] = 3, + [26422] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1524), 7, + ACTIONS(1114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91831,7 +92495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1526), 38, + ACTIONS(1116), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91870,11 +92534,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26636] = 3, + [26476] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1936), 7, + ACTIONS(1726), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91882,7 +92546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1938), 38, + ACTIONS(1728), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91921,11 +92585,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26690] = 3, + [26530] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1336), 7, + ACTIONS(1110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91933,7 +92597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1338), 38, + ACTIONS(1112), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91972,113 +92636,114 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26744] = 3, + [26584] = 4, + ACTIONS(2744), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1424), 7, + ACTIONS(2742), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2740), 29, anon_sym_SEMI, - anon_sym_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(1426), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26798] = 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, + [26640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1558), 7, + ACTIONS(2748), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2746), 30, anon_sym_SEMI, - anon_sym_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(1560), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26852] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1566), 7, + ACTIONS(1290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92086,7 +92751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1568), 38, + ACTIONS(1292), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92125,11 +92790,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26906] = 3, + [26748] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1570), 7, + ACTIONS(1318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92137,7 +92802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1572), 38, + ACTIONS(1320), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92176,11 +92841,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26960] = 3, + [26802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1602), 7, + ACTIONS(1506), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92188,7 +92853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1604), 38, + ACTIONS(1508), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92227,11 +92892,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27014] = 3, + [26856] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1464), 7, + ACTIONS(1514), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92239,7 +92904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1466), 38, + ACTIONS(1516), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92278,62 +92943,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27068] = 3, + [26910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1536), 7, + ACTIONS(2752), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2750), 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(1538), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27122] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26964] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1292), 7, + ACTIONS(1354), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92341,7 +93006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1294), 38, + ACTIONS(1356), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92380,11 +93045,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27176] = 3, + [27018] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1190), 7, + ACTIONS(1366), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92392,7 +93057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1192), 38, + ACTIONS(1368), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92431,62 +93096,114 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27230] = 3, + [27072] = 4, + ACTIONS(2758), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1928), 7, + ACTIONS(2756), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2754), 29, anon_sym_SEMI, - anon_sym_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_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27128] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2762), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2760), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1930), 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, - [27284] = 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, + [27182] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1856), 7, + ACTIONS(1550), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92494,7 +93211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1858), 38, + ACTIONS(1552), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92533,11 +93250,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27338] = 3, + [27236] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1598), 7, + ACTIONS(1770), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92545,7 +93262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1600), 38, + ACTIONS(1772), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92584,11 +93301,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27392] = 3, + [27290] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1772), 7, + ACTIONS(1774), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92596,7 +93313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1774), 38, + ACTIONS(1776), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92635,11 +93352,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27446] = 3, + [27344] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1844), 7, + ACTIONS(1802), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92647,7 +93364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1846), 38, + ACTIONS(1804), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92686,11 +93403,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27500] = 3, + [27398] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1852), 7, + ACTIONS(1830), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92698,7 +93415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1854), 38, + ACTIONS(1832), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92737,62 +93454,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27554] = 3, + [27452] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1496), 7, + ACTIONS(2602), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2600), 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_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, + 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, + [27506] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1860), 7, + ACTIONS(1854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92800,7 +93517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1862), 38, + ACTIONS(1856), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92839,11 +93556,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27662] = 3, + [27560] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1900), 7, + ACTIONS(1942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92851,7 +93568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1902), 38, + ACTIONS(1944), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92890,11 +93607,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27716] = 3, + [27614] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(1950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92902,7 +93619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1910), 38, + ACTIONS(1952), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92941,11 +93658,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27770] = 3, + [27668] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2766), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2764), 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, + [27722] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1916), 7, + ACTIONS(1994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92953,7 +93721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1918), 38, + ACTIONS(1996), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92992,63 +93760,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27824] = 4, - ACTIONS(2670), 1, - anon_sym_DASH_GT, + [27776] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2668), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1998), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2666), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2000), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27830] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2018), 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, - [27880] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2020), 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, + [27884] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1828), 7, + ACTIONS(1890), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93056,7 +93874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1830), 38, + ACTIONS(1892), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93095,7 +93913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27934] = 3, + [27938] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -93146,63 +93964,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_else, - [27988] = 4, - ACTIONS(2676), 1, - anon_sym_DASH_GT, + [27992] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2674), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1490), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2672), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1492), 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, + [28046] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1262), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28044] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1264), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28100] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(1604), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93210,7 +94078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1632), 38, + ACTIONS(1606), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93249,11 +94117,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28098] = 3, + [28154] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1956), 7, + ACTIONS(2022), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93261,7 +94129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1958), 38, + ACTIONS(2024), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93300,11 +94168,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28152] = 3, + [28208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1980), 7, + ACTIONS(2010), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93312,7 +94180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1982), 38, + ACTIONS(2012), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93351,11 +94219,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28206] = 3, + [28262] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1792), 7, + ACTIONS(2002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93363,7 +94231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1794), 38, + ACTIONS(2004), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93402,11 +94270,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28260] = 3, + [28316] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1376), 7, + ACTIONS(1986), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93414,7 +94282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1378), 38, + ACTIONS(1988), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93453,11 +94321,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28314] = 3, + [28370] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1356), 7, + ACTIONS(1978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93465,7 +94333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1358), 38, + ACTIONS(1980), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93504,11 +94372,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28368] = 3, + [28424] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1352), 7, + ACTIONS(1954), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93516,7 +94384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1354), 38, + ACTIONS(1956), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93555,11 +94423,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28422] = 3, + [28478] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1796), 7, + ACTIONS(1946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93567,7 +94435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1798), 38, + ACTIONS(1948), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93606,11 +94474,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28476] = 3, + [28532] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1304), 7, + ACTIONS(1934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93618,7 +94486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1306), 38, + ACTIONS(1936), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93657,11 +94525,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28530] = 3, + [28586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1268), 7, + ACTIONS(1906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93669,7 +94537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1270), 38, + ACTIONS(1908), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93708,11 +94576,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28584] = 3, + [28640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1554), 7, + ACTIONS(1902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93720,7 +94588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1556), 38, + ACTIONS(1904), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93759,11 +94627,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28638] = 3, + [28694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1256), 7, + ACTIONS(1966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93771,7 +94639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1258), 38, + ACTIONS(1968), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93810,11 +94678,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28692] = 3, + [28748] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1532), 7, + ACTIONS(1962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93822,7 +94690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1534), 38, + ACTIONS(1964), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93861,11 +94729,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28746] = 3, + [28802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1812), 7, + ACTIONS(1886), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93873,7 +94741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1814), 38, + ACTIONS(1888), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93912,11 +94780,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28800] = 3, + [28856] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1824), 7, + ACTIONS(1810), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93924,7 +94792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1826), 38, + ACTIONS(1812), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93963,63 +94831,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28854] = 4, - ACTIONS(2682), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2680), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2678), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - 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, [28910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1360), 7, + ACTIONS(1738), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94027,7 +94843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1362), 38, + ACTIONS(1740), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94070,7 +94886,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1248), 7, + ACTIONS(1702), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94078,7 +94894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1250), 38, + ACTIONS(1704), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94121,7 +94937,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1332), 7, + ACTIONS(1662), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94129,7 +94945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1334), 38, + ACTIONS(1664), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94172,7 +94988,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1240), 7, + ACTIONS(1734), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94180,7 +94996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1242), 38, + ACTIONS(1736), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94223,7 +95039,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1680), 7, + ACTIONS(2014), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94231,7 +95047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1682), 38, + ACTIONS(2016), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94274,7 +95090,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1692), 7, + ACTIONS(1576), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94282,7 +95098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1694), 38, + ACTIONS(1578), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94325,7 +95141,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1720), 7, + ACTIONS(1658), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94333,7 +95149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1722), 38, + ACTIONS(1660), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94376,7 +95192,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1320), 7, + ACTIONS(1564), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94384,7 +95200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1322), 38, + ACTIONS(1566), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94427,7 +95243,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1228), 7, + ACTIONS(1538), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94435,7 +95251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1230), 38, + ACTIONS(1540), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94478,109 +95294,109 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2686), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2684), 30, + ACTIONS(1530), 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, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1532), 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, [29450] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2690), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2688), 30, + ACTIONS(1362), 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, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1364), 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, [29504] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1764), 7, + ACTIONS(1278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94588,7 +95404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1766), 38, + ACTIONS(1280), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94631,7 +95447,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1896), 7, + ACTIONS(1642), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94639,7 +95455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1898), 38, + ACTIONS(1644), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94682,7 +95498,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(1628), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94690,7 +95506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1922), 38, + ACTIONS(1630), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94733,7 +95549,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1178), 7, + ACTIONS(1608), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94741,7 +95557,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1180), 38, + ACTIONS(1610), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29720] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1106), 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(1108), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94780,62 +95647,11 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_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_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - 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, [29774] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(1596), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94843,7 +95659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1666), 38, + ACTIONS(1598), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94886,7 +95702,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1158), 7, + ACTIONS(1918), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94894,7 +95710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1160), 38, + ACTIONS(1920), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94937,7 +95753,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1162), 7, + ACTIONS(1572), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94945,7 +95761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1164), 38, + ACTIONS(1574), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94988,7 +95804,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(580), 15, + ACTIONS(662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95004,7 +95820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(578), 29, + ACTIONS(660), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95038,7 +95854,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 15, + ACTIONS(2770), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95054,7 +95870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2602), 29, + ACTIONS(2768), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95085,12 +95901,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [30042] = 4, - ACTIONS(2542), 1, + ACTIONS(2594), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2536), 15, + ACTIONS(2588), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95106,7 +95922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2534), 28, + ACTIONS(2586), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95139,208 +95955,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2694), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2692), 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, - [30150] = 4, - ACTIONS(2700), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2698), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(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, - [30205] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2704), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2702), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - 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, - [30258] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2708), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2706), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30311] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(646), 15, + ACTIONS(2774), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95356,7 +95971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(644), 29, + ACTIONS(2772), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95386,11 +96001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30364] = 3, + [30150] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 15, + ACTIONS(2778), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95406,7 +96021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2710), 29, + ACTIONS(2776), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95436,7 +96051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30417] = 3, + [30203] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -95486,11 +96101,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30470] = 3, + [30256] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2716), 15, + ACTIONS(2782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95506,7 +96121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2714), 29, + ACTIONS(2780), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95536,11 +96151,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30523] = 3, + [30309] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2720), 15, + ACTIONS(2786), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95556,7 +96171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2718), 29, + ACTIONS(2784), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95586,11 +96201,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30576] = 3, + [30362] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2724), 15, + ACTIONS(2790), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95606,7 +96221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2722), 29, + ACTIONS(2788), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95636,11 +96251,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30629] = 3, + [30415] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2305), 15, + ACTIONS(2369), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95656,7 +96271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2307), 29, + ACTIONS(2371), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95686,11 +96301,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30682] = 3, + [30468] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2728), 15, + ACTIONS(618), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95706,7 +96321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2726), 29, + ACTIONS(616), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95736,11 +96351,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30735] = 3, + [30521] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2317), 15, + ACTIONS(658), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95756,7 +96371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2319), 29, + ACTIONS(656), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95786,13 +96401,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30788] = 4, - ACTIONS(2730), 1, - anon_sym_COLON_COLON, + [30574] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(2401), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95808,10 +96421,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 28, + ACTIONS(2403), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -95837,11 +96451,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30843] = 3, + [30627] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(604), 15, + ACTIONS(2794), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95857,7 +96471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(602), 29, + ACTIONS(2792), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95887,11 +96501,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30896] = 3, + [30680] = 4, + ACTIONS(2796), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2734), 15, + ACTIONS(572), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95907,11 +96523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2732), 29, + ACTIONS(570), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -95937,11 +96552,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30949] = 3, + [30735] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2734), 15, + ACTIONS(622), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95957,7 +96572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2732), 29, + ACTIONS(620), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95987,11 +96602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31002] = 3, + [30788] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2738), 15, + ACTIONS(2800), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96007,7 +96622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2736), 29, + ACTIONS(2798), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96037,11 +96652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31055] = 3, + [30841] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 15, + ACTIONS(2804), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96057,7 +96672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2740), 29, + ACTIONS(2802), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96087,11 +96702,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31108] = 3, + [30894] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2746), 15, + ACTIONS(670), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96107,7 +96722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2744), 29, + ACTIONS(668), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96137,11 +96752,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31161] = 3, + [30947] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2750), 15, + ACTIONS(2656), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96157,7 +96772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2748), 29, + ACTIONS(2652), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96187,11 +96802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31214] = 3, + [31000] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2754), 15, + ACTIONS(2808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96207,7 +96822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2752), 29, + ACTIONS(2806), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96237,11 +96852,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31267] = 3, + [31053] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2758), 15, + ACTIONS(2812), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96257,7 +96872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2756), 29, + ACTIONS(2810), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96287,11 +96902,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31320] = 3, + [31106] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(638), 15, + ACTIONS(2816), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96307,7 +96922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(636), 29, + ACTIONS(2814), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96337,11 +96952,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31373] = 3, + [31159] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 15, + ACTIONS(2820), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96357,7 +96972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2576), 29, + ACTIONS(2818), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96387,61 +97002,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31426] = 3, + [31212] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2762), 12, + ACTIONS(2824), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2822), 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, + [31265] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2828), 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(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, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2826), 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, + [31318] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2766), 15, + ACTIONS(580), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96457,7 +97122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2764), 29, + ACTIONS(578), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96487,11 +97152,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31532] = 3, + [31371] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 15, + ACTIONS(2598), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96507,7 +97172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2768), 29, + ACTIONS(2596), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96537,11 +97202,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31585] = 3, + [31424] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2774), 15, + ACTIONS(2832), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96557,7 +97222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2772), 29, + ACTIONS(2830), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96587,26 +97252,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31638] = 5, - ACTIONS(2776), 1, - anon_sym_POUND, + [31477] = 4, + ACTIONS(2838), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2421), 9, + ACTIONS(2836), 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(2419), 32, + ACTIONS(2834), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96624,26 +97291,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, - [31695] = 3, + [31532] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2781), 15, + ACTIONS(2842), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96659,7 +97323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2779), 29, + ACTIONS(2840), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96689,11 +97353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31748] = 3, + [31585] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(630), 15, + ACTIONS(638), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96709,7 +97373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(628), 29, + ACTIONS(636), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96739,11 +97403,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31801] = 3, + [31638] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2785), 15, + ACTIONS(626), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96759,7 +97423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2783), 29, + ACTIONS(624), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96789,11 +97453,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31854] = 3, + [31691] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2789), 15, + ACTIONS(560), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96809,7 +97473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2787), 29, + ACTIONS(558), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96839,11 +97503,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31907] = 3, + [31744] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(584), 15, + ACTIONS(2389), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96859,7 +97523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(582), 29, + ACTIONS(2391), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96889,61 +97553,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31960] = 3, + [31797] = 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, + ACTIONS(2846), 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(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, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2844), 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, + [31850] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2797), 15, + ACTIONS(2850), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96959,7 +97623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2795), 29, + ACTIONS(2848), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96989,11 +97653,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32066] = 3, + [31903] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2801), 15, + ACTIONS(2854), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97009,7 +97673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2799), 29, + ACTIONS(2852), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97039,11 +97703,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32119] = 3, + [31956] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2805), 15, + ACTIONS(2858), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97059,7 +97723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2803), 29, + ACTIONS(2856), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97089,24 +97753,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32172] = 3, + [32009] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2809), 12, + ACTIONS(2862), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2860), 29, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_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, + [32062] = 21, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(900), 1, anon_sym_COLON_COLON, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2864), 1, + sym_identifier, + ACTIONS(2868), 1, + anon_sym_LPAREN, + ACTIONS(2870), 1, + anon_sym_STAR, + ACTIONS(2876), 1, + anon_sym_for, + ACTIONS(2878), 1, anon_sym_AMP, + ACTIONS(2880), 1, sym_metavariable, - ACTIONS(2807), 32, + STATE(1851), 1, + sym_scoped_type_identifier, + STATE(1983), 1, + sym_generic_type, + STATE(2066), 1, + sym_where_predicate, + STATE(2380), 1, + sym_bracketed_type, + STATE(2381), 1, + sym_generic_type_with_turbofish, + STATE(2539), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2866), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(2874), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(2316), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2872), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97124,26 +97871,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32225] = 3, + [32151] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2813), 15, + ACTIONS(2884), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97159,7 +97891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2811), 29, + ACTIONS(2882), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97189,11 +97921,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32278] = 3, + [32204] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2313), 15, + ACTIONS(634), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97209,7 +97941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2315), 29, + ACTIONS(632), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97239,11 +97971,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32331] = 3, + [32257] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(592), 15, + ACTIONS(2888), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97259,7 +97991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(590), 29, + ACTIONS(2886), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97289,11 +98021,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32384] = 3, + [32310] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2817), 15, + ACTIONS(2892), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97309,7 +98041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2815), 29, + ACTIONS(2890), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97339,11 +98071,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32437] = 3, + [32363] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(674), 15, + ACTIONS(2896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97359,7 +98091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(672), 29, + ACTIONS(2894), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97389,61 +98121,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32490] = 3, + [32416] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, + ACTIONS(654), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97459,7 +98141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2823), 29, + ACTIONS(652), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97489,129 +98171,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32596] = 3, + [32469] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2829), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(2900), 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_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_GT, 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_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2898), 29, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, - 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, + 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, + [32522] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2851), 15, + ACTIONS(2672), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97627,7 +98241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2849), 29, + ACTIONS(2668), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97657,11 +98271,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32791] = 3, + [32575] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2855), 15, + ACTIONS(678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97677,7 +98291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2853), 29, + ACTIONS(676), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97707,11 +98321,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32844] = 3, + [32628] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2859), 15, + ACTIONS(564), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97727,7 +98341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2857), 29, + ACTIONS(562), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97757,11 +98371,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32897] = 3, + [32681] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2863), 15, + ACTIONS(2904), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97777,7 +98391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2861), 29, + ACTIONS(2902), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97807,11 +98421,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32950] = 3, + [32734] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(608), 15, + ACTIONS(2908), 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(2906), 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, + [32787] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2864), 1, + sym_identifier, + ACTIONS(2868), 1, + anon_sym_LPAREN, + ACTIONS(2870), 1, + anon_sym_STAR, + ACTIONS(2876), 1, + anon_sym_for, + ACTIONS(2878), 1, + anon_sym_AMP, + ACTIONS(2880), 1, + sym_metavariable, + STATE(1851), 1, + sym_scoped_type_identifier, + STATE(1983), 1, + sym_generic_type, + STATE(2066), 1, + sym_where_predicate, + STATE(2380), 1, + sym_bracketed_type, + STATE(2381), 1, + sym_generic_type_with_turbofish, + STATE(2539), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2874), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(2910), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(2316), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2872), 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, + [32876] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2914), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97827,7 +98559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(606), 29, + ACTIONS(2912), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97857,11 +98589,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33003] = 3, + [32929] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2918), 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(2916), 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, + [32982] = 4, + ACTIONS(2924), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2867), 15, + ACTIONS(2922), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2920), 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, + [33037] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2928), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97877,7 +98710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2865), 29, + ACTIONS(2926), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97907,11 +98740,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33056] = 3, + [33090] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(662), 15, + ACTIONS(2932), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97927,7 +98760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(660), 29, + ACTIONS(2930), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97957,11 +98790,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33109] = 3, + [33143] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(312), 15, + ACTIONS(2936), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97977,7 +98810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(310), 29, + ACTIONS(2934), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98007,11 +98840,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33162] = 3, + [33196] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2871), 15, + ACTIONS(2584), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98027,7 +98860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2869), 29, + ACTIONS(2582), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98057,61 +98890,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33215] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2875), 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(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, + [33249] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2295), 15, + ACTIONS(2940), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98127,7 +98910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2297), 29, + ACTIONS(2938), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98157,11 +98940,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33321] = 3, + [33302] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(654), 15, + ACTIONS(2944), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98177,7 +98960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(652), 29, + ACTIONS(2942), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98207,62 +98990,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33374] = 4, - ACTIONS(2881), 1, - anon_sym_RBRACE, + [33355] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2879), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2877), 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, - [33429] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2546), 15, + ACTIONS(2948), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98278,7 +99010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2544), 29, + ACTIONS(2946), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98308,11 +99040,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33482] = 3, + [33408] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(650), 15, + ACTIONS(338), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98328,7 +99060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(648), 29, + ACTIONS(336), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98358,11 +99090,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33535] = 3, + [33461] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 15, + ACTIONS(2952), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98378,7 +99110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2883), 29, + ACTIONS(2950), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98408,11 +99140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33588] = 3, + [33514] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2889), 15, + ACTIONS(2948), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98428,7 +99160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2887), 29, + ACTIONS(2946), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98458,79 +99190,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [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(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, + [33567] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, + ACTIONS(2956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98546,7 +99210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(668), 29, + ACTIONS(2954), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98576,11 +99240,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33783] = 3, + [33620] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2895), 15, + ACTIONS(2385), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98596,7 +99260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2893), 29, + ACTIONS(2387), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98626,11 +99290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33836] = 3, + [33673] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2899), 15, + ACTIONS(2580), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98646,7 +99310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2897), 29, + ACTIONS(2578), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98676,11 +99340,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33889] = 3, + [33726] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2903), 15, + ACTIONS(2960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98696,7 +99360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2901), 29, + ACTIONS(2958), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98726,11 +99390,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33942] = 3, + [33779] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(666), 15, + ACTIONS(2964), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98746,7 +99410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(664), 29, + ACTIONS(2962), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98776,11 +99440,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33995] = 3, + [33832] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2907), 15, + ACTIONS(666), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98796,7 +99460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2905), 29, + ACTIONS(664), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98826,11 +99490,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34048] = 3, + [33885] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2911), 15, + ACTIONS(2968), 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(2966), 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, + [33938] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98846,7 +99560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2909), 29, + ACTIONS(2970), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98876,11 +99590,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34101] = 3, + [33991] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2915), 15, + ACTIONS(2976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98896,7 +99610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2913), 29, + ACTIONS(2974), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98926,11 +99640,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34154] = 3, + [34044] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2919), 15, + ACTIONS(2980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98946,7 +99660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2917), 29, + ACTIONS(2978), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98976,11 +99690,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34207] = 3, + [34097] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2923), 15, + ACTIONS(2984), 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(2982), 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, + [34150] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2988), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98996,7 +99760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2921), 29, + ACTIONS(2986), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99026,11 +99790,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34260] = 3, + [34203] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(658), 15, + ACTIONS(2992), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99046,7 +99810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(656), 29, + ACTIONS(2990), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99076,11 +99840,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34313] = 3, + [34256] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2996), 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(2994), 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, + [34309] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3000), 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(2998), 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, + [34362] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2508), 15, + ACTIONS(3004), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99096,7 +99960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2506), 29, + ACTIONS(3002), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99126,11 +99990,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34366] = 3, + [34415] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(576), 15, + ACTIONS(3008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99146,7 +100010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(574), 29, + ACTIONS(3006), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99176,11 +100040,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34419] = 3, + [34468] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2927), 15, + ACTIONS(3012), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99196,7 +100060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2925), 29, + ACTIONS(3010), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99226,11 +100090,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34472] = 3, + [34521] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(678), 15, + ACTIONS(3016), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99246,7 +100110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(676), 29, + ACTIONS(3014), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99276,11 +100140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34525] = 3, + [34574] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2931), 15, + ACTIONS(3020), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99296,7 +100160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2929), 29, + ACTIONS(3018), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99326,11 +100190,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34578] = 3, + [34627] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2935), 15, + ACTIONS(610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99346,7 +100210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2933), 29, + ACTIONS(608), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99376,11 +100240,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34631] = 3, + [34680] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(588), 15, + ACTIONS(3024), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99396,7 +100260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(586), 29, + ACTIONS(3022), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99426,11 +100290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34684] = 3, + [34733] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(600), 15, + ACTIONS(606), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99446,7 +100310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(598), 29, + ACTIONS(604), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99476,11 +100340,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34737] = 3, + [34786] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(596), 15, + ACTIONS(602), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99496,7 +100360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(594), 29, + ACTIONS(600), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99526,11 +100390,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34790] = 3, + [34839] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 15, + ACTIONS(650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99546,7 +100410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2937), 29, + ACTIONS(648), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99576,11 +100440,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34843] = 3, + [34892] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2943), 15, + ACTIONS(674), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99596,7 +100460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2941), 29, + ACTIONS(672), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99626,11 +100490,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34896] = 3, + [34945] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2947), 15, + ACTIONS(630), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99646,7 +100510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2945), 29, + ACTIONS(628), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99676,111 +100540,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34949] = 3, + [34998] = 5, + ACTIONS(3026), 1, + anon_sym_POUND, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2951), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2949), 29, - anon_sym_SEMI, + STATE(1135), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2501), 9, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [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_SQUOTE, + anon_sym_BANG, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, + sym_metavariable, + ACTIONS(2499), 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, [35055] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2504), 15, + ACTIONS(3031), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99796,7 +100612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2502), 29, + ACTIONS(3029), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99830,7 +100646,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(560), 15, + ACTIONS(3035), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99846,7 +100662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(558), 29, + ACTIONS(3033), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99880,7 +100696,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2955), 15, + ACTIONS(614), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99896,7 +100712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2953), 29, + ACTIONS(612), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99930,7 +100746,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2959), 15, + ACTIONS(646), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99946,7 +100762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2957), 29, + ACTIONS(644), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99980,7 +100796,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2963), 15, + ACTIONS(3039), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99996,7 +100812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2961), 29, + ACTIONS(3037), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100026,50 +100842,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35320] = 17, - ACTIONS(2967), 1, + [35320] = 16, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2973), 1, + ACTIONS(3049), 1, anon_sym_EQ, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3057), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(3055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2965), 19, + ACTIONS(3041), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100079,6 +100893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100089,20 +100904,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35400] = 7, - ACTIONS(2967), 1, + [35398] = 7, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2981), 1, + ACTIONS(3057), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2979), 2, + ACTIONS(3055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2999), 13, + ACTIONS(3073), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100116,7 +100931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2997), 25, + ACTIONS(3071), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100142,103 +100957,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35460] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2698), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(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, + [35458] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3057), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(3055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3001), 7, + ACTIONS(3075), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100246,7 +101012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100257,19 +101023,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35598] = 7, - ACTIONS(2548), 1, + [35544] = 7, + ACTIONS(2624), 1, anon_sym_LBRACE, - ACTIONS(2550), 1, + ACTIONS(2626), 1, anon_sym_COLON_COLON, - ACTIONS(3011), 1, + ACTIONS(3087), 1, anon_sym_BANG, - STATE(1094), 1, + STATE(1111), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(572), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100285,7 +101051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 24, + ACTIONS(570), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -100310,20 +101076,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35658] = 7, - ACTIONS(2967), 1, + [35604] = 7, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2981), 1, + ACTIONS(3057), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2979), 2, + ACTIONS(3055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3015), 13, + ACTIONS(3091), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100337,7 +101103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3013), 25, + ACTIONS(3089), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100363,45 +101129,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35718] = 17, + [35664] = 17, ACTIONS(288), 1, anon_sym_EQ, - ACTIONS(2967), 1, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3057), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(3055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -100426,24 +101192,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35798] = 8, - ACTIONS(2967), 1, + [35744] = 8, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2981), 1, + ACTIONS(3057), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2979), 2, + ACTIONS(3055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 10, + ACTIONS(3049), 10, anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, @@ -100454,7 +101220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3017), 25, + ACTIONS(3041), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100480,59 +101246,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35860] = 17, - ACTIONS(2967), 1, + [35806] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3057), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3023), 1, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, anon_sym_EQ, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(3055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3021), 19, + ACTIONS(3093), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100543,20 +101312,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35940] = 7, - ACTIONS(2967), 1, + [35892] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2836), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2834), 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, + [35944] = 7, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2981), 1, + ACTIONS(3057), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2979), 2, + ACTIONS(3055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3019), 13, + ACTIONS(3049), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100570,7 +101388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 25, + ACTIONS(3041), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100596,50 +101414,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36000] = 17, - ACTIONS(2967), 1, + [36004] = 17, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3057), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3027), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3097), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(3055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3025), 19, + ACTIONS(3095), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100659,50 +101477,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36080] = 17, - ACTIONS(2967), 1, + [36084] = 17, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3057), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3031), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3101), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(3055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3029), 19, + ACTIONS(3099), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100722,40 +101540,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36160] = 13, - ACTIONS(2967), 1, + [36164] = 7, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3057), 1, anon_sym_DOT_DOT, - ACTIONS(2987), 1, - anon_sym_PIPE, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 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, + ACTIONS(3055), 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, + ACTIONS(3105), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3019), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3017), 25, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3103), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100781,62 +101593,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36232] = 20, - ACTIONS(2967), 1, + [36224] = 17, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3057), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3109), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(3055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3033), 7, + ACTIONS(3107), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36304] = 13, + ACTIONS(3043), 1, + anon_sym_LBRACK, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3057), 1, + anon_sym_DOT_DOT, + ACTIONS(3061), 1, + anon_sym_PIPE, + ACTIONS(3063), 1, + anon_sym_CARET, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3045), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3055), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3047), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3049), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3041), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3009), 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100847,11 +101715,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36318] = 3, + [36376] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2879), 14, + ACTIONS(2922), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -100866,7 +101734,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2877), 29, + ACTIONS(2920), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100896,37 +101764,100 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36370] = 10, - ACTIONS(2967), 1, + [36428] = 17, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2981), 1, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3057), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(3059), 1, + anon_sym_AMP_AMP, + ACTIONS(3061), 1, + anon_sym_PIPE, + ACTIONS(3063), 1, + anon_sym_CARET, + ACTIONS(3069), 1, anon_sym_DOT, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3113), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2979), 2, + ACTIONS(3051), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 6, + ACTIONS(3065), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3111), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36508] = 10, + ACTIONS(3043), 1, + anon_sym_LBRACK, + ACTIONS(3057), 1, + anon_sym_DOT_DOT, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3045), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3055), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3047), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3049), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3017), 25, + ACTIONS(3041), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100952,46 +101883,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36436] = 15, - ACTIONS(2967), 1, + [36574] = 15, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3049), 1, + anon_sym_EQ, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3057), 1, anon_sym_DOT_DOT, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3019), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(3055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3017), 21, + ACTIONS(3041), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101013,48 +101944,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36512] = 16, - ACTIONS(2967), 1, + [36650] = 17, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3057), 1, anon_sym_DOT_DOT, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3019), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3117), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2979), 2, + ACTIONS(3055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3017), 20, + ACTIONS(3115), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101064,7 +101997,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101075,39 +102007,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36590] = 12, - ACTIONS(2967), 1, + [36730] = 9, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, - anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3057), 1, anon_sym_DOT_DOT, - ACTIONS(2989), 1, - anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2979), 2, + ACTIONS(3055), 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, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 4, + ACTIONS(3049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3017), 25, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3041), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101133,34 +102062,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36660] = 7, - ACTIONS(2967), 1, + [36794] = 11, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2981), 1, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3057), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2979), 2, + ACTIONS(3045), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 13, - anon_sym_PLUS, + ACTIONS(3067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3047), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3049), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3035), 25, + ACTIONS(3041), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101186,38 +102119,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36720] = 11, - ACTIONS(2967), 1, + [36862] = 12, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2981), 1, + ACTIONS(3057), 1, anon_sym_DOT_DOT, - ACTIONS(2995), 1, + ACTIONS(3063), 1, + anon_sym_CARET, + ACTIONS(3069), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2979), 2, + ACTIONS(3055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 5, + ACTIONS(3049), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3017), 25, + ACTIONS(3041), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101243,114 +102177,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36788] = 9, - ACTIONS(2967), 1, + [36932] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2974), 10, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(2981), 1, - anon_sym_DOT_DOT, - ACTIONS(2995), 1, - anon_sym_DOT, + 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(2976), 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, + [36983] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1204), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(1206), 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, + [37034] = 6, + ACTIONS(2592), 1, + anon_sym_BANG, + ACTIONS(2594), 1, + anon_sym_COLON_COLON, + ACTIONS(3119), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2588), 16, 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_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3017), 25, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2586), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36852] = 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(3041), 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_QMARK, 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(2991), 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(3039), 19, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101361,54 +102324,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36932] = 20, + [37091] = 20, ACTIONS(77), 1, anon_sym_LT, ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2245), 1, + ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(2864), 1, sym_identifier, - ACTIONS(2835), 1, + ACTIONS(2868), 1, anon_sym_LPAREN, - ACTIONS(2837), 1, + ACTIONS(2870), 1, anon_sym_STAR, - ACTIONS(2843), 1, + ACTIONS(2876), 1, anon_sym_for, - ACTIONS(2845), 1, + ACTIONS(2878), 1, anon_sym_AMP, - ACTIONS(2847), 1, + ACTIONS(2880), 1, sym_metavariable, - STATE(1848), 1, + STATE(1851), 1, sym_scoped_type_identifier, - STATE(1927), 1, - sym_generic_type, - STATE(2052), 1, + STATE(1854), 1, sym_where_predicate, - STATE(2347), 1, + STATE(1983), 1, + sym_generic_type, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2497), 1, + STATE(2539), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2841), 2, + ACTIONS(2874), 2, anon_sym_default, anon_sym_union, ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(2263), 5, + STATE(2316), 5, sym_higher_ranked_trait_bound, sym_lifetime, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(2839), 17, + ACTIONS(2872), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101426,54 +102389,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37017] = 21, + [37176] = 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, + ACTIONS(2467), 1, + anon_sym_fn, + ACTIONS(2475), 1, anon_sym_COLON_COLON, - ACTIONS(2847), 1, - sym_metavariable, - ACTIONS(3043), 1, + ACTIONS(3121), 1, sym_identifier, - ACTIONS(3045), 1, + ACTIONS(3125), 1, anon_sym_default, - STATE(1188), 1, - sym_for_lifetimes, - STATE(1330), 1, + ACTIONS(3127), 1, + sym_metavariable, + STATE(766), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(970), 1, sym_generic_type, - STATE(1389), 1, + STATE(1101), 1, sym_function_type, - STATE(2347), 1, - sym_bracketed_type, - STATE(2348), 1, - sym_generic_type_with_turbofish, - STATE(2404), 1, + STATE(1196), 1, + sym_for_lifetimes, + STATE(2384), 1, sym_function_modifiers, - STATE(2497), 1, + STATE(2399), 1, sym_scoped_identifier, + STATE(2473), 1, + sym_bracketed_type, + STATE(2474), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2483), 3, sym_self, sym_super, sym_crate, - ACTIONS(2841), 18, + ACTIONS(3123), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101492,54 +102455,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37104] = 21, + [37263] = 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(2385), 1, - anon_sym_fn, - ACTIONS(2393), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(3047), 1, + ACTIONS(2880), 1, + sym_metavariable, + ACTIONS(3129), 1, sym_identifier, - ACTIONS(3051), 1, + ACTIONS(3131), 1, anon_sym_default, - ACTIONS(3053), 1, - sym_metavariable, - STATE(748), 1, + STATE(1200), 1, + sym_for_lifetimes, + STATE(1347), 1, sym_scoped_type_identifier, - STATE(872), 1, + STATE(1372), 1, sym_generic_type, - STATE(1107), 1, + STATE(1416), 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, + STATE(2380), 1, sym_bracketed_type, - STATE(2457), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, + STATE(2405), 1, + sym_function_modifiers, + STATE(2539), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2401), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - ACTIONS(3049), 18, + ACTIONS(2874), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101558,49 +102521,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37191] = 17, + [37350] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(966), 1, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2467), 1, + anon_sym_fn, + ACTIONS(2475), 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, + ACTIONS(3125), 1, + anon_sym_default, + ACTIONS(3127), 1, sym_metavariable, - STATE(1577), 1, + ACTIONS(3133), 1, + sym_identifier, + STATE(763), 1, + sym_scoped_type_identifier, + STATE(942), 1, + sym_generic_type, + STATE(1110), 1, + sym_function_type, + STATE(1196), 1, + sym_for_lifetimes, + STATE(2384), 1, + sym_function_modifiers, + STATE(2399), 1, sym_scoped_identifier, - STATE(2341), 1, - sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2473), 1, sym_bracketed_type, + STATE(2474), 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(1070), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2078), 2, - sym_meta_item, - sym__literal, - ACTIONS(3063), 3, + STATE(1557), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2483), 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, + ACTIONS(3123), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101618,24 +102586,55 @@ static const uint16_t ts_small_parse_table[] = { 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, + [37437] = 20, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(900), 1, anon_sym_COLON_COLON, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2864), 1, + sym_identifier, + ACTIONS(2868), 1, + anon_sym_LPAREN, + ACTIONS(2870), 1, + anon_sym_STAR, + ACTIONS(2876), 1, + anon_sym_for, + ACTIONS(2878), 1, anon_sym_AMP, + ACTIONS(2880), 1, sym_metavariable, - ACTIONS(2907), 32, + STATE(1851), 1, + sym_scoped_type_identifier, + STATE(1983), 1, + sym_generic_type, + STATE(2066), 1, + sym_where_predicate, + STATE(2380), 1, + sym_bracketed_type, + STATE(2381), 1, + sym_generic_type_with_turbofish, + STATE(2539), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2874), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(2316), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2872), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101653,73 +102652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_mutable_specifier, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [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(2536), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2534), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37378] = 21, + [37522] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(700), 1, @@ -101730,32 +102663,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2847), 1, + ACTIONS(2880), 1, sym_metavariable, - ACTIONS(3045), 1, + ACTIONS(3131), 1, anon_sym_default, - ACTIONS(3069), 1, + ACTIONS(3135), 1, sym_identifier, - STATE(1188), 1, + STATE(1200), 1, sym_for_lifetimes, - STATE(1332), 1, + STATE(1348), 1, sym_scoped_type_identifier, - STATE(1373), 1, + STATE(1378), 1, sym_generic_type, - STATE(1381), 1, + STATE(1398), 1, sym_function_type, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2404), 1, + STATE(2405), 1, sym_function_modifiers, - STATE(2497), 1, + STATE(2539), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -101766,7 +102699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - ACTIONS(2841), 18, + ACTIONS(2874), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101785,54 +102718,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37465] = 20, + [37609] = 17, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(900), 1, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(2831), 1, + ACTIONS(3137), 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, + ACTIONS(3139), 1, + anon_sym_RPAREN, + ACTIONS(3143), 1, + anon_sym_COMMA, + ACTIONS(3147), 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, + STATE(1590), 1, sym_scoped_identifier, + STATE(2372), 1, + sym_generic_type_with_turbofish, + STATE(2470), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2841), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(906), 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1075), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2128), 2, + sym_meta_item, + sym__literal, + ACTIONS(3145), 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, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3141), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101850,88 +102778,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37550] = 21, + anon_sym_default, + anon_sym_union, + [37688] = 5, + ACTIONS(2662), 1, + anon_sym_COLON_COLON, + ACTIONS(3087), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(572), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(570), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37742] = 16, 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, + ACTIONS(732), 1, + anon_sym_DASH, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3051), 1, - anon_sym_default, - ACTIONS(3053), 1, - sym_metavariable, - ACTIONS(3071), 1, + ACTIONS(3149), 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, + ACTIONS(3155), 1, + sym_metavariable, + STATE(1442), 1, sym_scoped_identifier, - STATE(2456), 1, - sym_bracketed_type, - STATE(2457), 1, + STATE(1459), 1, + sym__literal_pattern, + STATE(2372), 1, sym_generic_type_with_turbofish, + STATE(2375), 1, + sym_bracketed_type, 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, + ACTIONS(738), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3153), 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_SQUOTE, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(1176), 32, + STATE(1406), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(734), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3151), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101949,32 +102887,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_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, + [37818] = 6, + ACTIONS(2564), 1, anon_sym_BANG, - ACTIONS(3073), 1, + ACTIONS(3157), 1, anon_sym_COLON_COLON, - STATE(1094), 1, + STATE(1111), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(572), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101990,7 +102915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 23, + ACTIONS(570), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -102014,47 +102939,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37744] = 16, + [37874] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(93), 1, + ACTIONS(732), 1, + anon_sym_DASH, + ACTIONS(736), 1, aux_sym_string_literal_token1, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3159), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3165), 1, sym_metavariable, - ACTIONS(3075), 1, - anon_sym_RPAREN, - STATE(1577), 1, + STATE(1426), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(1486), 1, + sym__literal_pattern, + STATE(2372), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2375), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, + ACTIONS(738), 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, + ACTIONS(3163), 3, sym_self, sym_super, sym_crate, - ACTIONS(91), 4, + STATE(1406), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(734), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3059), 19, + ACTIONS(3161), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102074,47 +102999,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37820] = 16, + [37950] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(732), 1, - anon_sym_DASH, - ACTIONS(736), 1, + ACTIONS(93), 1, aux_sym_string_literal_token1, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3077), 1, + ACTIONS(3137), 1, sym_identifier, - ACTIONS(3083), 1, + ACTIONS(3147), 1, sym_metavariable, - STATE(1413), 1, + ACTIONS(3167), 1, + anon_sym_RPAREN, + STATE(1590), 1, sym_scoped_identifier, - STATE(1464), 1, - sym__literal_pattern, - STATE(2339), 1, - sym_bracketed_type, - STATE(2341), 1, + STATE(2372), 1, sym_generic_type_with_turbofish, + STATE(2470), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(738), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3081), 3, + STATE(1075), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2158), 2, + sym_meta_item, + sym__literal, + ACTIONS(3145), 3, sym_self, sym_super, sym_crate, - STATE(1375), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(734), 4, + ACTIONS(91), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3079), 19, + ACTIONS(3141), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102134,47 +103059,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37896] = 16, + [38026] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(732), 1, - anon_sym_DASH, - ACTIONS(736), 1, + ACTIONS(93), 1, aux_sym_string_literal_token1, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3085), 1, + ACTIONS(3137), 1, sym_identifier, - ACTIONS(3091), 1, + ACTIONS(3147), 1, sym_metavariable, - STATE(1422), 1, + ACTIONS(3169), 1, + anon_sym_RPAREN, + STATE(1590), 1, sym_scoped_identifier, - STATE(1440), 1, - sym__literal_pattern, - STATE(2339), 1, - sym_bracketed_type, - STATE(2341), 1, + STATE(2372), 1, sym_generic_type_with_turbofish, + STATE(2470), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(738), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3089), 3, + STATE(1075), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2158), 2, + sym_meta_item, + sym__literal, + ACTIONS(3145), 3, sym_self, sym_super, sym_crate, - STATE(1375), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(734), 4, + ACTIONS(91), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3087), 19, + ACTIONS(3141), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102194,17 +103119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37972] = 5, - ACTIONS(2594), 1, - anon_sym_COLON_COLON, - ACTIONS(3011), 1, - anon_sym_BANG, + [38102] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(2612), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102218,13 +103140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 24, - anon_sym_SEMI, + ACTIONS(2614), 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, @@ -102243,81 +103165,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38026] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(966), 1, + [38151] = 4, + ACTIONS(3175), 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(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, - [38102] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3097), 9, + ACTIONS(3173), 8, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, anon_sym_LT, - anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3095), 31, + ACTIONS(3171), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102349,77 +103212,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38151] = 23, - ACTIONS(368), 1, - anon_sym_RBRACK, - 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(3099), 1, - anon_sym_SEMI, - ACTIONS(3101), 1, - anon_sym_COMMA, - 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(2969), 2, - anon_sym_PLUS, - anon_sym_DASH, - 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(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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38240] = 3, + [38202] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2530), 16, + ACTIONS(2632), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -102436,7 +103233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2532), 24, + ACTIONS(2634), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -102461,11 +103258,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38289] = 3, + [38251] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2514), 16, + ACTIONS(2620), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -102482,7 +103279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2516), 24, + ACTIONS(2622), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -102507,123 +103304,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38338] = 3, + [38300] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2522), 16, - anon_sym_PLUS, + ACTIONS(2996), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR, + anon_sym_SQUOTE, anon_sym_BANG, - anon_sym_EQ, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - 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, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_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(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(3107), 1, - anon_sym_SEMI, - ACTIONS(3109), 1, - anon_sym_COMMA, - STATE(1869), 1, - aux_sym_array_expression_repeat1, - 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(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(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, - [38476] = 3, + sym_metavariable, + ACTIONS(2994), 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, + [38349] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2809), 9, + ACTIONS(3179), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -102633,7 +103364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2807), 31, + ACTIONS(3177), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102665,22 +103396,79 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38525] = 4, - ACTIONS(3115), 1, + [38398] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(966), 1, anon_sym_COLON_COLON, + ACTIONS(3137), 1, + sym_identifier, + ACTIONS(3147), 1, + sym_metavariable, + STATE(1590), 1, + sym_scoped_identifier, + STATE(2372), 1, + sym_generic_type_with_turbofish, + STATE(2470), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1075), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2158), 2, + sym_meta_item, + sym__literal, + ACTIONS(3145), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3141), 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, + [38471] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3113), 8, + ACTIONS(2918), 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(3111), 31, + ACTIONS(2916), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102712,13 +103500,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38576] = 4, - ACTIONS(3117), 1, - anon_sym_LPAREN, + [38520] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3113), 8, + ACTIONS(3183), 9, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -102727,7 +103514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3111), 31, + ACTIONS(3181), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102759,12 +103546,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38627] = 3, + [38569] = 4, + ACTIONS(3185), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3121), 9, - anon_sym_LPAREN, + ACTIONS(3173), 8, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -102773,7 +103561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3119), 31, + ACTIONS(3171), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102805,42 +103593,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38676] = 3, + [38620] = 23, + ACTIONS(368), 1, + anon_sym_RBRACK, + ACTIONS(3043), 1, + anon_sym_LBRACK, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3059), 1, + anon_sym_AMP_AMP, + ACTIONS(3061), 1, + anon_sym_PIPE, + ACTIONS(3063), 1, + anon_sym_CARET, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, + anon_sym_EQ, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3187), 1, + anon_sym_SEMI, + ACTIONS(3189), 1, + anon_sym_COMMA, + ACTIONS(3193), 1, + anon_sym_DOT_DOT, + STATE(2108), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2556), 16, + ACTIONS(3045), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2558), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3047), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102851,44 +103659,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38725] = 5, - ACTIONS(2592), 1, - anon_sym_BANG, - ACTIONS(3123), 1, - anon_sym_COLON_COLON, + [38709] = 23, + ACTIONS(520), 1, + anon_sym_RBRACK, + ACTIONS(3043), 1, + anon_sym_LBRACK, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3059), 1, + anon_sym_AMP_AMP, + ACTIONS(3061), 1, + anon_sym_PIPE, + ACTIONS(3063), 1, + anon_sym_CARET, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, + anon_sym_EQ, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, + anon_sym_DOT_DOT, + ACTIONS(3195), 1, + anon_sym_SEMI, + ACTIONS(3197), 1, + anon_sym_COMMA, + STATE(1920), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2536), 15, + ACTIONS(3045), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2534), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3047), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102899,11 +103725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38778] = 3, + [38798] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3127), 9, + ACTIONS(3201), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -102913,7 +103739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3125), 31, + ACTIONS(3199), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102945,15 +103771,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38827] = 5, - ACTIONS(2488), 1, + [38847] = 5, + ACTIONS(2660), 1, anon_sym_BANG, - ACTIONS(3129), 1, + ACTIONS(3203), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(2588), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102969,7 +103795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 23, + ACTIONS(2586), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -102993,119 +103819,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38880] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(966), 1, + [38900] = 5, + ACTIONS(2564), 1, + anon_sym_BANG, + ACTIONS(3205), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, - sym_identifier, - 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(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, - [38953] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2875), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(572), 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(2873), 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, - [39002] = 4, - ACTIONS(2636), 1, - anon_sym_COLON_COLON, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(570), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38953] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 15, + ACTIONS(2604), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103119,12 +103888,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2602), 23, + ACTIONS(2606), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -103143,37 +103913,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39052] = 18, + [39002] = 18, ACTIONS(77), 1, anon_sym_LT, ACTIONS(714), 1, anon_sym_extern, ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2847), 1, + ACTIONS(2880), 1, sym_metavariable, - ACTIONS(3045), 1, - anon_sym_default, ACTIONS(3131), 1, + anon_sym_default, + ACTIONS(3207), 1, sym_identifier, - ACTIONS(3133), 1, + ACTIONS(3209), 1, anon_sym_fn, - STATE(1829), 1, + STATE(1845), 1, sym_scoped_type_identifier, - STATE(2347), 1, + STATE(2380), 1, sym_bracketed_type, - STATE(2348), 1, + STATE(2381), 1, sym_generic_type_with_turbofish, - STATE(2380), 1, + STATE(2401), 1, sym_function_modifiers, - STATE(2417), 1, + STATE(2419), 1, sym_generic_type, - STATE(2497), 1, + STATE(2539), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1557), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -103184,7 +103954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - ACTIONS(2841), 18, + ACTIONS(2874), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103203,42 +103973,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [39130] = 4, - ACTIONS(3123), 1, - anon_sym_COLON_COLON, + [39080] = 22, + ACTIONS(384), 1, + anon_sym_RPAREN, + ACTIONS(3043), 1, + anon_sym_LBRACK, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3059), 1, + anon_sym_AMP_AMP, + ACTIONS(3061), 1, + anon_sym_PIPE, + ACTIONS(3063), 1, + anon_sym_CARET, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, + anon_sym_EQ, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, + anon_sym_DOT_DOT, + ACTIONS(3211), 1, + anon_sym_COMMA, + STATE(2107), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2536), 15, + ACTIONS(3045), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2534), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3047), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103249,13 +104037,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39180] = 4, - ACTIONS(3135), 1, + [39166] = 4, + ACTIONS(2670), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(2672), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103271,7 +104059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 23, + ACTIONS(2668), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -103295,60 +104083,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39230] = 22, - 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(3137), 1, - anon_sym_RPAREN, - ACTIONS(3139), 1, - anon_sym_COMMA, - STATE(1892), 1, - aux_sym_arguments_repeat1, + [39216] = 4, + ACTIONS(2698), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(2672), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2975), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 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(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(2991), 4, + anon_sym_DOT, + ACTIONS(2668), 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(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103359,60 +104129,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39316] = 22, - ACTIONS(382), 1, - anon_sym_RPAREN, - ACTIONS(2967), 1, + [39266] = 18, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(2880), 1, + sym_metavariable, + ACTIONS(3131), 1, + anon_sym_default, + ACTIONS(3213), 1, + sym_identifier, + ACTIONS(3215), 1, + anon_sym_fn, + STATE(1831), 1, + sym_scoped_type_identifier, + STATE(2380), 1, + sym_bracketed_type, + STATE(2381), 1, + sym_generic_type_with_turbofish, + STATE(2419), 1, + sym_generic_type, + STATE(2505), 1, + sym_function_modifiers, + STATE(2539), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1557), 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(2874), 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, + [39344] = 22, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3141), 1, + ACTIONS(3217), 1, + anon_sym_RPAREN, + ACTIONS(3219), 1, anon_sym_COMMA, - STATE(2032), 1, + STATE(1918), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103423,13 +104253,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39402] = 4, - ACTIONS(2604), 1, + [39430] = 4, + ACTIONS(3203), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 15, + ACTIONS(2588), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103445,7 +104275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2602), 23, + ACTIONS(2586), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -103469,114 +104299,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39452] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(900), 1, + [39480] = 4, + ACTIONS(3221), 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(2973), 1, + ACTIONS(572), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3153), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3157), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, - anon_sym_AMP_AMP, - ACTIONS(3161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(3165), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3151), 2, - anon_sym_LT, - anon_sym_GT, - 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, - ACTIONS(3167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2965), 14, + anon_sym_DOT, + ACTIONS(570), 23, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103587,58 +104345,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39605] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [39530] = 21, + ACTIONS(107), 1, + anon_sym_RBRACE, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - STATE(1106), 1, - sym_block, + ACTIONS(3223), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103649,58 +104407,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39688] = 21, - ACTIONS(2967), 1, + [39613] = 21, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3223), 1, anon_sym_SEMI, - ACTIONS(3181), 1, + ACTIONS(3225), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103711,57 +104469,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39771] = 20, - ACTIONS(2967), 1, + [39696] = 21, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, + ACTIONS(3227), 1, + anon_sym_RBRACE, + ACTIONS(3229), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3183), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103772,58 +104531,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39852] = 21, - ACTIONS(270), 1, - anon_sym_RBRACE, - ACTIONS(2967), 1, + [39779] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3043), 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, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, - anon_sym_SEMI, + ACTIONS(3245), 1, + anon_sym_AMP_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3249), 1, + anon_sym_PIPE, + ACTIONS(3251), 1, + anon_sym_CARET, + STATE(99), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103834,58 +104593,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39935] = 21, - ACTIONS(2967), 1, + [39862] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 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(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3259), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103896,54 +104654,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40018] = 17, - ACTIONS(2967), 1, + [39943] = 21, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3023), 1, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, + ACTIONS(3261), 1, + anon_sym_LBRACE, + STATE(164), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3021), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103954,58 +104716,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40093] = 21, - ACTIONS(276), 1, - anon_sym_RBRACE, - ACTIONS(2967), 1, + [40026] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3263), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104016,58 +104777,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40176] = 21, - ACTIONS(610), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [40107] = 21, + ACTIONS(502), 1, + anon_sym_RPAREN, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - STATE(244), 1, - sym_block, + ACTIONS(3265), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104078,58 +104839,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40259] = 21, - ACTIONS(610), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [40190] = 17, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3097), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3269), 1, anon_sym_DOT_DOT, - STATE(243), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3267), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3095), 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, @@ -104140,58 +104897,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40342] = 21, - ACTIONS(2967), 1, + [40265] = 8, + ACTIONS(3043), 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, + ACTIONS(3069), 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, + ACTIONS(3269), 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(2969), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2975), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3267), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3049), 10, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3041), 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(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104202,58 +104946,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40425] = 21, - ACTIONS(494), 1, + [40322] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3271), 1, + sym_identifier, + ACTIONS(3273), 1, + anon_sym_LBRACE, + ACTIONS(3275), 1, + anon_sym_RBRACE, + ACTIONS(3277), 1, + anon_sym_STAR, + ACTIONS(3281), 1, + anon_sym_COMMA, + ACTIONS(3283), 1, + anon_sym_COLON_COLON, + ACTIONS(3287), 1, + sym_metavariable, + STATE(1727), 1, + sym_scoped_identifier, + STATE(2372), 1, + sym_generic_type_with_turbofish, + STATE(2470), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3285), 3, + sym_self, + sym_super, + sym_crate, + STATE(1981), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3279), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [40393] = 21, + ACTIONS(396), 1, anon_sym_RPAREN, - ACTIONS(2967), 1, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3191), 1, + ACTIONS(3265), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104264,58 +105064,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40508] = 21, - ACTIONS(610), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [40476] = 21, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - STATE(241), 1, - sym_block, + ACTIONS(3289), 1, + anon_sym_RBRACE, + ACTIONS(3291), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104326,58 +105126,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40591] = 21, - ACTIONS(610), 1, + [40559] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(216), 1, + STATE(179), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104388,58 +105188,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40674] = 21, - ACTIONS(610), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [40642] = 7, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - 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, + ACTIONS(3269), 1, anon_sym_DOT_DOT, - STATE(222), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3267), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3091), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3151), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, 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(3167), 4, + ACTIONS(3089), 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(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104450,58 +105236,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40757] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [40697] = 17, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3269), 1, anon_sym_DOT_DOT, - STATE(160), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3267), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + 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, @@ -104512,58 +105294,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40840] = 21, - ACTIONS(610), 1, + [40772] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(227), 1, + STATE(780), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104574,106 +105356,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40923] = 21, - ACTIONS(260), 1, - anon_sym_RBRACE, - ACTIONS(2967), 1, + [40855] = 21, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3223), 1, anon_sym_SEMI, + ACTIONS(3293), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 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(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, - [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(3155), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3015), 13, - anon_sym_PLUS, + ACTIONS(3047), 3, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3013), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104684,57 +105418,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41061] = 20, - ACTIONS(2967), 1, + [40938] = 21, + ACTIONS(268), 1, + anon_sym_RBRACE, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, + ACTIONS(3223), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3193), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104745,57 +105480,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41142] = 20, - ACTIONS(2967), 1, + [41021] = 21, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, + ACTIONS(3295), 1, + anon_sym_LBRACE, + STATE(1087), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104806,50 +105542,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41223] = 17, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(2967), 1, + [41104] = 17, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3153), 1, + ACTIONS(3117), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3157), 1, - anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, + ACTIONS(3269), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3267), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 14, + ACTIONS(3115), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -104864,58 +105600,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41298] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [41179] = 17, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3109), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3269), 1, anon_sym_DOT_DOT, - STATE(760), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3267), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3107), 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, @@ -104926,58 +105658,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41381] = 21, - ACTIONS(2967), 1, + [41254] = 21, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3195), 1, + ACTIONS(3223), 1, + anon_sym_SEMI, + ACTIONS(3297), 1, anon_sym_RBRACE, - ACTIONS(3197), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104988,58 +105720,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41464] = 21, - ACTIONS(2967), 1, + [41337] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3043), 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, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, - anon_sym_SEMI, - ACTIONS(3199), 1, - anon_sym_RBRACE, + ACTIONS(3245), 1, + anon_sym_AMP_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3249), 1, + anon_sym_PIPE, + ACTIONS(3251), 1, + anon_sym_CARET, + STATE(1059), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105050,58 +105782,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41547] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [41420] = 7, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - 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, + ACTIONS(3269), 1, anon_sym_DOT_DOT, - STATE(45), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3267), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3105), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3151), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, 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(3167), 4, + ACTIONS(3103), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, 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, @@ -105112,58 +105830,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41630] = 21, - ACTIONS(2967), 1, + [41475] = 21, + ACTIONS(109), 1, + anon_sym_RBRACE, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3201), 1, - anon_sym_LBRACE, - STATE(1110), 1, - sym_match_block, + ACTIONS(3223), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105174,58 +105892,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41713] = 21, - ACTIONS(610), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [41558] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - STATE(234), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3299), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105236,58 +105953,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41796] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [41639] = 17, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3101), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3269), 1, anon_sym_DOT_DOT, - STATE(1096), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3267), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3099), 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, @@ -105298,34 +106011,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41879] = 7, - ACTIONS(2967), 1, + [41714] = 9, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3157), 1, + ACTIONS(3269), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3155), 2, + ACTIONS(3231), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3267), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 13, - anon_sym_PLUS, + ACTIONS(3233), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3049), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3035), 20, + ACTIONS(3041), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -105346,58 +106061,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41934] = 21, - ACTIONS(15), 1, + [41773] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(166), 1, + STATE(1083), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105408,54 +106123,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42017] = 17, - ACTIONS(2967), 1, + [41856] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3027), 1, - anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(3157), 1, - anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3063), 1, anon_sym_CARET, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, + anon_sym_EQ, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3191), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3301), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3047), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3065), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3085), 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, + [41937] = 7, + ACTIONS(3043), 1, + anon_sym_LBRACK, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3269), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3267), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3073), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3071), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - 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, @@ -105466,58 +106232,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42092] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [41992] = 7, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - 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, + ACTIONS(3269), 1, anon_sym_DOT_DOT, - STATE(131), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3267), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3049), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3151), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, 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(3167), 4, + ACTIONS(3041), 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(3177), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105528,58 +106280,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42175] = 21, - ACTIONS(2967), 1, + [42047] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 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(3147), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3303), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105590,44 +106341,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42258] = 7, - ACTIONS(2967), 1, + [42128] = 21, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3059), 1, + anon_sym_AMP_AMP, + ACTIONS(3061), 1, + anon_sym_PIPE, + ACTIONS(3063), 1, + anon_sym_CARET, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3157), 1, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, + anon_sym_EQ, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, + ACTIONS(3223), 1, + anon_sym_SEMI, + ACTIONS(3305), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3155), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2999), 13, + ACTIONS(3045), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3191), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3047), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2997), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105638,44 +106403,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42313] = 7, - ACTIONS(2967), 1, + [42211] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3157), 1, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3245), 1, + anon_sym_AMP_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3249), 1, + anon_sym_PIPE, + ACTIONS(3251), 1, + anon_sym_CARET, + ACTIONS(3269), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3155), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3019), 13, + ACTIONS(3075), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3231), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3267), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3233), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105686,58 +106464,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42368] = 21, + [42292] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(1120), 1, + STATE(1133), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105748,58 +106526,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42451] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [42375] = 21, + ACTIONS(276), 1, + anon_sym_RBRACE, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - STATE(81), 1, - sym_block, + ACTIONS(3223), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105810,57 +106588,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42534] = 20, - ACTIONS(2967), 1, + [42458] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3043), 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, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3243), 1, anon_sym_DOT_DOT, + ACTIONS(3245), 1, + anon_sym_AMP_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3249), 1, + anon_sym_PIPE, + ACTIONS(3251), 1, + anon_sym_CARET, + STATE(1067), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3205), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105871,54 +106650,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42615] = 17, - ACTIONS(2967), 1, + [42541] = 21, + ACTIONS(582), 1, + anon_sym_LBRACE, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3041), 1, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, + STATE(244), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3039), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105929,36 +106712,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42690] = 9, - ACTIONS(2967), 1, + [42624] = 11, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3157), 1, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3269), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3155), 2, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3267), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 8, + ACTIONS(3049), 5, 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, + ACTIONS(3041), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -105979,58 +106764,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42749] = 21, - ACTIONS(2967), 1, + [42687] = 21, + ACTIONS(582), 1, + anon_sym_LBRACE, + ACTIONS(3043), 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, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, - anon_sym_SEMI, - ACTIONS(3207), 1, - anon_sym_RBRACE, + ACTIONS(3245), 1, + anon_sym_AMP_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3249), 1, + anon_sym_PIPE, + ACTIONS(3251), 1, + anon_sym_CARET, + STATE(242), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106041,48 +106826,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42832] = 11, - ACTIONS(2967), 1, + [42770] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3153), 1, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, + ACTIONS(3245), 1, + anon_sym_AMP_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3249), 1, + anon_sym_PIPE, + ACTIONS(3251), 1, + anon_sym_CARET, + STATE(174), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3155), 2, + ACTIONS(3237), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - 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, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106093,58 +106888,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42895] = 21, - ACTIONS(610), 1, + [42853] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(215), 1, + STATE(776), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106155,58 +106950,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42978] = 21, - ACTIONS(2967), 1, + [42936] = 12, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3239), 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, + ACTIONS(3251), 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, + ACTIONS(3269), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, - anon_sym_SEMI, - ACTIONS(3209), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3267), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3049), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3041), 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(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106217,57 +107003,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43061] = 20, - ACTIONS(2967), 1, + [43001] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3043), 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, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3243), 1, anon_sym_DOT_DOT, + ACTIONS(3245), 1, + anon_sym_AMP_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3249), 1, + anon_sym_PIPE, + ACTIONS(3251), 1, + anon_sym_CARET, + STATE(44), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3211), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106278,57 +107065,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43142] = 20, - ACTIONS(2967), 1, + [43084] = 21, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, + ACTIONS(3307), 1, + anon_sym_RPAREN, + ACTIONS(3309), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3213), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106339,58 +107127,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43223] = 21, - ACTIONS(284), 1, + [43167] = 21, + ACTIONS(582), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(1108), 1, + STATE(229), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106401,58 +107189,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43306] = 21, - ACTIONS(2967), 1, + [43250] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 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(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3311), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106463,58 +107250,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43389] = 21, - ACTIONS(266), 1, - anon_sym_RBRACE, - ACTIONS(2967), 1, + [43331] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3043), 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, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, - anon_sym_SEMI, + ACTIONS(3245), 1, + anon_sym_AMP_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3249), 1, + anon_sym_PIPE, + ACTIONS(3251), 1, + anon_sym_CARET, + STATE(1041), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106525,49 +107312,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43472] = 12, - ACTIONS(2967), 1, + [43414] = 21, + ACTIONS(111), 1, + anon_sym_RBRACE, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3153), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(3157), 1, - anon_sym_DOT_DOT, - ACTIONS(3165), 1, + ACTIONS(3059), 1, + anon_sym_AMP_AMP, + ACTIONS(3061), 1, + anon_sym_PIPE, + ACTIONS(3063), 1, anon_sym_CARET, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, + anon_sym_EQ, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, + anon_sym_DOT_DOT, + ACTIONS(3223), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3155), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3051), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3191), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3019), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(3017), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106578,53 +107374,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43537] = 16, - ACTIONS(2967), 1, + [43497] = 21, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3019), 1, - anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3059), 1, + anon_sym_AMP_AMP, + ACTIONS(3061), 1, + anon_sym_PIPE, + ACTIONS(3063), 1, + anon_sym_CARET, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, + anon_sym_EQ, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, - anon_sym_AMP_AMP, - ACTIONS(3163), 1, - anon_sym_PIPE, - ACTIONS(3165), 1, - anon_sym_CARET, + ACTIONS(3265), 1, + anon_sym_COMMA, + ACTIONS(3313), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3191), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3065), 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, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106635,51 +107436,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43610] = 15, - ACTIONS(2967), 1, + [43580] = 16, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3019), 1, + ACTIONS(3049), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3157), 1, - anon_sym_DOT_DOT, - ACTIONS(3163), 1, + ACTIONS(3245), 1, + anon_sym_AMP_AMP, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, + ACTIONS(3269), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3267), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3017), 16, + ACTIONS(3041), 15, 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, @@ -106691,57 +107493,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43681] = 20, - ACTIONS(2967), 1, + [43653] = 21, + ACTIONS(582), 1, + anon_sym_LBRACE, + ACTIONS(3043), 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, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3243), 1, anon_sym_DOT_DOT, + ACTIONS(3245), 1, + anon_sym_AMP_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3249), 1, + anon_sym_PIPE, + ACTIONS(3251), 1, + anon_sym_CARET, + STATE(215), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3219), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106752,47 +107555,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43762] = 10, - ACTIONS(2967), 1, + [43736] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3157), 1, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3243), 1, anon_sym_DOT_DOT, + ACTIONS(3245), 1, + anon_sym_AMP_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3249), 1, + anon_sym_PIPE, + ACTIONS(3251), 1, + anon_sym_CARET, + STATE(86), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3155), 2, + ACTIONS(3237), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - 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, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106803,58 +107617,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43823] = 21, - ACTIONS(15), 1, + [43819] = 21, + ACTIONS(582), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(47), 1, + STATE(222), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106865,58 +107679,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43906] = 21, - ACTIONS(284), 1, + [43902] = 21, + ACTIONS(582), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(765), 1, + STATE(225), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106927,57 +107741,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43989] = 20, - ACTIONS(2967), 1, + [43985] = 21, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, + ACTIONS(3223), 1, + anon_sym_SEMI, + ACTIONS(3315), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106988,50 +107803,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44070] = 13, - ACTIONS(2967), 1, + [44068] = 15, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3049), 1, + anon_sym_EQ, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3153), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3157), 1, - anon_sym_DOT_DOT, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, + ACTIONS(3269), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - 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(3019), 3, - anon_sym_EQ, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3149), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3267), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3017), 20, + ACTIONS(3253), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3041), 16, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107042,58 +107859,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44137] = 21, - ACTIONS(274), 1, - anon_sym_RBRACE, - ACTIONS(2967), 1, + [44139] = 10, + ACTIONS(3043), 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, + ACTIONS(3069), 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, + ACTIONS(3269), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3267), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3049), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3041), 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(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107104,54 +107910,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44220] = 17, - ACTIONS(2967), 1, + [44200] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3031), 1, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3157), 1, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, + STATE(180), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3029), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107162,107 +107972,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44295] = 21, - ACTIONS(262), 1, - anon_sym_RBRACE, - ACTIONS(2967), 1, + [44283] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 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(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, - [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(3155), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3317), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3047), 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_DASH, - 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, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107273,58 +108033,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44435] = 21, - ACTIONS(2967), 1, + [44364] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, - anon_sym_SEMI, - ACTIONS(3223), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3319), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107335,57 +108094,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44518] = 20, - ACTIONS(2967), 1, + [44445] = 17, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3113), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3157), 1, - anon_sym_DOT_DOT, - ACTIONS(3159), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, + ACTIONS(3269), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3033), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3155), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3169), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 3, + ACTIONS(3267), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3111), 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, @@ -107396,58 +108152,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44599] = 21, - ACTIONS(2967), 1, + [44520] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - ACTIONS(3225), 1, - anon_sym_LBRACE, - STATE(182), 1, - sym_match_block, + STATE(47), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107458,58 +108214,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44682] = 21, - ACTIONS(284), 1, + [44603] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(1100), 1, + STATE(142), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107520,58 +108276,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44765] = 21, - ACTIONS(502), 1, - anon_sym_RPAREN, - ACTIONS(2967), 1, + [44686] = 13, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(2983), 1, - anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3251), 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, + ACTIONS(3269), 1, anon_sym_DOT_DOT, - ACTIONS(3191), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3267), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3049), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3041), 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(3009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107582,58 +108330,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44848] = 21, - ACTIONS(15), 1, + [44753] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3243), 1, + anon_sym_DOT_DOT, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3251), 1, anon_sym_CARET, - ACTIONS(3171), 1, - anon_sym_EQ, - ACTIONS(3175), 1, - anon_sym_DOT_DOT, - STATE(173), 1, + STATE(1138), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107644,58 +108392,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44931] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [44836] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - STATE(142), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3321), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107706,58 +108453,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45014] = 21, - ACTIONS(2967), 1, + [44917] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 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(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3323), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107768,57 +108514,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45097] = 20, - ACTIONS(2967), 1, + [44998] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3247), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3251), 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, + ACTIONS(3269), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3093), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3267), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3229), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107829,58 +108575,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45178] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2967), 1, + [45079] = 21, + ACTIONS(272), 1, + anon_sym_RBRACE, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2995), 1, - anon_sym_DOT, - ACTIONS(3003), 1, - anon_sym_QMARK, - ACTIONS(3005), 1, - anon_sym_as, - ACTIONS(3153), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(3159), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(3161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3163), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(3165), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(3171), 1, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3175), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - STATE(1033), 1, - sym_block, + ACTIONS(3223), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3151), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3169), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3173), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3149), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3167), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3177), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107891,57 +108637,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45261] = 20, - ACTIONS(2967), 1, + [45162] = 21, + ACTIONS(582), 1, + anon_sym_LBRACE, + ACTIONS(3043), 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, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3243), 1, anon_sym_DOT_DOT, + ACTIONS(3245), 1, + anon_sym_AMP_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3249), 1, + anon_sym_PIPE, + ACTIONS(3251), 1, + anon_sym_CARET, + STATE(216), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107952,57 +108699,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45342] = 20, - ACTIONS(2967), 1, + [45245] = 21, + ACTIONS(3043), 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, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3243), 1, anon_sym_DOT_DOT, + ACTIONS(3245), 1, + anon_sym_AMP_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3249), 1, + anon_sym_PIPE, + ACTIONS(3251), 1, + anon_sym_CARET, + ACTIONS(3325), 1, + anon_sym_LBRACE, + STATE(233), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3233), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2971), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108013,112 +108761,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45423] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3235), 1, - sym_identifier, - ACTIONS(3237), 1, + [45328] = 21, + ACTIONS(582), 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, + ACTIONS(3043), 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, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3239), 1, + anon_sym_AMP, + ACTIONS(3243), 1, anon_sym_DOT_DOT, - ACTIONS(3253), 1, - anon_sym_SEMI, + ACTIONS(3245), 1, + anon_sym_AMP_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3249), 1, + anon_sym_PIPE, + ACTIONS(3251), 1, + anon_sym_CARET, + STATE(232), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3231), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3237), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3233), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3253), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108129,56 +108823,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45574] = 20, - ACTIONS(2967), 1, + [45411] = 21, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3255), 1, - anon_sym_RBRACK, + ACTIONS(3223), 1, + anon_sym_SEMI, + ACTIONS(3327), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108189,56 +108885,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45654] = 20, - ACTIONS(2967), 1, + [45494] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3257), 1, - anon_sym_RBRACK, + ACTIONS(3329), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108249,56 +108945,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45734] = 20, - ACTIONS(2967), 1, + [45574] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3259), 1, + ACTIONS(3331), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108309,56 +109005,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45814] = 20, - ACTIONS(2967), 1, + [45654] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3179), 1, + ACTIONS(3333), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108369,56 +109065,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45894] = 20, - ACTIONS(2967), 1, + [45734] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3261), 1, - anon_sym_SEMI, + ACTIONS(3335), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108429,56 +109125,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45974] = 20, - ACTIONS(2967), 1, + [45814] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3263), 1, + ACTIONS(3337), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108489,56 +109185,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46054] = 20, - ACTIONS(2967), 1, + [45894] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, + ACTIONS(3339), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108549,56 +109245,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46134] = 20, - ACTIONS(2967), 1, + [45974] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3191), 1, - anon_sym_COMMA, + ACTIONS(3341), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108609,110 +109305,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [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, + [46054] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, + ACTIONS(3343), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108723,56 +109365,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46362] = 20, - ACTIONS(2967), 1, + [46134] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3271), 1, + ACTIONS(3345), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108783,56 +109425,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46442] = 20, - ACTIONS(2967), 1, + [46214] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3347), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108843,56 +109485,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46522] = 20, - ACTIONS(2967), 1, + [46294] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3275), 1, - anon_sym_RBRACK, + ACTIONS(3349), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108903,56 +109545,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46602] = 20, - ACTIONS(2967), 1, + [46374] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3277), 1, - anon_sym_SEMI, + ACTIONS(3265), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108963,56 +109605,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46682] = 20, - ACTIONS(2967), 1, + [46454] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, + ACTIONS(3351), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109023,56 +109665,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46762] = 20, - ACTIONS(2967), 1, + [46534] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3281), 1, + ACTIONS(3353), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109083,56 +109725,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46842] = 20, - ACTIONS(2967), 1, + [46614] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3283), 1, - anon_sym_COMMA, + ACTIONS(3355), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109143,56 +109785,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46922] = 20, - ACTIONS(2967), 1, + [46694] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3285), 1, + ACTIONS(3357), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109203,56 +109845,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47002] = 20, - ACTIONS(2967), 1, + [46774] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3287), 1, + ACTIONS(3359), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109263,56 +109905,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47082] = 20, - ACTIONS(2967), 1, + [46854] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, - anon_sym_SEMI, + ACTIONS(3361), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109323,56 +109965,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47162] = 20, - ACTIONS(2967), 1, + [46934] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3291), 1, + ACTIONS(3363), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109383,56 +110025,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47242] = 20, - ACTIONS(2967), 1, + [47014] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3293), 1, + ACTIONS(3223), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109443,56 +110085,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47322] = 20, - ACTIONS(2967), 1, + [47094] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3295), 1, - anon_sym_SEMI, + ACTIONS(3365), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109503,56 +110145,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47402] = 20, - ACTIONS(2967), 1, + [47174] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3297), 1, - anon_sym_EQ_GT, + ACTIONS(3367), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109563,56 +110205,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47482] = 20, - ACTIONS(2967), 1, + [47254] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3299), 1, + ACTIONS(3369), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109623,56 +110265,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47562] = 20, - ACTIONS(2967), 1, + [47334] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3301), 1, - anon_sym_RBRACK, + ACTIONS(3371), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109683,116 +110325,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47642] = 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(3303), 1, - anon_sym_SEMI, + [47414] = 14, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3271), 1, + sym_identifier, + ACTIONS(3273), 1, + anon_sym_LBRACE, + ACTIONS(3277), 1, + anon_sym_STAR, + ACTIONS(3283), 1, + anon_sym_COLON_COLON, + ACTIONS(3287), 1, + sym_metavariable, + ACTIONS(3373), 1, + anon_sym_RBRACE, + STATE(1727), 1, + sym_scoped_identifier, + STATE(2372), 1, + sym_generic_type_with_turbofish, + STATE(2470), 1, + sym_bracketed_type, 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(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(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, - [47722] = 20, - ACTIONS(2967), 1, + ACTIONS(3285), 3, + sym_self, + sym_super, + sym_crate, + STATE(2178), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3279), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [47482] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3305), 1, - anon_sym_RBRACK, + ACTIONS(3375), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109803,56 +110439,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47802] = 20, - ACTIONS(2967), 1, + [47562] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3061), 1, + anon_sym_PIPE, + ACTIONS(3063), 1, + anon_sym_CARET, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, + anon_sym_EQ, + ACTIONS(3083), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3193), 1, + anon_sym_DOT_DOT, + ACTIONS(3377), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3045), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3051), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3191), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3047), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3065), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3085), 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, + [47642] = 20, + ACTIONS(3043), 1, + anon_sym_LBRACK, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3059), 1, + anon_sym_AMP_AMP, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3307), 1, + ACTIONS(3379), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109863,56 +110559,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47882] = 20, - ACTIONS(2967), 1, + [47722] = 20, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, + ACTIONS(3061), 1, + anon_sym_PIPE, + ACTIONS(3063), 1, + anon_sym_CARET, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, + anon_sym_EQ, + ACTIONS(3083), 1, anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3193), 1, + anon_sym_DOT_DOT, + ACTIONS(3381), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3045), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3051), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3191), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3047), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3065), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3085), 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, + [47802] = 20, + ACTIONS(3043), 1, + anon_sym_LBRACK, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3059), 1, + anon_sym_AMP_AMP, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3309), 1, + ACTIONS(3383), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3045), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3051), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3067), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3191), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3047), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3065), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3085), 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, + [47882] = 20, + ACTIONS(3043), 1, + anon_sym_LBRACK, + ACTIONS(3053), 1, + anon_sym_AMP, + ACTIONS(3059), 1, + anon_sym_AMP_AMP, + ACTIONS(3061), 1, + anon_sym_PIPE, + ACTIONS(3063), 1, + anon_sym_CARET, + ACTIONS(3069), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3079), 1, + anon_sym_as, + ACTIONS(3081), 1, + anon_sym_EQ, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, + anon_sym_DOT_DOT, + ACTIONS(3385), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109926,38 +110742,38 @@ static const uint16_t ts_small_parse_table[] = { [47962] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3287), 1, sym_metavariable, - ACTIONS(3311), 1, + ACTIONS(3387), 1, anon_sym_RBRACE, - STATE(1715), 1, + STATE(1727), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2372), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2470), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2197), 5, + STATE(2178), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109978,55 +110794,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_union, [48030] = 20, - ACTIONS(2967), 1, + ACTIONS(3043), 1, anon_sym_LBRACK, - ACTIONS(2977), 1, + ACTIONS(3053), 1, anon_sym_AMP, - ACTIONS(2983), 1, + ACTIONS(3059), 1, anon_sym_AMP_AMP, - ACTIONS(2985), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 1, + ACTIONS(3061), 1, anon_sym_PIPE, - ACTIONS(2989), 1, + ACTIONS(3063), 1, anon_sym_CARET, - ACTIONS(2995), 1, + ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3003), 1, + ACTIONS(3077), 1, anon_sym_QMARK, - ACTIONS(3005), 1, + ACTIONS(3079), 1, anon_sym_as, - ACTIONS(3007), 1, + ACTIONS(3081), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3193), 1, anon_sym_DOT_DOT, - ACTIONS(3313), 1, + ACTIONS(3389), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 2, + ACTIONS(3045), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2975), 2, + ACTIONS(3051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2993), 2, + ACTIONS(3067), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3103), 2, + ACTIONS(3191), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2971), 3, + ACTIONS(3047), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2991), 4, + ACTIONS(3065), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3009), 10, + ACTIONS(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110040,36 +110856,36 @@ static const uint16_t ts_small_parse_table[] = { [48110] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(1715), 1, + STATE(1727), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2372), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2470), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2344), 5, + STATE(2514), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110092,36 +110908,36 @@ static const uint16_t ts_small_parse_table[] = { [48175] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(1715), 1, + STATE(1727), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2372), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2470), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2445), 5, + STATE(2371), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110144,36 +110960,36 @@ static const uint16_t ts_small_parse_table[] = { [48240] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(1715), 1, + STATE(1727), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2372), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2470), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2197), 5, + STATE(2178), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110196,36 +111012,36 @@ static const uint16_t ts_small_parse_table[] = { [48305] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(1715), 1, + STATE(1727), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2372), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2470), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2455), 5, + STATE(2373), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110248,36 +111064,36 @@ static const uint16_t ts_small_parse_table[] = { [48370] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3235), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3237), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3241), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3247), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3251), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(1715), 1, + STATE(1727), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2372), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2470), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3249), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2315), 5, + STATE(2329), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3243), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110301,11 +111117,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3393), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3315), 28, + ACTIONS(3391), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110338,11 +111154,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3321), 3, + ACTIONS(3397), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3319), 28, + ACTIONS(3395), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110375,11 +111191,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3325), 3, + ACTIONS(3401), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3323), 28, + ACTIONS(3399), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110413,26 +111229,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3137), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3147), 1, sym_metavariable, - STATE(1577), 1, + STATE(1590), 1, sym_scoped_identifier, - STATE(2341), 1, - sym_generic_type_with_turbofish, - STATE(2382), 1, + STATE(2335), 1, sym_meta_item, - STATE(2453), 1, + STATE(2372), 1, + sym_generic_type_with_turbofish, + STATE(2470), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + ACTIONS(3145), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3141), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110457,26 +111273,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3137), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3147), 1, sym_metavariable, - STATE(1577), 1, + STATE(1590), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2372), 1, sym_generic_type_with_turbofish, - STATE(2407), 1, + STATE(2428), 1, sym_meta_item, - STATE(2453), 1, + STATE(2470), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + ACTIONS(3145), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3141), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110501,26 +111317,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3137), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3147), 1, sym_metavariable, - STATE(1577), 1, + STATE(1590), 1, sym_scoped_identifier, - STATE(2341), 1, - sym_generic_type_with_turbofish, - STATE(2367), 1, + STATE(2349), 1, sym_meta_item, - STATE(2453), 1, + STATE(2372), 1, + sym_generic_type_with_turbofish, + STATE(2470), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + ACTIONS(3145), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3141), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110545,26 +111361,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3137), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3147), 1, sym_metavariable, - STATE(1577), 1, + STATE(1590), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2372), 1, sym_generic_type_with_turbofish, - STATE(2423), 1, + STATE(2409), 1, sym_meta_item, - STATE(2453), 1, + STATE(2470), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + ACTIONS(3145), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3141), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110589,26 +111405,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3137), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3147), 1, sym_metavariable, - STATE(1577), 1, + STATE(1590), 1, sym_scoped_identifier, - STATE(2323), 1, - sym_meta_item, - STATE(2341), 1, + STATE(2372), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2441), 1, + sym_meta_item, + STATE(2470), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + ACTIONS(3145), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3141), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110633,26 +111449,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3137), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3147), 1, sym_metavariable, - STATE(1577), 1, + STATE(1590), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2372), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, - sym_bracketed_type, - STATE(2515), 1, + STATE(2433), 1, sym_meta_item, + STATE(2470), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + ACTIONS(3145), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3141), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110677,26 +111493,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3055), 1, + ACTIONS(3137), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3147), 1, sym_metavariable, - STATE(1577), 1, + STATE(1590), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2372), 1, sym_generic_type_with_turbofish, - STATE(2369), 1, - sym_meta_item, - STATE(2453), 1, + STATE(2470), 1, sym_bracketed_type, + STATE(2536), 1, + sym_meta_item, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3063), 3, + ACTIONS(3145), 3, sym_self, sym_super, sym_crate, - ACTIONS(3059), 19, + ACTIONS(3141), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110721,24 +111537,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3327), 1, + ACTIONS(3403), 1, sym_identifier, - ACTIONS(3333), 1, + ACTIONS(3409), 1, sym_metavariable, - STATE(2177), 1, + STATE(2204), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2372), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2470), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3331), 3, + ACTIONS(3407), 3, sym_self, sym_super, sym_crate, - ACTIONS(3329), 19, + ACTIONS(3405), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110763,24 +111579,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(966), 1, anon_sym_COLON_COLON, - ACTIONS(3335), 1, + ACTIONS(3411), 1, sym_identifier, - ACTIONS(3341), 1, + ACTIONS(3417), 1, sym_metavariable, - STATE(2268), 1, + STATE(2209), 1, sym_scoped_identifier, - STATE(2341), 1, + STATE(2372), 1, sym_generic_type_with_turbofish, - STATE(2453), 1, + STATE(2470), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3339), 3, + ACTIONS(3415), 3, sym_self, sym_super, sym_crate, - ACTIONS(3337), 19, + ACTIONS(3413), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110801,12 +111617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_union, [49044] = 3, - ACTIONS(2317), 1, + ACTIONS(2385), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2319), 20, + ACTIONS(2387), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -110828,12 +111644,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [49074] = 3, - ACTIONS(2295), 1, + ACTIONS(2401), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2297), 20, + ACTIONS(2403), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -110855,28 +111671,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [49104] = 10, - ACTIONS(3345), 1, + ACTIONS(3421), 1, anon_sym_LPAREN, - ACTIONS(3347), 1, + ACTIONS(3423), 1, anon_sym_LBRACE, - ACTIONS(3351), 1, + ACTIONS(3427), 1, anon_sym_COLON_COLON, - ACTIONS(3355), 1, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3357), 1, + ACTIONS(3433), 1, anon_sym_AT, - STATE(1343), 1, + STATE(1359), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3349), 2, + ACTIONS(3425), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3353), 2, + ACTIONS(3429), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 9, + ACTIONS(3419), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -110887,24 +111703,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [49146] = 9, - ACTIONS(2486), 1, + ACTIONS(2562), 1, anon_sym_COLON, - ACTIONS(3355), 1, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3437), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3439), 1, anon_sym_COLON_COLON, - STATE(1343), 1, + STATE(1359), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 12, + ACTIONS(2558), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -110921,13 +111737,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2526), 2, + ACTIONS(2600), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2530), 2, + ACTIONS(2604), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2532), 14, + ACTIONS(2606), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110943,174 +111759,16 @@ static const uint16_t ts_small_parse_table[] = { 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(2516), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2510), 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, - [49244] = 8, - ACTIONS(2496), 1, - anon_sym_COLON, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, - anon_sym_LPAREN, - 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(1343), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2498), 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, - [49318] = 4, - ACTIONS(2520), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2524), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2518), 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, - [49347] = 4, - ACTIONS(2554), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - 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_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, - [49376] = 4, - ACTIONS(2528), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2532), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2526), 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, - [49405] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 2, + ACTIONS(2608), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2514), 2, + ACTIONS(2612), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2516), 14, + ACTIONS(2614), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111125,17 +111783,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49434] = 4, + [49244] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2518), 2, + ACTIONS(2616), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2522), 2, + ACTIONS(2620), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2524), 14, + ACTIONS(2622), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111150,87 +111808,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49463] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2552), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2556), 2, + [49273] = 8, + ACTIONS(2572), 1, anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2558), 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, - [49492] = 17, - ACTIONS(3367), 1, - anon_sym_const, - ACTIONS(3369), 1, - anon_sym_enum, - ACTIONS(3371), 1, - anon_sym_fn, - ACTIONS(3373), 1, - anon_sym_mod, - ACTIONS(3375), 1, - anon_sym_static, - ACTIONS(3377), 1, - anon_sym_struct, - ACTIONS(3379), 1, - anon_sym_trait, - ACTIONS(3381), 1, - anon_sym_type, - ACTIONS(3383), 1, - anon_sym_union, - ACTIONS(3385), 1, - anon_sym_unsafe, - ACTIONS(3387), 1, - anon_sym_use, - ACTIONS(3389), 1, - anon_sym_extern, - STATE(1514), 1, - sym_extern_modifier, - STATE(1549), 1, - aux_sym_function_modifiers_repeat1, - STATE(2359), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3365), 2, - anon_sym_async, - anon_sym_default, - [49546] = 6, - ACTIONS(3355), 1, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3435), 1, anon_sym_LPAREN, - STATE(1346), 1, + ACTIONS(3439), 1, + anon_sym_COLON_COLON, + STATE(1359), 1, sym_type_arguments, - STATE(1371), 1, + STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2506), 13, + ACTIONS(2570), 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, @@ -111238,304 +111837,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49578] = 17, - ACTIONS(3391), 1, - anon_sym_const, - ACTIONS(3393), 1, - anon_sym_enum, - ACTIONS(3395), 1, - anon_sym_fn, - ACTIONS(3397), 1, - anon_sym_mod, - ACTIONS(3399), 1, - anon_sym_static, - ACTIONS(3401), 1, - anon_sym_struct, - ACTIONS(3403), 1, - anon_sym_trait, - ACTIONS(3405), 1, - anon_sym_type, - ACTIONS(3407), 1, - anon_sym_union, - ACTIONS(3409), 1, - anon_sym_unsafe, - ACTIONS(3411), 1, - anon_sym_use, - ACTIONS(3413), 1, - anon_sym_extern, - STATE(1503), 1, - sym_extern_modifier, - STATE(1549), 1, - aux_sym_function_modifiers_repeat1, - STATE(2533), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3365), 2, - anon_sym_async, - anon_sym_default, - [49632] = 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(2502), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + [49310] = 8, + ACTIONS(2576), 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, - [49664] = 6, - ACTIONS(3355), 1, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3435), 1, anon_sym_LPAREN, - STATE(1346), 1, + ACTIONS(3439), 1, + anon_sym_COLON_COLON, + STATE(1359), 1, sym_type_arguments, - STATE(1371), 1, + STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 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, - [49696] = 3, - ACTIONS(3415), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3111), 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, - [49721] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2510), 16, + ACTIONS(2574), 12, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_LT2, anon_sym_PIPE, - [49744] = 3, - ACTIONS(2646), 1, + [49347] = 4, + ACTIONS(2602), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2644), 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, - [49768] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2522), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2524), 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, + ACTIONS(2606), 2, anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, - anon_sym_PIPE, - [49792] = 3, - ACTIONS(2730), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3113), 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, - [49816] = 3, - ACTIONS(3417), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3113), 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, - [49840] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2530), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2532), 13, + ACTIONS(2600), 15, 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(3349), 1, - anon_sym_COLON, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3357), 1, - anon_sym_AT, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3419), 1, - anon_sym_LPAREN, - ACTIONS(3424), 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(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(2616), 14, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, @@ -111545,79 +111888,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [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_GT, + anon_sym_LT2, + anon_sym_PIPE, + [49376] = 4, + ACTIONS(2618), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 14, + ACTIONS(2622), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2616), 15, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -111629,81 +111914,70 @@ 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, - [50068] = 3, + [49405] = 4, + ACTIONS(2630), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2556), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2558), 13, + ACTIONS(2634), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2628), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_PLUS, anon_sym_as, - anon_sym_if, - anon_sym_BANG, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, + anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [50092] = 6, - ACTIONS(3345), 1, - anon_sym_LPAREN, - ACTIONS(3434), 1, - anon_sym_COLON_COLON, + [49434] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3349), 2, + ACTIONS(2628), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2632), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 9, + ACTIONS(2634), 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, - [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, + [49463] = 4, + ACTIONS(2610), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 14, + ACTIONS(2614), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2608), 15, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -111715,83 +111989,101 @@ 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, - [50168] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3125), 15, - anon_sym_async, + [49492] = 17, + ACTIONS(3443), 1, anon_sym_const, - anon_sym_default, + ACTIONS(3445), 1, anon_sym_enum, + ACTIONS(3447), 1, anon_sym_fn, + ACTIONS(3449), 1, anon_sym_mod, + ACTIONS(3451), 1, anon_sym_static, + ACTIONS(3453), 1, anon_sym_struct, + ACTIONS(3455), 1, anon_sym_trait, + ACTIONS(3457), 1, anon_sym_type, + ACTIONS(3459), 1, anon_sym_union, + ACTIONS(3461), 1, anon_sym_unsafe, + ACTIONS(3463), 1, anon_sym_use, + ACTIONS(3465), 1, anon_sym_extern, - sym_identifier, - [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, + STATE(1521), 1, + sym_extern_modifier, + STATE(1557), 1, + aux_sym_function_modifiers_repeat1, + STATE(2406), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3119), 15, + ACTIONS(3441), 2, anon_sym_async, - anon_sym_const, anon_sym_default, + [49546] = 17, + ACTIONS(3467), 1, + anon_sym_const, + ACTIONS(3469), 1, anon_sym_enum, + ACTIONS(3471), 1, anon_sym_fn, + ACTIONS(3473), 1, anon_sym_mod, + ACTIONS(3475), 1, anon_sym_static, + ACTIONS(3477), 1, anon_sym_struct, + ACTIONS(3479), 1, anon_sym_trait, + ACTIONS(3481), 1, anon_sym_type, + ACTIONS(3483), 1, anon_sym_union, + ACTIONS(3485), 1, anon_sym_unsafe, + ACTIONS(3487), 1, anon_sym_use, + ACTIONS(3489), 1, anon_sym_extern, - sym_identifier, - [50236] = 4, - ACTIONS(2546), 1, - anon_sym_COLON, - ACTIONS(3436), 1, - anon_sym_COLON_COLON, + STATE(1523), 1, + sym_extern_modifier, + STATE(1557), 1, + aux_sym_function_modifiers_repeat1, + STATE(2550), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3441), 2, + anon_sym_async, + anon_sym_default, + [49600] = 6, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 1, + anon_sym_LPAREN, + STATE(1360), 1, + sym_type_arguments, + STATE(1377), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 12, + ACTIONS(2596), 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, @@ -111799,11 +112091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50261] = 2, + [49632] = 6, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 1, + anon_sym_LPAREN, + STATE(1360), 1, + sym_type_arguments, + STATE(1377), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2658), 14, + ACTIONS(2582), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111815,16 +112115,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50282] = 3, - ACTIONS(3438), 1, - anon_sym_DASH_GT, + [49664] = 6, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 1, + anon_sym_LPAREN, + STATE(1360), 1, + sym_type_arguments, + STATE(1377), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 13, + ACTIONS(2578), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111838,183 +112143,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50305] = 4, - ACTIONS(2546), 1, - anon_sym_COLON, - ACTIONS(3115), 1, - anon_sym_COLON_COLON, + [49696] = 3, + ACTIONS(3491), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3171), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [49721] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 12, + ACTIONS(2600), 16, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [50330] = 2, + [49744] = 3, + ACTIONS(2688), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 14, + ACTIONS(2686), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, 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, - [50351] = 4, - ACTIONS(2508), 1, + [49768] = 13, + ACTIONS(3419), 1, + anon_sym_PIPE, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, anon_sym_COLON, - ACTIONS(3440), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3433), 1, + anon_sym_AT, + ACTIONS(3437), 1, + anon_sym_BANG, + ACTIONS(3493), 1, + anon_sym_LPAREN, + ACTIONS(3495), 1, anon_sym_COLON_COLON, + STATE(1359), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3429), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [49812] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2506), 12, + ACTIONS(2620), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2622), 13, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [50376] = 3, - ACTIONS(3442), 1, - anon_sym_DASH_GT, + [49836] = 3, + ACTIONS(2702), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2666), 13, + ACTIONS(2700), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_PIPE, - [50399] = 14, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, + [49860] = 6, + ACTIONS(3421), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3497), 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(3425), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3429), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3419), 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, + [49890] = 3, + ACTIONS(2762), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 14, + ACTIONS(2760), 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, + [49914] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3181), 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, + [49936] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2632), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2634), 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, - [50465] = 2, + [49960] = 3, + ACTIONS(2710), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2684), 14, + ACTIONS(2708), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_PIPE, - [50486] = 3, - ACTIONS(3452), 1, - anon_sym_DASH_GT, + [49984] = 3, + ACTIONS(2714), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 13, + ACTIONS(2712), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_PIPE, - [50509] = 3, - ACTIONS(3454), 1, - anon_sym_DASH_GT, + [50008] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 13, + ACTIONS(2974), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112027,54 +112425,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + sym_mutable_specifier, anon_sym_PIPE, - [50532] = 5, - ACTIONS(3460), 1, - anon_sym_COLON_COLON, + sym_self, + [50030] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3458), 2, + ACTIONS(2612), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3462), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3456), 9, + ACTIONS(2614), 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, - [50559] = 3, - ACTIONS(2305), 1, - anon_sym_EQ, + [50054] = 13, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3433), 1, + anon_sym_AT, + ACTIONS(3437), 1, + anon_sym_BANG, + ACTIONS(3499), 1, + anon_sym_LPAREN, + ACTIONS(3501), 1, + anon_sym_RBRACK, + ACTIONS(3504), 1, + anon_sym_COLON_COLON, + STATE(1359), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2558), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3419), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3429), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [50098] = 14, + ACTIONS(2558), 1, + anon_sym_PLUS, + ACTIONS(3419), 1, + anon_sym_PIPE, + ACTIONS(3423), 1, + anon_sym_LBRACE, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3433), 1, + anon_sym_AT, + ACTIONS(3437), 1, + anon_sym_BANG, + ACTIONS(3506), 1, + anon_sym_LPAREN, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, + STATE(1359), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3429), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3501), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [50144] = 3, + ACTIONS(2796), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3173), 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, + [50168] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3177), 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, + [50190] = 3, + ACTIONS(3510), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3173), 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, + [50214] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3199), 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, + [50236] = 3, + ACTIONS(3512), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2307), 13, + ACTIONS(2728), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50582] = 2, + [50259] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 14, + ACTIONS(2746), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112089,36 +112633,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50603] = 4, - ACTIONS(3466), 1, - anon_sym_pat, - STATE(564), 1, - sym_fragment_specifier, + [50280] = 14, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3437), 1, + anon_sym_BANG, + ACTIONS(3439), 1, + anon_sym_COLON_COLON, + ACTIONS(3514), 1, + anon_sym_COLON, + ACTIONS(3516), 1, + anon_sym_EQ, + ACTIONS(3518), 1, + anon_sym_COMMA, + ACTIONS(3520), 1, + anon_sym_GT, + STATE(1359), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, + STATE(1929), 1, + aux_sym_type_parameters_repeat1, + STATE(1932), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, + ACTIONS(2558), 2, + anon_sym_PLUS, + anon_sym_as, + [50325] = 4, + ACTIONS(2584), 1, anon_sym_COLON, - ACTIONS(3440), 1, + ACTIONS(3522), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 12, + ACTIONS(2582), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112131,19 +112685,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50653] = 3, - ACTIONS(3468), 1, - anon_sym_DASH_GT, + [50350] = 4, + ACTIONS(2598), 1, + anon_sym_COLON, + ACTIONS(3175), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2652), 13, + ACTIONS(2596), 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, @@ -112151,13 +112706,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50676] = 3, - ACTIONS(3470), 1, + [50375] = 3, + ACTIONS(3524), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2678), 13, + ACTIONS(2740), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112171,34 +112726,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50699] = 4, - ACTIONS(2504), 1, - anon_sym_COLON, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, + [50398] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2502), 12, + ACTIONS(2674), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50724] = 3, - ACTIONS(3472), 1, + [50419] = 4, + ACTIONS(3528), 1, + anon_sym_pat, + STATE(580), 1, + sym_fragment_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3526), 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, + [50444] = 3, + ACTIONS(3530), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2638), 13, + ACTIONS(2754), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112212,36 +112786,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50747] = 3, - ACTIONS(3476), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3474), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + [50467] = 4, + ACTIONS(2580), 1, anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50769] = 2, + ACTIONS(3522), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2732), 13, + ACTIONS(2578), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -112249,11 +112807,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50789] = 2, + [50492] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 13, + ACTIONS(2750), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112265,13 +112823,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, - [50809] = 2, + [50513] = 3, + ACTIONS(3532), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(590), 13, + ACTIONS(2734), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112285,11 +112846,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50829] = 2, + [50536] = 3, + ACTIONS(3534), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2787), 13, + ACTIONS(2722), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112303,11 +112866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50849] = 2, + [50559] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2722), 13, + ACTIONS(2704), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112319,13 +112882,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, - [50869] = 2, + [50580] = 3, + ACTIONS(3536), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2502), 13, + ACTIONS(2716), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112339,11 +112905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50889] = 2, + [50603] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2714), 13, + ACTIONS(2764), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112355,19 +112921,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, - [50909] = 2, + [50624] = 3, + ACTIONS(2369), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2726), 13, + ACTIONS(2371), 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_COMMA, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50647] = 4, + ACTIONS(2598), 1, + anon_sym_COLON, + ACTIONS(3522), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2596), 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, @@ -112375,30 +112965,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50929] = 3, - ACTIONS(3480), 1, + [50672] = 3, + ACTIONS(3538), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2680), 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, + [50695] = 5, + ACTIONS(3544), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3478), 12, + ACTIONS(3542), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3546), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3540), 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_DOT_DOT_DOT, anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50951] = 2, + [50722] = 4, + ACTIONS(2598), 1, + anon_sym_COLON, + ACTIONS(3548), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(648), 13, + ACTIONS(2596), 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, + [50747] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2930), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112412,11 +113046,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50971] = 2, + [50767] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2953), 13, + ACTIONS(2784), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112430,11 +113064,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50991] = 2, + [50787] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2732), 13, + ACTIONS(624), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112448,11 +113082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51011] = 2, + [50807] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2865), 13, + ACTIONS(2596), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112466,11 +113100,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51031] = 2, + [50827] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2604), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2606), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_PIPE, + [50849] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2506), 13, + ACTIONS(2990), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112484,11 +113137,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51051] = 2, + [50869] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2772), 13, + ACTIONS(2946), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112502,11 +113155,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51071] = 2, + [50889] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2937), 13, + ACTIONS(3006), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112520,11 +113173,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51091] = 2, + [50909] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 13, + ACTIONS(2578), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112538,11 +113191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51111] = 2, + [50929] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2957), 13, + ACTIONS(656), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112556,11 +113209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51131] = 2, + [50949] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2961), 13, + ACTIONS(2946), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112574,16 +113227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51151] = 4, - ACTIONS(3349), 1, + [50969] = 3, + ACTIONS(3552), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 10, + ACTIONS(3550), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -112592,13 +113242,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51175] = 2, + [50991] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2917), 13, + ACTIONS(2902), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112612,11 +113264,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51195] = 2, + [51011] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(602), 13, + ACTIONS(608), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112630,11 +113282,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51215] = 2, + [51031] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2702), 13, + ACTIONS(3010), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112648,11 +113300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51235] = 2, + [51051] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2857), 13, + ACTIONS(2840), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112666,11 +113318,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51255] = 2, + [51071] = 3, + ACTIONS(3556), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3554), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51093] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2925), 13, + ACTIONS(3018), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112684,11 +113355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51275] = 2, + [51113] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2795), 13, + ACTIONS(2802), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112702,11 +113373,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51295] = 2, + [51133] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2748), 13, + ACTIONS(2926), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112720,11 +113391,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51315] = 2, + [51153] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2921), 13, + ACTIONS(2912), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112738,11 +113409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51335] = 2, + [51173] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 13, + ACTIONS(644), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112756,270 +113427,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51355] = 3, + [51193] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2514), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2516), 11, + ACTIONS(2768), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, + anon_sym_GT, anon_sym_PIPE, - [51377] = 5, - ACTIONS(2514), 1, - anon_sym_COLON, - ACTIONS(3482), 1, - anon_sym_LPAREN, + [51213] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 5, + ACTIONS(2894), 13, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2516), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [51402] = 4, + [51233] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3485), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2552), 4, + ACTIONS(2978), 13, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2558), 6, - anon_sym_BANG, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [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, + [51253] = 2, 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, + ACTIONS(2950), 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, - [51460] = 4, - ACTIONS(3494), 1, - anon_sym_COLON_COLON, + [51273] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3492), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3490), 9, + ACTIONS(2582), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, + anon_sym_GT, anon_sym_PIPE, - [51483] = 3, - ACTIONS(556), 1, - anon_sym_EQ, + [51293] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(554), 11, + ACTIONS(3033), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_in, anon_sym_PIPE, - [51504] = 4, - ACTIONS(3500), 1, - anon_sym_COLON_COLON, + [51313] = 4, + ACTIONS(3425), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3498), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3496), 9, + ACTIONS(3429), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3419), 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, - [51527] = 4, - ACTIONS(3417), 1, - anon_sym_COLON_COLON, + [51337] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3498), 2, + ACTIONS(3037), 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, - ACTIONS(3496), 9, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [51357] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2986), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, + anon_sym_GT, anon_sym_PIPE, - [51550] = 4, - ACTIONS(3502), 1, - anon_sym_COLON_COLON, + [51377] = 3, + ACTIONS(518), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3498), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3496), 9, + ACTIONS(516), 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, - [51573] = 4, + [51398] = 5, + ACTIONS(2620), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3504), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2526), 4, - anon_sym_SEMI, + ACTIONS(2616), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2532), 6, - anon_sym_BANG, + ACTIONS(3558), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2622), 5, + anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51596] = 4, + [51423] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3482), 2, + ACTIONS(3561), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2510), 4, + ACTIONS(2628), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2516), 6, + ACTIONS(2634), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51619] = 4, + [51446] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3507), 2, + ACTIONS(3564), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2518), 4, + ACTIONS(2608), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2524), 6, + ACTIONS(2614), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51642] = 5, - ACTIONS(2530), 1, + [51469] = 5, + ACTIONS(2604), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2526), 3, + ACTIONS(2600), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3504), 3, + ACTIONS(3567), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2532), 5, + ACTIONS(2606), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51667] = 4, - ACTIONS(3494), 1, + [51494] = 4, + ACTIONS(3574), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3512), 2, + ACTIONS(3572), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3510), 9, + ACTIONS(3570), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113029,35 +113706,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51690] = 4, - ACTIONS(3500), 1, - anon_sym_COLON_COLON, + [51517] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3516), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3514), 9, + ACTIONS(3567), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2600), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2606), 6, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51540] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3558), 2, + anon_sym_LPAREN, anon_sym_RBRACK, - anon_sym_if, + ACTIONS(2616), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2622), 6, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_in, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51713] = 4, - ACTIONS(3417), 1, + [51563] = 4, + ACTIONS(3510), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3516), 2, + ACTIONS(3572), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3514), 9, + ACTIONS(3570), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113067,36 +113763,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51736] = 5, - ACTIONS(2514), 1, + [51586] = 5, + ACTIONS(2612), 1, anon_sym_COLON, + ACTIONS(3564), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 3, + ACTIONS(2608), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3482), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2516), 5, + anon_sym_LT2, + ACTIONS(2614), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51761] = 4, - ACTIONS(3502), 1, + [51611] = 4, + ACTIONS(3580), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3516), 2, + ACTIONS(3578), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3514), 9, + ACTIONS(3576), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113106,149 +113802,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51784] = 5, - ACTIONS(2556), 1, + [51634] = 5, + ACTIONS(2632), 1, + anon_sym_COLON, + ACTIONS(3561), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2628), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2634), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51659] = 5, + ACTIONS(2612), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2552), 3, + ACTIONS(2608), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3485), 3, + ACTIONS(3564), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2558), 5, + ACTIONS(2614), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51809] = 3, - ACTIONS(532), 1, - anon_sym_EQ, + [51684] = 4, + ACTIONS(3582), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(530), 11, + ACTIONS(3572), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3570), 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, - [51830] = 3, - ACTIONS(542), 1, - anon_sym_EQ, + [51707] = 4, + ACTIONS(3580), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(540), 11, + ACTIONS(3586), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3584), 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, - [51851] = 5, - ACTIONS(2522), 1, - anon_sym_COLON, - ACTIONS(3507), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - 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, - anon_sym_PIPE, - [51876] = 5, - ACTIONS(2522), 1, + [51730] = 5, + ACTIONS(2632), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2518), 3, + ACTIONS(2628), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3507), 3, + ACTIONS(3561), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2524), 5, + ACTIONS(2634), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51901] = 5, - ACTIONS(2530), 1, + [51755] = 5, + ACTIONS(2620), 1, anon_sym_COLON, - ACTIONS(3504), 1, + ACTIONS(3558), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2526), 5, + ACTIONS(2616), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2532), 5, + ACTIONS(2622), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51926] = 5, - ACTIONS(2556), 1, + [51780] = 5, + ACTIONS(2604), 1, anon_sym_COLON, - ACTIONS(3485), 1, + ACTIONS(3567), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2552), 5, + ACTIONS(2600), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2558), 5, + ACTIONS(2606), 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, + [51805] = 3, + ACTIONS(548), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3518), 10, + ACTIONS(546), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113257,93 +113955,116 @@ 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, - [51971] = 9, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3363), 1, + [51826] = 4, + ACTIONS(3582), 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, + ACTIONS(3590), 2, + anon_sym_COLON, anon_sym_EQ, + ACTIONS(3588), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [51849] = 4, + ACTIONS(3510), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3524), 10, + ACTIONS(3590), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3588), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52023] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3530), 1, - sym_crate, - STATE(1561), 1, - sym_string_literal, + [51872] = 4, + ACTIONS(3574), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3528), 8, + ACTIONS(3590), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3588), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52047] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3532), 1, - sym_crate, - STATE(1561), 1, - sym_string_literal, + 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, + [51895] = 3, + ACTIONS(556), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3528), 8, + 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, + [51916] = 10, + ACTIONS(3421), 1, + anon_sym_LPAREN, + ACTIONS(3423), 1, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52071] = 3, - ACTIONS(600), 1, + ACTIONS(3427), 1, + anon_sym_COLON_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3433), 1, + anon_sym_AT, + ACTIONS(3592), 1, + anon_sym_BANG, + STATE(1359), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3429), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3419), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + [51951] = 3, + ACTIONS(3596), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(598), 10, + ACTIONS(3594), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113354,13 +114075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52091] = 3, - ACTIONS(3536), 1, + [51971] = 3, + ACTIONS(3600), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3534), 10, + ACTIONS(3598), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113371,13 +114092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52111] = 3, - ACTIONS(3540), 1, + [51991] = 3, + ACTIONS(3604), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3538), 10, + ACTIONS(3602), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113388,13 +114109,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52131] = 3, - ACTIONS(3544), 1, + [52011] = 3, + ACTIONS(3608), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3542), 10, + ACTIONS(3606), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113405,32 +114126,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52151] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3546), 1, - sym_crate, - STATE(1561), 1, - sym_string_literal, + [52031] = 3, + ACTIONS(3425), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3528), 8, + ACTIONS(3419), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52175] = 3, - ACTIONS(3516), 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, + [52051] = 3, + ACTIONS(3612), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3514), 10, + ACTIONS(3610), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113441,13 +114160,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52195] = 3, - ACTIONS(3550), 1, + [52071] = 9, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3437), 1, + anon_sym_BANG, + ACTIONS(3439), 1, + anon_sym_COLON_COLON, + ACTIONS(3614), 1, + anon_sym_for, + STATE(1359), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2558), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52103] = 3, + ACTIONS(3618), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3548), 10, + ACTIONS(3616), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113458,59 +114200,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52215] = 9, - ACTIONS(3355), 1, + [52123] = 9, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3437), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3439), 1, anon_sym_COLON_COLON, - ACTIONS(3552), 1, + ACTIONS(3620), 1, anon_sym_for, - STATE(1343), 1, + STATE(1359), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 4, + ACTIONS(2558), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52247] = 9, - ACTIONS(3355), 1, + [52155] = 9, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3437), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3439), 1, + anon_sym_COLON_COLON, + ACTIONS(3622), 1, + anon_sym_for, + STATE(1359), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2558), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52187] = 3, + ACTIONS(3626), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3624), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [52207] = 3, + ACTIONS(3630), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3628), 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, + [52227] = 9, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3437), 1, + anon_sym_BANG, + ACTIONS(3439), 1, anon_sym_COLON_COLON, - ACTIONS(3554), 1, + ACTIONS(3632), 1, anon_sym_for, - STATE(1343), 1, + STATE(1359), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 4, + ACTIONS(2558), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, + [52259] = 3, + ACTIONS(3636), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3634), 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, [52279] = 3, - ACTIONS(3558), 1, + ACTIONS(3590), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3556), 10, + ACTIONS(3588), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113522,19 +114338,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [52299] = 6, - ACTIONS(3560), 1, + ACTIONS(3638), 1, anon_sym_COLON, - ACTIONS(3562), 1, + ACTIONS(3640), 1, anon_sym_BANG, - ACTIONS(3564), 1, + ACTIONS(3642), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3546), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2538), 6, + ACTIONS(2590), 6, anon_sym_async, anon_sym_const, anon_sym_default, @@ -113542,12 +114358,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [52325] = 3, - ACTIONS(3568), 1, + ACTIONS(3646), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3566), 10, + ACTIONS(3644), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113559,12 +114375,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [52345] = 3, - ACTIONS(3572), 1, + ACTIONS(622), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3570), 10, + ACTIONS(620), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113576,35 +114392,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [52365] = 9, - ACTIONS(3355), 1, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3437), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3439), 1, anon_sym_COLON_COLON, - ACTIONS(3574), 1, + ACTIONS(3648), 1, anon_sym_for, - STATE(1343), 1, + STATE(1359), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 4, + ACTIONS(2558), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, [52397] = 3, - ACTIONS(3578), 1, + ACTIONS(3652), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 10, + ACTIONS(3650), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113616,12 +114432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [52417] = 3, - ACTIONS(3582), 1, + ACTIONS(3656), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3580), 10, + ACTIONS(3654), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113632,13 +114448,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52437] = 3, - ACTIONS(3349), 1, + [52437] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3660), 1, + sym_crate, + STATE(1580), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3658), 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, + [52461] = 3, + ACTIONS(3664), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3343), 10, + ACTIONS(3662), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113649,13 +114484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52457] = 3, - ACTIONS(3586), 1, + [52481] = 3, + ACTIONS(3668), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3584), 10, + ACTIONS(3666), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113666,36 +114501,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52477] = 9, - ACTIONS(3355), 1, + [52501] = 3, + ACTIONS(3672), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3670), 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, + [52521] = 3, + ACTIONS(3676), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3674), 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, + [52541] = 9, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3437), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3439), 1, anon_sym_COLON_COLON, - ACTIONS(3588), 1, + ACTIONS(3678), 1, anon_sym_for, - STATE(1343), 1, + STATE(1359), 1, sym_type_arguments, STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 4, + ACTIONS(2558), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52509] = 3, - ACTIONS(3592), 1, + [52573] = 3, + ACTIONS(3682), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3590), 10, + ACTIONS(3680), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113706,13 +114575,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52529] = 3, - ACTIONS(3596), 1, + [52593] = 3, + ACTIONS(3686), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3594), 10, + ACTIONS(3684), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113723,13 +114592,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52549] = 3, - ACTIONS(3600), 1, + [52613] = 3, + ACTIONS(3690), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3598), 10, + ACTIONS(3688), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113740,13 +114609,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52569] = 3, - ACTIONS(3604), 1, + [52633] = 3, + ACTIONS(3694), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3602), 10, + ACTIONS(3692), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113757,13 +114626,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52589] = 3, - ACTIONS(3608), 1, + [52653] = 3, + ACTIONS(3698), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3606), 10, + ACTIONS(3696), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113774,82 +114643,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [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, + [52673] = 3, + ACTIONS(3702), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3616), 10, + ACTIONS(3700), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113860,13 +114660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52725] = 3, - ACTIONS(3622), 1, + [52693] = 3, + ACTIONS(3706), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3620), 10, + ACTIONS(3704), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113877,30 +114677,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52745] = 3, - ACTIONS(3498), 1, - anon_sym_EQ, + [52713] = 9, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3437), 1, + anon_sym_BANG, + ACTIONS(3439), 1, + anon_sym_COLON_COLON, + ACTIONS(3708), 1, + anon_sym_for, + STATE(1359), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3496), 10, + ACTIONS(2558), 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, - [52765] = 3, - ACTIONS(3626), 1, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52745] = 3, + ACTIONS(3712), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3624), 10, + ACTIONS(3710), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113911,13 +114717,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52785] = 3, - ACTIONS(3630), 1, + [52765] = 3, + ACTIONS(3716), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3628), 10, + ACTIONS(3714), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113928,50 +114734,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52805] = 3, - ACTIONS(3634), 1, - anon_sym_EQ, + [52785] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3718), 1, + sym_crate, + STATE(1580), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3632), 10, + ACTIONS(3658), 8, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [52825] = 6, - ACTIONS(3560), 1, - anon_sym_COLON, - ACTIONS(3562), 1, - anon_sym_BANG, - ACTIONS(3636), 1, - anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52809] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3720), 1, + sym_crate, + STATE(1580), 1, + sym_string_literal, 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, + ACTIONS(3658), 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, - [52851] = 3, - ACTIONS(3640), 1, + [52833] = 3, + ACTIONS(3724), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3638), 10, + ACTIONS(3722), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113982,30 +114789,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52871] = 3, - ACTIONS(3644), 1, - anon_sym_EQ, + [52853] = 9, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3437), 1, + anon_sym_BANG, + ACTIONS(3439), 1, + anon_sym_COLON_COLON, + ACTIONS(3726), 1, + anon_sym_for, + STATE(1359), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3642), 10, + ACTIONS(2558), 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, - [52891] = 3, - ACTIONS(3648), 1, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52885] = 3, + ACTIONS(3572), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3646), 10, + ACTIONS(3570), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114016,13 +114829,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52911] = 3, - ACTIONS(3652), 1, + [52905] = 6, + ACTIONS(3638), 1, + anon_sym_COLON, + ACTIONS(3640), 1, + anon_sym_BANG, + ACTIONS(3728), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3546), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2590), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52931] = 3, + ACTIONS(3732), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 10, + ACTIONS(3730), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114033,17 +114866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52931] = 5, + [52951] = 5, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(3654), 1, + ACTIONS(3734), 1, sym_crate, - STATE(1561), 1, + STATE(1580), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3528), 8, + ACTIONS(3658), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -114052,94 +114885,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52955] = 3, - ACTIONS(3658), 1, - anon_sym_EQ, + [52975] = 8, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3736), 1, + sym_identifier, + ACTIONS(3738), 1, + anon_sym_RBRACE, + ACTIONS(3740), 1, + anon_sym_COMMA, + ACTIONS(3742), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3656), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(1871), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1917), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53004] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3744), 1, + sym_identifier, + ACTIONS(3746), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + ACTIONS(3748), 1, anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [52975] = 5, - ACTIONS(3562), 1, - anon_sym_BANG, - ACTIONS(3564), 1, - anon_sym_COLON_COLON, + ACTIONS(3750), 1, + sym_crate, + STATE(2100), 1, + sym_field_declaration, + STATE(2447), 1, + sym_visibility_modifier, 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, - [52998] = 5, - ACTIONS(3562), 1, + STATE(1561), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53037] = 5, + ACTIONS(3640), 1, anon_sym_BANG, - ACTIONS(3636), 1, + ACTIONS(3642), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3546), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2538), 6, + ACTIONS(2590), 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(2249), 1, - anon_sym_POUND, - ACTIONS(3660), 1, - sym_identifier, - ACTIONS(3662), 1, - anon_sym_RBRACE, - ACTIONS(3664), 1, - anon_sym_COMMA, - ACTIONS(3666), 1, - sym_crate, - STATE(2051), 1, - sym_enum_variant, - STATE(2542), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1559), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53054] = 6, + [53060] = 6, ACTIONS(93), 1, aux_sym_string_literal_token1, - STATE(2099), 1, + STATE(2133), 1, sym__literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3668), 2, + ACTIONS(3752), 2, anon_sym_true, anon_sym_false, - STATE(1070), 2, + STATE(1075), 2, sym_string_literal, sym_boolean_literal, ACTIONS(91), 4, @@ -114147,81 +114966,100 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - [53079] = 10, + [53085] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3660), 1, - sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3750), 1, sym_crate, - ACTIONS(3670), 1, + ACTIONS(3754), 1, + sym_identifier, + ACTIONS(3756), 1, anon_sym_RBRACE, - ACTIONS(3672), 1, + ACTIONS(3758), 1, anon_sym_COMMA, - STATE(1863), 1, + STATE(2062), 1, sym_enum_variant, - STATE(2542), 1, + STATE(2395), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1546), 2, + STATE(1566), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [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, + [53118] = 5, + ACTIONS(3640), 1, + anon_sym_BANG, + ACTIONS(3728), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3546), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2590), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53141] = 5, + ACTIONS(3640), 1, + anon_sym_BANG, + ACTIONS(3760), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + ACTIONS(3546), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2590), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53137] = 8, - ACTIONS(2249), 1, + [53164] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3676), 1, + ACTIONS(3744), 1, sym_identifier, - ACTIONS(3678), 1, + ACTIONS(3750), 1, + sym_crate, + ACTIONS(3762), 1, anon_sym_RBRACE, - ACTIONS(3680), 1, + ACTIONS(3764), 1, anon_sym_COMMA, - ACTIONS(3682), 1, - anon_sym_DOT_DOT, + STATE(2037), 1, + sym_field_declaration, + STATE(2447), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1854), 2, + STATE(1556), 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, + [53197] = 6, ACTIONS(93), 1, aux_sym_string_literal_token1, - STATE(2103), 1, + STATE(2129), 1, sym__literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3668), 2, + ACTIONS(3752), 2, anon_sym_true, anon_sym_false, - STATE(1070), 2, + STATE(1075), 2, sym_string_literal, sym_boolean_literal, ACTIONS(91), 4, @@ -114229,1729 +115067,1682 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - [53191] = 9, - ACTIONS(3355), 1, + [53222] = 9, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(3361), 1, + ACTIONS(3437), 1, anon_sym_BANG, - ACTIONS(3363), 1, + ACTIONS(3439), 1, anon_sym_COLON_COLON, - ACTIONS(3684), 1, + ACTIONS(3766), 1, anon_sym_EQ, STATE(1374), 1, sym_parameters, - STATE(1749), 1, + STATE(1771), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 3, + ACTIONS(2558), 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, + [53253] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3455), 1, + anon_sym_trait, + ACTIONS(3768), 1, + anon_sym_impl, + STATE(75), 1, + sym_block, 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, + ACTIONS(2590), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53245] = 7, - ACTIONS(3355), 1, + [53278] = 7, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(3688), 1, + ACTIONS(3770), 1, anon_sym_LBRACE, - STATE(1346), 1, + STATE(1360), 1, sym_type_arguments, - STATE(1371), 1, + STATE(1377), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 5, + ACTIONS(2596), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_COMMA, - [53272] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(3666), 1, - sym_crate, - ACTIONS(3690), 1, - sym_identifier, - ACTIONS(3692), 1, - anon_sym_RBRACE, - ACTIONS(3694), 1, - anon_sym_COMMA, - STATE(1897), 1, - sym_field_declaration, - STATE(2464), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1547), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, [53305] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3750), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3696), 1, + ACTIONS(3772), 1, anon_sym_RBRACE, - ACTIONS(3698), 1, + ACTIONS(3774), 1, anon_sym_COMMA, - STATE(2089), 1, - sym_field_declaration, - STATE(2464), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1551), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53338] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(3660), 1, - sym_identifier, - ACTIONS(3666), 1, - sym_crate, - ACTIONS(3700), 1, - anon_sym_RBRACE, - STATE(2198), 1, + STATE(1933), 1, sym_enum_variant, - STATE(2542), 1, + STATE(2395), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1551), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [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(3359), 1, - anon_sym_LPAREN, - ACTIONS(3710), 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, + [53338] = 10, + ACTIONS(3776), 1, anon_sym_SEMI, + ACTIONS(3778), 1, + anon_sym_LPAREN, + ACTIONS(3780), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(3782), 1, anon_sym_where, - [53424] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3712), 1, - anon_sym_move, - STATE(99), 1, - sym_block, - 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, - [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(3784), 1, + anon_sym_LT, + STATE(1036), 1, + sym_field_declaration_list, + STATE(1625), 1, + sym_type_parameters, + STATE(2025), 1, + sym_ordered_field_declaration_list, + STATE(2286), 1, + sym_where_clause, 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_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [53472] = 10, - ACTIONS(3716), 1, - anon_sym_SEMI, - ACTIONS(3718), 1, + [53370] = 10, + ACTIONS(3778), 1, anon_sym_LPAREN, - ACTIONS(3720), 1, + ACTIONS(3780), 1, anon_sym_LBRACE, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3784), 1, anon_sym_LT, - STATE(924), 1, + ACTIONS(3786), 1, + anon_sym_SEMI, + STATE(896), 1, sym_field_declaration_list, - STATE(1616), 1, + STATE(1593), 1, sym_type_parameters, - STATE(2014), 1, + STATE(2119), 1, sym_ordered_field_declaration_list, - STATE(2270), 1, + STATE(2169), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53504] = 9, + [53402] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3744), 1, sym_identifier, - ACTIONS(3666), 1, - sym_crate, - ACTIONS(3726), 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, - STATE(1548), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53534] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3750), 1, sym_crate, - ACTIONS(3690), 1, - sym_identifier, - ACTIONS(3728), 1, + ACTIONS(3788), 1, anon_sym_RBRACE, - STATE(2292), 1, + STATE(2303), 1, sym_field_declaration, - STATE(2464), 1, + STATE(2447), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1567), 2, + STATE(1546), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [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, - anon_sym_PLUS, - anon_sym_where, - [53650] = 5, - ACTIONS(3736), 1, - anon_sym_SEMI, - ACTIONS(3738), 1, - anon_sym_LBRACE, - STATE(312), 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, - [53672] = 7, - ACTIONS(2249), 1, + [53432] = 7, + ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3676), 1, + ACTIONS(3736), 1, sym_identifier, - ACTIONS(3682), 1, + ACTIONS(3742), 1, anon_sym_DOT_DOT, - ACTIONS(3740), 1, + ACTIONS(3790), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1854), 2, + STATE(1871), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2132), 3, + STATE(2150), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [53698] = 10, - ACTIONS(3718), 1, + [53458] = 7, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 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(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_const, - ACTIONS(3708), 1, - sym_metavariable, - ACTIONS(3746), 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, - [53760] = 5, - ACTIONS(3748), 1, - anon_sym_SEMI, - ACTIONS(3750), 1, - anon_sym_LBRACE, - 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(3792), 1, + anon_sym_for, + STATE(1360), 1, + sym_type_arguments, + STATE(1377), 1, + sym_parameters, 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, - [53804] = 9, + ACTIONS(2596), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53484] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3750), 1, sym_crate, - ACTIONS(3690), 1, - sym_identifier, ACTIONS(3754), 1, + sym_identifier, + ACTIONS(3794), 1, anon_sym_RBRACE, - STATE(2292), 1, - sym_field_declaration, - STATE(2464), 1, + STATE(2213), 1, + sym_enum_variant, + STATE(2395), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1567), 2, + STATE(1560), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53834] = 9, + [53514] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3666), 1, - sym_crate, - ACTIONS(3690), 1, + ACTIONS(3744), 1, sym_identifier, - ACTIONS(3756), 1, + ACTIONS(3750), 1, + sym_crate, + ACTIONS(3796), 1, anon_sym_RBRACE, - STATE(2292), 1, + STATE(2303), 1, sym_field_declaration, - STATE(2464), 1, + STATE(2447), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1567), 2, + STATE(1546), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53864] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(3666), 1, - sym_crate, - ACTIONS(3690), 1, + [53544] = 7, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_for, + STATE(1360), 1, + sym_type_arguments, + STATE(1377), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2596), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53570] = 9, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3800), 1, sym_identifier, - ACTIONS(3758), 1, - anon_sym_RBRACE, - STATE(2292), 1, - sym_field_declaration, - STATE(2464), 1, - sym_visibility_modifier, + ACTIONS(3802), 1, + anon_sym_const, + ACTIONS(3804), 1, + anon_sym_GT, + ACTIONS(3806), 1, + sym_metavariable, + STATE(1840), 1, + sym_lifetime, + STATE(2035), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1567), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53894] = 9, - ACTIONS(2245), 1, + STATE(2283), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53600] = 9, + ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3800), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3802), 1, anon_sym_const, - ACTIONS(3708), 1, + ACTIONS(3806), 1, sym_metavariable, - ACTIONS(3760), 1, + ACTIONS(3808), 1, anon_sym_GT, - STATE(1833), 1, + STATE(1840), 1, sym_lifetime, - STATE(1990), 1, + STATE(2035), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2303), 2, + STATE(2283), 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, + [53630] = 7, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3810), 1, + anon_sym_for, + STATE(1360), 1, + sym_type_arguments, + STATE(1377), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, + ACTIONS(2596), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53656] = 9, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3800), 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(3802), 1, + anon_sym_const, + ACTIONS(3806), 1, + sym_metavariable, + ACTIONS(3812), 1, + anon_sym_GT, + STATE(1840), 1, + sym_lifetime, + STATE(2035), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, + STATE(2283), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53686] = 9, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3800), 1, sym_identifier, - ACTIONS(3766), 1, - anon_sym_RBRACE, - STATE(2292), 1, - sym_field_declaration, - STATE(2464), 1, - sym_visibility_modifier, + ACTIONS(3802), 1, + anon_sym_const, + ACTIONS(3806), 1, + sym_metavariable, + ACTIONS(3814), 1, + anon_sym_GT, + STATE(1777), 1, + sym_lifetime, + STATE(2035), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1567), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54014] = 9, + STATE(2283), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53716] = 5, + ACTIONS(3816), 1, + anon_sym_SEMI, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(849), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2590), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53738] = 7, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_for, + STATE(1360), 1, + sym_type_arguments, + STATE(1377), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2596), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53764] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3744), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3750), 1, sym_crate, - ACTIONS(3768), 1, + ACTIONS(3822), 1, anon_sym_RBRACE, - STATE(2198), 1, - sym_enum_variant, - STATE(2542), 1, + STATE(2303), 1, + sym_field_declaration, + STATE(2447), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1546), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54044] = 10, - ACTIONS(3718), 1, - anon_sym_LPAREN, - ACTIONS(3720), 1, + [53794] = 5, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3722), 1, + ACTIONS(3824), 1, + anon_sym_move, + STATE(101), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2590), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53816] = 10, + ACTIONS(3778), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3784), 1, anon_sym_LT, - ACTIONS(3770), 1, + ACTIONS(3826), 1, anon_sym_SEMI, - STATE(918), 1, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(373), 1, sym_field_declaration_list, - STATE(1580), 1, + STATE(1610), 1, sym_type_parameters, - STATE(2108), 1, + STATE(2051), 1, sym_ordered_field_declaration_list, - STATE(2146), 1, + STATE(2176), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54076] = 5, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(3772), 1, + [53848] = 5, + ACTIONS(3830), 1, anon_sym_SEMI, + ACTIONS(3832), 1, + anon_sym_LBRACE, STATE(466), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + ACTIONS(2590), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54098] = 7, - ACTIONS(3355), 1, + [53870] = 7, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(3774), 1, + ACTIONS(3834), 1, anon_sym_for, - STATE(1346), 1, + STATE(1360), 1, sym_type_arguments, - STATE(1371), 1, + STATE(1377), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2596), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54124] = 7, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3776), 1, - anon_sym_for, - STATE(1346), 1, - sym_type_arguments, - STATE(1371), 1, - sym_parameters, + [53896] = 5, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(3836), 1, + anon_sym_SEMI, + STATE(1018), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, - anon_sym_SEMI, + ACTIONS(2590), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53918] = 5, + ACTIONS(3832), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54150] = 9, - ACTIONS(2245), 1, + ACTIONS(3838), 1, + anon_sym_SEMI, + STATE(339), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2590), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53940] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3750), 1, + sym_crate, + ACTIONS(3754), 1, + sym_identifier, + ACTIONS(3840), 1, + anon_sym_RBRACE, + STATE(2213), 1, + sym_enum_variant, + STATE(2395), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1560), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53970] = 9, + ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3800), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3802), 1, anon_sym_const, - ACTIONS(3708), 1, + ACTIONS(3806), 1, sym_metavariable, - ACTIONS(3778), 1, + ACTIONS(3842), 1, anon_sym_GT, - STATE(1833), 1, + STATE(1840), 1, sym_lifetime, - STATE(1990), 1, + STATE(2035), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2303), 2, + STATE(2283), 2, sym_const_parameter, sym_optional_type_parameter, - [54180] = 7, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, + [54000] = 7, + ACTIONS(3421), 1, anon_sym_LPAREN, - ACTIONS(3780), 1, - anon_sym_for, - STATE(1346), 1, - sym_type_arguments, - STATE(1371), 1, - sym_parameters, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3437), 1, + anon_sym_BANG, + ACTIONS(3844), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54206] = 7, - ACTIONS(3355), 1, + ACTIONS(3429), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3419), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [54026] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3744), 1, + sym_identifier, + ACTIONS(3750), 1, + sym_crate, + ACTIONS(3846), 1, + anon_sym_RBRACE, + STATE(2303), 1, + sym_field_declaration, + STATE(2447), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1546), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54056] = 7, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(3782), 1, + ACTIONS(3848), 1, anon_sym_for, - STATE(1346), 1, + STATE(1360), 1, sym_type_arguments, - STATE(1371), 1, + STATE(1377), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2596), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54232] = 9, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(3702), 1, + [54082] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3750), 1, + sym_crate, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3704), 1, - anon_sym_const, - ACTIONS(3708), 1, - sym_metavariable, - ACTIONS(3784), 1, - anon_sym_GT, - STATE(1833), 1, - sym_lifetime, - STATE(1990), 1, - sym_constrained_type_parameter, + ACTIONS(3850), 1, + anon_sym_RBRACE, + STATE(2213), 1, + sym_enum_variant, + STATE(2395), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2303), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54262] = 9, - ACTIONS(2245), 1, + STATE(1560), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54112] = 9, + ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, + ACTIONS(3800), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3802), 1, anon_sym_const, - ACTIONS(3708), 1, + ACTIONS(3806), 1, sym_metavariable, - ACTIONS(3786), 1, + ACTIONS(3852), 1, anon_sym_GT, - STATE(1833), 1, + STATE(1840), 1, sym_lifetime, - STATE(1990), 1, + STATE(2035), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2303), 2, + STATE(2283), 2, sym_const_parameter, sym_optional_type_parameter, - [54292] = 7, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3788), 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, - anon_sym_PLUS, - anon_sym_where, - [54318] = 7, - ACTIONS(3355), 1, + [54142] = 7, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3359), 1, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(3790), 1, + ACTIONS(3854), 1, anon_sym_for, - STATE(1346), 1, + STATE(1360), 1, sym_type_arguments, - STATE(1371), 1, + STATE(1377), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2596), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54344] = 9, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_const, - ACTIONS(3708), 1, - sym_metavariable, - ACTIONS(3792), 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, - [54374] = 7, - ACTIONS(2249), 1, + [54168] = 7, + ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3676), 1, + ACTIONS(3736), 1, sym_identifier, - ACTIONS(3682), 1, + ACTIONS(3742), 1, anon_sym_DOT_DOT, - ACTIONS(3794), 1, + ACTIONS(3856), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1854), 2, + STATE(1871), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2132), 3, + STATE(2150), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [54400] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3796), 1, + [54194] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3750), 1, + sym_crate, + ACTIONS(3754), 1, sym_identifier, - STATE(102), 1, - sym_block, + ACTIONS(3858), 1, + anon_sym_RBRACE, + STATE(2213), 1, + sym_enum_variant, + STATE(2395), 1, + sym_visibility_modifier, 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, + STATE(1560), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54224] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3666), 1, - sym_crate, - ACTIONS(3690), 1, + ACTIONS(3744), 1, sym_identifier, - ACTIONS(3800), 1, + ACTIONS(3750), 1, + sym_crate, + ACTIONS(3860), 1, anon_sym_RBRACE, - STATE(2292), 1, + STATE(2303), 1, sym_field_declaration, - STATE(2464), 1, + STATE(2447), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1567), 2, + STATE(1546), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54452] = 9, + [54254] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3660), 1, + ACTIONS(3750), 1, + sym_crate, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3862), 1, + anon_sym_RBRACE, + STATE(2213), 1, + sym_enum_variant, + STATE(2395), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1560), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54284] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3750), 1, sym_crate, - ACTIONS(3802), 1, + ACTIONS(3754), 1, + sym_identifier, + ACTIONS(3864), 1, anon_sym_RBRACE, - STATE(2198), 1, + STATE(2213), 1, sym_enum_variant, - STATE(2542), 1, + STATE(2395), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1560), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54482] = 10, - ACTIONS(3718), 1, + [54314] = 10, + ACTIONS(3778), 1, anon_sym_LPAREN, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3784), 1, anon_sym_LT, - ACTIONS(3744), 1, + ACTIONS(3828), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(3866), 1, anon_sym_SEMI, - STATE(289), 1, + STATE(263), 1, sym_field_declaration_list, - STATE(1612), 1, + STATE(1626), 1, sym_type_parameters, - STATE(1872), 1, + STATE(1903), 1, sym_ordered_field_declaration_list, - STATE(2170), 1, + STATE(2233), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54514] = 4, - ACTIONS(3436), 1, - anon_sym_COLON_COLON, - ACTIONS(3562), 1, - anon_sym_BANG, + [54346] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3744), 1, + sym_identifier, + ACTIONS(3750), 1, + sym_crate, + ACTIONS(3868), 1, + anon_sym_RBRACE, + STATE(2303), 1, + sym_field_declaration, + STATE(2447), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1546), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54376] = 7, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3870), 1, + anon_sym_for, + STATE(1360), 1, + sym_type_arguments, + STATE(1377), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2596), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54402] = 9, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3800), 1, + sym_identifier, + ACTIONS(3802), 1, + anon_sym_const, + ACTIONS(3806), 1, + sym_metavariable, + ACTIONS(3872), 1, + anon_sym_GT, + STATE(1840), 1, + sym_lifetime, + STATE(2035), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2283), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54432] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3874), 1, + sym_identifier, + STATE(104), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + ACTIONS(3876), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54533] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(3660), 1, + [54454] = 9, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3800), 1, sym_identifier, - ACTIONS(3666), 1, - sym_crate, - STATE(2198), 1, - sym_enum_variant, - STATE(2542), 1, - sym_visibility_modifier, + ACTIONS(3802), 1, + anon_sym_const, + ACTIONS(3806), 1, + sym_metavariable, + ACTIONS(3878), 1, + anon_sym_GT, + STATE(1840), 1, + sym_lifetime, + STATE(2035), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54560] = 4, - ACTIONS(3808), 1, + STATE(2283), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54484] = 9, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3800), 1, + sym_identifier, + ACTIONS(3802), 1, + anon_sym_const, + ACTIONS(3806), 1, + sym_metavariable, + ACTIONS(3880), 1, + anon_sym_GT, + STATE(1840), 1, + sym_lifetime, + STATE(2035), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2283), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54514] = 4, + ACTIONS(3884), 1, anon_sym_PLUS, - STATE(1545), 1, + STATE(1577), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3806), 6, + ACTIONS(3882), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54579] = 9, - ACTIONS(3722), 1, - anon_sym_where, + [54533] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3744), 1, + sym_identifier, ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(3810), 1, - anon_sym_COLON, - ACTIONS(3812), 1, - anon_sym_LT, - STATE(939), 1, - sym_declaration_list, - STATE(1658), 1, - sym_type_parameters, - STATE(1815), 1, - sym_trait_bounds, - STATE(2157), 1, - sym_where_clause, + sym_crate, + STATE(2223), 1, + sym_field_declaration, + STATE(2447), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54608] = 6, - ACTIONS(3686), 1, + STATE(1135), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54560] = 6, + ACTIONS(3760), 1, anon_sym_COLON_COLON, - ACTIONS(3814), 1, + ACTIONS(3886), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 2, + ACTIONS(2596), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3456), 2, + ACTIONS(3540), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(3462), 2, + ACTIONS(3546), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [54631] = 8, - ACTIONS(828), 1, - anon_sym_DOT_DOT, - ACTIONS(3817), 1, - sym_identifier, - ACTIONS(3819), 1, - anon_sym_RBRACE, - ACTIONS(3821), 1, - anon_sym_COMMA, - ACTIONS(3823), 1, - anon_sym_ref, - ACTIONS(3825), 1, - sym_mutable_specifier, + [54583] = 4, + ACTIONS(3479), 1, + anon_sym_trait, + ACTIONS(3889), 1, + anon_sym_impl, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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(2590), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54602] = 4, + ACTIONS(3580), 1, + anon_sym_COLON_COLON, + ACTIONS(3891), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3806), 6, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2590), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54621] = 9, + ACTIONS(3782), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54677] = 4, - ACTIONS(3829), 1, - anon_sym_PLUS, - STATE(1545), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(3832), 1, + anon_sym_LBRACE, + ACTIONS(3893), 1, + anon_sym_COLON, + ACTIONS(3895), 1, + anon_sym_LT, + STATE(443), 1, + sym_declaration_list, + STATE(1691), 1, + sym_type_parameters, + STATE(1819), 1, + sym_trait_bounds, + STATE(2168), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3806), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54696] = 8, + [54650] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3750), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3754), 1, sym_identifier, - STATE(2292), 1, - sym_field_declaration, - STATE(2464), 1, + STATE(1947), 1, + sym_enum_variant, + STATE(2395), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1567), 2, + STATE(1135), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54723] = 6, - ACTIONS(3345), 1, - anon_sym_LPAREN, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3831), 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(3343), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [54746] = 8, - ACTIONS(2245), 1, + [54677] = 8, + ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3704), 1, + ACTIONS(3802), 1, anon_sym_const, - ACTIONS(3833), 1, + ACTIONS(3897), 1, sym_identifier, - ACTIONS(3835), 1, + ACTIONS(3899), 1, sym_metavariable, - STATE(1710), 1, + STATE(1734), 1, sym_lifetime, - STATE(1806), 1, + STATE(1820), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2111), 2, + STATE(1876), 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_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, - STATE(2027), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54800] = 9, - ACTIONS(3722), 1, + [54704] = 9, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3832), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3893), 1, anon_sym_COLON, - ACTIONS(3812), 1, + ACTIONS(3895), 1, anon_sym_LT, - STATE(330), 1, + STATE(296), 1, sym_declaration_list, - STATE(1662), 1, + STATE(1721), 1, sym_type_parameters, - STATE(1812), 1, + STATE(1833), 1, sym_trait_bounds, - STATE(2229), 1, + STATE(2214), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, + [54733] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3744), 1, + sym_identifier, + ACTIONS(3750), 1, + sym_crate, + STATE(2303), 1, + sym_field_declaration, + STATE(2447), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54858] = 8, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(3704), 1, - anon_sym_const, - ACTIONS(3833), 1, + STATE(1546), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54760] = 6, + ACTIONS(3421), 1, + anon_sym_LPAREN, + ACTIONS(3437), 1, + anon_sym_BANG, + ACTIONS(3901), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3429), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3419), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [54783] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3744), 1, sym_identifier, - ACTIONS(3835), 1, - sym_metavariable, - STATE(1702), 1, - sym_lifetime, - STATE(1806), 1, - sym_constrained_type_parameter, + ACTIONS(3750), 1, + sym_crate, + STATE(2072), 1, + sym_field_declaration, + STATE(2447), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2111), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54885] = 4, - ACTIONS(3808), 1, + STATE(1135), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54810] = 5, + ACTIONS(3905), 1, + anon_sym_fn, + ACTIONS(3907), 1, + anon_sym_extern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1572), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3903), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [54831] = 4, + ACTIONS(3909), 1, anon_sym_PLUS, - STATE(1569), 1, + STATE(1577), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3841), 6, + ACTIONS(3882), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54904] = 8, + [54850] = 9, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(3893), 1, + anon_sym_COLON, + ACTIONS(3895), 1, + anon_sym_LT, + STATE(911), 1, + sym_declaration_list, + STATE(1677), 1, + sym_type_parameters, + STATE(1827), 1, + sym_trait_bounds, + STATE(2188), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54879] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3660), 1, - sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3750), 1, sym_crate, - STATE(1919), 1, + ACTIONS(3754), 1, + sym_identifier, + STATE(2218), 1, sym_enum_variant, - STATE(2542), 1, + STATE(2395), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 2, + STATE(1135), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54931] = 8, + [54906] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3666), 1, - sym_crate, - ACTIONS(3690), 1, + ACTIONS(3744), 1, sym_identifier, - STATE(2042), 1, + ACTIONS(3750), 1, + sym_crate, + STATE(2120), 1, sym_field_declaration, - STATE(2464), 1, + STATE(2447), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 2, + STATE(1135), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54958] = 8, + [54933] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3660), 1, - sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3750), 1, sym_crate, - STATE(2159), 1, + ACTIONS(3754), 1, + sym_identifier, + STATE(2213), 1, sym_enum_variant, - STATE(2542), 1, + STATE(2395), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 2, + STATE(1560), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54985] = 5, - ACTIONS(3845), 1, - anon_sym_fn, - ACTIONS(3847), 1, - anon_sym_extern, + [54960] = 4, + ACTIONS(3548), 1, + anon_sym_COLON_COLON, + ACTIONS(3640), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1552), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3843), 4, + ACTIONS(2590), 6, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_unsafe, + anon_sym_extern, + [54979] = 8, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(3911), 1, + sym_identifier, + ACTIONS(3913), 1, + anon_sym_RBRACE, + ACTIONS(3915), 1, + anon_sym_COMMA, + ACTIONS(3917), 1, + anon_sym_ref, + ACTIONS(3919), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1986), 2, + sym_field_pattern, + sym_remaining_field_pattern, [55006] = 4, - ACTIONS(3403), 1, - anon_sym_trait, - ACTIONS(3849), 1, - anon_sym_impl, + ACTIONS(3921), 1, + anon_sym_PLUS, + STATE(1577), 1, + aux_sym_trait_bounds_repeat1, 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, + ACTIONS(3882), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, [55025] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2249), 1, + ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3666), 1, + ACTIONS(3750), 1, sym_crate, - ACTIONS(3690), 1, + ACTIONS(3754), 1, sym_identifier, - STATE(1860), 1, - sym_field_declaration, - STATE(2464), 1, + STATE(2135), 1, + sym_enum_variant, + STATE(2395), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 2, + STATE(1135), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55052] = 5, - ACTIONS(3854), 1, - anon_sym_fn, - ACTIONS(3856), 1, - anon_sym_extern, + [55052] = 6, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3736), 1, + sym_identifier, + ACTIONS(3742), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1552), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3851), 4, - anon_sym_async, + STATE(1871), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2150), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [55075] = 8, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3802), 1, 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(1561), 1, - sym_string_literal, + ACTIONS(3923), 1, + sym_identifier, + ACTIONS(3925), 1, + sym_metavariable, + STATE(1764), 1, + sym_lifetime, + STATE(1847), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3528), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55119] = 4, - ACTIONS(3494), 1, - anon_sym_COLON_COLON, - ACTIONS(3870), 1, - anon_sym_BANG, + STATE(2012), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55102] = 9, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(3832), 1, + anon_sym_LBRACE, + ACTIONS(3893), 1, + anon_sym_COLON, + ACTIONS(3895), 1, + anon_sym_LT, + STATE(378), 1, + sym_declaration_list, + STATE(1636), 1, + sym_type_parameters, + STATE(1839), 1, + sym_trait_bounds, + STATE(2261), 1, + sym_where_clause, 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, - [55138] = 9, - ACTIONS(3722), 1, + [55131] = 9, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3893), 1, anon_sym_COLON, - ACTIONS(3812), 1, + ACTIONS(3895), 1, anon_sym_LT, - STATE(928), 1, + STATE(1035), 1, sym_declaration_list, - STATE(1622), 1, + STATE(1638), 1, sym_type_parameters, - STATE(1827), 1, + STATE(1843), 1, sym_trait_bounds, - STATE(2267), 1, + STATE(2284), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55167] = 6, - ACTIONS(3345), 1, + [55160] = 6, + ACTIONS(3421), 1, anon_sym_LPAREN, - ACTIONS(3434), 1, + ACTIONS(3497), 1, anon_sym_COLON_COLON, - ACTIONS(3488), 1, + ACTIONS(3592), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3429), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 3, + ACTIONS(3419), 3, anon_sym_EQ_GT, anon_sym_if, anon_sym_PIPE, - [55190] = 8, - ACTIONS(2245), 1, + [55183] = 5, + ACTIONS(3930), 1, + anon_sym_fn, + ACTIONS(3932), 1, + anon_sym_extern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1572), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3927), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [55204] = 8, + ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3802), 1, anon_sym_const, - ACTIONS(3708), 1, + ACTIONS(3897), 1, + sym_identifier, + ACTIONS(3899), 1, sym_metavariable, - STATE(1833), 1, + STATE(1699), 1, sym_lifetime, - STATE(1990), 1, + STATE(1820), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2303), 2, + STATE(1876), 2, sym_const_parameter, sym_optional_type_parameter, - [55217] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(3660), 1, - sym_identifier, - ACTIONS(3666), 1, - sym_crate, - STATE(2122), 1, - sym_enum_variant, - STATE(2542), 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, - [55244] = 6, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(3676), 1, + [55231] = 8, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3800), 1, sym_identifier, - ACTIONS(3682), 1, - anon_sym_DOT_DOT, + ACTIONS(3802), 1, + anon_sym_const, + ACTIONS(3806), 1, + sym_metavariable, + STATE(1840), 1, + sym_lifetime, + STATE(2035), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1854), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2132), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [55267] = 2, + STATE(2283), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55258] = 4, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + STATE(1580), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3872), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3658), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55282] = 9, - ACTIONS(3722), 1, + [55277] = 8, + ACTIONS(3935), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACE, + ACTIONS(3943), 1, + anon_sym_LBRACK, + STATE(1576), 1, + aux_sym_macro_definition_repeat1, + STATE(2518), 1, + sym_macro_rule, + STATE(2548), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3938), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [55304] = 4, + ACTIONS(3909), 1, + anon_sym_PLUS, + STATE(1581), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3946), 6, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_where, - ACTIONS(3738), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55323] = 9, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3893), 1, anon_sym_COLON, - ACTIONS(3812), 1, + ACTIONS(3895), 1, anon_sym_LT, - STATE(378), 1, + STATE(828), 1, sym_declaration_list, - STATE(1633), 1, + STATE(1701), 1, sym_type_parameters, - STATE(1823), 1, + STATE(1816), 1, sym_trait_bounds, - STATE(2226), 1, + STATE(2185), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55311] = 8, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(3704), 1, - anon_sym_const, - ACTIONS(3874), 1, - sym_identifier, - 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(2001), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55338] = 6, - ACTIONS(3456), 1, + [55352] = 7, + ACTIONS(2596), 1, + anon_sym_PLUS, + ACTIONS(3540), 1, anon_sym_PIPE, - ACTIONS(3458), 1, + ACTIONS(3542), 1, anon_sym_COLON, - ACTIONS(3564), 1, + ACTIONS(3642), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3546), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2544), 3, + ACTIONS(3886), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [55361] = 4, - ACTIONS(2596), 1, - anon_sym_COLON_COLON, - ACTIONS(3878), 1, - anon_sym_BANG, + [55377] = 2, 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, - [55380] = 4, - ACTIONS(888), 1, + ACTIONS(3948), 8, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1435), 1, - sym_block, - 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, - [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(3750), 1, - anon_sym_LBRACE, - ACTIONS(3810), 1, - anon_sym_COLON, - ACTIONS(3812), 1, - anon_sym_LT, - STATE(775), 1, - sym_declaration_list, - STATE(1680), 1, - sym_type_parameters, - STATE(1803), 1, - sym_trait_bounds, - STATE(2174), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55455] = 4, - ACTIONS(3882), 1, + [55392] = 4, + ACTIONS(3952), 1, anon_sym_PLUS, - STATE(1569), 1, + STATE(1581), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3880), 6, + ACTIONS(3950), 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, + [55411] = 6, + ACTIONS(3540), 1, anon_sym_PIPE, - ACTIONS(3458), 1, + ACTIONS(3542), 1, anon_sym_COLON, - ACTIONS(3636), 1, + ACTIONS(3728), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3546), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3814), 2, + ACTIONS(2596), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [55499] = 2, + [55434] = 4, + ACTIONS(888), 1, + anon_sym_LBRACE, + STATE(1462), 1, + sym_block, 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, + ACTIONS(2590), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55453] = 8, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(3911), 1, + sym_identifier, + ACTIONS(3917), 1, + anon_sym_ref, + ACTIONS(3919), 1, + sym_mutable_specifier, + ACTIONS(3955), 1, + anon_sym_RBRACE, + ACTIONS(3957), 1, 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, + STATE(2047), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55480] = 4, + ACTIONS(2664), 1, + anon_sym_COLON_COLON, + ACTIONS(3959), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3880), 7, - anon_sym_SEMI, + ACTIONS(2590), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55499] = 6, + ACTIONS(3778), 1, + anon_sym_LPAREN, + ACTIONS(3780), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, + ACTIONS(3963), 1, anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3961), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [55541] = 8, - ACTIONS(3885), 1, - anon_sym_LPAREN, - ACTIONS(3887), 1, - anon_sym_RPAREN, - ACTIONS(3889), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - STATE(1588), 1, - aux_sym_macro_definition_repeat1, - STATE(2277), 1, - sym_macro_rule, - STATE(2488), 1, - sym_token_tree_pattern, + STATE(2085), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [55521] = 3, + ACTIONS(2664), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55567] = 2, + ACTIONS(2590), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55537] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3880), 7, + ACTIONS(3950), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -115959,11 +116750,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55581] = 2, + [55551] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3880), 7, + ACTIONS(3950), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -115971,6412 +116762,6492 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55595] = 6, - ACTIONS(3893), 1, + [55565] = 6, + ACTIONS(3965), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(3969), 1, anon_sym_EQ, - ACTIONS(3899), 1, + ACTIONS(3971), 1, anon_sym_COLON_COLON, - STATE(2009), 1, + STATE(1966), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3895), 3, + ACTIONS(3967), 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, + [55587] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55643] = 7, - ACTIONS(3343), 1, - anon_sym_PIPE, - ACTIONS(3345), 1, + ACTIONS(3950), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55601] = 6, + ACTIONS(3778), 1, anon_sym_LPAREN, - ACTIONS(3349), 1, - anon_sym_COLON, - ACTIONS(3361), 1, - anon_sym_BANG, - ACTIONS(3903), 1, - anon_sym_COLON_COLON, + ACTIONS(3780), 1, + anon_sym_LBRACE, + ACTIONS(3975), 1, + anon_sym_EQ, 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, + ACTIONS(3973), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1939), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [55623] = 8, + ACTIONS(3778), 1, anon_sym_LPAREN, - ACTIONS(3720), 1, + ACTIONS(3780), 1, anon_sym_LBRACE, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3905), 1, + ACTIONS(3977), 1, anon_sym_SEMI, - STATE(784), 1, + STATE(816), 1, sym_field_declaration_list, - STATE(2090), 1, + STATE(2112), 1, sym_ordered_field_declaration_list, - STATE(2171), 1, + STATE(2182), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55693] = 6, - ACTIONS(3893), 1, + [55649] = 6, + ACTIONS(3965), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(3969), 1, anon_sym_EQ, - ACTIONS(3907), 1, + ACTIONS(3979), 1, anon_sym_COLON_COLON, - STATE(2009), 1, + STATE(1966), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3895), 3, + ACTIONS(3967), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [55715] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3909), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55729] = 6, - ACTIONS(3893), 1, + [55671] = 6, + ACTIONS(3965), 1, anon_sym_LPAREN, - ACTIONS(3897), 1, + ACTIONS(3969), 1, anon_sym_EQ, - ACTIONS(3911), 1, + ACTIONS(3981), 1, anon_sym_COLON_COLON, - STATE(2009), 1, + STATE(1966), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3895), 3, + ACTIONS(3967), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [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, + [55693] = 3, + ACTIONS(3983), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3913), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [55773] = 6, - ACTIONS(3718), 1, - anon_sym_LPAREN, - ACTIONS(3720), 1, - anon_sym_LBRACE, - ACTIONS(3919), 1, - anon_sym_EQ, + ACTIONS(3876), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55709] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3917), 2, - anon_sym_RBRACE, + ACTIONS(3985), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - STATE(2056), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [55795] = 3, - ACTIONS(2596), 1, + anon_sym_GT, + [55723] = 6, + ACTIONS(3580), 1, anon_sym_COLON_COLON, + ACTIONS(3965), 1, + anon_sym_LPAREN, + ACTIONS(3989), 1, + anon_sym_EQ, + STATE(1912), 1, + sym_meta_arguments, 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, - [55811] = 3, - ACTIONS(3921), 1, - sym_identifier, + ACTIONS(3987), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [55745] = 3, + ACTIONS(3991), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3798), 6, + ACTIONS(2590), 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(3889), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(3923), 1, - anon_sym_RPAREN, - STATE(1553), 1, - aux_sym_macro_definition_repeat1, - STATE(2249), 1, - sym_macro_rule, - STATE(2488), 1, - sym_token_tree_pattern, + [55761] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55853] = 8, - ACTIONS(3885), 1, - anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3950), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(3925), 1, - anon_sym_RPAREN, - STATE(1553), 1, - aux_sym_macro_definition_repeat1, - STATE(2247), 1, - sym_macro_rule, - STATE(2488), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [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, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2266), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55903] = 7, - ACTIONS(828), 1, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55775] = 7, + ACTIONS(820), 1, anon_sym_DOT_DOT, - ACTIONS(3817), 1, + ACTIONS(3911), 1, sym_identifier, - ACTIONS(3823), 1, + ACTIONS(3917), 1, anon_sym_ref, - ACTIONS(3825), 1, + ACTIONS(3919), 1, sym_mutable_specifier, - ACTIONS(3929), 1, + ACTIONS(3993), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2266), 2, + STATE(2279), 2, sym_field_pattern, sym_remaining_field_pattern, - [55927] = 3, - ACTIONS(3931), 1, - sym_identifier, + [55799] = 2, 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, - [55943] = 3, - ACTIONS(3933), 1, - anon_sym_trait, + ACTIONS(3950), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55813] = 8, + ACTIONS(3995), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, + anon_sym_RPAREN, + ACTIONS(3999), 1, + anon_sym_LBRACE, + ACTIONS(4001), 1, + anon_sym_LBRACK, + STATE(1628), 1, + aux_sym_macro_definition_repeat1, + STATE(2160), 1, + sym_macro_rule, + STATE(2548), 1, + sym_token_tree_pattern, 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, - [55959] = 8, - ACTIONS(3885), 1, + [55839] = 8, + ACTIONS(3995), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3999), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(3935), 1, + ACTIONS(4003), 1, anon_sym_RPAREN, - STATE(1602), 1, + STATE(1612), 1, aux_sym_macro_definition_repeat1, - STATE(2199), 1, + STATE(2298), 1, sym_macro_rule, - STATE(2488), 1, + STATE(2548), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55985] = 3, - ACTIONS(3436), 1, - anon_sym_COLON_COLON, + [55865] = 8, + ACTIONS(3995), 1, + anon_sym_LPAREN, + ACTIONS(3999), 1, + anon_sym_LBRACE, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4005), 1, + anon_sym_RPAREN, + STATE(1613), 1, + aux_sym_macro_definition_repeat1, + STATE(2296), 1, + sym_macro_rule, + STATE(2548), 1, + sym_token_tree_pattern, 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, - [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, + [55891] = 8, + ACTIONS(3995), 1, + anon_sym_LPAREN, + ACTIONS(3999), 1, + anon_sym_LBRACE, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4007), 1, anon_sym_RBRACE, + STATE(1620), 1, + aux_sym_macro_definition_repeat1, + STATE(2146), 1, + sym_macro_rule, + STATE(2548), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, + [55917] = 8, + ACTIONS(3995), 1, + anon_sym_LPAREN, + ACTIONS(3999), 1, + anon_sym_LBRACE, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4009), 1, anon_sym_RBRACE, + STATE(1576), 1, + aux_sym_macro_definition_repeat1, + STATE(2147), 1, + sym_macro_rule, + STATE(2548), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2266), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [56049] = 8, - ACTIONS(3885), 1, + [55943] = 8, + ACTIONS(3995), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3999), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(3941), 1, + ACTIONS(4011), 1, anon_sym_RBRACE, - STATE(1604), 1, + STATE(1576), 1, aux_sym_macro_definition_repeat1, - STATE(2224), 1, + STATE(2157), 1, sym_macro_rule, - STATE(2488), 1, + STATE(2548), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56075] = 8, - ACTIONS(3718), 1, + [55969] = 7, + ACTIONS(3419), 1, + anon_sym_PIPE, + ACTIONS(3421), 1, + anon_sym_LPAREN, + ACTIONS(3425), 1, + anon_sym_COLON, + ACTIONS(3437), 1, + anon_sym_BANG, + ACTIONS(4013), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3429), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55993] = 8, + ACTIONS(3778), 1, anon_sym_LPAREN, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3744), 1, + ACTIONS(3828), 1, anon_sym_LBRACE, - ACTIONS(3943), 1, + ACTIONS(4015), 1, anon_sym_SEMI, - STATE(366), 1, + STATE(324), 1, sym_field_declaration_list, - STATE(1870), 1, + STATE(2103), 1, sym_ordered_field_declaration_list, - STATE(2129), 1, + STATE(2173), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56101] = 8, - ACTIONS(3885), 1, + [56019] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4017), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56033] = 8, + ACTIONS(3995), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3999), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(3945), 1, - anon_sym_RBRACE, - STATE(1553), 1, + ACTIONS(4019), 1, + anon_sym_RPAREN, + STATE(1576), 1, aux_sym_macro_definition_repeat1, - STATE(2126), 1, + STATE(2272), 1, sym_macro_rule, - STATE(2488), 1, + STATE(2548), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56127] = 6, - ACTIONS(3718), 1, + [56059] = 8, + ACTIONS(3995), 1, anon_sym_LPAREN, - ACTIONS(3720), 1, + ACTIONS(3999), 1, anon_sym_LBRACE, - ACTIONS(3949), 1, - anon_sym_EQ, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4021), 1, + anon_sym_RPAREN, + STATE(1576), 1, + aux_sym_macro_definition_repeat1, + STATE(2271), 1, + sym_macro_rule, + STATE(2548), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3947), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1917), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [56149] = 8, - ACTIONS(3885), 1, + [56085] = 8, + ACTIONS(3995), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3999), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(3951), 1, + ACTIONS(4023), 1, anon_sym_RPAREN, - STATE(1553), 1, + STATE(1622), 1, aux_sym_macro_definition_repeat1, - STATE(2244), 1, + STATE(2275), 1, sym_macro_rule, - STATE(2488), 1, + STATE(2548), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56175] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3953), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56189] = 8, - ACTIONS(3885), 1, + [56111] = 8, + ACTIONS(3995), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3999), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(3955), 1, + ACTIONS(4025), 1, anon_sym_RBRACE, - STATE(1553), 1, + STATE(1607), 1, aux_sym_macro_definition_repeat1, - STATE(2127), 1, + STATE(2245), 1, sym_macro_rule, - STATE(2488), 1, + STATE(2548), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56215] = 8, - ACTIONS(3885), 1, + [56137] = 8, + ACTIONS(3995), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3999), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4027), 1, anon_sym_RBRACE, - STATE(1600), 1, + STATE(1627), 1, aux_sym_macro_definition_repeat1, - STATE(2220), 1, + STATE(2248), 1, sym_macro_rule, - STATE(2488), 1, + STATE(2548), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56241] = 3, - ACTIONS(3959), 1, + [56163] = 3, + ACTIONS(4029), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3798), 6, + ACTIONS(3876), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56257] = 8, - ACTIONS(3885), 1, - anon_sym_LPAREN, - ACTIONS(3889), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(3961), 1, + [56179] = 7, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(3911), 1, + sym_identifier, + ACTIONS(3917), 1, + anon_sym_ref, + ACTIONS(3919), 1, + sym_mutable_specifier, + ACTIONS(4031), 1, anon_sym_RBRACE, - STATE(1610), 1, - aux_sym_macro_definition_repeat1, - STATE(2176), 1, - sym_macro_rule, - STATE(2488), 1, - sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56283] = 8, - ACTIONS(3885), 1, + STATE(2279), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56203] = 8, + ACTIONS(3995), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3999), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(4033), 1, anon_sym_RBRACE, - STATE(1553), 1, + STATE(1608), 1, aux_sym_macro_definition_repeat1, - STATE(2305), 1, + STATE(2249), 1, sym_macro_rule, - STATE(2488), 1, + STATE(2548), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56309] = 8, - ACTIONS(3885), 1, + [56229] = 8, + ACTIONS(3995), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3999), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(3965), 1, - anon_sym_RPAREN, - STATE(1553), 1, + ACTIONS(4035), 1, + anon_sym_RBRACE, + STATE(1576), 1, aux_sym_macro_definition_repeat1, - STATE(2252), 1, + STATE(2265), 1, sym_macro_rule, - STATE(2488), 1, + STATE(2548), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56335] = 8, - ACTIONS(3885), 1, + [56255] = 3, + ACTIONS(4037), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3876), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56271] = 8, + ACTIONS(3995), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3999), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(3967), 1, - anon_sym_RBRACE, - STATE(1553), 1, + ACTIONS(4039), 1, + anon_sym_RPAREN, + STATE(1576), 1, aux_sym_macro_definition_repeat1, - STATE(2257), 1, + STATE(2277), 1, sym_macro_rule, - STATE(2488), 1, + STATE(2548), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56361] = 3, - ACTIONS(3969), 1, - anon_sym_trait, + [56297] = 7, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(3911), 1, + sym_identifier, + ACTIONS(3917), 1, + anon_sym_ref, + ACTIONS(3919), 1, + sym_mutable_specifier, + ACTIONS(4041), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2279), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56321] = 3, + ACTIONS(4043), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 6, + ACTIONS(3876), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56377] = 8, - ACTIONS(3718), 1, + [56337] = 8, + ACTIONS(3778), 1, anon_sym_LPAREN, - ACTIONS(3722), 1, + ACTIONS(3780), 1, + anon_sym_LBRACE, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3744), 1, + ACTIONS(4045), 1, + anon_sym_SEMI, + STATE(925), 1, + sym_field_declaration_list, + STATE(2102), 1, + sym_ordered_field_declaration_list, + STATE(2200), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56363] = 8, + ACTIONS(3778), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(3828), 1, anon_sym_LBRACE, - ACTIONS(3971), 1, + ACTIONS(4047), 1, anon_sym_SEMI, - STATE(346), 1, + STATE(437), 1, sym_field_declaration_list, - STATE(2114), 1, + STATE(2131), 1, sym_ordered_field_declaration_list, - STATE(2138), 1, + STATE(2156), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56403] = 8, - ACTIONS(3885), 1, + [56389] = 8, + ACTIONS(3995), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3999), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_RPAREN, - STATE(1609), 1, + ACTIONS(4049), 1, + anon_sym_RBRACE, + STATE(1576), 1, aux_sym_macro_definition_repeat1, - STATE(2178), 1, + STATE(2280), 1, sym_macro_rule, - STATE(2488), 1, + STATE(2548), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56429] = 8, - ACTIONS(3885), 1, + [56415] = 8, + ACTIONS(3995), 1, anon_sym_LPAREN, - ACTIONS(3889), 1, + ACTIONS(3999), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(3975), 1, - anon_sym_RBRACE, - STATE(1608), 1, + ACTIONS(4051), 1, + anon_sym_RPAREN, + STATE(1576), 1, aux_sym_macro_definition_repeat1, - STATE(2190), 1, + STATE(2263), 1, sym_macro_rule, - STATE(2488), 1, + STATE(2548), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56455] = 3, - ACTIONS(3977), 1, - sym_identifier, + [56441] = 3, + ACTIONS(3548), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3798), 6, + ACTIONS(2590), 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(3722), 1, - anon_sym_where, - ACTIONS(3979), 1, - anon_sym_SEMI, - STATE(968), 1, - sym_field_declaration_list, - STATE(2091), 1, - sym_ordered_field_declaration_list, - STATE(2167), 1, - sym_where_clause, + [56457] = 7, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(3911), 1, + sym_identifier, + ACTIONS(3917), 1, + anon_sym_ref, + ACTIONS(3919), 1, + sym_mutable_specifier, + ACTIONS(4053), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2279), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56481] = 3, + ACTIONS(4055), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(2590), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, [56497] = 7, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(3981), 1, + ACTIONS(4057), 1, anon_sym_SEMI, - ACTIONS(3983), 1, - anon_sym_PLUS, - STATE(816), 1, - sym_declaration_list, - STATE(2098), 1, + ACTIONS(4059), 1, + anon_sym_LBRACE, + ACTIONS(4061), 1, + anon_sym_DASH_GT, + STATE(789), 1, + sym_block, + STATE(2116), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56520] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3738), 1, + [56520] = 4, + ACTIONS(3522), 1, + anon_sym_COLON_COLON, + ACTIONS(3792), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2596), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3983), 1, anon_sym_PLUS, - ACTIONS(3985), 1, + anon_sym_where, + [56537] = 7, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(3832), 1, + anon_sym_LBRACE, + ACTIONS(4063), 1, anon_sym_SEMI, - STATE(454), 1, + ACTIONS(4065), 1, + anon_sym_PLUS, + STATE(377), 1, sym_declaration_list, - STATE(1882), 1, + STATE(1937), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56543] = 7, - ACTIONS(3722), 1, + [56560] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3784), 1, anon_sym_LT, - ACTIONS(3987), 1, + ACTIONS(4067), 1, anon_sym_LBRACE, - STATE(923), 1, + STATE(904), 1, sym_enum_variant_list, - STATE(1814), 1, + STATE(1826), 1, sym_type_parameters, - STATE(2147), 1, + STATE(2177), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56566] = 4, + [56583] = 7, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(3832), 1, + anon_sym_LBRACE, + ACTIONS(3893), 1, + anon_sym_COLON, + STATE(316), 1, + sym_declaration_list, + STATE(1823), 1, + sym_trait_bounds, + STATE(2144), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3646), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3989), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56583] = 7, - ACTIONS(3722), 1, + [56606] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(3992), 1, + ACTIONS(4069), 1, anon_sym_SEMI, - STATE(941), 1, + STATE(913), 1, sym_declaration_list, - STATE(2100), 1, + STATE(2111), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56606] = 7, - ACTIONS(3722), 1, + [56629] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3893), 1, anon_sym_COLON, - STATE(961), 1, + STATE(920), 1, sym_declaration_list, - STATE(1816), 1, + STATE(1829), 1, sym_trait_bounds, - STATE(2163), 1, + STATE(2197), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56652] = 7, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4071), 1, + anon_sym_SEMI, + ACTIONS(4073), 1, + anon_sym_LBRACE, + STATE(447), 1, + sym_block, + STATE(1906), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56629] = 4, - ACTIONS(3440), 1, + [56675] = 4, + ACTIONS(3522), 1, anon_sym_COLON_COLON, - ACTIONS(3790), 1, + ACTIONS(3854), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2596), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56646] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(3994), 1, - anon_sym_SEMI, - STATE(1004), 1, - sym_declaration_list, - STATE(2076), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56669] = 7, - ACTIONS(3722), 1, + [56692] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(3996), 1, + ACTIONS(4075), 1, anon_sym_SEMI, - STATE(451), 1, + STATE(966), 1, sym_declaration_list, - STATE(1967), 1, + STATE(2087), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56692] = 7, - ACTIONS(3722), 1, + [56715] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(4059), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(3998), 1, + ACTIONS(4077), 1, anon_sym_SEMI, - STATE(447), 1, - sym_declaration_list, - STATE(1920), 1, + ACTIONS(4079), 1, + anon_sym_DASH_GT, + STATE(997), 1, + sym_block, + STATE(2073), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56715] = 7, - ACTIONS(3722), 1, + [56738] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3832), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4000), 1, + ACTIONS(4081), 1, anon_sym_SEMI, - STATE(335), 1, + STATE(299), 1, sym_declaration_list, - STATE(2088), 1, + STATE(2110), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56738] = 4, - ACTIONS(3440), 1, + [56761] = 4, + ACTIONS(3522), 1, anon_sym_COLON_COLON, - ACTIONS(3780), 1, + ACTIONS(3820), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2596), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56755] = 7, - ACTIONS(3722), 1, + [56778] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(4002), 1, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4073), 1, + anon_sym_LBRACE, + ACTIONS(4083), 1, anon_sym_SEMI, - ACTIONS(4004), 1, + STATE(283), 1, + sym_block, + STATE(1916), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56801] = 7, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(4059), 1, anon_sym_LBRACE, - ACTIONS(4006), 1, - anon_sym_DASH_GT, - STATE(1025), 1, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4085), 1, + anon_sym_SEMI, + STATE(863), 1, sym_block, - STATE(2062), 1, + STATE(2049), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56778] = 4, - ACTIONS(3440), 1, + [56824] = 4, + ACTIONS(3522), 1, anon_sym_COLON_COLON, - ACTIONS(3788), 1, + ACTIONS(3848), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2596), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, 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, - [56818] = 7, - ACTIONS(3720), 1, + [56841] = 7, + ACTIONS(3780), 1, anon_sym_LBRACE, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3784), 1, anon_sym_LT, - STATE(917), 1, + STATE(895), 1, sym_field_declaration_list, - STATE(1810), 1, + STATE(1825), 1, sym_type_parameters, - STATE(2140), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56841] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(3810), 1, - anon_sym_COLON, - STATE(355), 1, - sym_declaration_list, - STATE(1800), 1, - sym_trait_bounds, - STATE(2221), 1, + STATE(2164), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [56864] = 7, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3832), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4012), 1, + ACTIONS(4087), 1, anon_sym_SEMI, - STATE(404), 1, + STATE(333), 1, sym_declaration_list, - STATE(1939), 1, + STATE(2043), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56887] = 4, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, + [56887] = 7, + ACTIONS(3780), 1, + anon_sym_LBRACE, ACTIONS(3782), 1, - anon_sym_for, + anon_sym_where, + ACTIONS(3784), 1, + anon_sym_LT, + STATE(1028), 1, + sym_field_declaration_list, + STATE(1841), 1, + sym_type_parameters, + STATE(2276), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + [56910] = 7, + ACTIONS(3893), 1, + anon_sym_COLON, + ACTIONS(3895), 1, + anon_sym_LT, + ACTIONS(4089), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - 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(4091), 1, + anon_sym_EQ, + STATE(1842), 1, + sym_type_parameters, + STATE(2429), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, + [56933] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(2704), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3654), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4093), 2, + anon_sym_RPAREN, + anon_sym_COMMA, [56950] = 7, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4010), 1, + ACTIONS(4073), 1, anon_sym_LBRACE, - ACTIONS(4018), 1, + ACTIONS(4096), 1, anon_sym_SEMI, - STATE(299), 1, + STATE(470), 1, sym_block, - STATE(1876), 1, + STATE(2117), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [56973] = 7, - ACTIONS(3446), 1, + ACTIONS(3516), 1, anon_sym_EQ, - ACTIONS(3810), 1, + ACTIONS(3893), 1, anon_sym_COLON, - ACTIONS(4020), 1, + ACTIONS(4098), 1, anon_sym_COMMA, - ACTIONS(4022), 1, + ACTIONS(4100), 1, anon_sym_GT, - STATE(1994), 1, + STATE(1932), 1, sym_trait_bounds, - STATE(2071), 1, + STATE(2082), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56996] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4024), 1, - anon_sym_SEMI, - STATE(396), 1, - sym_declaration_list, - STATE(1938), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57019] = 7, - ACTIONS(3810), 1, - anon_sym_COLON, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(4026), 1, - anon_sym_SEMI, - 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, - [57042] = 4, - ACTIONS(3440), 1, + [56996] = 4, + ACTIONS(3522), 1, anon_sym_COLON_COLON, - ACTIONS(3774), 1, + ACTIONS(3798), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2596), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57059] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4030), 1, - anon_sym_SEMI, - STATE(300), 1, - sym_block, - STATE(1894), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57082] = 7, - ACTIONS(3722), 1, + [57013] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4032), 1, + ACTIONS(4102), 1, anon_sym_SEMI, - STATE(424), 1, + STATE(984), 1, sym_declaration_list, - STATE(2008), 1, + STATE(2018), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57105] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(4004), 1, + [57036] = 7, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(4034), 1, - anon_sym_SEMI, - ACTIONS(4036), 1, - anon_sym_DASH_GT, - STATE(890), 1, - sym_block, - STATE(2115), 1, - sym_where_clause, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4104), 1, + sym_identifier, + ACTIONS(4106), 1, + anon_sym_STAR, + STATE(2020), 1, + sym_use_list, + STATE(2461), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57128] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3750), 1, + [57059] = 7, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4038), 1, - anon_sym_SEMI, - STATE(895), 1, - sym_declaration_list, - STATE(2007), 1, - sym_where_clause, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4104), 1, + sym_identifier, + ACTIONS(4106), 1, + anon_sym_STAR, + STATE(2020), 1, + sym_use_list, + STATE(2351), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57151] = 4, - ACTIONS(4040), 1, + [57082] = 4, + ACTIONS(4108), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3429), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2544), 3, + ACTIONS(2596), 3, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_PLUS, - [57168] = 7, - ACTIONS(3237), 1, - anon_sym_LBRACE, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4014), 1, + [57099] = 6, + ACTIONS(820), 1, + anon_sym_DOT_DOT, + ACTIONS(3911), 1, sym_identifier, - ACTIONS(4016), 1, - anon_sym_STAR, - STATE(2059), 1, - sym_use_list, - STATE(2443), 1, - sym_type_arguments, + ACTIONS(3917), 1, + anon_sym_ref, + ACTIONS(3919), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57191] = 7, - ACTIONS(3722), 1, + STATE(2279), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [57120] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4042), 1, + ACTIONS(4073), 1, + anon_sym_LBRACE, + ACTIONS(4110), 1, anon_sym_SEMI, - STATE(874), 1, - sym_declaration_list, - STATE(2110), 1, + STATE(280), 1, + sym_block, + STATE(1938), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57214] = 7, - ACTIONS(3722), 1, + [57143] = 5, + ACTIONS(4114), 1, + anon_sym_COLON, + ACTIONS(4116), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3429), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4112), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57162] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3784), 1, + anon_sym_LT, + ACTIONS(4118), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4044), 1, - anon_sym_SEMI, - STATE(479), 1, - sym_declaration_list, - STATE(2053), 1, + STATE(274), 1, + sym_enum_variant_list, + STATE(1806), 1, + sym_type_parameters, + STATE(2270), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57185] = 7, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(3784), 1, + anon_sym_LT, + ACTIONS(4067), 1, + anon_sym_LBRACE, + STATE(891), 1, + sym_enum_variant_list, + STATE(1849), 1, + sym_type_parameters, + STATE(2143), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57237] = 4, - ACTIONS(3440), 1, + [57208] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3654), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2704), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [57223] = 4, + ACTIONS(4120), 1, anon_sym_COLON_COLON, - ACTIONS(3734), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3429), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2596), 3, + anon_sym_RPAREN, anon_sym_PLUS, + anon_sym_COMMA, + [57240] = 7, + ACTIONS(3782), 1, anon_sym_where, - [57254] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3724), 1, - anon_sym_LT, - ACTIONS(4046), 1, + ACTIONS(4059), 1, anon_sym_LBRACE, - STATE(276), 1, - sym_enum_variant_list, - STATE(1788), 1, - sym_type_parameters, - STATE(2264), 1, + ACTIONS(4122), 1, + anon_sym_SEMI, + ACTIONS(4124), 1, + anon_sym_DASH_GT, + STATE(872), 1, + sym_block, + STATE(2138), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, + [57263] = 5, + ACTIONS(4120), 1, + anon_sym_COLON_COLON, + ACTIONS(4128), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2266), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [57298] = 7, - ACTIONS(3722), 1, + ACTIONS(3429), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4126), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57282] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(4073), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4048), 1, + ACTIONS(4130), 1, anon_sym_SEMI, - STATE(859), 1, - sym_declaration_list, - STATE(2109), 1, + ACTIONS(4132), 1, + anon_sym_DASH_GT, + STATE(311), 1, + sym_block, + STATE(1892), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57321] = 7, - ACTIONS(3722), 1, + [57305] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3832), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4050), 1, + ACTIONS(4134), 1, anon_sym_SEMI, - STATE(415), 1, + STATE(349), 1, sym_declaration_list, - STATE(2004), 1, + STATE(2126), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57344] = 7, - ACTIONS(3722), 1, + [57328] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4010), 1, + ACTIONS(3832), 1, anon_sym_LBRACE, - ACTIONS(4052), 1, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, anon_sym_SEMI, - STATE(305), 1, - sym_block, - STATE(2024), 1, + STATE(416), 1, + sym_declaration_list, + STATE(1959), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57367] = 7, - ACTIONS(3722), 1, + [57351] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3724), 1, - anon_sym_LT, - ACTIONS(3987), 1, + ACTIONS(3832), 1, anon_sym_LBRACE, - STATE(847), 1, - sym_enum_variant_list, - STATE(1834), 1, - sym_type_parameters, - STATE(2284), 1, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4138), 1, + anon_sym_SEMI, + STATE(407), 1, + sym_declaration_list, + STATE(1955), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57390] = 7, - ACTIONS(3722), 1, + [57374] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, - anon_sym_COLON, - STATE(798), 1, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4140), 1, + anon_sym_SEMI, + STATE(853), 1, sym_declaration_list, - STATE(1804), 1, - sym_trait_bounds, - STATE(2161), 1, + STATE(2132), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57413] = 7, - ACTIONS(3722), 1, + [57397] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(4004), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4054), 1, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4142), 1, anon_sym_SEMI, - ACTIONS(4056), 1, - anon_sym_DASH_GT, - STATE(794), 1, - sym_block, - STATE(2093), 1, + STATE(841), 1, + sym_declaration_list, + STATE(2130), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57436] = 3, + [57420] = 4, + ACTIONS(3522), 1, + anon_sym_COLON_COLON, + ACTIONS(3834), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3646), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2648), 4, - anon_sym_RPAREN, + ACTIONS(2596), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [57451] = 7, - ACTIONS(3722), 1, anon_sym_where, - ACTIONS(4010), 1, + [57437] = 7, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4058), 1, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4144), 1, anon_sym_SEMI, - ACTIONS(4060), 1, - anon_sym_DASH_GT, - STATE(338), 1, - sym_block, - STATE(1930), 1, + STATE(790), 1, + sym_declaration_list, + STATE(2118), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57474] = 7, - ACTIONS(3722), 1, + [57460] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, + ACTIONS(3893), 1, anon_sym_COLON, - STATE(395), 1, + STATE(795), 1, sym_declaration_list, - STATE(1821), 1, + STATE(1818), 1, sym_trait_bounds, - STATE(2200), 1, + STATE(2172), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57497] = 5, - ACTIONS(4064), 1, - anon_sym_COLON, - ACTIONS(4066), 1, - anon_sym_COLON_COLON, + [57483] = 7, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(3832), 1, + anon_sym_LBRACE, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4146), 1, + anon_sym_SEMI, + STATE(342), 1, + sym_declaration_list, + STATE(2044), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, + [57506] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4068), 1, + ACTIONS(4073), 1, + anon_sym_LBRACE, + ACTIONS(4148), 1, anon_sym_SEMI, - STATE(349), 1, - sym_declaration_list, - STATE(2118), 1, + STATE(406), 1, + sym_block, + STATE(1888), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57539] = 4, - ACTIONS(3440), 1, + [57529] = 4, + ACTIONS(3522), 1, anon_sym_COLON_COLON, - ACTIONS(3710), 1, + ACTIONS(3810), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, + ACTIONS(2596), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57556] = 7, - ACTIONS(3722), 1, + [57546] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3832), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4070), 1, + ACTIONS(4150), 1, anon_sym_SEMI, - STATE(430), 1, + STATE(383), 1, sym_declaration_list, - STATE(1956), 1, + STATE(1884), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57579] = 4, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, + [57569] = 7, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(3832), 1, + anon_sym_LBRACE, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4152), 1, + anon_sym_SEMI, + STATE(469), 1, + sym_declaration_list, + STATE(1877), 1, + sym_where_clause, 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, + [57592] = 7, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(3832), 1, + anon_sym_LBRACE, + ACTIONS(4065), 1, anon_sym_PLUS, - anon_sym_COMMA, - [57596] = 5, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4076), 1, - anon_sym_COLON, + ACTIONS(4154), 1, + anon_sym_SEMI, + STATE(475), 1, + sym_declaration_list, + STATE(1931), 1, + sym_where_clause, 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, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(4010), 1, + ACTIONS(4073), 1, anon_sym_LBRACE, - ACTIONS(4078), 1, + ACTIONS(4156), 1, anon_sym_SEMI, - ACTIONS(4080), 1, + ACTIONS(4158), 1, anon_sym_DASH_GT, - STATE(393), 1, + STATE(356), 1, sym_block, - STATE(1875), 1, + STATE(1946), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [57638] = 7, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4004), 1, + ACTIONS(4059), 1, anon_sym_LBRACE, - ACTIONS(4082), 1, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4160), 1, anon_sym_SEMI, - STATE(785), 1, + STATE(847), 1, sym_block, - STATE(2083), 1, + STATE(2099), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [57661] = 7, - ACTIONS(2405), 1, + ACTIONS(2445), 1, anon_sym_PLUS, - ACTIONS(3810), 1, + ACTIONS(3893), 1, anon_sym_COLON, - ACTIONS(4084), 1, + ACTIONS(4162), 1, anon_sym_COMMA, - ACTIONS(4086), 1, + ACTIONS(4164), 1, anon_sym_GT, - STATE(1963), 1, + STATE(1907), 1, sym_trait_bounds, - STATE(2096), 1, + STATE(1915), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57684] = 6, + ACTIONS(3175), 1, + anon_sym_COLON_COLON, + ACTIONS(4162), 1, + anon_sym_COMMA, + ACTIONS(4164), 1, + anon_sym_GT, + STATE(1915), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57684] = 7, - ACTIONS(3722), 1, + ACTIONS(2596), 2, + anon_sym_PLUS, + anon_sym_as, + [57705] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4088), 1, + ACTIONS(4166), 1, anon_sym_SEMI, - STATE(813), 1, + STATE(871), 1, sym_declaration_list, - STATE(2082), 1, + STATE(2096), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57707] = 7, - ACTIONS(3722), 1, + [57728] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(3810), 1, - anon_sym_COLON, - STATE(317), 1, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4168), 1, + anon_sym_SEMI, + STATE(874), 1, sym_declaration_list, - STATE(1773), 1, - sym_trait_bounds, - STATE(2271), 1, + STATE(2095), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57730] = 7, - ACTIONS(3722), 1, + [57751] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4090), 1, + ACTIONS(4170), 1, anon_sym_SEMI, - STATE(815), 1, + STATE(909), 1, sym_declaration_list, - STATE(2077), 1, + STATE(2092), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(4010), 1, + ACTIONS(3832), 1, anon_sym_LBRACE, - ACTIONS(4092), 1, - anon_sym_SEMI, - ACTIONS(4094), 1, - anon_sym_DASH_GT, - STATE(307), 1, - sym_block, - STATE(1929), 1, + ACTIONS(3893), 1, + anon_sym_COLON, + STATE(315), 1, + sym_declaration_list, + STATE(1788), 1, + sym_trait_bounds, + STATE(2295), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [57797] = 7, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4096), 1, + ACTIONS(4172), 1, anon_sym_SEMI, - STATE(849), 1, + STATE(927), 1, sym_declaration_list, - STATE(2067), 1, + STATE(2091), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [57820] = 7, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3784), 1, + anon_sym_LT, + ACTIONS(4118), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4098), 1, - anon_sym_SEMI, - STATE(860), 1, - sym_declaration_list, - STATE(2057), 1, + STATE(270), 1, + sym_enum_variant_list, + STATE(1775), 1, + sym_type_parameters, + STATE(2227), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [57843] = 7, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(4004), 1, + ACTIONS(4059), 1, anon_sym_LBRACE, - ACTIONS(4100), 1, + ACTIONS(4174), 1, anon_sym_SEMI, - ACTIONS(4102), 1, + ACTIONS(4176), 1, anon_sym_DASH_GT, - STATE(870), 1, + STATE(941), 1, sym_block, - STATE(1861), 1, + STATE(2089), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57866] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(3810), 1, - anon_sym_COLON, - STATE(902), 1, - sym_declaration_list, - STATE(1797), 1, - sym_trait_bounds, - STATE(2207), 1, - sym_where_clause, + [57866] = 4, + ACTIONS(4093), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57889] = 7, - ACTIONS(3722), 1, + ACTIONS(3654), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2704), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [57883] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(4004), 1, + ACTIONS(4073), 1, anon_sym_LBRACE, - ACTIONS(4104), 1, + ACTIONS(4178), 1, anon_sym_SEMI, - ACTIONS(4106), 1, + ACTIONS(4180), 1, anon_sym_DASH_GT, - STATE(912), 1, + STATE(294), 1, sym_block, - STATE(2054), 1, + STATE(1942), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57912] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4004), 1, - anon_sym_LBRACE, - ACTIONS(4108), 1, - anon_sym_SEMI, - STATE(934), 1, - sym_block, - STATE(2050), 1, - sym_where_clause, + [57906] = 4, + ACTIONS(4182), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57935] = 7, - ACTIONS(3722), 1, + ACTIONS(3610), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2764), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [57923] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3784), 1, anon_sym_LT, - ACTIONS(4046), 1, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(263), 1, - sym_enum_variant_list, - STATE(1859), 1, + STATE(262), 1, + sym_field_declaration_list, + STATE(1874), 1, sym_type_parameters, - STATE(2202), 1, + STATE(2243), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57958] = 4, - ACTIONS(3440), 1, - anon_sym_COLON_COLON, - ACTIONS(3776), 1, - anon_sym_for, + [57946] = 7, + ACTIONS(3893), 1, + anon_sym_COLON, + ACTIONS(4185), 1, + anon_sym_COMMA, + ACTIONS(4187), 1, + anon_sym_GT, + STATE(1907), 1, + sym_trait_bounds, + STATE(1915), 1, + aux_sym_type_parameters_repeat1, + STATE(2017), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2544), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57975] = 7, - ACTIONS(3722), 1, + [57969] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(4073), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4110), 1, + ACTIONS(4189), 1, anon_sym_SEMI, - STATE(984), 1, - sym_declaration_list, - STATE(2045), 1, + ACTIONS(4191), 1, + anon_sym_DASH_GT, + STATE(427), 1, + sym_block, + STATE(2140), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57998] = 7, - ACTIONS(3722), 1, + [57992] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3724), 1, - anon_sym_LT, - ACTIONS(3744), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(292), 1, - sym_field_declaration_list, - STATE(1858), 1, - sym_type_parameters, - STATE(2187), 1, + ACTIONS(3893), 1, + anon_sym_COLON, + STATE(964), 1, + sym_declaration_list, + STATE(1814), 1, + sym_trait_bounds, + STATE(2221), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58021] = 4, - ACTIONS(3989), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3646), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2648), 3, + [58015] = 7, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(4059), 1, + anon_sym_LBRACE, + ACTIONS(4193), 1, anon_sym_SEMI, - anon_sym_PLUS, + ACTIONS(4195), 1, anon_sym_DASH_GT, - [58038] = 4, - ACTIONS(4112), 1, - anon_sym_RBRACK, + STATE(971), 1, + sym_block, + STATE(2083), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, + [58038] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4010), 1, + ACTIONS(4059), 1, anon_sym_LBRACE, - ACTIONS(4115), 1, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4197), 1, anon_sym_SEMI, - STATE(302), 1, + STATE(982), 1, sym_block, - STATE(1878), 1, + STATE(2071), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58078] = 7, - ACTIONS(3722), 1, + [58061] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4117), 1, + ACTIONS(4199), 1, anon_sym_SEMI, - STATE(986), 1, + STATE(1010), 1, sym_declaration_list, - STATE(2044), 1, + STATE(2065), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58101] = 7, - ACTIONS(3722), 1, + [58084] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4004), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4119), 1, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4201), 1, anon_sym_SEMI, - STATE(999), 1, - sym_block, - STATE(2043), 1, + STATE(1012), 1, + sym_declaration_list, + STATE(2061), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58124] = 7, - ACTIONS(3722), 1, + [58107] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(4004), 1, + ACTIONS(4059), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4203), 1, anon_sym_SEMI, - ACTIONS(4123), 1, - anon_sym_DASH_GT, - STATE(1023), 1, + STATE(1022), 1, sym_block, - STATE(2040), 1, + STATE(2060), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58147] = 7, - ACTIONS(3722), 1, + [58130] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4004), 1, + ACTIONS(4059), 1, anon_sym_LBRACE, - ACTIONS(4125), 1, + ACTIONS(4205), 1, anon_sym_SEMI, - STATE(974), 1, + ACTIONS(4207), 1, + anon_sym_DASH_GT, + STATE(1032), 1, sym_block, - STATE(2038), 1, + STATE(2056), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58170] = 7, - ACTIONS(3722), 1, + [58153] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4004), 1, + ACTIONS(4059), 1, anon_sym_LBRACE, - ACTIONS(4127), 1, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4209), 1, anon_sym_SEMI, - STATE(942), 1, + STATE(940), 1, sym_block, - STATE(2036), 1, + STATE(2052), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58193] = 7, - ACTIONS(3722), 1, + [58176] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4004), 1, + ACTIONS(4059), 1, anon_sym_LBRACE, - ACTIONS(4129), 1, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4211), 1, anon_sym_SEMI, - STATE(901), 1, + STATE(889), 1, sym_block, - STATE(2034), 1, + STATE(2050), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58216] = 7, - ACTIONS(3810), 1, - anon_sym_COLON, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(4131), 1, + [58199] = 7, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(3832), 1, + anon_sym_LBRACE, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4213), 1, anon_sym_SEMI, - ACTIONS(4133), 1, - anon_sym_EQ, - STATE(1824), 1, - sym_type_parameters, - STATE(2396), 1, - sym_trait_bounds, + STATE(399), 1, + sym_declaration_list, + STATE(2086), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58239] = 3, + [58222] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3594), 2, + ACTIONS(3610), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2688), 4, + ACTIONS(2764), 4, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, anon_sym_DASH_GT, - [58254] = 7, - ACTIONS(3722), 1, + [58237] = 7, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3832), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4135), 1, + ACTIONS(4215), 1, anon_sym_SEMI, - STATE(459), 1, + STATE(351), 1, sym_declaration_list, - STATE(1881), 1, + STATE(1993), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + [58260] = 4, + ACTIONS(3522), 1, + anon_sym_COLON_COLON, + ACTIONS(3870), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2596), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, [58277] = 7, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4010), 1, + ACTIONS(4073), 1, anon_sym_LBRACE, - ACTIONS(4137), 1, + ACTIONS(4217), 1, anon_sym_SEMI, - STATE(256), 1, + STATE(300), 1, sym_block, - STATE(1905), 1, + STATE(1921), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [58300] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4139), 1, + ACTIONS(3893), 1, + anon_sym_COLON, + ACTIONS(3895), 1, + anon_sym_LT, + ACTIONS(4219), 1, anon_sym_SEMI, - ACTIONS(4141), 1, - anon_sym_DASH_GT, - STATE(271), 1, - sym_block, - STATE(2023), 1, - sym_where_clause, + ACTIONS(4221), 1, + anon_sym_EQ, + STATE(1846), 1, + sym_type_parameters, + STATE(2418), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [58323] = 7, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(4010), 1, + ACTIONS(4073), 1, anon_sym_LBRACE, - ACTIONS(4143), 1, + ACTIONS(4223), 1, anon_sym_SEMI, - ACTIONS(4145), 1, + ACTIONS(4225), 1, anon_sym_DASH_GT, - STATE(379), 1, + STATE(460), 1, sym_block, - STATE(2017), 1, + STATE(2106), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [58346] = 7, - ACTIONS(3810), 1, - anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(3516), 1, + anon_sym_EQ, + ACTIONS(3518), 1, anon_sym_COMMA, - ACTIONS(4149), 1, + ACTIONS(3520), 1, anon_sym_GT, - STATE(1963), 1, - sym_trait_bounds, - STATE(1982), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2096), 1, + ACTIONS(3893), 1, + anon_sym_COLON, + STATE(1929), 1, aux_sym_type_parameters_repeat1, + STATE(1932), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [58369] = 7, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(4010), 1, - anon_sym_LBRACE, - 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, - [58392] = 7, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3724), 1, + ACTIONS(3784), 1, anon_sym_LT, - ACTIONS(3744), 1, + ACTIONS(3828), 1, anon_sym_LBRACE, STATE(386), 1, sym_field_declaration_list, - STATE(1857), 1, + STATE(1867), 1, sym_type_parameters, - STATE(2240), 1, + STATE(2302), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58415] = 4, - ACTIONS(4155), 1, - anon_sym_COLON_COLON, + [58392] = 4, 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, + ACTIONS(2764), 2, anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3610), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4182), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [58409] = 7, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(4073), 1, + anon_sym_LBRACE, + ACTIONS(4227), 1, + anon_sym_SEMI, + ACTIONS(4229), 1, + anon_sym_DASH_GT, + STATE(298), 1, + sym_block, + STATE(1976), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, [58432] = 7, - ACTIONS(3446), 1, - anon_sym_EQ, - ACTIONS(3448), 1, - anon_sym_COMMA, - ACTIONS(3450), 1, - anon_sym_GT, - ACTIONS(3810), 1, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(3832), 1, + anon_sym_LBRACE, + ACTIONS(3893), 1, anon_sym_COLON, - STATE(1992), 1, - aux_sym_type_parameters_repeat1, - STATE(1994), 1, + STATE(423), 1, + sym_declaration_list, + STATE(1828), 1, sym_trait_bounds, + STATE(2216), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58455] = 5, - ACTIONS(4076), 1, - anon_sym_COLON, - ACTIONS(4155), 1, + [58455] = 4, + ACTIONS(4231), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3429), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4074), 2, + ACTIONS(2596), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [58474] = 4, + [58472] = 5, + ACTIONS(4128), 1, + anon_sym_COLON, + ACTIONS(4231), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3594), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4112), 2, + ACTIONS(3429), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4126), 2, anon_sym_RPAREN, anon_sym_COMMA, [58491] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4157), 5, + ACTIONS(4233), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58503] = 6, - ACTIONS(3810), 1, + [58503] = 5, + ACTIONS(3638), 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, - [58523] = 4, - ACTIONS(4161), 1, - anon_sym_as, - ACTIONS(4163), 1, + ACTIONS(3640), 1, + anon_sym_BANG, + ACTIONS(3728), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4159), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(3546), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58521] = 5, + ACTIONS(4235), 1, + anon_sym_RPAREN, + ACTIONS(4237), 1, anon_sym_COMMA, - [58539] = 4, - ACTIONS(4161), 1, - anon_sym_as, - ACTIONS(4165), 1, - anon_sym_COLON_COLON, + STATE(1961), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4159), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [58555] = 5, - ACTIONS(3560), 1, + ACTIONS(3419), 2, anon_sym_COLON, - ACTIONS(3562), 1, - anon_sym_BANG, - ACTIONS(3564), 1, + anon_sym_PIPE, + [58539] = 4, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4243), 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, - [58573] = 5, - ACTIONS(4167), 1, - anon_sym_RPAREN, - ACTIONS(4169), 1, + ACTIONS(4239), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1903), 1, - aux_sym_parameters_repeat1, + [58555] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3343), 2, + ACTIONS(2984), 5, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COLON, - anon_sym_PIPE, - [58591] = 4, - ACTIONS(4161), 1, - anon_sym_as, - ACTIONS(4171), 1, - anon_sym_COLON_COLON, + anon_sym_where, + anon_sym_EQ, + [58567] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4159), 3, + ACTIONS(2968), 5, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [58607] = 2, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [58579] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4173), 5, + ACTIONS(4245), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58619] = 4, - ACTIONS(4177), 1, + [58591] = 4, + ACTIONS(4241), 1, anon_sym_as, - ACTIONS(4179), 1, + ACTIONS(4247), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4175), 3, + ACTIONS(4239), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [58635] = 2, + [58607] = 4, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4249), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4181), 5, + ACTIONS(4239), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [58647] = 2, + [58623] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2829), 5, + ACTIONS(4251), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [58659] = 2, + anon_sym_COMMA, + [58635] = 6, + ACTIONS(3893), 1, + anon_sym_COLON, + ACTIONS(4162), 1, + anon_sym_COMMA, + ACTIONS(4164), 1, + anon_sym_GT, + STATE(1907), 1, + sym_trait_bounds, + STATE(1915), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2821), 5, + [58655] = 4, + ACTIONS(4255), 1, + anon_sym_as, + ACTIONS(4257), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4253), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, [58671] = 4, - ACTIONS(610), 1, + ACTIONS(582), 1, anon_sym_LBRACE, - ACTIONS(4183), 1, + ACTIONS(4259), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(226), 3, + STATE(224), 3, sym_if_expression, sym_if_let_expression, sym_block, [58687] = 6, - ACTIONS(3355), 1, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3363), 1, + ACTIONS(3439), 1, anon_sym_COLON_COLON, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_COLON, - STATE(1343), 1, + STATE(1359), 1, sym_type_arguments, - STATE(1926), 1, + STATE(1952), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58707] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4185), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [58719] = 6, - ACTIONS(4187), 1, + [58707] = 6, + ACTIONS(4261), 1, anon_sym_RPAREN, - ACTIONS(4189), 1, + ACTIONS(4263), 1, anon_sym_COLON, - ACTIONS(4191), 1, + ACTIONS(4265), 1, anon_sym_COMMA, - ACTIONS(4193), 1, + ACTIONS(4267), 1, anon_sym_PIPE, - STATE(1975), 1, + STATE(1992), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58739] = 2, + [58727] = 4, + ACTIONS(4231), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4195), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3429), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4269), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [58751] = 4, - ACTIONS(4197), 1, + [58743] = 4, + ACTIONS(4271), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2865), 2, + ACTIONS(2990), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3566), 2, + ACTIONS(3670), 2, anon_sym_COMMA, anon_sym_PIPE, - [58767] = 2, + [58759] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3862), 5, + ACTIONS(3938), 5, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, 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, + [58771] = 5, + ACTIONS(790), 1, anon_sym_RPAREN, - ACTIONS(4200), 1, + ACTIONS(4274), 1, anon_sym_COMMA, - STATE(2084), 1, + STATE(2101), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3343), 2, + ACTIONS(3419), 2, anon_sym_COLON, anon_sym_PIPE, - [58815] = 5, - ACTIONS(4202), 1, + [58789] = 5, + ACTIONS(4276), 1, anon_sym_RPAREN, - ACTIONS(4205), 1, + ACTIONS(4279), 1, anon_sym_COMMA, - STATE(1903), 1, + STATE(1961), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3343), 2, + ACTIONS(3419), 2, anon_sym_COLON, anon_sym_PIPE, - [58833] = 3, + [58807] = 6, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3439), 1, + anon_sym_COLON_COLON, + STATE(1359), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58827] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4282), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1132), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [58843] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3566), 2, + ACTIONS(2908), 5, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2865), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [58847] = 4, - ACTIONS(4155), 1, + anon_sym_where, + anon_sym_EQ, + [58855] = 5, + ACTIONS(3638), 1, + anon_sym_COLON, + ACTIONS(3640), 1, + anon_sym_BANG, + ACTIONS(3642), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3546), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4062), 2, + [58873] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2918), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [58885] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3670), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2990), 3, anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [58899] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4284), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [58863] = 4, - ACTIONS(4072), 1, + [58911] = 4, + ACTIONS(4120), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3429), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4062), 2, + ACTIONS(4112), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58879] = 5, - ACTIONS(792), 1, + [58927] = 5, + ACTIONS(4286), 1, anon_sym_RPAREN, - ACTIONS(4208), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - STATE(2028), 1, + STATE(2136), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3343), 2, + ACTIONS(3419), 2, anon_sym_COLON, anon_sym_PIPE, - [58897] = 6, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3363), 1, + [58945] = 4, + ACTIONS(4231), 1, anon_sym_COLON_COLON, - STATE(1343), 1, - sym_type_arguments, - STATE(1365), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58917] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2793), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58929] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2875), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58941] = 4, - ACTIONS(4072), 1, + ACTIONS(3429), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4112), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58961] = 4, + ACTIONS(4120), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3429), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4210), 2, + ACTIONS(4269), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58957] = 2, + [58977] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2762), 5, + ACTIONS(2996), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58969] = 2, + [58989] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2809), 5, + ACTIONS(3000), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [58981] = 2, + [59001] = 5, + ACTIONS(786), 1, + anon_sym_RPAREN, + ACTIONS(4290), 1, + anon_sym_COMMA, + STATE(2046), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4212), 5, + ACTIONS(3419), 2, + anon_sym_COLON, + anon_sym_PIPE, + [59019] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4292), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58993] = 2, + [59031] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4214), 5, + ACTIONS(4294), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59005] = 2, + [59043] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4216), 5, + ACTIONS(4296), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59017] = 2, + [59055] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4218), 5, + ACTIONS(4298), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59029] = 2, + [59067] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4220), 5, + ACTIONS(4300), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59041] = 4, - ACTIONS(284), 1, + [59079] = 4, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(4222), 1, + ACTIONS(4302), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1122), 3, + STATE(156), 3, sym_if_expression, sym_if_let_expression, sym_block, - [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(3343), 2, - anon_sym_COLON, - anon_sym_PIPE, - [59075] = 6, - ACTIONS(3810), 1, + [59095] = 6, + ACTIONS(3893), 1, anon_sym_COLON, - ACTIONS(4228), 1, + ACTIONS(4304), 1, anon_sym_COMMA, - ACTIONS(4230), 1, + ACTIONS(4306), 1, anon_sym_GT, - STATE(1963), 1, + STATE(1907), 1, sym_trait_bounds, - STATE(2073), 1, + STATE(2084), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59095] = 3, - ACTIONS(4232), 1, - anon_sym_EQ, + [59115] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 4, - anon_sym_PLUS, + ACTIONS(4308), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - [59109] = 4, - ACTIONS(2865), 1, - anon_sym_PLUS, + [59127] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3566), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4197), 2, - anon_sym_RPAREN, + ACTIONS(4310), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [59125] = 2, + [59139] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4234), 5, + ACTIONS(4312), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59137] = 2, + [59151] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4236), 5, + ACTIONS(4314), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59149] = 5, - ACTIONS(3446), 1, - anon_sym_EQ, - ACTIONS(3810), 1, - anon_sym_COLON, - STATE(1994), 1, - sym_trait_bounds, + [59163] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4238), 2, + ACTIONS(4316), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - [59167] = 4, - ACTIONS(4155), 1, - anon_sym_COLON_COLON, + [59175] = 4, + ACTIONS(2990), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4210), 2, + ACTIONS(3670), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4271), 2, anon_sym_RPAREN, anon_sym_COMMA, - [59183] = 6, - ACTIONS(2484), 1, + [59191] = 3, + ACTIONS(4318), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2708), 4, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_COLON_COLON, + [59205] = 6, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3363), 1, + ACTIONS(3439), 1, anon_sym_COLON_COLON, - STATE(990), 1, + STATE(955), 1, sym_parameters, - STATE(1343), 1, + STATE(1359), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59203] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4240), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, + [59225] = 5, + ACTIONS(3516), 1, anon_sym_EQ, - anon_sym_COMMA, - [59215] = 2, + ACTIONS(3893), 1, + anon_sym_COLON, + STATE(1932), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4242), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(4320), 2, 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, - STATE(73), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, + anon_sym_GT, [59243] = 5, - ACTIONS(3237), 1, + ACTIONS(4322), 1, + anon_sym_LPAREN, + ACTIONS(4324), 1, anon_sym_LBRACE, - ACTIONS(4246), 1, - sym_identifier, - ACTIONS(4248), 1, - anon_sym_STAR, - STATE(2080), 1, - sym_use_list, + ACTIONS(4326), 1, + anon_sym_LBRACK, + STATE(1399), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [59260] = 5, - ACTIONS(3359), 1, - anon_sym_LPAREN, - ACTIONS(3724), 1, - anon_sym_LT, - STATE(1676), 1, - sym_parameters, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(4118), 1, + anon_sym_LBRACE, + STATE(430), 1, + sym_enum_variant_list, STATE(2151), 1, - sym_type_parameters, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [59277] = 4, - ACTIONS(3810), 1, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1089), 1, + sym_line_comment, + ACTIONS(4328), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4330), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59292] = 4, + ACTIONS(3893), 1, anon_sym_COLON, - STATE(1963), 1, + STATE(1907), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4250), 2, + ACTIONS(4332), 2, anon_sym_COMMA, anon_sym_GT, - [59292] = 4, - ACTIONS(3), 1, + [59307] = 4, + ACTIONS(3544), 1, + anon_sym_COLON_COLON, + ACTIONS(3959), 1, + anon_sym_BANG, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1004), 1, sym_line_comment, - ACTIONS(4253), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4255), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59307] = 4, - ACTIONS(3562), 1, + ACTIONS(3546), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59322] = 4, + ACTIONS(3640), 1, anon_sym_BANG, - ACTIONS(3564), 1, + ACTIONS(3728), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3546), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59322] = 4, - ACTIONS(4257), 1, + [59337] = 4, + ACTIONS(4335), 1, anon_sym_DQUOTE, - STATE(1784), 1, + STATE(1798), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4259), 2, + ACTIONS(4337), 2, sym__string_content, sym_escape_sequence, - [59337] = 4, - ACTIONS(3562), 1, + [59352] = 4, + ACTIONS(3640), 1, anon_sym_BANG, - ACTIONS(3686), 1, + ACTIONS(3760), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3546), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59352] = 5, - ACTIONS(4261), 1, + [59367] = 5, + ACTIONS(4339), 1, anon_sym_LPAREN, - ACTIONS(4263), 1, + ACTIONS(4341), 1, anon_sym_LBRACE, - ACTIONS(4265), 1, + ACTIONS(4343), 1, anon_sym_LBRACK, - STATE(96), 1, - sym_token_tree, + STATE(97), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59369] = 5, - ACTIONS(3359), 1, + [59384] = 5, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, + ACTIONS(3784), 1, anon_sym_LT, - STATE(1700), 1, + STATE(1716), 1, sym_parameters, - STATE(2262), 1, + STATE(2268), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59386] = 5, - ACTIONS(3359), 1, + [59401] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(1089), 1, + sym_line_comment, + ACTIONS(4345), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4347), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59416] = 5, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, + ACTIONS(3784), 1, anon_sym_LT, - STATE(1681), 1, + STATE(1702), 1, sym_parameters, - STATE(2239), 1, + STATE(2262), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, - [59420] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3343), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4271), 2, - anon_sym_RPAREN, - anon_sym_COMMA, [59433] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1004), 1, + ACTIONS(1089), 1, sym_line_comment, - ACTIONS(4273), 1, + ACTIONS(4349), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4275), 3, + ACTIONS(4351), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, [59448] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1004), 1, + ACTIONS(1089), 1, sym_line_comment, - ACTIONS(4277), 1, + ACTIONS(4353), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4279), 3, + ACTIONS(4355), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, [59463] = 5, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3832), 1, anon_sym_LBRACE, - STATE(283), 1, + STATE(362), 1, sym_declaration_list, - STATE(2179), 1, + STATE(2202), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [59480] = 5, - ACTIONS(3359), 1, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, + ACTIONS(3784), 1, anon_sym_LT, - STATE(1659), 1, + STATE(1632), 1, sym_parameters, - STATE(2253), 1, + STATE(2274), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [59497] = 5, - ACTIONS(4193), 1, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(4281), 1, + ACTIONS(4357), 1, anon_sym_SEMI, - ACTIONS(4283), 1, + ACTIONS(4359), 1, anon_sym_COLON, - ACTIONS(4285), 1, + ACTIONS(4361), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [59514] = 3, - ACTIONS(4287), 1, + ACTIONS(4363), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4289), 3, + ACTIONS(4365), 3, sym_self, sym_super, sym_crate, [59527] = 3, - ACTIONS(4291), 1, + ACTIONS(4367), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4293), 3, + ACTIONS(4369), 3, sym_self, sym_super, sym_crate, [59540] = 5, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4295), 1, - anon_sym_RPAREN, - ACTIONS(4297), 1, - anon_sym_COMMA, - STATE(1889), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59557] = 5, - ACTIONS(3359), 1, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, + ACTIONS(3784), 1, anon_sym_LT, - STATE(1629), 1, + STATE(1642), 1, sym_parameters, - STATE(2288), 1, + STATE(2321), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59574] = 4, - ACTIONS(3460), 1, - anon_sym_COLON_COLON, - ACTIONS(3560), 1, - anon_sym_COLON, + [59557] = 5, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4371), 1, + anon_sym_RPAREN, + ACTIONS(4373), 1, + anon_sym_COMMA, + STATE(1898), 1, + aux_sym_ordered_field_declaration_list_repeat1, 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, + [59574] = 4, + ACTIONS(3544), 1, anon_sym_COLON_COLON, - ACTIONS(3878), 1, - anon_sym_BANG, + ACTIONS(3638), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3546), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59604] = 4, - ACTIONS(4066), 1, + [59589] = 4, + ACTIONS(4116), 1, anon_sym_COLON_COLON, - ACTIONS(4076), 1, + ACTIONS(4128), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3429), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59619] = 5, - ACTIONS(4189), 1, + [59604] = 5, + ACTIONS(4263), 1, anon_sym_COLON, - ACTIONS(4299), 1, + ACTIONS(4375), 1, anon_sym_COMMA, - ACTIONS(4301), 1, + ACTIONS(4377), 1, anon_sym_PIPE, - STATE(1922), 1, + STATE(1927), 1, aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59636] = 4, - ACTIONS(4303), 1, + [59621] = 4, + ACTIONS(4379), 1, anon_sym_DQUOTE, - STATE(1852), 1, + STATE(1866), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4305), 2, + ACTIONS(4381), 2, sym__string_content, sym_escape_sequence, - [59651] = 5, - ACTIONS(4261), 1, + [59636] = 5, + ACTIONS(4339), 1, anon_sym_LPAREN, - ACTIONS(4263), 1, + ACTIONS(4341), 1, anon_sym_LBRACE, - ACTIONS(4265), 1, + ACTIONS(4343), 1, anon_sym_LBRACK, - STATE(148), 1, - sym_token_tree, + STATE(165), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59668] = 5, - ACTIONS(4307), 1, - anon_sym_LPAREN, - ACTIONS(4309), 1, - anon_sym_LBRACE, - ACTIONS(4311), 1, - anon_sym_LBRACK, - STATE(833), 1, - sym_token_tree, + [59653] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59685] = 5, - ACTIONS(4307), 1, + ACTIONS(3419), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4383), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59666] = 5, + ACTIONS(4385), 1, anon_sym_LPAREN, - ACTIONS(4309), 1, + ACTIONS(4387), 1, anon_sym_LBRACE, - ACTIONS(4311), 1, + ACTIONS(4389), 1, anon_sym_LBRACK, - STATE(834), 1, - sym_token_tree, + STATE(830), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59702] = 5, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(4046), 1, - anon_sym_LBRACE, - STATE(306), 1, - sym_enum_variant_list, - STATE(2135), 1, - sym_where_clause, + [59683] = 5, + ACTIONS(2445), 1, + anon_sym_PLUS, + ACTIONS(4391), 1, + anon_sym_COMMA, + ACTIONS(4393), 1, + anon_sym_GT, + STATE(1996), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59719] = 5, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(4313), 1, + [59700] = 5, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4391), 1, + anon_sym_COMMA, + ACTIONS(4393), 1, + anon_sym_GT, + STATE(1996), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59717] = 5, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4395), 1, anon_sym_RPAREN, - ACTIONS(4315), 1, + ACTIONS(4397), 1, anon_sym_COMMA, - STATE(1904), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2064), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59736] = 5, - ACTIONS(4317), 1, + [59734] = 5, + ACTIONS(4385), 1, anon_sym_LPAREN, - ACTIONS(4319), 1, + ACTIONS(4387), 1, anon_sym_LBRACE, - ACTIONS(4321), 1, + ACTIONS(4389), 1, anon_sym_LBRACK, - STATE(1385), 1, - sym_token_tree, + STATE(833), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59751] = 5, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(4118), 1, + anon_sym_LBRACE, + STATE(473), 1, + sym_enum_variant_list, + STATE(2294), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59753] = 4, - ACTIONS(4323), 1, + [59768] = 4, + ACTIONS(4399), 1, anon_sym_DQUOTE, - STATE(1852), 1, + STATE(1866), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4305), 2, + ACTIONS(4381), 2, sym__string_content, sym_escape_sequence, - [59768] = 5, - ACTIONS(4193), 1, + [59783] = 5, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(4325), 1, - anon_sym_RBRACK, - ACTIONS(4327), 1, + ACTIONS(4401), 1, + anon_sym_RPAREN, + ACTIONS(4403), 1, anon_sym_COMMA, - STATE(2060), 1, + STATE(2113), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59785] = 5, - ACTIONS(4317), 1, + [59800] = 5, + ACTIONS(4322), 1, anon_sym_LPAREN, - ACTIONS(4319), 1, + ACTIONS(4324), 1, anon_sym_LBRACE, - ACTIONS(4321), 1, + ACTIONS(4326), 1, anon_sym_LBRACK, - STATE(1378), 1, - sym_token_tree, + STATE(1403), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59802] = 4, - ACTIONS(4329), 1, + [59817] = 4, + ACTIONS(4405), 1, anon_sym_DQUOTE, - STATE(1791), 1, + STATE(1807), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4331), 2, + ACTIONS(4407), 2, sym__string_content, sym_escape_sequence, - [59817] = 3, + [59832] = 5, + ACTIONS(4267), 1, + anon_sym_PIPE, + ACTIONS(4409), 1, + anon_sym_RBRACK, + ACTIONS(4411), 1, + anon_sym_COMMA, + STATE(2123), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59849] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3343), 2, + ACTIONS(3419), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4333), 2, + ACTIONS(4413), 2, anon_sym_RPAREN, anon_sym_COMMA, - [59830] = 4, - ACTIONS(4337), 1, + [59862] = 4, + ACTIONS(4417), 1, anon_sym_COMMA, - STATE(1796), 1, + STATE(1813), 1, aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4335), 2, + ACTIONS(4415), 2, anon_sym_SEMI, anon_sym_LBRACE, - [59845] = 5, - ACTIONS(3722), 1, + [59877] = 5, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(1015), 1, + STATE(1029), 1, sym_declaration_list, - STATE(2225), 1, + STATE(2242), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59862] = 5, - ACTIONS(2405), 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, - [59879] = 5, - ACTIONS(3983), 1, + [59894] = 5, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4340), 1, + ACTIONS(4420), 1, + anon_sym_RPAREN, + ACTIONS(4422), 1, anon_sym_COMMA, - ACTIONS(4342), 1, - anon_sym_GT, - STATE(1966), 1, - aux_sym_type_arguments_repeat1, + STATE(2045), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59896] = 5, - ACTIONS(3722), 1, + [59911] = 5, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(468), 1, + STATE(963), 1, sym_declaration_list, - STATE(2218), 1, + STATE(2220), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59913] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1004), 1, - sym_line_comment, - ACTIONS(4344), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4346), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59928] = 5, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4348), 1, + [59928] = 5, + ACTIONS(4261), 1, anon_sym_RPAREN, - ACTIONS(4350), 1, + ACTIONS(4265), 1, anon_sym_COMMA, - STATE(2026), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4267), 1, + anon_sym_PIPE, + STATE(1992), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [59945] = 5, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(900), 1, + STATE(932), 1, sym_declaration_list, - STATE(2206), 1, + STATE(2215), 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, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3832), 1, anon_sym_LBRACE, STATE(318), 1, sym_declaration_list, - STATE(2272), 1, + STATE(2297), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59996] = 5, - ACTIONS(4084), 1, + [59979] = 5, + ACTIONS(4162), 1, anon_sym_COMMA, - ACTIONS(4086), 1, + ACTIONS(4164), 1, anon_sym_GT, - ACTIONS(4352), 1, + ACTIONS(4424), 1, anon_sym_EQ, - STATE(2096), 1, + STATE(1915), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60013] = 5, - ACTIONS(794), 1, + [59996] = 5, + ACTIONS(790), 1, anon_sym_RPAREN, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4200), 1, + ACTIONS(4274), 1, anon_sym_COMMA, - STATE(2084), 1, + STATE(2101), 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, - STATE(1346), 1, - sym_type_arguments, - STATE(1360), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60047] = 3, - ACTIONS(3983), 1, + [60013] = 3, + ACTIONS(4065), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4354), 3, + ACTIONS(4426), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [60060] = 5, - ACTIONS(3720), 1, - anon_sym_LBRACE, - ACTIONS(3722), 1, + [60026] = 5, + ACTIONS(3782), 1, anon_sym_where, - STATE(780), 1, - sym_field_declaration_list, - STATE(2173), 1, + ACTIONS(3832), 1, + anon_sym_LBRACE, + STATE(390), 1, + sym_declaration_list, + STATE(2230), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60077] = 3, - ACTIONS(3983), 1, + [60043] = 3, + ACTIONS(4065), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4356), 3, + ACTIONS(4428), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [60090] = 5, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3738), 1, + [60056] = 5, + ACTIONS(3780), 1, anon_sym_LBRACE, - STATE(410), 1, - sym_declaration_list, - STATE(2210), 1, + ACTIONS(3782), 1, + anon_sym_where, + STATE(826), 1, + sym_field_declaration_list, + STATE(2184), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, + [60073] = 5, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(4067), 1, + anon_sym_LBRACE, + STATE(935), 1, + sym_enum_variant_list, + STATE(2179), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60124] = 5, - ACTIONS(3722), 1, + [60090] = 5, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3987), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(791), 1, - sym_enum_variant_list, - STATE(2168), 1, + STATE(806), 1, + sym_declaration_list, + STATE(2171), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60141] = 5, - ACTIONS(3722), 1, + [60107] = 5, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3832), 1, anon_sym_LBRACE, - STATE(801), 1, + STATE(400), 1, sym_declaration_list, - STATE(2160), 1, + STATE(2310), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60158] = 5, - ACTIONS(3722), 1, + [60124] = 5, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(821), 1, + STATE(797), 1, sym_declaration_list, - STATE(2155), 1, + STATE(2166), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60175] = 4, - ACTIONS(3562), 1, + [60141] = 4, + ACTIONS(3640), 1, anon_sym_BANG, - ACTIONS(3636), 1, + ACTIONS(3642), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3546), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [60190] = 5, - ACTIONS(3642), 1, + [60156] = 5, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 1, + anon_sym_LPAREN, + STATE(1360), 1, + sym_type_arguments, + STATE(1381), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60173] = 5, + ACTIONS(3624), 1, anon_sym_PIPE, - ACTIONS(4358), 1, + ACTIONS(4430), 1, anon_sym_SEMI, - ACTIONS(4360), 1, + ACTIONS(4432), 1, anon_sym_COLON, - ACTIONS(4362), 1, + ACTIONS(4434), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + [60190] = 5, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(3832), 1, + anon_sym_LBRACE, + STATE(421), 1, + sym_declaration_list, + STATE(2217), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, [60207] = 5, - ACTIONS(2405), 1, + ACTIONS(2445), 1, anon_sym_PLUS, - ACTIONS(4364), 1, + ACTIONS(4436), 1, anon_sym_COMMA, - ACTIONS(4366), 1, + ACTIONS(4438), 1, anon_sym_GT, - STATE(2113), 1, + STATE(2141), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [60224] = 5, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4364), 1, + ACTIONS(4436), 1, anon_sym_COMMA, - ACTIONS(4366), 1, + ACTIONS(4438), 1, anon_sym_GT, - STATE(2113), 1, + STATE(2141), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [60241] = 5, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(3738), 1, - anon_sym_LBRACE, - STATE(367), 1, - sym_declaration_list, - STATE(2287), 1, - sym_where_clause, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4235), 1, + anon_sym_RPAREN, + ACTIONS(4237), 1, + anon_sym_COMMA, + STATE(1961), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [60258] = 5, - ACTIONS(3983), 1, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4224), 1, + ACTIONS(4286), 1, anon_sym_RPAREN, - ACTIONS(4226), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - STATE(2119), 1, + STATE(2136), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [60275] = 5, - ACTIONS(3722), 1, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4440), 1, + anon_sym_RPAREN, + ACTIONS(4442), 1, + anon_sym_COMMA, + STATE(1977), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60292] = 5, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3738), 1, + ACTIONS(3832), 1, anon_sym_LBRACE, - STATE(356), 1, + STATE(319), 1, sym_declaration_list, - STATE(2153), 1, + STATE(2149), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60292] = 5, - ACTIONS(3810), 1, + [60309] = 4, + ACTIONS(3893), 1, anon_sym_COLON, - ACTIONS(4368), 1, - anon_sym_SEMI, - ACTIONS(4370), 1, - anon_sym_EQ, - STATE(2482), 1, + STATE(1907), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60309] = 5, - ACTIONS(3720), 1, + ACTIONS(4444), 2, + anon_sym_COMMA, + anon_sym_GT, + [60324] = 5, + ACTIONS(3780), 1, anon_sym_LBRACE, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - STATE(951), 1, + STATE(915), 1, sym_field_declaration_list, - STATE(2158), 1, + STATE(2189), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60326] = 5, - ACTIONS(3810), 1, + [60341] = 5, + ACTIONS(3893), 1, anon_sym_COLON, - ACTIONS(4372), 1, + ACTIONS(4446), 1, anon_sym_SEMI, - ACTIONS(4374), 1, + ACTIONS(4448), 1, anon_sym_EQ, - STATE(2511), 1, + STATE(2532), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60343] = 5, - ACTIONS(3722), 1, + [60358] = 5, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3750), 1, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(962), 1, + STATE(921), 1, sym_declaration_list, - STATE(2166), 1, + STATE(2198), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60360] = 5, - ACTIONS(3642), 1, + [60375] = 5, + ACTIONS(3624), 1, anon_sym_PIPE, - ACTIONS(4376), 1, + ACTIONS(4450), 1, anon_sym_SEMI, - ACTIONS(4378), 1, + ACTIONS(4452), 1, anon_sym_COLON, - ACTIONS(4380), 1, + ACTIONS(4454), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60377] = 5, - ACTIONS(2484), 1, + [60392] = 5, + ACTIONS(2560), 1, anon_sym_LPAREN, - ACTIONS(3355), 1, + ACTIONS(3431), 1, anon_sym_LT2, - STATE(987), 1, + STATE(950), 1, sym_parameters, - STATE(1346), 1, + STATE(1360), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60394] = 5, - ACTIONS(4228), 1, - anon_sym_COMMA, - ACTIONS(4230), 1, - anon_sym_GT, - ACTIONS(4352), 1, + [60409] = 5, + ACTIONS(3893), 1, + anon_sym_COLON, + ACTIONS(4456), 1, + anon_sym_SEMI, + ACTIONS(4458), 1, anon_sym_EQ, - STATE(2073), 1, - aux_sym_type_parameters_repeat1, + STATE(2334), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60411] = 5, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4382), 1, - anon_sym_RPAREN, - ACTIONS(4384), 1, + [60426] = 5, + ACTIONS(4304), 1, anon_sym_COMMA, - STATE(2069), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4306), 1, + anon_sym_GT, + ACTIONS(4424), 1, + anon_sym_EQ, + STATE(2084), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60428] = 5, - ACTIONS(3983), 1, + [60443] = 5, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4167), 1, + ACTIONS(4460), 1, anon_sym_RPAREN, - ACTIONS(4169), 1, + ACTIONS(4462), 1, anon_sym_COMMA, - STATE(1903), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60445] = 4, - ACTIONS(3810), 1, - anon_sym_COLON, - STATE(1963), 1, - sym_trait_bounds, + STATE(2080), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4386), 2, - anon_sym_COMMA, - anon_sym_GT, [60460] = 5, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(3987), 1, + ACTIONS(4067), 1, anon_sym_LBRACE, - STATE(1014), 1, + STATE(1000), 1, sym_enum_variant_list, - STATE(2211), 1, + STATE(2237), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [60477] = 5, - ACTIONS(4388), 1, + ACTIONS(4464), 1, anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(4466), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4468), 1, anon_sym_LBRACK, - STATE(1092), 1, - sym_token_tree, + STATE(1052), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60494] = 5, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3893), 1, + anon_sym_COLON, + STATE(1360), 1, + sym_type_arguments, + STATE(1951), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60494] = 4, - ACTIONS(4394), 1, + [60511] = 4, + ACTIONS(4470), 1, anon_sym_DQUOTE, - STATE(1852), 1, + STATE(1866), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4305), 2, + ACTIONS(4381), 2, sym__string_content, sym_escape_sequence, - [60509] = 5, - ACTIONS(3237), 1, + [60526] = 5, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(4014), 1, + ACTIONS(4472), 1, sym_identifier, - ACTIONS(4016), 1, + ACTIONS(4474), 1, anon_sym_STAR, - STATE(2059), 1, + STATE(2032), 1, sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, [60543] = 4, - ACTIONS(4404), 1, + ACTIONS(4478), 1, anon_sym_COMMA, - STATE(1839), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1860), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4402), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4476), 2, + anon_sym_SEMI, + anon_sym_LBRACE, [60558] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + ACTIONS(4267), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4407), 3, + ACTIONS(4480), 3, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, + [60571] = 5, + ACTIONS(4267), 1, anon_sym_PIPE, - [60571] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + ACTIONS(4482), 1, + anon_sym_SEMI, + ACTIONS(4484), 1, + anon_sym_COLON, + ACTIONS(4486), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4409), 3, + [60588] = 5, + ACTIONS(786), 1, anon_sym_RPAREN, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4290), 1, anon_sym_COMMA, - anon_sym_PIPE, - [60584] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, + STATE(2046), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4402), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [60597] = 5, - ACTIONS(4388), 1, + [60605] = 5, + ACTIONS(3273), 1, + anon_sym_LBRACE, + ACTIONS(4104), 1, + sym_identifier, + ACTIONS(4106), 1, + anon_sym_STAR, + STATE(2020), 1, + sym_use_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60622] = 5, + ACTIONS(4464), 1, anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(4466), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4468), 1, anon_sym_LBRACK, - STATE(1071), 1, - sym_token_tree, + STATE(1128), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60614] = 5, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4208), 1, + [60639] = 4, + ACTIONS(4488), 1, anon_sym_COMMA, - STATE(2028), 1, - aux_sym_parameters_repeat1, + STATE(1813), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60631] = 4, - ACTIONS(4411), 1, + ACTIONS(2866), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [60654] = 4, + ACTIONS(4490), 1, anon_sym_DQUOTE, - STATE(1836), 1, + STATE(1852), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4413), 2, + ACTIONS(4492), 2, sym__string_content, sym_escape_sequence, - [60646] = 4, - ACTIONS(3460), 1, + [60669] = 4, + ACTIONS(3544), 1, anon_sym_COLON_COLON, - ACTIONS(4415), 1, + ACTIONS(4494), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3462), 2, + ACTIONS(3546), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [60661] = 5, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4417), 1, - anon_sym_RPAREN, - ACTIONS(4419), 1, - anon_sym_COMMA, - STATE(1953), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60678] = 5, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(3810), 1, + [60684] = 4, + ACTIONS(4114), 1, anon_sym_COLON, - STATE(1346), 1, - sym_type_arguments, - STATE(1924), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60695] = 4, - ACTIONS(4421), 1, - anon_sym_COMMA, - 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(4066), 1, + ACTIONS(4116), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3429), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [60725] = 3, - ACTIONS(4423), 1, + [60699] = 3, + ACTIONS(4496), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3642), 3, + ACTIONS(3624), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [60738] = 4, - ACTIONS(4425), 1, + [60712] = 5, + ACTIONS(4498), 1, + anon_sym_LPAREN, + ACTIONS(4500), 1, + anon_sym_LBRACE, + ACTIONS(4502), 1, + anon_sym_LBRACK, + STATE(2097), 1, + sym_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60729] = 4, + ACTIONS(4504), 1, anon_sym_DQUOTE, - STATE(1852), 1, + STATE(1866), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4427), 2, + ACTIONS(4506), 2, sym__string_content, sym_escape_sequence, - [60753] = 4, - ACTIONS(4432), 1, - anon_sym_COMMA, - STATE(1849), 1, - aux_sym_where_clause_repeat1, + [60744] = 5, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(306), 1, + sym_field_declaration_list, + STATE(2154), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4430), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [60768] = 4, - ACTIONS(2249), 1, - anon_sym_POUND, - ACTIONS(4434), 1, - sym_identifier, + [60761] = 4, + ACTIONS(4509), 1, + anon_sym_COMMA, + STATE(1868), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1058), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [60783] = 5, - ACTIONS(3359), 1, + ACTIONS(4480), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [60776] = 5, + ACTIONS(3435), 1, anon_sym_LPAREN, - ACTIONS(3724), 1, + ACTIONS(3784), 1, anon_sym_LT, - STATE(1701), 1, + STATE(1696), 1, sym_parameters, - STATE(2243), 1, + STATE(2187), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, + [60793] = 3, + ACTIONS(4065), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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(4512), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [60806] = 4, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(4514), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1135), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [60821] = 3, + ACTIONS(4065), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(4516), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, [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(3435), 1, + anon_sym_LPAREN, + ACTIONS(3784), 1, + anon_sym_LT, + STATE(1700), 1, + sym_parameters, + STATE(2208), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [60851] = 5, - ACTIONS(3722), 1, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(4046), 1, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(374), 1, - sym_enum_variant_list, - STATE(2128), 1, + STATE(442), 1, + sym_field_declaration_list, + STATE(2162), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60868] = 4, - ACTIONS(3756), 1, - anon_sym_RBRACE, - ACTIONS(4436), 1, + [60868] = 3, + ACTIONS(4231), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3429), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60880] = 4, + ACTIONS(4162), 1, anon_sym_COMMA, - STATE(2068), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(4164), 1, + anon_sym_GT, + STATE(1915), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60882] = 4, - ACTIONS(4004), 1, + [60894] = 4, + ACTIONS(3832), 1, anon_sym_LBRACE, - ACTIONS(4438), 1, + ACTIONS(4518), 1, anon_sym_SEMI, - STATE(996), 1, - sym_block, + STATE(459), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60896] = 2, + [60908] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4440), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60906] = 4, - ACTIONS(4442), 1, - anon_sym_RBRACE, - ACTIONS(4444), 1, + ACTIONS(4520), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1918), 1, - aux_sym_enum_variant_list_repeat2, + [60918] = 3, + ACTIONS(4263), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60920] = 4, - ACTIONS(4446), 1, - sym_identifier, - ACTIONS(4448), 1, - anon_sym_ref, - ACTIONS(4450), 1, - sym_mutable_specifier, + ACTIONS(4522), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [60930] = 4, + ACTIONS(4522), 1, + anon_sym_PIPE, + ACTIONS(4524), 1, + anon_sym_COMMA, + STATE(1880), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60934] = 3, - ACTIONS(3983), 1, + [60944] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4065), 1, anon_sym_PLUS, + STATE(1044), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4452), 2, - anon_sym_RPAREN, + [60958] = 4, + ACTIONS(3856), 1, + anon_sym_RBRACE, + ACTIONS(4527), 1, anon_sym_COMMA, - [60946] = 4, - ACTIONS(4454), 1, + STATE(2139), 1, + aux_sym_field_initializer_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60972] = 4, + ACTIONS(4529), 1, sym_identifier, - ACTIONS(4456), 1, + ACTIONS(4531), 1, anon_sym_ref, - ACTIONS(4458), 1, + ACTIONS(4533), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60960] = 4, - ACTIONS(4460), 1, + [60986] = 4, + ACTIONS(3832), 1, + anon_sym_LBRACE, + ACTIONS(4535), 1, + anon_sym_SEMI, + STATE(336), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61000] = 4, + ACTIONS(4537), 1, sym_identifier, - ACTIONS(4462), 1, + ACTIONS(4539), 1, anon_sym_ref, - ACTIONS(4464), 1, + ACTIONS(4541), 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, + [61014] = 4, + ACTIONS(4543), 1, + sym_identifier, + ACTIONS(4545), 1, + anon_sym_ref, + ACTIONS(4547), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60988] = 4, - ACTIONS(546), 1, - anon_sym_RBRACK, - ACTIONS(4470), 1, + [61028] = 4, + ACTIONS(4549), 1, + anon_sym_RPAREN, + ACTIONS(4551), 1, anon_sym_COMMA, - STATE(1959), 1, - aux_sym_array_expression_repeat1, + STATE(1887), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61002] = 4, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(4472), 1, + [61042] = 4, + ACTIONS(4073), 1, + anon_sym_LBRACE, + ACTIONS(4554), 1, anon_sym_SEMI, - STATE(2462), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61016] = 2, + STATE(413), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4474), 3, + [61056] = 4, + ACTIONS(4065), 1, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61026] = 4, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(4476), 1, + ACTIONS(4556), 1, anon_sym_SEMI, - STATE(2538), 1, - sym_where_clause, + ACTIONS(4558), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61040] = 4, - ACTIONS(3724), 1, + [61070] = 4, + ACTIONS(3784), 1, anon_sym_LT, - ACTIONS(4478), 1, + ACTIONS(4560), 1, anon_sym_EQ, - STATE(2512), 1, + STATE(2529), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61054] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4480), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61064] = 4, - ACTIONS(4010), 1, + [61084] = 4, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4482), 1, - anon_sym_SEMI, - STATE(432), 1, + ACTIONS(4065), 1, + anon_sym_PLUS, + STATE(1063), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61078] = 4, - ACTIONS(4010), 1, + [61098] = 4, + ACTIONS(4073), 1, anon_sym_LBRACE, - ACTIONS(4484), 1, + ACTIONS(4562), 1, anon_sym_SEMI, - STATE(385), 1, + STATE(337), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61092] = 4, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4486), 1, - anon_sym_SEMI, - ACTIONS(4488), 1, - anon_sym_EQ, + [61112] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61106] = 4, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4490), 1, - anon_sym_SEMI, - STATE(464), 1, - sym_block, + ACTIONS(4564), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61122] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61120] = 4, - ACTIONS(4492), 1, + ACTIONS(2415), 3, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(4494), 1, - anon_sym_COMMA, - STATE(1879), 1, - aux_sym_meta_arguments_repeat1, + anon_sym_RBRACE, + [61132] = 3, + ACTIONS(4267), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61134] = 2, + ACTIONS(4566), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61144] = 3, + ACTIONS(4065), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4497), 3, + ACTIONS(4568), 2, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_COMMA, - [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, - [61158] = 4, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(4501), 1, - anon_sym_SEMI, - STATE(434), 1, - sym_declaration_list, + [61156] = 3, + ACTIONS(4065), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61172] = 4, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4503), 1, - anon_sym_SEMI, - STATE(273), 1, - sym_block, + ACTIONS(4570), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61168] = 4, + ACTIONS(4572), 1, + anon_sym_RPAREN, + ACTIONS(4574), 1, + anon_sym_COMMA, + STATE(1974), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61186] = 3, - ACTIONS(4505), 1, + [61182] = 3, + ACTIONS(4576), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4507), 2, + ACTIONS(4578), 2, anon_sym_default, anon_sym_union, - [61198] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + [61194] = 4, + ACTIONS(3784), 1, + anon_sym_LT, + ACTIONS(4580), 1, + anon_sym_EQ, + STATE(2479), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4509), 2, - anon_sym_RBRACE, + [61208] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4582), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [61210] = 3, - ACTIONS(4040), 1, + [61218] = 3, + ACTIONS(4108), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3429), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [61222] = 2, + [61230] = 4, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(4584), 1, + anon_sym_SEMI, + STATE(2556), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4511), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61232] = 4, - ACTIONS(284), 1, + [61244] = 4, + ACTIONS(3832), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(4586), 1, + anon_sym_SEMI, + STATE(268), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61258] = 3, + ACTIONS(4065), 1, anon_sym_PLUS, - STATE(1111), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61246] = 4, - ACTIONS(4513), 1, + ACTIONS(4588), 2, anon_sym_RPAREN, - ACTIONS(4515), 1, anon_sym_COMMA, - STATE(1948), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [61270] = 4, + ACTIONS(4073), 1, + anon_sym_LBRACE, + ACTIONS(4590), 1, + anon_sym_SEMI, + STATE(256), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61260] = 3, - ACTIONS(3983), 1, + [61284] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4592), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [61294] = 3, + ACTIONS(4065), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4517), 2, - anon_sym_RPAREN, + ACTIONS(4594), 2, anon_sym_COMMA, - [61272] = 4, - ACTIONS(4519), 1, + anon_sym_GT, + [61306] = 4, + ACTIONS(4596), 1, anon_sym_for, - ACTIONS(4521), 1, + ACTIONS(4598), 1, anon_sym_loop, - ACTIONS(4523), 1, + ACTIONS(4600), 1, anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61286] = 4, - ACTIONS(382), 1, - anon_sym_RPAREN, - ACTIONS(3141), 1, - anon_sym_COMMA, - STATE(2101), 1, - aux_sym_arguments_repeat1, + [61320] = 4, + ACTIONS(3580), 1, + anon_sym_COLON_COLON, + ACTIONS(3891), 1, + anon_sym_BANG, + ACTIONS(4602), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61300] = 3, - ACTIONS(4072), 1, + [61334] = 3, + ACTIONS(4120), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3429), 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(262), 1, - sym_block, + [61346] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4604), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [61356] = 3, + ACTIONS(4267), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61326] = 4, - ACTIONS(2548), 1, + ACTIONS(4606), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61368] = 4, + ACTIONS(2624), 1, anon_sym_LBRACE, - ACTIONS(4527), 1, + ACTIONS(4608), 1, anon_sym_COLON_COLON, - STATE(1097), 1, + STATE(1112), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61340] = 4, - ACTIONS(3724), 1, - anon_sym_LT, - ACTIONS(4529), 1, - anon_sym_EQ, - STATE(2502), 1, - sym_type_parameters, + [61382] = 4, + ACTIONS(3842), 1, + anon_sym_GT, + ACTIONS(4610), 1, + anon_sym_COMMA, + STATE(2039), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61354] = 4, - ACTIONS(4531), 1, + [61396] = 4, + ACTIONS(4073), 1, + anon_sym_LBRACE, + ACTIONS(4612), 1, + anon_sym_SEMI, + STATE(295), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61410] = 4, + ACTIONS(4614), 1, anon_sym_RBRACE, - ACTIONS(4533), 1, + ACTIONS(4616), 1, anon_sym_COMMA, - STATE(2035), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1882), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61368] = 4, + [61424] = 4, + ACTIONS(384), 1, + anon_sym_RPAREN, + ACTIONS(3211), 1, + anon_sym_COMMA, + STATE(2109), 1, + aux_sym_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61438] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4535), 1, + ACTIONS(4618), 1, anon_sym_move, - STATE(1115), 1, + STATE(1051), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61382] = 4, - ACTIONS(3738), 1, + [61452] = 4, + ACTIONS(544), 1, + anon_sym_RBRACK, + ACTIONS(4620), 1, + anon_sym_COMMA, + STATE(1962), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61466] = 4, + ACTIONS(4073), 1, anon_sym_LBRACE, - ACTIONS(4537), 1, + ACTIONS(4622), 1, anon_sym_SEMI, - STATE(267), 1, - sym_declaration_list, + STATE(359), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61396] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + [61480] = 3, + ACTIONS(3175), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4539), 2, + ACTIONS(4624), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [61408] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, + [61492] = 3, + ACTIONS(4628), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4541), 2, + ACTIONS(4626), 2, anon_sym_RBRACE, anon_sym_COMMA, - [61420] = 3, - ACTIONS(3460), 1, - anon_sym_COLON_COLON, + [61504] = 4, + ACTIONS(4267), 1, + anon_sym_PIPE, + ACTIONS(4630), 1, + anon_sym_EQ_GT, + ACTIONS(4632), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, - STATE(2097), 1, - aux_sym_parameters_repeat1, + [61518] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61446] = 4, - ACTIONS(2363), 1, - anon_sym_RPAREN, - ACTIONS(4543), 1, - anon_sym_COMMA, - STATE(1839), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4634), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61528] = 4, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4636), 1, + anon_sym_SEMI, + ACTIONS(4638), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61460] = 4, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4545), 1, - anon_sym_SEMI, - STATE(400), 1, - sym_block, + [61542] = 4, + ACTIONS(4375), 1, + anon_sym_COMMA, + ACTIONS(4640), 1, + anon_sym_PIPE, + STATE(1880), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61474] = 4, - ACTIONS(3494), 1, + [61556] = 3, + ACTIONS(3544), 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, - [61488] = 3, - ACTIONS(3115), 1, - anon_sym_COLON_COLON, + ACTIONS(3546), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61568] = 4, + ACTIONS(3808), 1, + anon_sym_GT, + ACTIONS(4642), 1, + anon_sym_COMMA, + STATE(2039), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4549), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61500] = 3, - ACTIONS(3983), 1, + [61582] = 3, + ACTIONS(4065), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4271), 2, + ACTIONS(4383), 2, anon_sym_RPAREN, anon_sym_COMMA, - [61512] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, + [61594] = 4, + ACTIONS(3832), 1, + anon_sym_LBRACE, + ACTIONS(4644), 1, + anon_sym_SEMI, + STATE(481), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61608] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4551), 2, + ACTIONS(4646), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [61618] = 4, + ACTIONS(4648), 1, anon_sym_RBRACE, + ACTIONS(4650), 1, anon_sym_COMMA, - [61524] = 3, - ACTIONS(4066), 1, + STATE(1940), 1, + aux_sym_enum_variant_list_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61632] = 3, + ACTIONS(4116), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 2, + ACTIONS(3429), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [61536] = 3, - ACTIONS(4553), 1, + [61644] = 3, + ACTIONS(4652), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4555), 2, + ACTIONS(4654), 2, 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, - [61562] = 4, - ACTIONS(3355), 1, + [61656] = 4, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3688), 1, + ACTIONS(3770), 1, anon_sym_LBRACE, - STATE(1346), 1, + STATE(1360), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61576] = 4, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4557), 1, + [61670] = 4, + ACTIONS(3832), 1, + anon_sym_LBRACE, + ACTIONS(4656), 1, anon_sym_SEMI, - ACTIONS(4559), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61590] = 4, - ACTIONS(4561), 1, - anon_sym_RBRACE, - ACTIONS(4563), 1, - anon_sym_COMMA, - STATE(1957), 1, - aux_sym_field_initializer_list_repeat1, + STATE(415), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61604] = 3, - ACTIONS(4567), 1, - anon_sym_COLON, + [61684] = 4, + ACTIONS(4073), 1, + anon_sym_LBRACE, + ACTIONS(4658), 1, + anon_sym_SEMI, + STATE(317), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4565), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61616] = 3, - ACTIONS(4571), 1, + [61698] = 3, + ACTIONS(4662), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4569), 2, + ACTIONS(4660), 2, anon_sym_RBRACE, anon_sym_COMMA, - [61628] = 4, - ACTIONS(3700), 1, + [61710] = 4, + ACTIONS(3794), 1, anon_sym_RBRACE, - ACTIONS(4573), 1, + ACTIONS(4664), 1, anon_sym_COMMA, - STATE(2066), 1, + STATE(2088), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61642] = 4, - ACTIONS(3700), 1, - anon_sym_RBRACE, - ACTIONS(4573), 1, - anon_sym_COMMA, - STATE(2055), 1, - aux_sym_enum_variant_list_repeat2, + [61724] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61656] = 4, - ACTIONS(3738), 1, + ACTIONS(2423), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [61734] = 4, + ACTIONS(4073), 1, anon_sym_LBRACE, - ACTIONS(4575), 1, + ACTIONS(4666), 1, anon_sym_SEMI, - STATE(304), 1, - sym_declaration_list, + STATE(257), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61670] = 3, - ACTIONS(4579), 1, - anon_sym_COLON, + [61748] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4577), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61682] = 4, - ACTIONS(4299), 1, + ACTIONS(4668), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61758] = 4, + ACTIONS(4670), 1, anon_sym_COMMA, - ACTIONS(4581), 1, - anon_sym_PIPE, - STATE(1941), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(4672), 1, + anon_sym_GT, + STATE(2017), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61696] = 2, + [61772] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4583), 3, + ACTIONS(4674), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [61706] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4585), 3, - anon_sym_SEMI, + [61782] = 4, + ACTIONS(4073), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [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, - [61730] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4591), 3, + ACTIONS(4676), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [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, - [61754] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3983), 1, - anon_sym_PLUS, - STATE(1032), 1, + STATE(450), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61768] = 4, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4593), 1, - anon_sym_SEMI, - STATE(453), 1, - sym_block, + [61796] = 4, + ACTIONS(3794), 1, + anon_sym_RBRACE, + ACTIONS(4664), 1, + anon_sym_COMMA, + STATE(2079), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61782] = 4, - ACTIONS(4010), 1, + [61810] = 4, + ACTIONS(582), 1, anon_sym_LBRACE, - ACTIONS(4595), 1, - anon_sym_SEMI, - STATE(315), 1, + ACTIONS(4678), 1, + anon_sym_move, + STATE(221), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61796] = 4, - ACTIONS(3075), 1, + [61824] = 4, + ACTIONS(3167), 1, anon_sym_RPAREN, - ACTIONS(4597), 1, + ACTIONS(4680), 1, anon_sym_COMMA, - STATE(1879), 1, + STATE(1887), 1, aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61810] = 4, - ACTIONS(3738), 1, + [61838] = 4, + ACTIONS(3832), 1, anon_sym_LBRACE, - ACTIONS(4599), 1, + ACTIONS(4682), 1, anon_sym_SEMI, STATE(364), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, - [61838] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4605), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61848] = 2, + [61852] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4607), 3, + ACTIONS(4684), 3, anon_sym_SEMI, - 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, - [61872] = 4, - ACTIONS(610), 1, anon_sym_LBRACE, - ACTIONS(4609), 1, - anon_sym_move, - STATE(240), 1, - sym_block, + anon_sym_COMMA, + [61862] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61886] = 4, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(4611), 1, + ACTIONS(4686), 3, anon_sym_SEMI, - STATE(469), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [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, - [61914] = 4, - ACTIONS(3728), 1, - anon_sym_RBRACE, - ACTIONS(4615), 1, anon_sym_COMMA, - STATE(1942), 1, - aux_sym_field_declaration_list_repeat1, + [61872] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61928] = 4, - ACTIONS(4617), 1, + ACTIONS(4688), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(4620), 1, - anon_sym_PIPE, - STATE(1941), 1, - aux_sym_closure_parameters_repeat1, + [61882] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61942] = 4, - ACTIONS(4622), 1, + ACTIONS(4690), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4624), 1, anon_sym_COMMA, - STATE(1942), 1, - aux_sym_field_declaration_list_repeat1, + [61892] = 4, + ACTIONS(3832), 1, + anon_sym_LBRACE, + ACTIONS(4692), 1, + anon_sym_SEMI, + STATE(461), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61956] = 4, - ACTIONS(4627), 1, + [61906] = 4, + ACTIONS(4694), 1, anon_sym_for, - ACTIONS(4629), 1, + ACTIONS(4696), 1, anon_sym_loop, - ACTIONS(4631), 1, + ACTIONS(4698), 1, anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61970] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4633), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61980] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + [61920] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4104), 1, + sym_identifier, + STATE(2351), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4635), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61992] = 3, - ACTIONS(4189), 1, + [61934] = 3, + ACTIONS(4702), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, - [62018] = 4, - ACTIONS(4639), 1, - anon_sym_RPAREN, - ACTIONS(4641), 1, + ACTIONS(4700), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1948), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62032] = 4, - ACTIONS(4010), 1, + [61946] = 4, + ACTIONS(3832), 1, anon_sym_LBRACE, - ACTIONS(4644), 1, + ACTIONS(4704), 1, anon_sym_SEMI, - STATE(298), 1, - sym_block, + STATE(480), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62046] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + [61960] = 4, + ACTIONS(3788), 1, + anon_sym_RBRACE, + ACTIONS(4706), 1, + anon_sym_COMMA, + STATE(1963), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4646), 2, + [61974] = 4, + ACTIONS(786), 1, anon_sym_RPAREN, + ACTIONS(4290), 1, anon_sym_COMMA, - [62058] = 3, - ACTIONS(4155), 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, - [62070] = 4, - ACTIONS(2548), 1, - anon_sym_LBRACE, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - STATE(1097), 1, - sym_field_initializer_list, + STATE(2054), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62084] = 4, - ACTIONS(4650), 1, - anon_sym_RPAREN, - ACTIONS(4652), 1, + [61988] = 4, + ACTIONS(3321), 1, + anon_sym_RBRACK, + ACTIONS(4708), 1, anon_sym_COMMA, - STATE(1948), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1962), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62098] = 4, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4654), 1, - anon_sym_SEMI, - ACTIONS(4656), 1, - anon_sym_EQ, + [62002] = 4, + ACTIONS(4711), 1, + anon_sym_RBRACE, + ACTIONS(4713), 1, + anon_sym_COMMA, + STATE(1963), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62112] = 4, - ACTIONS(3983), 1, + [62016] = 3, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4658), 1, - anon_sym_as, - ACTIONS(4660), 1, - anon_sym_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62126] = 4, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(4662), 1, - anon_sym_SEMI, - STATE(419), 1, - sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62140] = 4, - ACTIONS(3740), 1, + ACTIONS(4716), 2, anon_sym_RBRACE, - ACTIONS(4664), 1, anon_sym_COMMA, - STATE(2123), 1, - aux_sym_field_initializer_list_repeat1, + [62028] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62154] = 4, - ACTIONS(4299), 1, + ACTIONS(4718), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(4666), 1, - anon_sym_PIPE, - STATE(1922), 1, - aux_sym_closure_parameters_repeat1, + [62038] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62168] = 4, - ACTIONS(3229), 1, + ACTIONS(4720), 3, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(4668), 1, anon_sym_COMMA, - STATE(1959), 1, - aux_sym_array_expression_repeat1, + [62048] = 4, + ACTIONS(786), 1, + anon_sym_RPAREN, + ACTIONS(4290), 1, + anon_sym_COMMA, + STATE(2046), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62182] = 4, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4671), 1, - sym_identifier, - STATE(2443), 1, - sym_type_arguments, + [62062] = 4, + ACTIONS(3514), 1, + anon_sym_COLON, + ACTIONS(3548), 1, + anon_sym_COLON_COLON, + STATE(1951), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62196] = 4, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(4673), 1, + [62076] = 4, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4722), 1, anon_sym_SEMI, - STATE(914), 1, - sym_declaration_list, + ACTIONS(4724), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62210] = 4, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4671), 1, + [62090] = 4, + ACTIONS(3273), 1, + anon_sym_LBRACE, + ACTIONS(4726), 1, sym_identifier, - STATE(2311), 1, - sym_type_arguments, + STATE(1973), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62224] = 2, + [62104] = 4, + ACTIONS(2624), 1, + anon_sym_LBRACE, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + STATE(1112), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4675), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [62234] = 3, - ACTIONS(4679), 1, - anon_sym_COLON, + [62118] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(4730), 1, + anon_sym_SEMI, + STATE(1040), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62132] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4677), 2, + ACTIONS(4732), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62246] = 4, - ACTIONS(3929), 1, - anon_sym_RBRACE, - ACTIONS(4681), 1, + [62142] = 4, + ACTIONS(4734), 1, + anon_sym_RPAREN, + ACTIONS(4736), 1, anon_sym_COMMA, - STATE(2015), 1, - aux_sym_struct_pattern_repeat1, + STATE(1974), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62260] = 4, - ACTIONS(916), 1, - anon_sym_GT, - ACTIONS(4683), 1, - anon_sym_COMMA, - STATE(1996), 1, - aux_sym_type_arguments_repeat1, + [62156] = 3, + ACTIONS(4065), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62274] = 4, - ACTIONS(3738), 1, + ACTIONS(4739), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62168] = 4, + ACTIONS(4073), 1, anon_sym_LBRACE, - ACTIONS(4685), 1, + ACTIONS(4741), 1, anon_sym_SEMI, - STATE(331), 1, - sym_declaration_list, + STATE(467), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62288] = 4, - ACTIONS(3937), 1, - anon_sym_RBRACE, - ACTIONS(4687), 1, + [62182] = 4, + ACTIONS(4743), 1, + anon_sym_RPAREN, + ACTIONS(4745), 1, anon_sym_COMMA, - STATE(2015), 1, - aux_sym_struct_pattern_repeat1, + STATE(1974), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62196] = 4, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4747), 1, + anon_sym_SEMI, + ACTIONS(4749), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62302] = 4, - ACTIONS(2492), 1, + [62210] = 4, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(4689), 1, + ACTIONS(4104), 1, sym_identifier, - STATE(831), 1, + STATE(2461), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62316] = 2, + [62224] = 4, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4751), 1, + anon_sym_as, + ACTIONS(4753), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4691), 3, - anon_sym_SEMI, + [62238] = 4, + ACTIONS(4755), 1, anon_sym_RBRACE, + ACTIONS(4757), 1, anon_sym_COMMA, - [62326] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + STATE(2070), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4693), 2, - anon_sym_COMMA, - anon_sym_GT, - [62338] = 4, - ACTIONS(3355), 1, + [62252] = 4, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(4695), 1, + ACTIONS(4759), 1, sym_identifier, - STATE(2443), 1, + STATE(2351), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62352] = 4, - ACTIONS(2492), 1, + [62266] = 4, + ACTIONS(3514), 1, + anon_sym_COLON, + ACTIONS(3522), 1, + anon_sym_COLON_COLON, + STATE(1951), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62280] = 4, + ACTIONS(2568), 1, anon_sym_LT2, - ACTIONS(4697), 1, + ACTIONS(4761), 1, sym_identifier, - STATE(1187), 1, + STATE(1198), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62366] = 4, - ACTIONS(3355), 1, + [62294] = 4, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(4695), 1, + ACTIONS(4759), 1, sym_identifier, - STATE(2311), 1, + STATE(2461), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62380] = 4, - ACTIONS(2357), 1, - anon_sym_RPAREN, - ACTIONS(4699), 1, + [62308] = 4, + ACTIONS(4763), 1, + anon_sym_RBRACE, + ACTIONS(4765), 1, anon_sym_COMMA, - STATE(1839), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1997), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62394] = 4, - ACTIONS(4701), 1, - anon_sym_RPAREN, - ACTIONS(4703), 1, - anon_sym_COMMA, - STATE(1976), 1, - aux_sym_tuple_type_repeat1, + [62322] = 4, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4767), 1, + anon_sym_SEMI, + ACTIONS(4769), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62408] = 4, - ACTIONS(4706), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_ref, - ACTIONS(4710), 1, - sym_mutable_specifier, + [62336] = 4, + ACTIONS(4375), 1, + anon_sym_COMMA, + ACTIONS(4771), 1, + anon_sym_PIPE, + STATE(1927), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62422] = 4, - ACTIONS(4712), 1, - anon_sym_COMMA, - ACTIONS(4715), 1, - anon_sym_GT, - STATE(1978), 1, - aux_sym_for_lifetimes_repeat1, + [62350] = 4, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4773), 1, + anon_sym_SEMI, + ACTIONS(4775), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62436] = 4, - ACTIONS(2492), 1, + [62364] = 4, + ACTIONS(2568), 1, anon_sym_LT2, - ACTIONS(4697), 1, + ACTIONS(4761), 1, sym_identifier, - STATE(1181), 1, + STATE(1199), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62450] = 4, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(4717), 1, - anon_sym_GT, - STATE(2233), 1, - sym_lifetime, + [62378] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62464] = 4, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - ACTIONS(4719), 1, - anon_sym_GT, - STATE(2233), 1, - sym_lifetime, + ACTIONS(4777), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [62388] = 4, + ACTIONS(2435), 1, + anon_sym_RPAREN, + ACTIONS(4779), 1, + anon_sym_COMMA, + STATE(1868), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62478] = 4, - ACTIONS(4719), 1, - anon_sym_GT, - ACTIONS(4721), 1, - anon_sym_COMMA, - STATE(1978), 1, - aux_sym_for_lifetimes_repeat1, + [62402] = 4, + ACTIONS(3832), 1, + anon_sym_LBRACE, + ACTIONS(4781), 1, + anon_sym_SEMI, + STATE(429), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62492] = 4, - ACTIONS(4723), 1, - anon_sym_RBRACE, - ACTIONS(4725), 1, - anon_sym_COMMA, - STATE(2102), 1, - aux_sym_use_list_repeat1, + [62416] = 3, + ACTIONS(4785), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62506] = 4, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4727), 1, - sym_identifier, - STATE(2443), 1, - sym_type_arguments, + ACTIONS(4783), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62428] = 4, + ACTIONS(4053), 1, + anon_sym_RBRACE, + ACTIONS(4787), 1, + anon_sym_COMMA, + STATE(2030), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62520] = 2, + [62442] = 4, + ACTIONS(898), 1, + anon_sym_GT, + ACTIONS(4789), 1, + anon_sym_COMMA, + STATE(2022), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4729), 3, - anon_sym_SEMI, + [62456] = 4, + ACTIONS(4041), 1, anon_sym_RBRACE, + ACTIONS(4791), 1, anon_sym_COMMA, - [62530] = 3, - ACTIONS(3983), 1, + STATE(2030), 1, + aux_sym_struct_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62470] = 3, + ACTIONS(4065), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4731), 2, + ACTIONS(4793), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [62542] = 4, - ACTIONS(3355), 1, + [62482] = 4, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(4727), 1, + ACTIONS(4795), 1, sym_identifier, - STATE(2311), 1, + STATE(2351), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, - [62570] = 4, - ACTIONS(2492), 1, + [62496] = 4, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(4689), 1, + ACTIONS(4795), 1, sym_identifier, - STATE(866), 1, + STATE(2461), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62584] = 3, - ACTIONS(4352), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4386), 2, + [62510] = 4, + ACTIONS(4793), 1, + anon_sym_RPAREN, + ACTIONS(4797), 1, 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, + STATE(2001), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62610] = 4, - ACTIONS(3784), 1, + [62524] = 4, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(4800), 1, anon_sym_GT, - ACTIONS(4739), 1, - anon_sym_COMMA, - STATE(2000), 1, - aux_sym_type_parameters_repeat1, + STATE(2300), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62624] = 4, - ACTIONS(3355), 1, + [62538] = 4, + ACTIONS(2568), 1, anon_sym_LT2, - ACTIONS(4741), 1, + ACTIONS(4802), 1, sym_identifier, - STATE(2311), 1, + STATE(832), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62638] = 2, + [62552] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4804), 1, + sym_identifier, + STATE(2461), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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, + [62566] = 4, + ACTIONS(4806), 1, + sym_identifier, + ACTIONS(4808), 1, + anon_sym_ref, + ACTIONS(4810), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62662] = 4, - ACTIONS(4751), 1, + [62580] = 4, + ACTIONS(4391), 1, anon_sym_COMMA, - ACTIONS(4754), 1, + ACTIONS(4393), 1, anon_sym_GT, STATE(1996), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62676] = 4, - ACTIONS(3355), 1, + [62594] = 4, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(4741), 1, + ACTIONS(4812), 1, sym_identifier, - STATE(2443), 1, + STATE(2351), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62690] = 4, - ACTIONS(4167), 1, - anon_sym_RPAREN, - ACTIONS(4169), 1, - anon_sym_COMMA, - STATE(1903), 1, - aux_sym_parameters_repeat1, + [62608] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4804), 1, + sym_identifier, + STATE(2351), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62704] = 4, - ACTIONS(3983), 1, + [62622] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4812), 1, + sym_identifier, + STATE(2461), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62636] = 4, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4756), 1, + ACTIONS(4814), 1, anon_sym_SEMI, - ACTIONS(4758), 1, + ACTIONS(4816), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62718] = 4, - ACTIONS(4386), 1, - anon_sym_GT, - ACTIONS(4760), 1, + [62650] = 4, + ACTIONS(4818), 1, anon_sym_COMMA, - STATE(2000), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4821), 1, + anon_sym_GT, + STATE(2011), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62732] = 4, - ACTIONS(4228), 1, + [62664] = 4, + ACTIONS(4304), 1, anon_sym_COMMA, - ACTIONS(4230), 1, + ACTIONS(4306), 1, anon_sym_GT, - STATE(2073), 1, + STATE(2084), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62746] = 4, - ACTIONS(2405), 1, - anon_sym_PLUS, - ACTIONS(4763), 1, - sym_mutable_specifier, - ACTIONS(4765), 1, - sym_self, + [62678] = 4, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(4823), 1, + anon_sym_GT, + STATE(2300), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62760] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + [62692] = 4, + ACTIONS(4825), 1, + sym_identifier, + ACTIONS(4827), 1, + anon_sym_await, + ACTIONS(4829), 1, + sym_integer_literal, 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(4769), 1, - anon_sym_SEMI, - STATE(437), 1, - sym_declaration_list, + [62706] = 4, + ACTIONS(2568), 1, + anon_sym_LT2, + ACTIONS(4802), 1, + sym_identifier, + STATE(854), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62786] = 3, - ACTIONS(2405), 1, - anon_sym_PLUS, + [62720] = 4, + ACTIONS(4831), 1, + anon_sym_for, + ACTIONS(4833), 1, + anon_sym_loop, + ACTIONS(4835), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4754), 2, - anon_sym_COMMA, + [62734] = 4, + ACTIONS(4800), 1, anon_sym_GT, - [62798] = 4, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4771), 1, - sym_identifier, - STATE(2443), 1, - sym_type_arguments, + ACTIONS(4837), 1, + anon_sym_COMMA, + STATE(2011), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62812] = 4, - ACTIONS(3750), 1, + [62748] = 4, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4773), 1, + ACTIONS(4839), 1, anon_sym_SEMI, - STATE(994), 1, + STATE(958), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62826] = 4, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(4775), 1, - anon_sym_SEMI, - STATE(481), 1, - sym_declaration_list, + [62762] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4841), 1, + sym_identifier, + STATE(2351), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62840] = 2, + [62776] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4777), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4843), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [62850] = 4, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4014), 1, - sym_identifier, - STATE(2311), 1, - sym_type_arguments, + [62786] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62864] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + ACTIONS(4845), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [62796] = 4, + ACTIONS(4847), 1, + anon_sym_COMMA, + ACTIONS(4850), 1, + anon_sym_GT, + STATE(2022), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4754), 2, - anon_sym_COMMA, - anon_sym_GT, - [62876] = 3, - ACTIONS(3983), 1, + [62810] = 3, + ACTIONS(2445), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4779), 2, + ACTIONS(4850), 2, anon_sym_COMMA, anon_sym_GT, - [62888] = 4, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4771), 1, - sym_identifier, - STATE(2311), 1, - sym_type_arguments, + [62822] = 3, + ACTIONS(4065), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62902] = 4, - ACTIONS(3722), 1, + ACTIONS(4852), 2, + anon_sym_COMMA, + anon_sym_GT, + [62834] = 4, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(4781), 1, + ACTIONS(4854), 1, anon_sym_SEMI, - STATE(2506), 1, + STATE(2521), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62916] = 4, - ACTIONS(4783), 1, - anon_sym_RBRACE, - ACTIONS(4785), 1, + [62848] = 3, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4850), 2, anon_sym_COMMA, - STATE(2015), 1, - aux_sym_struct_pattern_repeat1, + anon_sym_GT, + [62860] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4841), 1, + sym_identifier, + STATE(2461), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62930] = 4, - ACTIONS(3983), 1, + [62874] = 3, + ACTIONS(4065), 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, - [62944] = 4, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4792), 1, + ACTIONS(4856), 2, + anon_sym_COMMA, + anon_sym_GT, + [62886] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4858), 3, anon_sym_SEMI, - STATE(336), 1, - sym_block, + anon_sym_RBRACE, + anon_sym_COMMA, + [62896] = 4, + ACTIONS(4860), 1, + anon_sym_RBRACE, + ACTIONS(4862), 1, + anon_sym_COMMA, + STATE(2030), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62958] = 3, - ACTIONS(4193), 1, + [62910] = 3, + ACTIONS(4267), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4794), 2, + ACTIONS(4865), 2, anon_sym_RBRACE, anon_sym_COMMA, - [62970] = 3, - ACTIONS(4798), 1, - anon_sym_COLON, + [62922] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4796), 2, + ACTIONS(4867), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62982] = 4, - ACTIONS(3355), 1, + [62932] = 4, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(4800), 1, + ACTIONS(4869), 1, sym_identifier, - STATE(2443), 1, + STATE(2351), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62996] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4802), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [63006] = 4, - ACTIONS(3355), 1, + [62946] = 4, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(4800), 1, + ACTIONS(4869), 1, sym_identifier, - STATE(2311), 1, + STATE(2461), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63020] = 4, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4804), 1, - anon_sym_SEMI, - STATE(390), 1, - sym_block, + [62960] = 3, + ACTIONS(4424), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63034] = 4, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4806), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_block, + ACTIONS(4444), 2, + anon_sym_COMMA, + anon_sym_GT, + [62972] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63048] = 4, - ACTIONS(4808), 1, + ACTIONS(4871), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(4810), 1, - anon_sym_GT, - STATE(1982), 1, - aux_sym_for_lifetimes_repeat1, + [62982] = 4, + ACTIONS(4873), 1, + anon_sym_RBRACE, + ACTIONS(4875), 1, + anon_sym_COMMA, + STATE(2068), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63062] = 4, - ACTIONS(2454), 1, - anon_sym_RPAREN, - ACTIONS(4812), 1, - anon_sym_COMMA, - STATE(1976), 1, - aux_sym_tuple_type_repeat1, + [62996] = 3, + ACTIONS(4879), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63076] = 4, - ACTIONS(4814), 1, + ACTIONS(4877), 2, anon_sym_RBRACE, - ACTIONS(4816), 1, anon_sym_COMMA, - STATE(1968), 1, - aux_sym_struct_pattern_repeat1, + [63008] = 4, + ACTIONS(4444), 1, + anon_sym_GT, + ACTIONS(4881), 1, + anon_sym_COMMA, + STATE(2039), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63090] = 4, - ACTIONS(798), 1, - anon_sym_RPAREN, - ACTIONS(4818), 1, - anon_sym_COMMA, - STATE(2097), 1, - aux_sym_parameters_repeat1, + [63022] = 3, + ACTIONS(4065), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63104] = 3, - ACTIONS(3115), 1, - anon_sym_COLON_COLON, + ACTIONS(4884), 2, + anon_sym_COMMA, + anon_sym_GT, + [63034] = 3, + ACTIONS(4065), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4210), 2, - anon_sym_RPAREN, + ACTIONS(4886), 2, anon_sym_COMMA, - [63116] = 4, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4820), 1, + anon_sym_GT, + [63046] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(4888), 1, anon_sym_SEMI, - ACTIONS(4822), 1, - anon_sym_EQ, + STATE(901), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63130] = 4, - ACTIONS(3750), 1, + [63060] = 4, + ACTIONS(3832), 1, anon_sym_LBRACE, - ACTIONS(4824), 1, + ACTIONS(4890), 1, anon_sym_SEMI, - STATE(920), 1, + STATE(344), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63144] = 4, - ACTIONS(388), 1, - anon_sym_RPAREN, - ACTIONS(4826), 1, - anon_sym_COMMA, - STATE(2101), 1, - aux_sym_arguments_repeat1, + [63074] = 4, + ACTIONS(3832), 1, + anon_sym_LBRACE, + ACTIONS(4892), 1, + anon_sym_SEMI, + STATE(375), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63158] = 4, - ACTIONS(4828), 1, + [63088] = 4, + ACTIONS(2516), 1, anon_sym_RPAREN, - ACTIONS(4830), 1, + ACTIONS(4894), 1, anon_sym_COMMA, - STATE(1948), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2001), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63172] = 4, - ACTIONS(4004), 1, - anon_sym_LBRACE, - ACTIONS(4832), 1, - anon_sym_SEMI, - STATE(878), 1, - sym_block, + [63102] = 4, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(4896), 1, + anon_sym_COMMA, + STATE(2054), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63186] = 4, - ACTIONS(3754), 1, + [63116] = 4, + ACTIONS(4898), 1, anon_sym_RBRACE, - ACTIONS(4834), 1, + ACTIONS(4900), 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(4836), 1, - anon_sym_SEMI, - STATE(885), 1, - sym_block, + STATE(1995), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63214] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + [63130] = 3, + ACTIONS(4904), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4333), 2, - anon_sym_RPAREN, + ACTIONS(4902), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [63226] = 4, - ACTIONS(4004), 1, + [63142] = 4, + ACTIONS(4059), 1, anon_sym_LBRACE, - ACTIONS(4838), 1, + ACTIONS(4906), 1, anon_sym_SEMI, - STATE(904), 1, + STATE(855), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [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, - [63254] = 4, - ACTIONS(4004), 1, + [63156] = 4, + ACTIONS(4059), 1, anon_sym_LBRACE, - ACTIONS(4842), 1, + ACTIONS(4908), 1, anon_sym_SEMI, - STATE(947), 1, + STATE(860), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63268] = 4, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4844), 1, + [63170] = 4, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(4910), 1, anon_sym_SEMI, - ACTIONS(4846), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63282] = 4, - ACTIONS(3754), 1, - anon_sym_RBRACE, - ACTIONS(4834), 1, - anon_sym_COMMA, - STATE(1940), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2438), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63296] = 4, - ACTIONS(4004), 1, + [63184] = 4, + ACTIONS(4059), 1, anon_sym_LBRACE, - ACTIONS(4848), 1, + ACTIONS(4912), 1, anon_sym_SEMI, - STATE(965), 1, + STATE(865), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63310] = 4, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(4850), 1, - anon_sym_SEMI, - STATE(976), 1, - sym_declaration_list, + [63198] = 3, + ACTIONS(3175), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63324] = 4, - ACTIONS(3750), 1, + ACTIONS(4269), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63210] = 4, + ACTIONS(4413), 1, + anon_sym_RPAREN, + ACTIONS(4914), 1, + anon_sym_COMMA, + STATE(2054), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63224] = 3, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4413), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63236] = 4, + ACTIONS(4059), 1, anon_sym_LBRACE, - ACTIONS(4852), 1, + ACTIONS(4917), 1, anon_sym_SEMI, - STATE(988), 1, - sym_declaration_list, + STATE(908), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63338] = 4, - ACTIONS(3983), 1, + [63250] = 4, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4854), 1, + ACTIONS(4919), 1, anon_sym_SEMI, - ACTIONS(4856), 1, + ACTIONS(4921), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63352] = 4, - ACTIONS(4340), 1, - anon_sym_COMMA, - ACTIONS(4342), 1, - anon_sym_GT, - STATE(1966), 1, - aux_sym_type_arguments_repeat1, + [63264] = 4, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4923), 1, + anon_sym_SEMI, + ACTIONS(4925), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63366] = 4, - ACTIONS(3355), 1, - anon_sym_LT2, - ACTIONS(4840), 1, - sym_identifier, - STATE(2443), 1, - sym_type_arguments, + [63278] = 4, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4927), 1, + anon_sym_SEMI, + ACTIONS(4929), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63380] = 4, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(4858), 1, + [63292] = 4, + ACTIONS(4059), 1, + anon_sym_LBRACE, + ACTIONS(4931), 1, anon_sym_SEMI, - STATE(2470), 1, - sym_where_clause, + STATE(934), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63394] = 4, - ACTIONS(4004), 1, + [63306] = 4, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4860), 1, + ACTIONS(4933), 1, anon_sym_SEMI, - STATE(1012), 1, - sym_block, + STATE(953), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63408] = 4, - ACTIONS(4862), 1, + [63320] = 4, + ACTIONS(4935), 1, anon_sym_RBRACE, - ACTIONS(4864), 1, + ACTIONS(4937), 1, anon_sym_COMMA, - STATE(2124), 1, + STATE(2134), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63422] = 2, + [63334] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4335), 3, + ACTIONS(4939), 3, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, - [63432] = 4, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(4866), 1, - anon_sym_SEMI, - STATE(401), 1, - sym_declaration_list, + [63344] = 4, + ACTIONS(4941), 1, + anon_sym_RPAREN, + ACTIONS(4943), 1, + anon_sym_COMMA, + STATE(1974), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63446] = 4, - ACTIONS(4004), 1, + [63358] = 4, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4868), 1, + ACTIONS(4945), 1, anon_sym_SEMI, - STATE(1019), 1, - sym_block, + STATE(961), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63460] = 4, - ACTIONS(3768), 1, - anon_sym_RBRACE, - ACTIONS(4870), 1, - anon_sym_COMMA, - STATE(2066), 1, - aux_sym_enum_variant_list_repeat2, + [63372] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63474] = 3, - ACTIONS(4874), 1, + ACTIONS(4415), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [63382] = 4, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(4947), 1, + anon_sym_SEMI, + ACTIONS(4949), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4872), 2, + [63396] = 4, + ACTIONS(3822), 1, anon_sym_RBRACE, + ACTIONS(4951), 1, anon_sym_COMMA, - [63486] = 4, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(4876), 1, - anon_sym_SEMI, - STATE(992), 1, - sym_declaration_list, + STATE(1963), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63500] = 4, - ACTIONS(4224), 1, + [63410] = 4, + ACTIONS(4286), 1, anon_sym_RPAREN, - ACTIONS(4226), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - STATE(2119), 1, + STATE(2136), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63514] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4878), 3, - anon_sym_SEMI, + [63424] = 4, + ACTIONS(3373), 1, anon_sym_RBRACE, + ACTIONS(4953), 1, anon_sym_COMMA, - [63524] = 4, - ACTIONS(2367), 1, - anon_sym_RBRACK, - ACTIONS(4880), 1, - anon_sym_COMMA, - STATE(1839), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2121), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63538] = 2, + [63438] = 4, + ACTIONS(4059), 1, + anon_sym_LBRACE, + ACTIONS(4955), 1, + anon_sym_SEMI, + STATE(974), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4882), 3, - anon_sym_SEMI, + [63452] = 4, + ACTIONS(3822), 1, anon_sym_RBRACE, + ACTIONS(4951), 1, anon_sym_COMMA, - [63548] = 4, - ACTIONS(4004), 1, + STATE(1960), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63466] = 4, + ACTIONS(4059), 1, anon_sym_LBRACE, - ACTIONS(4884), 1, + ACTIONS(4957), 1, anon_sym_SEMI, - STATE(887), 1, + STATE(867), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63562] = 2, + [63480] = 4, + ACTIONS(4235), 1, + anon_sym_RPAREN, + ACTIONS(4237), 1, + anon_sym_COMMA, + STATE(1961), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4886), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63572] = 2, + [63494] = 4, + ACTIONS(2445), 1, + anon_sym_PLUS, + ACTIONS(4959), 1, + sym_mutable_specifier, + ACTIONS(4961), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4888), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63582] = 4, - ACTIONS(4364), 1, + [63508] = 4, + ACTIONS(4436), 1, anon_sym_COMMA, - ACTIONS(4366), 1, + ACTIONS(4438), 1, anon_sym_GT, - STATE(2113), 1, + STATE(2141), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63596] = 4, - ACTIONS(4890), 1, - anon_sym_RBRACE, - ACTIONS(4892), 1, - anon_sym_COMMA, - STATE(2066), 1, - aux_sym_enum_variant_list_repeat2, + [63522] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63610] = 4, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(4895), 1, + ACTIONS(4963), 3, anon_sym_SEMI, - STATE(981), 1, - sym_declaration_list, + anon_sym_RBRACE, + anon_sym_COMMA, + [63532] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4965), 1, + sym_identifier, + STATE(2461), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63624] = 4, - ACTIONS(3766), 1, + [63546] = 4, + ACTIONS(3858), 1, anon_sym_RBRACE, - ACTIONS(4897), 1, + ACTIONS(4967), 1, anon_sym_COMMA, - STATE(1942), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2088), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63638] = 4, - ACTIONS(2444), 1, + [63560] = 4, + ACTIONS(2522), 1, anon_sym_RPAREN, - ACTIONS(4899), 1, + ACTIONS(4969), 1, anon_sym_COMMA, - STATE(1976), 1, + STATE(2001), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63652] = 4, - ACTIONS(4901), 1, - anon_sym_RBRACE, - ACTIONS(4903), 1, - anon_sym_COMMA, - STATE(2070), 1, - aux_sym_use_list_repeat1, + [63574] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4965), 1, + sym_identifier, + STATE(2351), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63666] = 4, - ACTIONS(3760), 1, + [63588] = 4, + ACTIONS(3812), 1, anon_sym_GT, - ACTIONS(4906), 1, + ACTIONS(4971), 1, anon_sym_COMMA, - STATE(2000), 1, + STATE(2039), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63680] = 2, + [63602] = 4, + ACTIONS(4059), 1, + anon_sym_LBRACE, + ACTIONS(4973), 1, + anon_sym_SEMI, + STATE(1037), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4908), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [63690] = 4, - ACTIONS(3746), 1, + [63616] = 4, + ACTIONS(3804), 1, anon_sym_GT, - ACTIONS(4910), 1, + ACTIONS(4975), 1, anon_sym_COMMA, - STATE(2000), 1, + STATE(2039), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63704] = 4, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4912), 1, - anon_sym_SEMI, - ACTIONS(4914), 1, + [63630] = 3, + ACTIONS(4979), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63718] = 4, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4916), 1, - anon_sym_SEMI, - ACTIONS(4918), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63732] = 4, - ACTIONS(3750), 1, + ACTIONS(4977), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63642] = 4, + ACTIONS(3832), 1, anon_sym_LBRACE, - ACTIONS(4920), 1, + ACTIONS(4981), 1, anon_sym_SEMI, - STATE(867), 1, + STATE(410), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63746] = 4, - ACTIONS(3750), 1, + [63656] = 4, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(4983), 1, anon_sym_SEMI, - STATE(963), 1, + STATE(846), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63760] = 4, - ACTIONS(4924), 1, - anon_sym_RPAREN, - ACTIONS(4926), 1, + [63670] = 4, + ACTIONS(4985), 1, + anon_sym_RBRACE, + ACTIONS(4987), 1, anon_sym_COMMA, - STATE(1931), 1, - aux_sym_meta_arguments_repeat1, + STATE(2088), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63774] = 4, - ACTIONS(3983), 1, + [63684] = 4, + ACTIONS(4059), 1, + anon_sym_LBRACE, + ACTIONS(4990), 1, + anon_sym_SEMI, + STATE(1017), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63698] = 4, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4928), 1, + ACTIONS(4992), 1, anon_sym_SEMI, - ACTIONS(4930), 1, + ACTIONS(4994), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63788] = 2, + [63712] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(4996), 1, + anon_sym_SEMI, + STATE(1014), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4932), 3, + [63726] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(4998), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63798] = 2, + STATE(1008), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4934), 3, - anon_sym_SEMI, + [63740] = 4, + ACTIONS(3860), 1, anon_sym_RBRACE, + ACTIONS(5000), 1, anon_sym_COMMA, - [63808] = 4, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(4936), 1, - anon_sym_SEMI, - STATE(956), 1, - sym_declaration_list, + STATE(1963), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63822] = 4, - ACTIONS(4004), 1, - anon_sym_LBRACE, - ACTIONS(4938), 1, + [63754] = 4, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(5002), 1, anon_sym_SEMI, - STATE(938), 1, - sym_block, + ACTIONS(5004), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63836] = 4, - ACTIONS(790), 1, - anon_sym_RPAREN, - ACTIONS(4940), 1, - anon_sym_COMMA, - STATE(2097), 1, - aux_sym_parameters_repeat1, + [63768] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(5006), 1, + anon_sym_SEMI, + STATE(994), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63850] = 4, - ACTIONS(3764), 1, - anon_sym_RBRACE, - ACTIONS(4942), 1, - anon_sym_COMMA, - STATE(2066), 1, - aux_sym_enum_variant_list_repeat2, + [63782] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(5008), 1, + anon_sym_SEMI, + STATE(992), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63864] = 2, + [63796] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4944), 3, + ACTIONS(5010), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [63874] = 4, - ACTIONS(3983), 1, + [63806] = 4, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4946), 1, + ACTIONS(5012), 1, anon_sym_SEMI, - ACTIONS(4948), 1, + ACTIONS(5014), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63888] = 4, - ACTIONS(3738), 1, + [63820] = 4, + ACTIONS(4059), 1, anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(5016), 1, anon_sym_SEMI, - STATE(413), 1, - sym_declaration_list, + STATE(987), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63902] = 4, - ACTIONS(4952), 1, + [63834] = 4, + ACTIONS(5018), 1, anon_sym_RBRACE, - ACTIONS(4954), 1, + ACTIONS(5020), 1, anon_sym_COMMA, - STATE(2104), 1, + STATE(2122), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63916] = 4, - ACTIONS(3722), 1, + [63848] = 4, + ACTIONS(794), 1, + anon_sym_RPAREN, + ACTIONS(5022), 1, + anon_sym_COMMA, + STATE(2054), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63862] = 4, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5024), 1, anon_sym_SEMI, - STATE(2312), 1, + STATE(2544), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63930] = 4, - ACTIONS(3722), 1, + [63876] = 4, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(5026), 1, anon_sym_SEMI, - STATE(2513), 1, + STATE(2498), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63944] = 4, - ACTIONS(3983), 1, + [63890] = 4, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4960), 1, + ACTIONS(5028), 1, anon_sym_SEMI, - ACTIONS(4962), 1, - anon_sym_EQ, + ACTIONS(5030), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63904] = 4, + ACTIONS(3864), 1, + anon_sym_RBRACE, + ACTIONS(5032), 1, + anon_sym_COMMA, + STATE(2088), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63958] = 4, - ACTIONS(4004), 1, + [63918] = 4, + ACTIONS(4073), 1, anon_sym_LBRACE, - ACTIONS(4964), 1, + ACTIONS(5034), 1, anon_sym_SEMI, - STATE(873), 1, + STATE(304), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63972] = 4, - ACTIONS(552), 1, - anon_sym_RBRACK, - ACTIONS(3109), 1, + [63932] = 4, + ACTIONS(386), 1, + anon_sym_RPAREN, + ACTIONS(5036), 1, anon_sym_COMMA, - STATE(1959), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63986] = 2, + STATE(2109), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4966), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63996] = 4, - ACTIONS(3786), 1, - anon_sym_GT, - ACTIONS(4968), 1, + [63946] = 4, + ACTIONS(520), 1, + anon_sym_RBRACK, + ACTIONS(3197), 1, anon_sym_COMMA, - STATE(2000), 1, - aux_sym_type_parameters_repeat1, + STATE(1962), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64010] = 4, - ACTIONS(4333), 1, + [63960] = 4, + ACTIONS(3299), 1, anon_sym_RPAREN, - ACTIONS(4970), 1, + ACTIONS(5038), 1, anon_sym_COMMA, - STATE(2097), 1, - aux_sym_parameters_repeat1, + STATE(2109), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64024] = 4, - ACTIONS(3750), 1, + [63974] = 4, + ACTIONS(3832), 1, anon_sym_LBRACE, - ACTIONS(4973), 1, + ACTIONS(5041), 1, anon_sym_SEMI, - STATE(856), 1, + STATE(411), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64038] = 2, + [63988] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(5043), 1, + anon_sym_SEMI, + STATE(787), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4975), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [64048] = 4, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(4977), 1, + [64002] = 4, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(5045), 1, anon_sym_SEMI, - STATE(809), 1, - sym_declaration_list, + STATE(2512), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64062] = 4, - ACTIONS(3211), 1, + [64016] = 4, + ACTIONS(2429), 1, anon_sym_RPAREN, - ACTIONS(4979), 1, + ACTIONS(5047), 1, anon_sym_COMMA, - STATE(2101), 1, - aux_sym_arguments_repeat1, + STATE(1868), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64030] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64076] = 4, - ACTIONS(3267), 1, + ACTIONS(5049), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4982), 1, anon_sym_COMMA, - STATE(2070), 1, - aux_sym_use_list_repeat1, + [64040] = 4, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(5051), 1, + anon_sym_SEMI, + ACTIONS(5053), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64090] = 2, + [64054] = 4, + ACTIONS(4059), 1, + anon_sym_LBRACE, + ACTIONS(5055), 1, + anon_sym_SEMI, + STATE(944), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4984), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [64100] = 4, - ACTIONS(3756), 1, - anon_sym_RBRACE, - ACTIONS(4436), 1, - anon_sym_COMMA, - STATE(1942), 1, - aux_sym_field_declaration_list_repeat1, + [64068] = 4, + ACTIONS(4073), 1, + anon_sym_LBRACE, + ACTIONS(5057), 1, + anon_sym_SEMI, + STATE(312), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64114] = 4, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4986), 1, + [64082] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(5059), 1, anon_sym_SEMI, - ACTIONS(4988), 1, - anon_sym_EQ, + STATE(783), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64128] = 4, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(4990), 1, + [64096] = 4, + ACTIONS(3782), 1, + anon_sym_where, + ACTIONS(5061), 1, anon_sym_SEMI, - ACTIONS(4992), 1, - anon_sym_EQ, + STATE(2537), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64142] = 2, + [64110] = 4, + ACTIONS(3868), 1, + anon_sym_RBRACE, + ACTIONS(5063), 1, + anon_sym_COMMA, + STATE(2093), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4994), 3, - anon_sym_SEMI, + [64124] = 4, + ACTIONS(5065), 1, + anon_sym_RBRACE, + ACTIONS(5067), 1, + anon_sym_COMMA, + STATE(2121), 1, + aux_sym_use_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64138] = 4, + ACTIONS(3868), 1, anon_sym_RBRACE, + ACTIONS(5063), 1, anon_sym_COMMA, + STATE(1963), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, [64152] = 4, - ACTIONS(3722), 1, - anon_sym_where, - ACTIONS(4996), 1, + ACTIONS(2437), 1, + anon_sym_RBRACK, + ACTIONS(5070), 1, + anon_sym_COMMA, + STATE(1868), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64166] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5072), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [64176] = 4, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(5074), 1, anon_sym_SEMI, - STATE(2507), 1, - sym_where_clause, + ACTIONS(5076), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64166] = 4, - ACTIONS(3750), 1, + [64190] = 4, + ACTIONS(3832), 1, anon_sym_LBRACE, - ACTIONS(4998), 1, + ACTIONS(5078), 1, anon_sym_SEMI, - STATE(835), 1, + STATE(369), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64180] = 4, - ACTIONS(3750), 1, - anon_sym_LBRACE, - ACTIONS(5000), 1, + [64204] = 4, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(5080), 1, anon_sym_SEMI, - STATE(800), 1, - sym_declaration_list, + ACTIONS(5082), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64194] = 4, - ACTIONS(4084), 1, + [64218] = 4, + ACTIONS(5084), 1, + anon_sym_RPAREN, + ACTIONS(5086), 1, anon_sym_COMMA, - ACTIONS(4086), 1, - anon_sym_GT, - STATE(2096), 1, - aux_sym_type_parameters_repeat1, + STATE(1949), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64208] = 4, - ACTIONS(5002), 1, - anon_sym_RBRACE, - ACTIONS(5004), 1, - anon_sym_COMMA, - STATE(1965), 1, - aux_sym_struct_pattern_repeat1, + [64232] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64222] = 4, - ACTIONS(898), 1, - anon_sym_GT, - ACTIONS(5006), 1, + ACTIONS(5088), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1996), 1, - aux_sym_type_arguments_repeat1, + [64242] = 4, + ACTIONS(3818), 1, + anon_sym_LBRACE, + ACTIONS(5090), 1, + anon_sym_SEMI, + STATE(880), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64236] = 4, - ACTIONS(3722), 1, + [64256] = 4, + ACTIONS(3782), 1, anon_sym_where, - ACTIONS(5008), 1, + ACTIONS(5092), 1, anon_sym_SEMI, - STATE(2394), 1, + STATE(2402), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64250] = 4, - ACTIONS(4004), 1, + [64270] = 4, + ACTIONS(3818), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(5094), 1, anon_sym_SEMI, - STATE(782), 1, - sym_block, + STATE(862), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64264] = 3, - ACTIONS(5014), 1, - anon_sym_COLON, + [64284] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5012), 2, + ACTIONS(5096), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [64294] = 4, + ACTIONS(3840), 1, anon_sym_RBRACE, + ACTIONS(5098), 1, anon_sym_COMMA, - [64276] = 4, - ACTIONS(794), 1, - anon_sym_RPAREN, - ACTIONS(4200), 1, + STATE(2088), 1, + aux_sym_enum_variant_list_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64308] = 4, + ACTIONS(3840), 1, + anon_sym_RBRACE, + ACTIONS(5098), 1, anon_sym_COMMA, - STATE(2084), 1, - aux_sym_parameters_repeat1, + STATE(2105), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64290] = 4, - ACTIONS(3738), 1, - anon_sym_LBRACE, - ACTIONS(5016), 1, - anon_sym_SEMI, - STATE(425), 1, - sym_declaration_list, + [64322] = 4, + ACTIONS(790), 1, + anon_sym_RPAREN, + ACTIONS(4274), 1, + anon_sym_COMMA, + STATE(2054), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64304] = 4, - ACTIONS(794), 1, + [64336] = 4, + ACTIONS(790), 1, anon_sym_RPAREN, - ACTIONS(4200), 1, + ACTIONS(4274), 1, anon_sym_COMMA, - STATE(2097), 1, + STATE(2101), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64318] = 4, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(5018), 1, + [64350] = 4, + ACTIONS(4059), 1, + anon_sym_LBRACE, + ACTIONS(5100), 1, anon_sym_SEMI, - ACTIONS(5020), 1, - anon_sym_EQ, + STATE(839), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64332] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, + [64364] = 4, + ACTIONS(5102), 1, + anon_sym_RBRACE, + ACTIONS(5104), 1, + anon_sym_COMMA, + STATE(2139), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4701), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64344] = 4, - ACTIONS(3762), 1, - anon_sym_RBRACE, - ACTIONS(5022), 1, + [64378] = 4, + ACTIONS(4073), 1, + anon_sym_LBRACE, + ACTIONS(5107), 1, + anon_sym_SEMI, + STATE(346), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64392] = 4, + ACTIONS(922), 1, + anon_sym_GT, + ACTIONS(5109), 1, anon_sym_COMMA, - STATE(2085), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2022), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64358] = 4, - ACTIONS(5024), 1, - anon_sym_RBRACE, - ACTIONS(5026), 1, - anon_sym_COMMA, - STATE(2123), 1, - aux_sym_field_initializer_list_repeat1, + [64406] = 3, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(5111), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64372] = 4, - ACTIONS(3762), 1, - anon_sym_RBRACE, - ACTIONS(5022), 1, - anon_sym_COMMA, - STATE(2066), 1, - aux_sym_enum_variant_list_repeat2, + [64417] = 3, + ACTIONS(4067), 1, + anon_sym_LBRACE, + STATE(1001), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64386] = 3, - ACTIONS(15), 1, + [64428] = 3, + ACTIONS(3832), 1, anon_sym_LBRACE, - STATE(92), 1, - sym_block, + STATE(389), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64397] = 3, - ACTIONS(5029), 1, - anon_sym_SEMI, - ACTIONS(5031), 1, + [64439] = 3, + ACTIONS(3435), 1, + anon_sym_LPAREN, + STATE(1380), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64450] = 3, + ACTIONS(4035), 1, anon_sym_RBRACE, + ACTIONS(5113), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64408] = 3, - ACTIONS(5029), 1, + [64461] = 3, + ACTIONS(5113), 1, anon_sym_SEMI, - ACTIONS(5033), 1, + ACTIONS(5115), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64419] = 3, - ACTIONS(4046), 1, + [64472] = 3, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(5117), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64483] = 3, + ACTIONS(3832), 1, anon_sym_LBRACE, - STATE(329), 1, - sym_enum_variant_list, + STATE(388), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64430] = 3, - ACTIONS(3744), 1, + [64494] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5102), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64503] = 3, + ACTIONS(4118), 1, anon_sym_LBRACE, - STATE(458), 1, - sym_field_declaration_list, + STATE(338), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64441] = 2, + [64514] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5035), 2, + ACTIONS(5119), 2, sym_identifier, sym_metavariable, - [64450] = 3, + [64523] = 3, ACTIONS(15), 1, anon_sym_LBRACE, STATE(149), 1, @@ -122384,678 +123255,669 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64461] = 2, + [64534] = 3, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(394), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5024), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64470] = 3, - ACTIONS(5037), 1, + [64545] = 3, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5039), 1, + ACTIONS(5123), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64481] = 3, - ACTIONS(2937), 1, - anon_sym_COLON, - ACTIONS(3983), 1, - anon_sym_PLUS, + [64556] = 3, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(326), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64492] = 3, - ACTIONS(4046), 1, - anon_sym_LBRACE, - STATE(354), 1, - sym_enum_variant_list, + [64567] = 3, + ACTIONS(5113), 1, + anon_sym_SEMI, + ACTIONS(5125), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64503] = 3, - ACTIONS(3359), 1, - anon_sym_LPAREN, - STATE(1372), 1, - sym_parameters, + [64578] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64514] = 3, - ACTIONS(5041), 1, - sym_identifier, - ACTIONS(5043), 1, - sym_mutable_specifier, + ACTIONS(4549), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64587] = 3, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(5127), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64525] = 3, - ACTIONS(3744), 1, - anon_sym_LBRACE, - STATE(324), 1, - sym_field_declaration_list, + [64598] = 3, + ACTIONS(4051), 1, + anon_sym_RPAREN, + ACTIONS(5113), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64536] = 3, - ACTIONS(4446), 1, + [64609] = 3, + ACTIONS(4529), 1, sym_identifier, - ACTIONS(4450), 1, + ACTIONS(4533), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64547] = 3, - ACTIONS(3720), 1, + [64620] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(781), 1, + STATE(323), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64558] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(5045), 1, + [64631] = 3, + ACTIONS(5129), 1, anon_sym_SEMI, + ACTIONS(5131), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64569] = 3, - ACTIONS(3744), 1, + [64642] = 3, + ACTIONS(3780), 1, anon_sym_LBRACE, - STATE(322), 1, + STATE(821), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64580] = 3, - ACTIONS(4193), 1, + [64653] = 3, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(5047), 1, + ACTIONS(5133), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64591] = 3, - ACTIONS(3738), 1, + [64664] = 3, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(321), 1, + STATE(898), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64602] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5049), 1, - anon_sym_in, + [64675] = 3, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(5135), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64613] = 3, - ACTIONS(3720), 1, + [64686] = 3, + ACTIONS(3832), 1, anon_sym_LBRACE, - STATE(788), 1, - sym_field_declaration_list, + STATE(322), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64624] = 3, - ACTIONS(3987), 1, + [64697] = 3, + ACTIONS(3780), 1, anon_sym_LBRACE, - STATE(793), 1, - sym_enum_variant_list, + STATE(813), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64635] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5051), 1, - anon_sym_EQ, + [64708] = 3, + ACTIONS(5137), 1, + anon_sym_LT, + STATE(681), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64646] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_EQ, + [64719] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(929), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64657] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5055), 1, - anon_sym_in, + [64730] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(930), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64668] = 3, - ACTIONS(3359), 1, - anon_sym_LPAREN, - STATE(1669), 1, - sym_parameters, + [64741] = 3, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(385), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64679] = 3, - ACTIONS(4193), 1, + [64752] = 3, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(5057), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64690] = 3, - ACTIONS(3738), 1, - anon_sym_LBRACE, - STATE(463), 1, - sym_declaration_list, + ACTIONS(5139), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64701] = 3, - ACTIONS(4193), 1, + [64763] = 3, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(5059), 1, - anon_sym_in, + ACTIONS(5141), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64712] = 3, - ACTIONS(3750), 1, + [64774] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(841), 1, - sym_declaration_list, + STATE(329), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64723] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(5061), 1, - anon_sym_SEMI, + [64785] = 3, + ACTIONS(4067), 1, + anon_sym_LBRACE, + STATE(785), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64734] = 3, - ACTIONS(3750), 1, - anon_sym_LBRACE, - STATE(805), 1, - sym_declaration_list, + [64796] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64745] = 3, - ACTIONS(3720), 1, + ACTIONS(5065), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64805] = 3, + ACTIONS(4067), 1, anon_sym_LBRACE, - STATE(818), 1, - sym_field_declaration_list, + STATE(946), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64756] = 2, + [64816] = 3, + ACTIONS(4267), 1, + anon_sym_PIPE, + ACTIONS(5143), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5063), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64765] = 3, - ACTIONS(3750), 1, - anon_sym_LBRACE, - STATE(862), 1, - sym_declaration_list, + [64827] = 3, + ACTIONS(4267), 1, + anon_sym_PIPE, + ACTIONS(5145), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64776] = 3, - ACTIONS(3750), 1, + [64838] = 3, + ACTIONS(3780), 1, anon_sym_LBRACE, - STATE(863), 1, - sym_declaration_list, + STATE(951), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64787] = 3, - ACTIONS(3983), 1, + [64849] = 3, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(5065), 1, + ACTIONS(5147), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64798] = 3, - ACTIONS(3750), 1, + [64860] = 3, + ACTIONS(3780), 1, anon_sym_LBRACE, - STATE(823), 1, - sym_declaration_list, + STATE(956), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64809] = 3, - ACTIONS(3500), 1, - anon_sym_COLON_COLON, - ACTIONS(5067), 1, - anon_sym_BANG, + [64871] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(957), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64820] = 3, - ACTIONS(4193), 1, + [64882] = 3, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(5069), 1, + ACTIONS(5149), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64831] = 3, - ACTIONS(3750), 1, - anon_sym_LBRACE, - STATE(824), 1, - sym_declaration_list, + [64893] = 3, + ACTIONS(3435), 1, + anon_sym_LPAREN, + STATE(1669), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64842] = 3, - ACTIONS(3720), 1, + [64904] = 3, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(825), 1, - sym_field_declaration_list, + STATE(786), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64853] = 3, - ACTIONS(3987), 1, + [64915] = 3, + ACTIONS(3780), 1, anon_sym_LBRACE, - STATE(876), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64864] = 2, + STATE(793), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5071), 2, - sym_identifier, - sym_metavariable, - [64873] = 3, - ACTIONS(3744), 1, - anon_sym_LBRACE, - STATE(371), 1, - sym_field_declaration_list, + [64926] = 3, + ACTIONS(4267), 1, + anon_sym_PIPE, + ACTIONS(5151), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64884] = 3, - ACTIONS(3720), 1, - anon_sym_LBRACE, - STATE(889), 1, - sym_field_declaration_list, + [64937] = 3, + ACTIONS(2926), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64895] = 3, - ACTIONS(3983), 1, + [64948] = 3, + ACTIONS(2930), 1, + anon_sym_COLON, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(5073), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64906] = 3, - ACTIONS(3720), 1, + [64959] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(770), 1, - sym_field_declaration_list, + STATE(94), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64917] = 3, - ACTIONS(3750), 1, - anon_sym_LBRACE, - STATE(894), 1, - sym_declaration_list, + [64970] = 3, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1944), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64928] = 3, - ACTIONS(4193), 1, + [64981] = 3, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(5075), 1, + ACTIONS(5153), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64939] = 3, - ACTIONS(3967), 1, - anon_sym_RBRACE, - ACTIONS(5029), 1, + [64992] = 3, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(5155), 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, + [65003] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(800), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64961] = 3, - ACTIONS(3965), 1, - anon_sym_RPAREN, - ACTIONS(5029), 1, - anon_sym_SEMI, + [65014] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(804), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64972] = 3, - ACTIONS(3738), 1, - anon_sym_LBRACE, - STATE(461), 1, - sym_declaration_list, + [65025] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64983] = 3, - ACTIONS(2722), 1, - anon_sym_COLON, - ACTIONS(3983), 1, - anon_sym_PLUS, + ACTIONS(5157), 2, + sym_identifier, + sym_metavariable, + [65034] = 3, + ACTIONS(3780), 1, + anon_sym_LBRACE, + STATE(808), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64994] = 3, - ACTIONS(4193), 1, + [65045] = 3, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(5079), 1, + ACTIONS(5159), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65005] = 3, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(5077), 1, - anon_sym_RPAREN, + [65056] = 3, + ACTIONS(3832), 1, + anon_sym_LBRACE, + STATE(396), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65016] = 3, - ACTIONS(2726), 1, - anon_sym_COLON, - ACTIONS(3983), 1, - anon_sym_PLUS, + [65067] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65027] = 2, + ACTIONS(5161), 2, + sym_identifier, + sym_metavariable, + [65076] = 3, + ACTIONS(3971), 1, + anon_sym_COLON_COLON, + ACTIONS(5163), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4492), 2, + [65087] = 3, + ACTIONS(3979), 1, + anon_sym_COLON_COLON, + ACTIONS(5163), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [65036] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5081), 2, - sym_identifier, - sym_metavariable, - [65045] = 3, - ACTIONS(3911), 1, + [65098] = 3, + ACTIONS(4267), 1, + anon_sym_PIPE, + ACTIONS(5165), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65109] = 3, + ACTIONS(3981), 1, anon_sym_COLON_COLON, - ACTIONS(5077), 1, + ACTIONS(5163), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65056] = 3, - ACTIONS(3744), 1, - anon_sym_LBRACE, - STATE(340), 1, - sym_field_declaration_list, + [65120] = 3, + ACTIONS(3435), 1, + anon_sym_LPAREN, + STATE(1684), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65067] = 3, - ACTIONS(3494), 1, + [65131] = 3, + ACTIONS(3971), 1, anon_sym_COLON_COLON, - ACTIONS(5083), 1, + ACTIONS(5167), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65078] = 3, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(2025), 1, - sym_lifetime, + [65142] = 3, + ACTIONS(3580), 1, + anon_sym_COLON_COLON, + ACTIONS(5169), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65089] = 3, - ACTIONS(3963), 1, - anon_sym_RBRACE, - ACTIONS(5029), 1, - anon_sym_SEMI, + [65153] = 3, + ACTIONS(4267), 1, + anon_sym_PIPE, + ACTIONS(5171), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65100] = 3, - ACTIONS(2484), 1, - anon_sym_LPAREN, - STATE(865), 1, - sym_parameters, + [65164] = 3, + ACTIONS(3006), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65111] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5085), 1, - anon_sym_in, + [65175] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65122] = 3, - ACTIONS(5087), 1, - anon_sym_SEMI, - ACTIONS(5089), 1, - anon_sym_as, + ACTIONS(4985), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65184] = 3, + ACTIONS(3832), 1, + anon_sym_LBRACE, + STATE(418), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65133] = 3, - ACTIONS(3744), 1, + [65195] = 3, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(474), 1, - sym_field_declaration_list, + STATE(1015), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65144] = 3, - ACTIONS(5091), 1, - anon_sym_LBRACK, - ACTIONS(5093), 1, - anon_sym_BANG, + [65206] = 3, + ACTIONS(3832), 1, + anon_sym_LBRACE, + STATE(401), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65155] = 2, + [65217] = 3, + ACTIONS(3832), 1, + anon_sym_LBRACE, + STATE(402), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5095), 2, - sym_identifier, - sym_metavariable, - [65164] = 2, + [65228] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4901), 2, + ACTIONS(5173), 2, anon_sym_RBRACE, anon_sym_COMMA, - [65173] = 2, + [65237] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4890), 2, - anon_sym_RBRACE, + ACTIONS(4522), 2, anon_sym_COMMA, - [65182] = 3, - ACTIONS(3951), 1, - anon_sym_RPAREN, - ACTIONS(5029), 1, - anon_sym_SEMI, + anon_sym_PIPE, + [65246] = 3, + ACTIONS(3818), 1, + anon_sym_LBRACE, + STATE(1026), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65193] = 3, - ACTIONS(3738), 1, + [65257] = 3, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(381), 1, + STATE(1027), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65204] = 3, - ACTIONS(3750), 1, - anon_sym_LBRACE, - STATE(993), 1, - sym_declaration_list, + [65268] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65215] = 3, - ACTIONS(4046), 1, - anon_sym_LBRACE, - STATE(375), 1, - sym_enum_variant_list, + ACTIONS(5175), 2, + sym_identifier, + sym_metavariable, + [65277] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65226] = 3, - ACTIONS(2961), 1, - anon_sym_COLON, - ACTIONS(3983), 1, - anon_sym_PLUS, + ACTIONS(5177), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65286] = 3, + ACTIONS(2560), 1, + anon_sym_LPAREN, + STATE(844), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65237] = 3, - ACTIONS(5097), 1, - anon_sym_LBRACK, - ACTIONS(5099), 1, - anon_sym_BANG, + [65297] = 3, + ACTIONS(4267), 1, + anon_sym_PIPE, + ACTIONS(5179), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65248] = 3, - ACTIONS(3983), 1, + [65308] = 3, + ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(5101), 1, + ACTIONS(5181), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65259] = 3, - ACTIONS(3750), 1, + [65319] = 3, + ACTIONS(4118), 1, anon_sym_LBRACE, - STATE(1008), 1, - sym_declaration_list, + STATE(428), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65270] = 3, - ACTIONS(3750), 1, - anon_sym_LBRACE, - STATE(1010), 1, - sym_declaration_list, + [65330] = 3, + ACTIONS(5183), 1, + anon_sym_LBRACK, + ACTIONS(5185), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65281] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(5103), 1, - anon_sym_SEMI, + [65341] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65292] = 3, - ACTIONS(15), 1, + ACTIONS(5187), 2, + sym_identifier, + sym_metavariable, + [65350] = 3, + ACTIONS(3832), 1, anon_sym_LBRACE, - STATE(85), 1, - sym_block, + STATE(420), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65303] = 3, - ACTIONS(3738), 1, - anon_sym_LBRACE, - STATE(254), 1, - sym_declaration_list, + [65361] = 3, + ACTIONS(4263), 1, + anon_sym_COLON, + ACTIONS(4267), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65314] = 3, - ACTIONS(3987), 1, - anon_sym_LBRACE, - STATE(898), 1, - sym_enum_variant_list, + [65372] = 3, + ACTIONS(5189), 1, + sym_identifier, + ACTIONS(5191), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65325] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5105), 1, - anon_sym_EQ, + [65383] = 3, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(434), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65336] = 3, - ACTIONS(3909), 1, - anon_sym_COLON, - ACTIONS(3983), 1, - anon_sym_PLUS, + [65394] = 3, + ACTIONS(5193), 1, + anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65347] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(5107), 1, - anon_sym_SEMI, + [65405] = 3, + ACTIONS(5197), 1, + sym_identifier, + ACTIONS(5199), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65358] = 2, + [65416] = 3, + ACTIONS(3574), 1, + anon_sym_COLON_COLON, + ACTIONS(5201), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5109), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65367] = 3, - ACTIONS(3744), 1, + [65427] = 3, + ACTIONS(4067), 1, anon_sym_LBRACE, - STATE(369), 1, - sym_field_declaration_list, + STATE(881), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65378] = 3, + [65438] = 3, ACTIONS(85), 1, anon_sym_PIPE, STATE(58), 1, @@ -123063,6724 +123925,6733 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65389] = 3, - ACTIONS(3738), 1, - anon_sym_LBRACE, - STATE(411), 1, - sym_declaration_list, + [65449] = 3, + ACTIONS(3582), 1, + anon_sym_COLON_COLON, + ACTIONS(5201), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65400] = 2, + [65460] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5111), 2, - sym_identifier, - sym_metavariable, - [65409] = 3, - ACTIONS(3945), 1, - anon_sym_RBRACE, - ACTIONS(5029), 1, - anon_sym_SEMI, + ACTIONS(4413), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65469] = 3, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(2300), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65420] = 3, - ACTIONS(3738), 1, + [65480] = 3, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(467), 1, + STATE(919), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65431] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5113), 1, - anon_sym_in, + [65491] = 3, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(441), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65442] = 3, - ACTIONS(2548), 1, - anon_sym_LBRACE, - STATE(1097), 1, - sym_field_initializer_list, + [65502] = 3, + ACTIONS(5203), 1, + anon_sym_SEMI, + ACTIONS(5205), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65453] = 3, - ACTIONS(3955), 1, + [65513] = 3, + ACTIONS(4009), 1, anon_sym_RBRACE, - ACTIONS(5029), 1, + ACTIONS(5113), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65464] = 3, - ACTIONS(3750), 1, - anon_sym_LBRACE, - STATE(954), 1, - sym_declaration_list, + [65524] = 3, + ACTIONS(2950), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65475] = 3, - ACTIONS(3738), 1, + [65535] = 3, + ACTIONS(2624), 1, anon_sym_LBRACE, - STATE(357), 1, - sym_declaration_list, + STATE(1112), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65486] = 2, + [65546] = 3, + ACTIONS(4049), 1, + anon_sym_RBRACE, + ACTIONS(5113), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4333), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65495] = 3, - ACTIONS(2245), 1, - anon_sym_SQUOTE, - STATE(2233), 1, - sym_lifetime, + [65557] = 3, + ACTIONS(4011), 1, + anon_sym_RBRACE, + ACTIONS(5113), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65506] = 3, - ACTIONS(3738), 1, - anon_sym_LBRACE, - STATE(412), 1, - sym_declaration_list, + [65568] = 3, + ACTIONS(4267), 1, + anon_sym_PIPE, + ACTIONS(5207), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65517] = 3, - ACTIONS(5115), 1, + [65579] = 3, + ACTIONS(5209), 1, anon_sym_LPAREN, - ACTIONS(5117), 1, + ACTIONS(5211), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65528] = 3, - ACTIONS(5119), 1, + [65590] = 3, + ACTIONS(5213), 1, anon_sym_LPAREN, - ACTIONS(5121), 1, + ACTIONS(5215), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65539] = 3, - ACTIONS(284), 1, + [65601] = 3, + ACTIONS(582), 1, anon_sym_LBRACE, - STATE(1026), 1, + STATE(230), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65550] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4715), 2, - anon_sym_COMMA, + [65612] = 3, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(5217), 1, 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, - [65570] = 3, - ACTIONS(284), 1, + [65623] = 3, + ACTIONS(582), 1, anon_sym_LBRACE, - STATE(1114), 1, + STATE(243), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65581] = 3, - ACTIONS(610), 1, + [65634] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(239), 1, + STATE(1056), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65592] = 3, + [65645] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1084), 1, + STATE(1131), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65603] = 3, - ACTIONS(610), 1, + [65656] = 3, + ACTIONS(582), 1, anon_sym_LBRACE, STATE(220), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65614] = 3, - ACTIONS(3359), 1, - anon_sym_LPAREN, - STATE(1692), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65625] = 3, - ACTIONS(3744), 1, + [65667] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(345), 1, - sym_field_declaration_list, + STATE(1074), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65636] = 3, - ACTIONS(610), 1, + [65678] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(221), 1, + STATE(96), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65647] = 3, - ACTIONS(3502), 1, - anon_sym_COLON_COLON, - ACTIONS(5067), 1, - anon_sym_BANG, + [65689] = 3, + ACTIONS(3832), 1, + anon_sym_LBRACE, + STATE(320), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65658] = 3, - ACTIONS(3359), 1, + [65700] = 3, + ACTIONS(3435), 1, anon_sym_LPAREN, - STATE(1661), 1, + STATE(1707), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65669] = 3, - ACTIONS(5029), 1, + [65711] = 3, + ACTIONS(5113), 1, anon_sym_SEMI, - ACTIONS(5127), 1, + ACTIONS(5219), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65680] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5129), 1, - anon_sym_EQ, + [65722] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65691] = 2, + ACTIONS(4269), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65731] = 3, + ACTIONS(5113), 1, + anon_sym_SEMI, + ACTIONS(5221), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5131), 2, - sym_float_literal, - sym_integer_literal, - [65700] = 3, - ACTIONS(5029), 1, - anon_sym_SEMI, - ACTIONS(5133), 1, + [65742] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4383), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [65751] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65711] = 3, - ACTIONS(5135), 1, - anon_sym_SEMI, - ACTIONS(5137), 1, - anon_sym_as, + ACTIONS(5223), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65760] = 3, + ACTIONS(3435), 1, + anon_sym_LPAREN, + STATE(1720), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65722] = 3, - ACTIONS(5029), 1, + [65771] = 3, + ACTIONS(5225), 1, anon_sym_SEMI, - ACTIONS(5139), 1, - anon_sym_RPAREN, + ACTIONS(5227), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65733] = 2, + [65782] = 3, + ACTIONS(4118), 1, + anon_sym_LBRACE, + STATE(474), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4210), 2, + [65793] = 3, + ACTIONS(5113), 1, + anon_sym_SEMI, + ACTIONS(5229), 1, 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, - [65753] = 3, - ACTIONS(5029), 1, + [65804] = 3, + ACTIONS(5113), 1, anon_sym_SEMI, - ACTIONS(5143), 1, + ACTIONS(5231), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65764] = 3, - ACTIONS(3359), 1, + [65815] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5233), 2, + sym_float_literal, + sym_integer_literal, + [65824] = 3, + ACTIONS(3435), 1, anon_sym_LPAREN, - STATE(1679), 1, + STATE(1694), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65775] = 3, - ACTIONS(3724), 1, - anon_sym_LT, - STATE(713), 1, - sym_type_parameters, + [65835] = 3, + ACTIONS(4039), 1, + anon_sym_RPAREN, + ACTIONS(5113), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65786] = 3, - ACTIONS(3720), 1, + [65846] = 3, + ACTIONS(3780), 1, anon_sym_LBRACE, - STATE(952), 1, + STATE(916), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65797] = 3, - ACTIONS(4193), 1, - anon_sym_PIPE, - ACTIONS(5145), 1, - anon_sym_in, + [65857] = 3, + ACTIONS(5113), 1, + anon_sym_SEMI, + ACTIONS(5235), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65868] = 3, + ACTIONS(582), 1, + anon_sym_LBRACE, + STATE(226), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65808] = 3, - ACTIONS(5029), 1, + [65879] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4860), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65888] = 3, + ACTIONS(5113), 1, anon_sym_SEMI, - ACTIONS(5147), 1, + ACTIONS(5237), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65819] = 2, + [65899] = 3, + ACTIONS(4267), 1, + anon_sym_PIPE, + ACTIONS(5239), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5149), 2, - anon_sym_const, - sym_mutable_specifier, - [65828] = 3, - ACTIONS(3359), 1, - anon_sym_LPAREN, - STATE(1364), 1, - sym_parameters, + [65910] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65839] = 3, - ACTIONS(3436), 1, - anon_sym_COLON_COLON, - ACTIONS(3562), 1, - anon_sym_BANG, + ACTIONS(5241), 2, + anon_sym_const, + sym_mutable_specifier, + [65919] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65850] = 3, - ACTIONS(610), 1, + ACTIONS(4444), 2, + anon_sym_COMMA, + anon_sym_GT, + [65928] = 3, + ACTIONS(3818), 1, anon_sym_LBRACE, - STATE(230), 1, - sym_block, + STATE(922), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65861] = 3, - ACTIONS(3359), 1, + [65939] = 3, + ACTIONS(3435), 1, anon_sym_LPAREN, - STATE(1703), 1, + STATE(1383), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65872] = 3, - ACTIONS(3810), 1, - anon_sym_COLON, - STATE(1924), 1, - sym_trait_bounds, + [65950] = 3, + ACTIONS(3780), 1, + anon_sym_LBRACE, + STATE(928), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65883] = 3, - ACTIONS(4046), 1, - anon_sym_LBRACE, - STATE(309), 1, - sym_enum_variant_list, + [65961] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65894] = 3, - ACTIONS(4189), 1, - anon_sym_COLON, - ACTIONS(4193), 1, - anon_sym_PIPE, + ACTIONS(4850), 2, + anon_sym_COMMA, + anon_sym_GT, + [65970] = 3, + ACTIONS(3548), 1, + anon_sym_COLON_COLON, + ACTIONS(3640), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65905] = 2, + [65981] = 3, + ACTIONS(3580), 1, + anon_sym_COLON_COLON, + ACTIONS(5243), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4783), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65914] = 3, - ACTIONS(3750), 1, - anon_sym_LBRACE, - STATE(964), 1, - sym_declaration_list, + [65992] = 3, + ACTIONS(2568), 1, + anon_sym_LT2, + STATE(1089), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65925] = 3, - ACTIONS(3899), 1, - anon_sym_COLON_COLON, - ACTIONS(5151), 1, - anon_sym_RPAREN, + [66003] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1072), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65936] = 3, - ACTIONS(3907), 1, - anon_sym_COLON_COLON, - ACTIONS(5151), 1, - anon_sym_RPAREN, + [66014] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(65), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65947] = 3, - ACTIONS(3720), 1, - anon_sym_LBRACE, - STATE(970), 1, - sym_field_declaration_list, + [66025] = 3, + ACTIONS(2560), 1, + anon_sym_LPAREN, + STATE(968), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65958] = 3, - ACTIONS(3738), 1, + [66036] = 3, + ACTIONS(4118), 1, anon_sym_LBRACE, - STATE(286), 1, - sym_declaration_list, + STATE(284), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65969] = 3, - ACTIONS(3738), 1, + [66047] = 3, + ACTIONS(3832), 1, anon_sym_LBRACE, - STATE(288), 1, + STATE(365), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65980] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(5153), 1, + [66058] = 3, + ACTIONS(4021), 1, + anon_sym_RPAREN, + ACTIONS(5113), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65991] = 3, - ACTIONS(3925), 1, + [66069] = 3, + ACTIONS(3832), 1, + anon_sym_LBRACE, + STATE(478), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66080] = 3, + ACTIONS(4019), 1, anon_sym_RPAREN, - ACTIONS(5029), 1, + ACTIONS(5113), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66002] = 3, - ACTIONS(2484), 1, - anon_sym_LPAREN, - STATE(1006), 1, - sym_parameters, + [66091] = 3, + ACTIONS(3981), 1, + anon_sym_COLON_COLON, + ACTIONS(5167), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66013] = 2, + [66102] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4754), 2, + ACTIONS(4821), 2, anon_sym_COMMA, anon_sym_GT, - [66022] = 3, - ACTIONS(3923), 1, - anon_sym_RPAREN, - ACTIONS(5029), 1, + [66111] = 3, + ACTIONS(4065), 1, + anon_sym_PLUS, + ACTIONS(5245), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66033] = 3, - ACTIONS(2492), 1, - anon_sym_LT2, - STATE(1027), 1, - sym_type_arguments, + [66122] = 3, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(310), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66044] = 3, - ACTIONS(3911), 1, - anon_sym_COLON_COLON, - ACTIONS(5151), 1, - anon_sym_RPAREN, + [66133] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66055] = 3, - ACTIONS(3361), 1, + ACTIONS(4711), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [66142] = 3, + ACTIONS(3592), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5247), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66066] = 3, - ACTIONS(3494), 1, - anon_sym_COLON_COLON, - ACTIONS(5157), 1, - anon_sym_RPAREN, + [66153] = 3, + ACTIONS(3784), 1, + anon_sym_LT, + STATE(740), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66077] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1089), 1, - sym_block, + [66164] = 3, + ACTIONS(2560), 1, + anon_sym_LPAREN, + STATE(939), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66088] = 3, - ACTIONS(4706), 1, - sym_identifier, - ACTIONS(4710), 1, - sym_mutable_specifier, + [66175] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66099] = 3, - ACTIONS(3987), 1, + ACTIONS(4112), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66184] = 3, + ACTIONS(582), 1, anon_sym_LBRACE, - STATE(1009), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66110] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(59), 1, - sym_closure_parameters, + STATE(239), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66121] = 2, + [66195] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2315), 2, - anon_sym_COMMA, - anon_sym_GT, - [66130] = 3, - ACTIONS(3738), 1, + ACTIONS(5249), 2, + anon_sym_const, + sym_mutable_specifier, + [66204] = 3, + ACTIONS(3832), 1, anon_sym_LBRACE, - STATE(475), 1, + STATE(458), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66141] = 3, - ACTIONS(3359), 1, + [66215] = 3, + ACTIONS(5251), 1, anon_sym_LPAREN, - STATE(1645), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66152] = 3, - ACTIONS(888), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(1435), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66163] = 3, - ACTIONS(610), 1, + [66226] = 3, + ACTIONS(5255), 1, + anon_sym_LPAREN, + ACTIONS(5257), 1, anon_sym_LBRACE, - STATE(238), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66174] = 3, - ACTIONS(5159), 1, - anon_sym_SEMI, - ACTIONS(5161), 1, - anon_sym_as, + [66237] = 3, + ACTIONS(4267), 1, + anon_sym_PIPE, + ACTIONS(5259), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66185] = 2, + [66248] = 3, + ACTIONS(3437), 1, + anon_sym_BANG, + ACTIONS(5261), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4622), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [66194] = 2, + [66259] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4271), 2, - anon_sym_RPAREN, + ACTIONS(2391), 2, anon_sym_COMMA, - [66203] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1063), 1, - sym_block, + anon_sym_GT, + [66268] = 3, + ACTIONS(3893), 1, + anon_sym_COLON, + STATE(1951), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66214] = 3, - ACTIONS(3488), 1, - anon_sym_BANG, - ACTIONS(5163), 1, - anon_sym_COLON_COLON, + [66279] = 3, + ACTIONS(4017), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66225] = 2, + [66290] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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(5263), 2, + sym_identifier, + sym_metavariable, + [66299] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1130), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66245] = 2, + [66310] = 3, + ACTIONS(5265), 1, + anon_sym_SEMI, + ACTIONS(5267), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5165), 2, - anon_sym_const, - sym_mutable_specifier, - [66254] = 2, + [66321] = 3, + ACTIONS(3435), 1, + anon_sym_LPAREN, + STATE(1667), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5167), 2, - anon_sym_const, + [66332] = 3, + ACTIONS(4806), 1, + sym_identifier, + ACTIONS(4810), 1, 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_LPAREN, - ACTIONS(5175), 1, - anon_sym_LBRACE, + [66343] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66285] = 3, - ACTIONS(2484), 1, + ACTIONS(5269), 2, + anon_sym_const, + sym_mutable_specifier, + [66352] = 3, + ACTIONS(3435), 1, anon_sym_LPAREN, - STATE(857), 1, + STATE(1387), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66296] = 2, + [66363] = 3, + ACTIONS(2664), 1, + anon_sym_COLON_COLON, + ACTIONS(3959), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4386), 2, - anon_sym_COMMA, - anon_sym_GT, - [66305] = 3, - ACTIONS(5177), 1, - anon_sym_SEMI, - ACTIONS(5179), 1, - anon_sym_as, + [66374] = 3, + ACTIONS(888), 1, + anon_sym_LBRACE, + STATE(1462), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66316] = 3, - ACTIONS(5029), 1, - anon_sym_SEMI, - ACTIONS(5181), 1, - anon_sym_RBRACE, + [66385] = 3, + ACTIONS(3979), 1, + anon_sym_COLON_COLON, + ACTIONS(5167), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66327] = 3, - ACTIONS(3359), 1, - anon_sym_LPAREN, - STATE(1356), 1, - sym_parameters, + [66396] = 2, + ACTIONS(5271), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66338] = 2, + [66404] = 2, + ACTIONS(5273), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4620), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [66347] = 2, + [66412] = 2, + ACTIONS(5275), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5183), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66356] = 3, - ACTIONS(3983), 1, - anon_sym_PLUS, - ACTIONS(5185), 1, - anon_sym_GT, + [66420] = 2, + ACTIONS(4804), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66367] = 2, + [66428] = 2, + ACTIONS(4812), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5187), 2, + [66436] = 2, + ACTIONS(5277), 1, sym_identifier, - sym_metavariable, - [66376] = 2, - ACTIONS(2604), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66384] = 2, - ACTIONS(5189), 1, + [66444] = 2, + ACTIONS(5279), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66392] = 2, - ACTIONS(5191), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66400] = 2, - ACTIONS(5193), 1, - anon_sym_RPAREN, + [66452] = 2, + ACTIONS(5281), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66408] = 2, - ACTIONS(5195), 1, - anon_sym_SEMI, + [66460] = 2, + ACTIONS(5283), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66416] = 2, - ACTIONS(5197), 1, + [66468] = 2, + ACTIONS(5285), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66424] = 2, - ACTIONS(5199), 1, + [66476] = 2, + ACTIONS(5287), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66432] = 2, - ACTIONS(5201), 1, + [66484] = 2, + ACTIONS(5289), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66440] = 2, - ACTIONS(4167), 1, - anon_sym_RPAREN, + [66492] = 2, + ACTIONS(5291), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66448] = 2, - ACTIONS(5203), 1, + [66500] = 2, + ACTIONS(5293), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66456] = 2, - ACTIONS(5205), 1, + [66508] = 2, + ACTIONS(5295), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66464] = 2, - ACTIONS(5207), 1, + [66516] = 2, + ACTIONS(4802), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66472] = 2, - ACTIONS(5209), 1, - anon_sym_RBRACK, + [66524] = 2, + ACTIONS(5297), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66480] = 2, - ACTIONS(5211), 1, + [66532] = 2, + ACTIONS(5299), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66488] = 2, - ACTIONS(2377), 1, - anon_sym_PLUS, + [66540] = 2, + ACTIONS(4795), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66496] = 2, - ACTIONS(5213), 1, + [66548] = 2, + ACTIONS(5301), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66504] = 2, - ACTIONS(4695), 1, + [66556] = 2, + ACTIONS(5303), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66512] = 2, - ACTIONS(4660), 1, - anon_sym_GT, + [66564] = 2, + ACTIONS(5305), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66520] = 2, - ACTIONS(5215), 1, - sym_identifier, + [66572] = 2, + ACTIONS(5307), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66528] = 2, - ACTIONS(5217), 1, - sym_identifier, + [66580] = 2, + ACTIONS(2698), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66536] = 2, - ACTIONS(5219), 1, + [66588] = 2, + ACTIONS(5309), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66544] = 2, - ACTIONS(5221), 1, + [66596] = 2, + ACTIONS(5311), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66552] = 2, - ACTIONS(4697), 1, - sym_identifier, + [66604] = 2, + ACTIONS(4763), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66560] = 2, - ACTIONS(5223), 1, + [66612] = 2, + ACTIONS(5313), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66568] = 2, - ACTIONS(5225), 1, + [66620] = 2, + ACTIONS(4841), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66576] = 2, - ACTIONS(5227), 1, - anon_sym_LBRACK, + [66628] = 2, + ACTIONS(5315), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66584] = 2, - ACTIONS(3135), 1, - anon_sym_COLON_COLON, + [66636] = 2, + ACTIONS(4755), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66592] = 2, - ACTIONS(5229), 1, + [66644] = 2, + ACTIONS(4759), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66600] = 2, - ACTIONS(3417), 1, - anon_sym_COLON_COLON, + [66652] = 2, + ACTIONS(5317), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66608] = 2, - ACTIONS(5231), 1, + [66660] = 2, + ACTIONS(4761), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66616] = 2, - ACTIONS(5233), 1, - anon_sym_COLON_COLON, + [66668] = 2, + ACTIONS(4753), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66624] = 2, - ACTIONS(4771), 1, + [66676] = 2, + ACTIONS(5319), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66632] = 2, - ACTIONS(5235), 1, + [66684] = 2, + ACTIONS(5321), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66640] = 2, - ACTIONS(5237), 1, - anon_sym_SEMI, + [66692] = 2, + ACTIONS(5323), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66648] = 2, - ACTIONS(5239), 1, - anon_sym_EQ_GT, + [66700] = 2, + ACTIONS(5325), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66656] = 2, - ACTIONS(5241), 1, + [66708] = 2, + ACTIONS(5327), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66664] = 2, - ACTIONS(3115), 1, - anon_sym_COLON_COLON, + [66716] = 2, + ACTIONS(5329), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66672] = 2, - ACTIONS(5243), 1, - anon_sym_COLON_COLON, + [66724] = 2, + ACTIONS(5331), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66680] = 2, - ACTIONS(4637), 1, + [66732] = 2, + ACTIONS(5333), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66688] = 2, - ACTIONS(5245), 1, - sym_identifier, + [66740] = 2, + ACTIONS(5335), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66696] = 2, - ACTIONS(5247), 1, - sym_identifier, + [66748] = 2, + ACTIONS(5337), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66704] = 2, - ACTIONS(5249), 1, - sym_identifier, + [66756] = 2, + ACTIONS(5339), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66712] = 2, - ACTIONS(5251), 1, - anon_sym_fn, + [66764] = 2, + ACTIONS(3221), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66720] = 2, - ACTIONS(5253), 1, - anon_sym_RBRACE, + [66772] = 2, + ACTIONS(3510), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66728] = 2, - ACTIONS(5255), 1, - sym_identifier, + [66780] = 2, + ACTIONS(5341), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66736] = 2, - ACTIONS(5257), 1, + [66788] = 2, + ACTIONS(5343), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66744] = 2, - ACTIONS(5259), 1, - sym_self, + [66796] = 2, + ACTIONS(5345), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66752] = 2, - ACTIONS(5261), 1, + [66804] = 2, + ACTIONS(2411), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66760] = 2, - ACTIONS(5263), 1, - anon_sym_fn, + [66812] = 2, + ACTIONS(3175), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66768] = 2, - ACTIONS(5265), 1, - sym_identifier, + [66820] = 2, + ACTIONS(5347), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66776] = 2, - ACTIONS(5267), 1, - sym_identifier, + [66828] = 2, + ACTIONS(2459), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66784] = 2, - ACTIONS(5269), 1, + [66836] = 2, + ACTIONS(5349), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66792] = 2, - ACTIONS(5271), 1, - sym_identifier, + [66844] = 2, + ACTIONS(5351), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66800] = 2, - ACTIONS(5273), 1, + [66852] = 2, + ACTIONS(5353), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66808] = 2, - ACTIONS(5275), 1, + [66860] = 2, + ACTIONS(5355), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66816] = 2, - ACTIONS(5277), 1, + [66868] = 2, + ACTIONS(5357), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66824] = 2, - ACTIONS(5279), 1, - anon_sym_RBRACK, + [66876] = 2, + ACTIONS(5359), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66832] = 2, - ACTIONS(5281), 1, + [66884] = 2, + ACTIONS(5361), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66840] = 2, - ACTIONS(5283), 1, - anon_sym_RBRACK, + [66892] = 2, + ACTIONS(5363), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66848] = 2, - ACTIONS(4723), 1, - anon_sym_RBRACE, + [66900] = 2, + ACTIONS(5365), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66856] = 2, - ACTIONS(5285), 1, + [66908] = 2, + ACTIONS(5367), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66864] = 2, - ACTIONS(4727), 1, - sym_identifier, + [66916] = 2, + ACTIONS(5369), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66872] = 2, - ACTIONS(5287), 1, + [66924] = 2, + ACTIONS(5371), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66880] = 2, - ACTIONS(5289), 1, + [66932] = 2, + ACTIONS(5373), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66888] = 2, - ACTIONS(4014), 1, + [66940] = 2, + ACTIONS(5375), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66896] = 2, - ACTIONS(2596), 1, + [66948] = 2, + ACTIONS(2664), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66904] = 2, - ACTIONS(5291), 1, + [66956] = 2, + ACTIONS(5377), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66912] = 2, - ACTIONS(5163), 1, + [66964] = 2, + ACTIONS(5247), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66920] = 2, - ACTIONS(5293), 1, - anon_sym_COLON, + [66972] = 2, + ACTIONS(4726), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66928] = 2, - ACTIONS(5295), 1, + [66980] = 2, + ACTIONS(5379), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66936] = 2, - ACTIONS(5297), 1, - sym_identifier, + [66988] = 2, + ACTIONS(5381), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66944] = 2, - ACTIONS(5299), 1, - anon_sym_RBRACK, + [66996] = 2, + ACTIONS(2445), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66952] = 2, - ACTIONS(5301), 1, - sym_identifier, + [67004] = 2, + ACTIONS(520), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66960] = 2, - ACTIONS(5303), 1, - sym_identifier, + [67012] = 2, + ACTIONS(5383), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66968] = 2, - ACTIONS(5305), 1, - sym_identifier, + [67020] = 2, + ACTIONS(5385), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66976] = 2, - ACTIONS(5307), 1, + [67028] = 2, + ACTIONS(5387), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66984] = 2, - ACTIONS(4741), 1, + [67036] = 2, + ACTIONS(5389), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66992] = 2, - ACTIONS(5309), 1, - anon_sym_COLON_COLON, + [67044] = 2, + ACTIONS(5391), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67000] = 2, - ACTIONS(5311), 1, - sym_identifier, + [67052] = 2, + ACTIONS(4873), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67008] = 2, - ACTIONS(5313), 1, + [67060] = 2, + ACTIONS(5393), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67016] = 2, - ACTIONS(5315), 1, - sym_identifier, + [67068] = 2, + ACTIONS(5395), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67024] = 2, - ACTIONS(2405), 1, - anon_sym_PLUS, + [67076] = 2, + ACTIONS(4104), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67032] = 2, - ACTIONS(5317), 1, + [67084] = 2, + ACTIONS(5397), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67040] = 2, - ACTIONS(5319), 1, + [67092] = 2, + ACTIONS(5399), 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, - [67056] = 2, - ACTIONS(5323), 1, - anon_sym_SEMI, + [67100] = 2, + ACTIONS(5401), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67064] = 2, - ACTIONS(5325), 1, - anon_sym_RBRACE, + [67108] = 2, + ACTIONS(5403), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67072] = 2, - ACTIONS(5327), 1, - anon_sym_RPAREN, + [67116] = 2, + ACTIONS(5405), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67080] = 2, - ACTIONS(552), 1, - anon_sym_RBRACK, + [67124] = 2, + ACTIONS(3522), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67088] = 2, - ACTIONS(5329), 1, - anon_sym_SEMI, + [67132] = 2, + ACTIONS(5407), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67096] = 2, - ACTIONS(5331), 1, + [67140] = 2, + ACTIONS(5409), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67104] = 2, - ACTIONS(5333), 1, + [67148] = 2, + ACTIONS(5411), 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, + [67156] = 2, + ACTIONS(5413), 1, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67144] = 2, - ACTIONS(5343), 1, - anon_sym_RBRACK, + [67164] = 2, + ACTIONS(5415), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67152] = 2, - ACTIONS(5345), 1, - anon_sym_LT, + [67172] = 2, + ACTIONS(5417), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67160] = 2, - ACTIONS(5347), 1, - anon_sym_EQ_GT, + [67180] = 2, + ACTIONS(5419), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67168] = 2, - ACTIONS(4561), 1, + [67188] = 2, + ACTIONS(5421), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67176] = 2, - ACTIONS(5349), 1, - sym_identifier, + [67196] = 2, + ACTIONS(5423), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67184] = 2, - ACTIONS(5351), 1, + [67204] = 2, + ACTIONS(5425), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67192] = 2, - ACTIONS(5353), 1, + [67212] = 2, + ACTIONS(5427), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67200] = 2, - ACTIONS(4800), 1, + [67220] = 2, + ACTIONS(5429), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67208] = 2, - ACTIONS(5355), 1, - sym_identifier, + [67228] = 2, + ACTIONS(5431), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67216] = 2, - ACTIONS(3494), 1, - anon_sym_COLON_COLON, + [67236] = 2, + ACTIONS(5433), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67224] = 2, - ACTIONS(3440), 1, + [67244] = 2, + ACTIONS(4116), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67232] = 2, - ACTIONS(5357), 1, + [67252] = 2, + ACTIONS(5435), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67240] = 2, - ACTIONS(5359), 1, - anon_sym_EQ_GT, + [67260] = 2, + ACTIONS(4235), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67248] = 2, - ACTIONS(4066), 1, - anon_sym_COLON_COLON, + [67268] = 2, + ACTIONS(5237), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67256] = 2, - ACTIONS(4313), 1, - anon_sym_RPAREN, + [67276] = 2, + ACTIONS(5437), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67264] = 2, - ACTIONS(5361), 1, - anon_sym_RBRACE, + [67284] = 2, + ACTIONS(5439), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67272] = 2, - ACTIONS(5363), 1, - anon_sym_RBRACK, + [67292] = 2, + ACTIONS(4869), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67280] = 2, - ACTIONS(4325), 1, + [67300] = 2, + ACTIONS(5441), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67288] = 2, - ACTIONS(4814), 1, - anon_sym_RBRACE, + [67308] = 2, + ACTIONS(3173), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67296] = 2, - ACTIONS(5365), 1, - anon_sym_COLON, + [67316] = 2, + ACTIONS(5443), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67304] = 2, - ACTIONS(5147), 1, - anon_sym_SEMI, + [67324] = 2, + ACTIONS(5445), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67312] = 2, - ACTIONS(4689), 1, + [67332] = 2, + ACTIONS(4472), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67320] = 2, - ACTIONS(4671), 1, + [67340] = 2, + ACTIONS(5447), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67328] = 2, - ACTIONS(5367), 1, + [67348] = 2, + ACTIONS(5449), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67336] = 2, - ACTIONS(5181), 1, - anon_sym_SEMI, + [67356] = 2, + ACTIONS(4648), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67344] = 2, - ACTIONS(4531), 1, - anon_sym_RBRACE, + [67364] = 2, + ACTIONS(5221), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67352] = 2, - ACTIONS(5369), 1, - anon_sym_COLON, + [67372] = 2, + ACTIONS(4614), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67360] = 2, - ACTIONS(5371), 1, - sym_identifier, + [67380] = 2, + ACTIONS(5451), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67368] = 2, - ACTIONS(5373), 1, + [67388] = 2, + ACTIONS(5453), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67376] = 2, - ACTIONS(5375), 1, + [67396] = 2, + ACTIONS(5455), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67384] = 2, - ACTIONS(5377), 1, + [67404] = 2, + ACTIONS(4401), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67392] = 2, - ACTIONS(5031), 1, - anon_sym_SEMI, + [67412] = 2, + ACTIONS(5457), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67400] = 2, - ACTIONS(5379), 1, + [67420] = 2, + ACTIONS(5459), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67408] = 2, - ACTIONS(5381), 1, + [67428] = 2, + ACTIONS(5461), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67416] = 2, + [67436] = 2, ACTIONS(368), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67424] = 2, - ACTIONS(5383), 1, + [67444] = 2, + ACTIONS(5463), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67432] = 2, - ACTIONS(2636), 1, - anon_sym_COLON_COLON, + [67452] = 2, + ACTIONS(5465), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67440] = 2, - ACTIONS(4246), 1, - sym_identifier, + [67460] = 2, + ACTIONS(2670), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67448] = 2, - ACTIONS(5385), 1, - anon_sym_SEMI, + [67468] = 2, + ACTIONS(4409), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67456] = 2, - ACTIONS(5387), 1, - anon_sym_COLON, + [67476] = 2, + ACTIONS(5467), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67464] = 2, - ACTIONS(3955), 1, + [67484] = 2, + ACTIONS(4011), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67472] = 2, - ACTIONS(4840), 1, - sym_identifier, + [67492] = 2, + ACTIONS(5469), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67480] = 2, - ACTIONS(5389), 1, + [67500] = 2, + ACTIONS(5471), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67488] = 2, - ACTIONS(2347), 1, - anon_sym_EQ_GT, + [67508] = 2, + ACTIONS(5473), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67496] = 2, - ACTIONS(5391), 1, - sym_identifier, + [67516] = 2, + ACTIONS(5475), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67504] = 2, - ACTIONS(3945), 1, + [67524] = 2, + ACTIONS(5477), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67512] = 2, - ACTIONS(3907), 1, + [67532] = 2, + ACTIONS(3979), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67520] = 2, - ACTIONS(5393), 1, - sym_identifier, + [67540] = 2, + ACTIONS(4009), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67528] = 2, - ACTIONS(5395), 1, - anon_sym_SEMI, + [67548] = 2, + ACTIONS(3580), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67536] = 2, - ACTIONS(2598), 1, + [67556] = 2, + ACTIONS(2666), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67544] = 2, - ACTIONS(5397), 1, + [67564] = 2, + ACTIONS(5479), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67552] = 2, - ACTIONS(3371), 1, + [67572] = 2, + ACTIONS(3447), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67560] = 2, - ACTIONS(5399), 1, - sym_identifier, + [67580] = 2, + ACTIONS(5481), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67568] = 2, - ACTIONS(5401), 1, + [67588] = 2, + ACTIONS(5483), 1, ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67576] = 2, - ACTIONS(2730), 1, + [67596] = 2, + ACTIONS(2796), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67584] = 2, - ACTIONS(5403), 1, - anon_sym_SEMI, + [67604] = 2, + ACTIONS(5485), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67592] = 2, - ACTIONS(3137), 1, - anon_sym_RPAREN, + [67612] = 2, + ACTIONS(5487), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67600] = 2, - ACTIONS(5405), 1, + [67620] = 2, + ACTIONS(5489), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67608] = 2, - ACTIONS(5407), 1, - sym_identifier, + [67628] = 2, + ACTIONS(4935), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67616] = 2, - ACTIONS(5409), 1, + [67636] = 2, + ACTIONS(5491), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67624] = 2, - ACTIONS(4862), 1, - anon_sym_RBRACE, + [67644] = 2, + ACTIONS(5493), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67632] = 2, - ACTIONS(5411), 1, - anon_sym_SEMI, + [67652] = 2, + ACTIONS(5495), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67640] = 2, - ACTIONS(5413), 1, - sym_identifier, + [67660] = 2, + ACTIONS(5497), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67648] = 2, - ACTIONS(5415), 1, - anon_sym_SEMI, + [67668] = 2, + ACTIONS(5499), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67656] = 2, - ACTIONS(4224), 1, + [67676] = 2, + ACTIONS(4286), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67664] = 2, - ACTIONS(4155), 1, + [67684] = 2, + ACTIONS(4231), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67672] = 2, - ACTIONS(5417), 1, + [67692] = 2, + ACTIONS(5501), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67680] = 2, - ACTIONS(3963), 1, - anon_sym_SEMI, + [67700] = 2, + ACTIONS(5503), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67688] = 2, - ACTIONS(4072), 1, + [67708] = 2, + ACTIONS(4120), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67696] = 2, - ACTIONS(5419), 1, + [67716] = 2, + ACTIONS(5505), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67704] = 2, - ACTIONS(5421), 1, + [67724] = 2, + ACTIONS(5507), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67712] = 2, - ACTIONS(4040), 1, + [67732] = 2, + ACTIONS(4108), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67720] = 2, - ACTIONS(5423), 1, + [67740] = 2, + ACTIONS(5509), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67728] = 2, - ACTIONS(5425), 1, - anon_sym_COLON, + [67748] = 2, + ACTIONS(5511), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67736] = 2, - ACTIONS(5427), 1, - sym_identifier, + [67756] = 2, + ACTIONS(5513), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67744] = 2, - ACTIONS(5429), 1, - anon_sym_SEMI, + [67764] = 2, + ACTIONS(4965), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67752] = 2, - ACTIONS(5431), 1, - anon_sym_RPAREN, + [67772] = 2, + ACTIONS(5515), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67760] = 2, - ACTIONS(5433), 1, + [67780] = 2, + ACTIONS(5517), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67768] = 2, - ACTIONS(5435), 1, + [67788] = 2, + ACTIONS(5519), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67776] = 2, - ACTIONS(5437), 1, + [67796] = 2, + ACTIONS(5521), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67784] = 2, - ACTIONS(4924), 1, - anon_sym_RPAREN, + [67804] = 2, + ACTIONS(5523), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67792] = 2, - ACTIONS(5439), 1, - anon_sym_EQ_GT, + [67812] = 2, + ACTIONS(5525), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67800] = 2, - ACTIONS(5441), 1, - anon_sym_RBRACE, + [67820] = 2, + ACTIONS(5527), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67808] = 2, - ACTIONS(5443), 1, - anon_sym_SEMI, + [67828] = 2, + ACTIONS(5529), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67816] = 2, - ACTIONS(5445), 1, + [67836] = 2, + ACTIONS(5531), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67824] = 2, - ACTIONS(5447), 1, + [67844] = 2, + ACTIONS(5533), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67832] = 2, - ACTIONS(5449), 1, - anon_sym_RPAREN, + [67852] = 2, + ACTIONS(5535), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67840] = 2, - ACTIONS(3436), 1, - anon_sym_COLON_COLON, + [67860] = 2, + ACTIONS(4898), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67848] = 2, - ACTIONS(5029), 1, + [67868] = 2, + ACTIONS(5537), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67856] = 2, - ACTIONS(5451), 1, + [67876] = 2, + ACTIONS(5539), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67864] = 2, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, + [67884] = 2, + ACTIONS(5541), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67872] = 2, - ACTIONS(3967), 1, - anon_sym_SEMI, + [67892] = 2, + ACTIONS(5543), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67880] = 2, - ACTIONS(5453), 1, - anon_sym_SEMI, + [67900] = 2, + ACTIONS(5545), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67888] = 2, - ACTIONS(5455), 1, + [67908] = 2, + ACTIONS(5547), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67896] = 2, - ACTIONS(5457), 1, + [67916] = 2, + ACTIONS(5113), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67904] = 2, - ACTIONS(5459), 1, - anon_sym_EQ, + [67924] = 2, + ACTIONS(5549), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67912] = 2, - ACTIONS(2311), 1, - anon_sym_EQ_GT, + [67932] = 2, + ACTIONS(5018), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67920] = 2, - ACTIONS(4952), 1, - anon_sym_RBRACE, + [67940] = 2, + ACTIONS(5551), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67928] = 2, - ACTIONS(5461), 1, + [67948] = 2, + ACTIONS(5553), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67936] = 2, - ACTIONS(5463), 1, - anon_sym_SEMI, + [67956] = 2, + ACTIONS(3217), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67944] = 2, - ACTIONS(5465), 1, - anon_sym_SEMI, + [67964] = 2, + ACTIONS(2375), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67952] = 2, - ACTIONS(5467), 1, + [67972] = 2, + ACTIONS(5555), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67960] = 2, - ACTIONS(5469), 1, - anon_sym_SEMI, + [67980] = 2, + ACTIONS(5557), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67968] = 2, - ACTIONS(5471), 1, - sym_identifier, + [67988] = 2, + ACTIONS(5559), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67976] = 2, - ACTIONS(5473), 1, + [67996] = 2, + ACTIONS(5561), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67984] = 2, - ACTIONS(5475), 1, + [68004] = 2, + ACTIONS(5563), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67992] = 2, - ACTIONS(5477), 1, - anon_sym_SEMI, + [68012] = 2, + ACTIONS(3548), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68000] = 2, - ACTIONS(5479), 1, + [68020] = 2, + ACTIONS(5565), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68008] = 2, - ACTIONS(5481), 1, - anon_sym_RBRACK, + [68028] = 2, + ACTIONS(5567), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68016] = 2, - ACTIONS(5483), 1, + [68036] = 2, + ACTIONS(5569), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68024] = 2, - ACTIONS(5485), 1, + [68044] = 2, + ACTIONS(5571), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68032] = 2, - ACTIONS(5487), 1, - anon_sym_SEMI, + [68052] = 2, + ACTIONS(4261), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68040] = 2, - ACTIONS(5489), 1, - anon_sym_RBRACE, + [68060] = 2, + ACTIONS(5573), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68048] = 2, - ACTIONS(5491), 1, - sym_identifier, + [68068] = 2, + ACTIONS(5575), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68056] = 2, - ACTIONS(5493), 1, - sym_identifier, + [68076] = 2, + ACTIONS(5577), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68064] = 2, - ACTIONS(4187), 1, - anon_sym_RPAREN, + [68084] = 2, + ACTIONS(5261), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68072] = 2, - ACTIONS(5495), 1, + [68092] = 2, + ACTIONS(5579), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68080] = 2, - ACTIONS(5497), 1, - anon_sym_LPAREN, + [68100] = 2, + ACTIONS(4035), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68088] = 2, - ACTIONS(3395), 1, + [68108] = 2, + ACTIONS(3471), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68096] = 2, - ACTIONS(5499), 1, + [68116] = 2, + ACTIONS(5581), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68104] = 2, - ACTIONS(5002), 1, - anon_sym_RBRACE, + [68124] = 2, + ACTIONS(5583), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68112] = 2, - ACTIONS(5501), 1, + [68132] = 2, + ACTIONS(5585), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68120] = 2, - ACTIONS(4442), 1, - anon_sym_RBRACE, + [68140] = 2, + ACTIONS(5084), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68128] = 2, - ACTIONS(5503), 1, - sym_identifier, + [68148] = 2, + ACTIONS(5587), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68136] = 2, - ACTIONS(3113), 1, - sym_identifier, + [68156] = 2, + ACTIONS(5589), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68144] = 2, - ACTIONS(5505), 1, + [68164] = 2, + ACTIONS(5591), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68152] = 2, - ACTIONS(5507), 1, + [68172] = 2, + ACTIONS(5593), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68160] = 2, - ACTIONS(5509), 1, + [68180] = 2, + ACTIONS(5595), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68168] = 2, - ACTIONS(5511), 1, - anon_sym_fn, + [68188] = 2, + ACTIONS(5125), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68176] = 2, - ACTIONS(5513), 1, + [68196] = 2, + ACTIONS(5597), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68184] = 2, - ACTIONS(5515), 1, + [68204] = 2, + ACTIONS(5599), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68192] = 2, - ACTIONS(5517), 1, + [68212] = 2, + ACTIONS(5115), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68200] = 2, - ACTIONS(5519), 1, - anon_sym_COLON, + [68220] = 2, + ACTIONS(5601), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68208] = 2, - ACTIONS(5521), 1, + [68228] = 2, + ACTIONS(5603), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68216] = 2, - ACTIONS(5033), 1, - anon_sym_SEMI, + [68236] = 2, + ACTIONS(5605), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68224] = 2, - ACTIONS(5523), 1, - sym_identifier, + [68244] = 2, + ACTIONS(4049), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68232] = 2, - ACTIONS(5525), 1, + [68252] = 2, + ACTIONS(5607), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, }; -static const uint32_t ts_small_parse_table_map[] = { - [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 uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(643)] = 0, + [SMALL_STATE(644)] = 129, + [SMALL_STATE(645)] = 258, + [SMALL_STATE(646)] = 387, + [SMALL_STATE(647)] = 516, + [SMALL_STATE(648)] = 645, + [SMALL_STATE(649)] = 774, + [SMALL_STATE(650)] = 903, + [SMALL_STATE(651)] = 1032, + [SMALL_STATE(652)] = 1161, + [SMALL_STATE(653)] = 1290, + [SMALL_STATE(654)] = 1419, + [SMALL_STATE(655)] = 1548, + [SMALL_STATE(656)] = 1677, + [SMALL_STATE(657)] = 1806, + [SMALL_STATE(658)] = 1935, + [SMALL_STATE(659)] = 2064, + [SMALL_STATE(660)] = 2193, + [SMALL_STATE(661)] = 2322, + [SMALL_STATE(662)] = 2451, + [SMALL_STATE(663)] = 2580, + [SMALL_STATE(664)] = 2709, + [SMALL_STATE(665)] = 2838, + [SMALL_STATE(666)] = 2967, + [SMALL_STATE(667)] = 3096, + [SMALL_STATE(668)] = 3225, + [SMALL_STATE(669)] = 3354, + [SMALL_STATE(670)] = 3483, + [SMALL_STATE(671)] = 3612, + [SMALL_STATE(672)] = 3741, + [SMALL_STATE(673)] = 3870, + [SMALL_STATE(674)] = 3999, + [SMALL_STATE(675)] = 4128, + [SMALL_STATE(676)] = 4257, + [SMALL_STATE(677)] = 4386, + [SMALL_STATE(678)] = 4515, + [SMALL_STATE(679)] = 4644, + [SMALL_STATE(680)] = 4773, + [SMALL_STATE(681)] = 4902, + [SMALL_STATE(682)] = 5031, + [SMALL_STATE(683)] = 5160, + [SMALL_STATE(684)] = 5289, + [SMALL_STATE(685)] = 5418, + [SMALL_STATE(686)] = 5547, + [SMALL_STATE(687)] = 5676, + [SMALL_STATE(688)] = 5805, + [SMALL_STATE(689)] = 5934, + [SMALL_STATE(690)] = 6063, + [SMALL_STATE(691)] = 6192, + [SMALL_STATE(692)] = 6321, + [SMALL_STATE(693)] = 6450, + [SMALL_STATE(694)] = 6579, + [SMALL_STATE(695)] = 6650, + [SMALL_STATE(696)] = 6779, + [SMALL_STATE(697)] = 6908, + [SMALL_STATE(698)] = 7037, + [SMALL_STATE(699)] = 7166, + [SMALL_STATE(700)] = 7295, + [SMALL_STATE(701)] = 7424, + [SMALL_STATE(702)] = 7553, + [SMALL_STATE(703)] = 7682, + [SMALL_STATE(704)] = 7811, + [SMALL_STATE(705)] = 7940, + [SMALL_STATE(706)] = 8069, + [SMALL_STATE(707)] = 8198, + [SMALL_STATE(708)] = 8327, + [SMALL_STATE(709)] = 8456, + [SMALL_STATE(710)] = 8585, + [SMALL_STATE(711)] = 8714, + [SMALL_STATE(712)] = 8843, + [SMALL_STATE(713)] = 8972, + [SMALL_STATE(714)] = 9101, + [SMALL_STATE(715)] = 9230, + [SMALL_STATE(716)] = 9359, + [SMALL_STATE(717)] = 9488, + [SMALL_STATE(718)] = 9617, + [SMALL_STATE(719)] = 9746, + [SMALL_STATE(720)] = 9875, + [SMALL_STATE(721)] = 10004, + [SMALL_STATE(722)] = 10133, + [SMALL_STATE(723)] = 10262, + [SMALL_STATE(724)] = 10393, + [SMALL_STATE(725)] = 10522, + [SMALL_STATE(726)] = 10651, + [SMALL_STATE(727)] = 10780, + [SMALL_STATE(728)] = 10909, + [SMALL_STATE(729)] = 11038, + [SMALL_STATE(730)] = 11167, + [SMALL_STATE(731)] = 11296, + [SMALL_STATE(732)] = 11425, + [SMALL_STATE(733)] = 11554, + [SMALL_STATE(734)] = 11683, + [SMALL_STATE(735)] = 11812, + [SMALL_STATE(736)] = 11941, + [SMALL_STATE(737)] = 12070, + [SMALL_STATE(738)] = 12199, + [SMALL_STATE(739)] = 12328, + [SMALL_STATE(740)] = 12457, + [SMALL_STATE(741)] = 12586, + [SMALL_STATE(742)] = 12715, + [SMALL_STATE(743)] = 12844, + [SMALL_STATE(744)] = 12973, + [SMALL_STATE(745)] = 13102, + [SMALL_STATE(746)] = 13231, + [SMALL_STATE(747)] = 13360, + [SMALL_STATE(748)] = 13489, + [SMALL_STATE(749)] = 13618, + [SMALL_STATE(750)] = 13747, + [SMALL_STATE(751)] = 13876, + [SMALL_STATE(752)] = 14005, + [SMALL_STATE(753)] = 14134, + [SMALL_STATE(754)] = 14200, + [SMALL_STATE(755)] = 14266, + [SMALL_STATE(756)] = 14332, + [SMALL_STATE(757)] = 14398, + [SMALL_STATE(758)] = 14460, + [SMALL_STATE(759)] = 14530, + [SMALL_STATE(760)] = 14597, + [SMALL_STATE(761)] = 14664, + [SMALL_STATE(762)] = 14720, + [SMALL_STATE(763)] = 14776, + [SMALL_STATE(764)] = 14840, + [SMALL_STATE(765)] = 14896, + [SMALL_STATE(766)] = 14952, + [SMALL_STATE(767)] = 15016, + [SMALL_STATE(768)] = 15078, + [SMALL_STATE(769)] = 15142, + [SMALL_STATE(770)] = 15202, + [SMALL_STATE(771)] = 15262, + [SMALL_STATE(772)] = 15322, + [SMALL_STATE(773)] = 15378, + [SMALL_STATE(774)] = 15442, + [SMALL_STATE(775)] = 15502, + [SMALL_STATE(776)] = 15559, + [SMALL_STATE(777)] = 15618, + [SMALL_STATE(778)] = 15675, + [SMALL_STATE(779)] = 15734, + [SMALL_STATE(780)] = 15789, + [SMALL_STATE(781)] = 15848, + [SMALL_STATE(782)] = 15905, + [SMALL_STATE(783)] = 15962, + [SMALL_STATE(784)] = 16016, + [SMALL_STATE(785)] = 16070, + [SMALL_STATE(786)] = 16124, + [SMALL_STATE(787)] = 16178, + [SMALL_STATE(788)] = 16232, + [SMALL_STATE(789)] = 16286, + [SMALL_STATE(790)] = 16340, + [SMALL_STATE(791)] = 16394, + [SMALL_STATE(792)] = 16448, + [SMALL_STATE(793)] = 16502, + [SMALL_STATE(794)] = 16556, + [SMALL_STATE(795)] = 16610, + [SMALL_STATE(796)] = 16664, + [SMALL_STATE(797)] = 16718, + [SMALL_STATE(798)] = 16772, + [SMALL_STATE(799)] = 16830, + [SMALL_STATE(800)] = 16884, + [SMALL_STATE(801)] = 16938, + [SMALL_STATE(802)] = 16994, + [SMALL_STATE(803)] = 17052, + [SMALL_STATE(804)] = 17106, + [SMALL_STATE(805)] = 17160, + [SMALL_STATE(806)] = 17214, + [SMALL_STATE(807)] = 17268, + [SMALL_STATE(808)] = 17326, + [SMALL_STATE(809)] = 17380, + [SMALL_STATE(810)] = 17434, + [SMALL_STATE(811)] = 17488, + [SMALL_STATE(812)] = 17542, + [SMALL_STATE(813)] = 17596, + [SMALL_STATE(814)] = 17650, + [SMALL_STATE(815)] = 17704, + [SMALL_STATE(816)] = 17758, + [SMALL_STATE(817)] = 17812, + [SMALL_STATE(818)] = 17866, + [SMALL_STATE(819)] = 17920, + [SMALL_STATE(820)] = 17974, + [SMALL_STATE(821)] = 18028, + [SMALL_STATE(822)] = 18082, + [SMALL_STATE(823)] = 18136, + [SMALL_STATE(824)] = 18190, + [SMALL_STATE(825)] = 18244, + [SMALL_STATE(826)] = 18300, + [SMALL_STATE(827)] = 18354, + [SMALL_STATE(828)] = 18408, + [SMALL_STATE(829)] = 18462, + [SMALL_STATE(830)] = 18516, + [SMALL_STATE(831)] = 18570, + [SMALL_STATE(832)] = 18626, + [SMALL_STATE(833)] = 18682, + [SMALL_STATE(834)] = 18736, + [SMALL_STATE(835)] = 18790, + [SMALL_STATE(836)] = 18844, + [SMALL_STATE(837)] = 18898, + [SMALL_STATE(838)] = 18952, + [SMALL_STATE(839)] = 19006, + [SMALL_STATE(840)] = 19060, + [SMALL_STATE(841)] = 19116, + [SMALL_STATE(842)] = 19170, + [SMALL_STATE(843)] = 19224, + [SMALL_STATE(844)] = 19278, + [SMALL_STATE(845)] = 19334, + [SMALL_STATE(846)] = 19388, + [SMALL_STATE(847)] = 19442, + [SMALL_STATE(848)] = 19496, + [SMALL_STATE(849)] = 19550, + [SMALL_STATE(850)] = 19604, + [SMALL_STATE(851)] = 19658, + [SMALL_STATE(852)] = 19712, + [SMALL_STATE(853)] = 19766, + [SMALL_STATE(854)] = 19820, + [SMALL_STATE(855)] = 19876, + [SMALL_STATE(856)] = 19930, + [SMALL_STATE(857)] = 19984, + [SMALL_STATE(858)] = 20038, + [SMALL_STATE(859)] = 20092, + [SMALL_STATE(860)] = 20146, + [SMALL_STATE(861)] = 20200, + [SMALL_STATE(862)] = 20254, + [SMALL_STATE(863)] = 20308, + [SMALL_STATE(864)] = 20362, + [SMALL_STATE(865)] = 20416, + [SMALL_STATE(866)] = 20470, + [SMALL_STATE(867)] = 20524, + [SMALL_STATE(868)] = 20578, + [SMALL_STATE(869)] = 20632, + [SMALL_STATE(870)] = 20686, + [SMALL_STATE(871)] = 20740, + [SMALL_STATE(872)] = 20794, + [SMALL_STATE(873)] = 20848, + [SMALL_STATE(874)] = 20902, + [SMALL_STATE(875)] = 20956, + [SMALL_STATE(876)] = 21010, + [SMALL_STATE(877)] = 21064, + [SMALL_STATE(878)] = 21118, + [SMALL_STATE(879)] = 21172, + [SMALL_STATE(880)] = 21226, + [SMALL_STATE(881)] = 21280, + [SMALL_STATE(882)] = 21334, + [SMALL_STATE(883)] = 21388, + [SMALL_STATE(884)] = 21442, + [SMALL_STATE(885)] = 21496, + [SMALL_STATE(886)] = 21550, + [SMALL_STATE(887)] = 21604, + [SMALL_STATE(888)] = 21658, + [SMALL_STATE(889)] = 21712, + [SMALL_STATE(890)] = 21766, + [SMALL_STATE(891)] = 21820, + [SMALL_STATE(892)] = 21874, + [SMALL_STATE(893)] = 21928, + [SMALL_STATE(894)] = 21982, + [SMALL_STATE(895)] = 22036, + [SMALL_STATE(896)] = 22090, + [SMALL_STATE(897)] = 22144, + [SMALL_STATE(898)] = 22198, + [SMALL_STATE(899)] = 22252, + [SMALL_STATE(900)] = 22306, + [SMALL_STATE(901)] = 22360, + [SMALL_STATE(902)] = 22414, + [SMALL_STATE(903)] = 22468, + [SMALL_STATE(904)] = 22522, + [SMALL_STATE(905)] = 22576, + [SMALL_STATE(906)] = 22630, + [SMALL_STATE(907)] = 22684, + [SMALL_STATE(908)] = 22738, + [SMALL_STATE(909)] = 22792, + [SMALL_STATE(910)] = 22846, + [SMALL_STATE(911)] = 22900, + [SMALL_STATE(912)] = 22954, + [SMALL_STATE(913)] = 23008, + [SMALL_STATE(914)] = 23062, + [SMALL_STATE(915)] = 23116, + [SMALL_STATE(916)] = 23170, + [SMALL_STATE(917)] = 23224, + [SMALL_STATE(918)] = 23278, + [SMALL_STATE(919)] = 23332, + [SMALL_STATE(920)] = 23386, + [SMALL_STATE(921)] = 23440, + [SMALL_STATE(922)] = 23494, + [SMALL_STATE(923)] = 23548, + [SMALL_STATE(924)] = 23602, + [SMALL_STATE(925)] = 23656, + [SMALL_STATE(926)] = 23710, + [SMALL_STATE(927)] = 23764, + [SMALL_STATE(928)] = 23818, + [SMALL_STATE(929)] = 23872, + [SMALL_STATE(930)] = 23926, + [SMALL_STATE(931)] = 23980, + [SMALL_STATE(932)] = 24034, + [SMALL_STATE(933)] = 24088, + [SMALL_STATE(934)] = 24142, + [SMALL_STATE(935)] = 24196, + [SMALL_STATE(936)] = 24250, + [SMALL_STATE(937)] = 24304, + [SMALL_STATE(938)] = 24358, + [SMALL_STATE(939)] = 24412, + [SMALL_STATE(940)] = 24468, + [SMALL_STATE(941)] = 24522, + [SMALL_STATE(942)] = 24576, + [SMALL_STATE(943)] = 24632, + [SMALL_STATE(944)] = 24686, + [SMALL_STATE(945)] = 24740, + [SMALL_STATE(946)] = 24794, + [SMALL_STATE(947)] = 24848, + [SMALL_STATE(948)] = 24902, + [SMALL_STATE(949)] = 24956, + [SMALL_STATE(950)] = 25010, + [SMALL_STATE(951)] = 25066, + [SMALL_STATE(952)] = 25120, + [SMALL_STATE(953)] = 25174, + [SMALL_STATE(954)] = 25228, + [SMALL_STATE(955)] = 25282, + [SMALL_STATE(956)] = 25338, + [SMALL_STATE(957)] = 25392, + [SMALL_STATE(958)] = 25446, + [SMALL_STATE(959)] = 25500, + [SMALL_STATE(960)] = 25554, + [SMALL_STATE(961)] = 25608, + [SMALL_STATE(962)] = 25662, + [SMALL_STATE(963)] = 25716, + [SMALL_STATE(964)] = 25770, + [SMALL_STATE(965)] = 25824, + [SMALL_STATE(966)] = 25878, + [SMALL_STATE(967)] = 25932, + [SMALL_STATE(968)] = 25986, + [SMALL_STATE(969)] = 26042, + [SMALL_STATE(970)] = 26096, + [SMALL_STATE(971)] = 26152, + [SMALL_STATE(972)] = 26206, + [SMALL_STATE(973)] = 26260, + [SMALL_STATE(974)] = 26314, + [SMALL_STATE(975)] = 26368, + [SMALL_STATE(976)] = 26422, + [SMALL_STATE(977)] = 26476, + [SMALL_STATE(978)] = 26530, + [SMALL_STATE(979)] = 26584, + [SMALL_STATE(980)] = 26640, + [SMALL_STATE(981)] = 26694, + [SMALL_STATE(982)] = 26748, + [SMALL_STATE(983)] = 26802, + [SMALL_STATE(984)] = 26856, + [SMALL_STATE(985)] = 26910, + [SMALL_STATE(986)] = 26964, + [SMALL_STATE(987)] = 27018, + [SMALL_STATE(988)] = 27072, + [SMALL_STATE(989)] = 27128, + [SMALL_STATE(990)] = 27182, + [SMALL_STATE(991)] = 27236, + [SMALL_STATE(992)] = 27290, + [SMALL_STATE(993)] = 27344, + [SMALL_STATE(994)] = 27398, + [SMALL_STATE(995)] = 27452, + [SMALL_STATE(996)] = 27506, + [SMALL_STATE(997)] = 27560, + [SMALL_STATE(998)] = 27614, + [SMALL_STATE(999)] = 27668, + [SMALL_STATE(1000)] = 27722, + [SMALL_STATE(1001)] = 27776, + [SMALL_STATE(1002)] = 27830, + [SMALL_STATE(1003)] = 27884, + [SMALL_STATE(1004)] = 27938, + [SMALL_STATE(1005)] = 27992, + [SMALL_STATE(1006)] = 28046, + [SMALL_STATE(1007)] = 28100, + [SMALL_STATE(1008)] = 28154, + [SMALL_STATE(1009)] = 28208, + [SMALL_STATE(1010)] = 28262, + [SMALL_STATE(1011)] = 28316, + [SMALL_STATE(1012)] = 28370, + [SMALL_STATE(1013)] = 28424, + [SMALL_STATE(1014)] = 28478, + [SMALL_STATE(1015)] = 28532, + [SMALL_STATE(1016)] = 28586, + [SMALL_STATE(1017)] = 28640, + [SMALL_STATE(1018)] = 28694, + [SMALL_STATE(1019)] = 28748, + [SMALL_STATE(1020)] = 28802, + [SMALL_STATE(1021)] = 28856, + [SMALL_STATE(1022)] = 28910, + [SMALL_STATE(1023)] = 28964, + [SMALL_STATE(1024)] = 29018, + [SMALL_STATE(1025)] = 29072, + [SMALL_STATE(1026)] = 29126, + [SMALL_STATE(1027)] = 29180, + [SMALL_STATE(1028)] = 29234, + [SMALL_STATE(1029)] = 29288, + [SMALL_STATE(1030)] = 29342, + [SMALL_STATE(1031)] = 29396, + [SMALL_STATE(1032)] = 29450, + [SMALL_STATE(1033)] = 29504, + [SMALL_STATE(1034)] = 29558, + [SMALL_STATE(1035)] = 29612, + [SMALL_STATE(1036)] = 29666, + [SMALL_STATE(1037)] = 29720, + [SMALL_STATE(1038)] = 29774, + [SMALL_STATE(1039)] = 29828, + [SMALL_STATE(1040)] = 29882, + [SMALL_STATE(1041)] = 29936, + [SMALL_STATE(1042)] = 29989, + [SMALL_STATE(1043)] = 30042, + [SMALL_STATE(1044)] = 30097, + [SMALL_STATE(1045)] = 30150, + [SMALL_STATE(1046)] = 30203, + [SMALL_STATE(1047)] = 30256, + [SMALL_STATE(1048)] = 30309, + [SMALL_STATE(1049)] = 30362, + [SMALL_STATE(1050)] = 30415, + [SMALL_STATE(1051)] = 30468, + [SMALL_STATE(1052)] = 30521, + [SMALL_STATE(1053)] = 30574, + [SMALL_STATE(1054)] = 30627, + [SMALL_STATE(1055)] = 30680, + [SMALL_STATE(1056)] = 30735, + [SMALL_STATE(1057)] = 30788, + [SMALL_STATE(1058)] = 30841, + [SMALL_STATE(1059)] = 30894, + [SMALL_STATE(1060)] = 30947, + [SMALL_STATE(1061)] = 31000, + [SMALL_STATE(1062)] = 31053, + [SMALL_STATE(1063)] = 31106, + [SMALL_STATE(1064)] = 31159, + [SMALL_STATE(1065)] = 31212, + [SMALL_STATE(1066)] = 31265, + [SMALL_STATE(1067)] = 31318, + [SMALL_STATE(1068)] = 31371, + [SMALL_STATE(1069)] = 31424, + [SMALL_STATE(1070)] = 31477, + [SMALL_STATE(1071)] = 31532, + [SMALL_STATE(1072)] = 31585, + [SMALL_STATE(1073)] = 31638, + [SMALL_STATE(1074)] = 31691, + [SMALL_STATE(1075)] = 31744, + [SMALL_STATE(1076)] = 31797, + [SMALL_STATE(1077)] = 31850, + [SMALL_STATE(1078)] = 31903, + [SMALL_STATE(1079)] = 31956, + [SMALL_STATE(1080)] = 32009, + [SMALL_STATE(1081)] = 32062, + [SMALL_STATE(1082)] = 32151, + [SMALL_STATE(1083)] = 32204, + [SMALL_STATE(1084)] = 32257, + [SMALL_STATE(1085)] = 32310, + [SMALL_STATE(1086)] = 32363, + [SMALL_STATE(1087)] = 32416, + [SMALL_STATE(1088)] = 32469, + [SMALL_STATE(1089)] = 32522, + [SMALL_STATE(1090)] = 32575, + [SMALL_STATE(1091)] = 32628, + [SMALL_STATE(1092)] = 32681, + [SMALL_STATE(1093)] = 32734, + [SMALL_STATE(1094)] = 32787, + [SMALL_STATE(1095)] = 32876, + [SMALL_STATE(1096)] = 32929, + [SMALL_STATE(1097)] = 32982, + [SMALL_STATE(1098)] = 33037, + [SMALL_STATE(1099)] = 33090, + [SMALL_STATE(1100)] = 33143, + [SMALL_STATE(1101)] = 33196, + [SMALL_STATE(1102)] = 33249, + [SMALL_STATE(1103)] = 33302, + [SMALL_STATE(1104)] = 33355, + [SMALL_STATE(1105)] = 33408, + [SMALL_STATE(1106)] = 33461, + [SMALL_STATE(1107)] = 33514, + [SMALL_STATE(1108)] = 33567, + [SMALL_STATE(1109)] = 33620, + [SMALL_STATE(1110)] = 33673, + [SMALL_STATE(1111)] = 33726, + [SMALL_STATE(1112)] = 33779, + [SMALL_STATE(1113)] = 33832, + [SMALL_STATE(1114)] = 33885, + [SMALL_STATE(1115)] = 33938, + [SMALL_STATE(1116)] = 33991, + [SMALL_STATE(1117)] = 34044, + [SMALL_STATE(1118)] = 34097, + [SMALL_STATE(1119)] = 34150, + [SMALL_STATE(1120)] = 34203, + [SMALL_STATE(1121)] = 34256, + [SMALL_STATE(1122)] = 34309, + [SMALL_STATE(1123)] = 34362, + [SMALL_STATE(1124)] = 34415, + [SMALL_STATE(1125)] = 34468, + [SMALL_STATE(1126)] = 34521, + [SMALL_STATE(1127)] = 34574, + [SMALL_STATE(1128)] = 34627, + [SMALL_STATE(1129)] = 34680, + [SMALL_STATE(1130)] = 34733, + [SMALL_STATE(1131)] = 34786, + [SMALL_STATE(1132)] = 34839, + [SMALL_STATE(1133)] = 34892, + [SMALL_STATE(1134)] = 34945, + [SMALL_STATE(1135)] = 34998, + [SMALL_STATE(1136)] = 35055, + [SMALL_STATE(1137)] = 35108, + [SMALL_STATE(1138)] = 35161, + [SMALL_STATE(1139)] = 35214, + [SMALL_STATE(1140)] = 35267, + [SMALL_STATE(1141)] = 35320, + [SMALL_STATE(1142)] = 35398, + [SMALL_STATE(1143)] = 35458, + [SMALL_STATE(1144)] = 35544, + [SMALL_STATE(1145)] = 35604, + [SMALL_STATE(1146)] = 35664, + [SMALL_STATE(1147)] = 35744, + [SMALL_STATE(1148)] = 35806, + [SMALL_STATE(1149)] = 35892, + [SMALL_STATE(1150)] = 35944, + [SMALL_STATE(1151)] = 36004, + [SMALL_STATE(1152)] = 36084, + [SMALL_STATE(1153)] = 36164, + [SMALL_STATE(1154)] = 36224, + [SMALL_STATE(1155)] = 36304, + [SMALL_STATE(1156)] = 36376, + [SMALL_STATE(1157)] = 36428, + [SMALL_STATE(1158)] = 36508, + [SMALL_STATE(1159)] = 36574, + [SMALL_STATE(1160)] = 36650, + [SMALL_STATE(1161)] = 36730, + [SMALL_STATE(1162)] = 36794, + [SMALL_STATE(1163)] = 36862, + [SMALL_STATE(1164)] = 36932, + [SMALL_STATE(1165)] = 36983, + [SMALL_STATE(1166)] = 37034, + [SMALL_STATE(1167)] = 37091, + [SMALL_STATE(1168)] = 37176, + [SMALL_STATE(1169)] = 37263, + [SMALL_STATE(1170)] = 37350, + [SMALL_STATE(1171)] = 37437, + [SMALL_STATE(1172)] = 37522, + [SMALL_STATE(1173)] = 37609, + [SMALL_STATE(1174)] = 37688, + [SMALL_STATE(1175)] = 37742, + [SMALL_STATE(1176)] = 37818, + [SMALL_STATE(1177)] = 37874, + [SMALL_STATE(1178)] = 37950, + [SMALL_STATE(1179)] = 38026, + [SMALL_STATE(1180)] = 38102, + [SMALL_STATE(1181)] = 38151, + [SMALL_STATE(1182)] = 38202, + [SMALL_STATE(1183)] = 38251, + [SMALL_STATE(1184)] = 38300, + [SMALL_STATE(1185)] = 38349, + [SMALL_STATE(1186)] = 38398, + [SMALL_STATE(1187)] = 38471, + [SMALL_STATE(1188)] = 38520, + [SMALL_STATE(1189)] = 38569, + [SMALL_STATE(1190)] = 38620, + [SMALL_STATE(1191)] = 38709, + [SMALL_STATE(1192)] = 38798, + [SMALL_STATE(1193)] = 38847, + [SMALL_STATE(1194)] = 38900, + [SMALL_STATE(1195)] = 38953, + [SMALL_STATE(1196)] = 39002, + [SMALL_STATE(1197)] = 39080, + [SMALL_STATE(1198)] = 39166, + [SMALL_STATE(1199)] = 39216, + [SMALL_STATE(1200)] = 39266, + [SMALL_STATE(1201)] = 39344, + [SMALL_STATE(1202)] = 39430, + [SMALL_STATE(1203)] = 39480, + [SMALL_STATE(1204)] = 39530, + [SMALL_STATE(1205)] = 39613, + [SMALL_STATE(1206)] = 39696, + [SMALL_STATE(1207)] = 39779, + [SMALL_STATE(1208)] = 39862, + [SMALL_STATE(1209)] = 39943, + [SMALL_STATE(1210)] = 40026, + [SMALL_STATE(1211)] = 40107, + [SMALL_STATE(1212)] = 40190, + [SMALL_STATE(1213)] = 40265, + [SMALL_STATE(1214)] = 40322, + [SMALL_STATE(1215)] = 40393, + [SMALL_STATE(1216)] = 40476, + [SMALL_STATE(1217)] = 40559, + [SMALL_STATE(1218)] = 40642, + [SMALL_STATE(1219)] = 40697, + [SMALL_STATE(1220)] = 40772, + [SMALL_STATE(1221)] = 40855, + [SMALL_STATE(1222)] = 40938, + [SMALL_STATE(1223)] = 41021, + [SMALL_STATE(1224)] = 41104, + [SMALL_STATE(1225)] = 41179, + [SMALL_STATE(1226)] = 41254, + [SMALL_STATE(1227)] = 41337, + [SMALL_STATE(1228)] = 41420, + [SMALL_STATE(1229)] = 41475, + [SMALL_STATE(1230)] = 41558, + [SMALL_STATE(1231)] = 41639, + [SMALL_STATE(1232)] = 41714, + [SMALL_STATE(1233)] = 41773, + [SMALL_STATE(1234)] = 41856, + [SMALL_STATE(1235)] = 41937, + [SMALL_STATE(1236)] = 41992, + [SMALL_STATE(1237)] = 42047, + [SMALL_STATE(1238)] = 42128, + [SMALL_STATE(1239)] = 42211, + [SMALL_STATE(1240)] = 42292, + [SMALL_STATE(1241)] = 42375, + [SMALL_STATE(1242)] = 42458, + [SMALL_STATE(1243)] = 42541, + [SMALL_STATE(1244)] = 42624, + [SMALL_STATE(1245)] = 42687, + [SMALL_STATE(1246)] = 42770, + [SMALL_STATE(1247)] = 42853, + [SMALL_STATE(1248)] = 42936, + [SMALL_STATE(1249)] = 43001, + [SMALL_STATE(1250)] = 43084, + [SMALL_STATE(1251)] = 43167, + [SMALL_STATE(1252)] = 43250, + [SMALL_STATE(1253)] = 43331, + [SMALL_STATE(1254)] = 43414, + [SMALL_STATE(1255)] = 43497, + [SMALL_STATE(1256)] = 43580, + [SMALL_STATE(1257)] = 43653, + [SMALL_STATE(1258)] = 43736, + [SMALL_STATE(1259)] = 43819, + [SMALL_STATE(1260)] = 43902, + [SMALL_STATE(1261)] = 43985, + [SMALL_STATE(1262)] = 44068, + [SMALL_STATE(1263)] = 44139, + [SMALL_STATE(1264)] = 44200, + [SMALL_STATE(1265)] = 44283, + [SMALL_STATE(1266)] = 44364, + [SMALL_STATE(1267)] = 44445, + [SMALL_STATE(1268)] = 44520, + [SMALL_STATE(1269)] = 44603, + [SMALL_STATE(1270)] = 44686, + [SMALL_STATE(1271)] = 44753, + [SMALL_STATE(1272)] = 44836, + [SMALL_STATE(1273)] = 44917, + [SMALL_STATE(1274)] = 44998, + [SMALL_STATE(1275)] = 45079, + [SMALL_STATE(1276)] = 45162, + [SMALL_STATE(1277)] = 45245, + [SMALL_STATE(1278)] = 45328, + [SMALL_STATE(1279)] = 45411, + [SMALL_STATE(1280)] = 45494, + [SMALL_STATE(1281)] = 45574, + [SMALL_STATE(1282)] = 45654, + [SMALL_STATE(1283)] = 45734, + [SMALL_STATE(1284)] = 45814, + [SMALL_STATE(1285)] = 45894, + [SMALL_STATE(1286)] = 45974, + [SMALL_STATE(1287)] = 46054, + [SMALL_STATE(1288)] = 46134, + [SMALL_STATE(1289)] = 46214, + [SMALL_STATE(1290)] = 46294, + [SMALL_STATE(1291)] = 46374, + [SMALL_STATE(1292)] = 46454, + [SMALL_STATE(1293)] = 46534, + [SMALL_STATE(1294)] = 46614, + [SMALL_STATE(1295)] = 46694, + [SMALL_STATE(1296)] = 46774, + [SMALL_STATE(1297)] = 46854, + [SMALL_STATE(1298)] = 46934, + [SMALL_STATE(1299)] = 47014, + [SMALL_STATE(1300)] = 47094, + [SMALL_STATE(1301)] = 47174, + [SMALL_STATE(1302)] = 47254, + [SMALL_STATE(1303)] = 47334, + [SMALL_STATE(1304)] = 47414, + [SMALL_STATE(1305)] = 47482, + [SMALL_STATE(1306)] = 47562, + [SMALL_STATE(1307)] = 47642, + [SMALL_STATE(1308)] = 47722, + [SMALL_STATE(1309)] = 47802, + [SMALL_STATE(1310)] = 47882, + [SMALL_STATE(1311)] = 47962, + [SMALL_STATE(1312)] = 48030, + [SMALL_STATE(1313)] = 48110, + [SMALL_STATE(1314)] = 48175, + [SMALL_STATE(1315)] = 48240, + [SMALL_STATE(1316)] = 48305, + [SMALL_STATE(1317)] = 48370, + [SMALL_STATE(1318)] = 48435, + [SMALL_STATE(1319)] = 48475, + [SMALL_STATE(1320)] = 48515, + [SMALL_STATE(1321)] = 48555, + [SMALL_STATE(1322)] = 48610, + [SMALL_STATE(1323)] = 48665, + [SMALL_STATE(1324)] = 48720, + [SMALL_STATE(1325)] = 48775, + [SMALL_STATE(1326)] = 48830, + [SMALL_STATE(1327)] = 48885, + [SMALL_STATE(1328)] = 48940, + [SMALL_STATE(1329)] = 48992, + [SMALL_STATE(1330)] = 49044, + [SMALL_STATE(1331)] = 49074, + [SMALL_STATE(1332)] = 49104, + [SMALL_STATE(1333)] = 49146, + [SMALL_STATE(1334)] = 49186, + [SMALL_STATE(1335)] = 49215, + [SMALL_STATE(1336)] = 49244, + [SMALL_STATE(1337)] = 49273, + [SMALL_STATE(1338)] = 49310, + [SMALL_STATE(1339)] = 49347, + [SMALL_STATE(1340)] = 49376, + [SMALL_STATE(1341)] = 49405, + [SMALL_STATE(1342)] = 49434, + [SMALL_STATE(1343)] = 49463, + [SMALL_STATE(1344)] = 49492, + [SMALL_STATE(1345)] = 49546, + [SMALL_STATE(1346)] = 49600, + [SMALL_STATE(1347)] = 49632, + [SMALL_STATE(1348)] = 49664, + [SMALL_STATE(1349)] = 49696, + [SMALL_STATE(1350)] = 49721, + [SMALL_STATE(1351)] = 49744, + [SMALL_STATE(1352)] = 49768, + [SMALL_STATE(1353)] = 49812, + [SMALL_STATE(1354)] = 49836, + [SMALL_STATE(1355)] = 49860, + [SMALL_STATE(1356)] = 49890, + [SMALL_STATE(1357)] = 49914, + [SMALL_STATE(1358)] = 49936, + [SMALL_STATE(1359)] = 49960, + [SMALL_STATE(1360)] = 49984, + [SMALL_STATE(1361)] = 50008, + [SMALL_STATE(1362)] = 50030, + [SMALL_STATE(1363)] = 50054, + [SMALL_STATE(1364)] = 50098, + [SMALL_STATE(1365)] = 50144, + [SMALL_STATE(1366)] = 50168, + [SMALL_STATE(1367)] = 50190, + [SMALL_STATE(1368)] = 50214, + [SMALL_STATE(1369)] = 50236, + [SMALL_STATE(1370)] = 50259, + [SMALL_STATE(1371)] = 50280, + [SMALL_STATE(1372)] = 50325, + [SMALL_STATE(1373)] = 50350, + [SMALL_STATE(1374)] = 50375, + [SMALL_STATE(1375)] = 50398, + [SMALL_STATE(1376)] = 50419, + [SMALL_STATE(1377)] = 50444, + [SMALL_STATE(1378)] = 50467, + [SMALL_STATE(1379)] = 50492, + [SMALL_STATE(1380)] = 50513, + [SMALL_STATE(1381)] = 50536, + [SMALL_STATE(1382)] = 50559, + [SMALL_STATE(1383)] = 50580, + [SMALL_STATE(1384)] = 50603, + [SMALL_STATE(1385)] = 50624, + [SMALL_STATE(1386)] = 50647, + [SMALL_STATE(1387)] = 50672, + [SMALL_STATE(1388)] = 50695, + [SMALL_STATE(1389)] = 50722, + [SMALL_STATE(1390)] = 50747, + [SMALL_STATE(1391)] = 50767, + [SMALL_STATE(1392)] = 50787, + [SMALL_STATE(1393)] = 50807, + [SMALL_STATE(1394)] = 50827, + [SMALL_STATE(1395)] = 50849, + [SMALL_STATE(1396)] = 50869, + [SMALL_STATE(1397)] = 50889, + [SMALL_STATE(1398)] = 50909, + [SMALL_STATE(1399)] = 50929, + [SMALL_STATE(1400)] = 50949, + [SMALL_STATE(1401)] = 50969, + [SMALL_STATE(1402)] = 50991, + [SMALL_STATE(1403)] = 51011, + [SMALL_STATE(1404)] = 51031, + [SMALL_STATE(1405)] = 51051, + [SMALL_STATE(1406)] = 51071, + [SMALL_STATE(1407)] = 51093, + [SMALL_STATE(1408)] = 51113, + [SMALL_STATE(1409)] = 51133, + [SMALL_STATE(1410)] = 51153, + [SMALL_STATE(1411)] = 51173, + [SMALL_STATE(1412)] = 51193, + [SMALL_STATE(1413)] = 51213, + [SMALL_STATE(1414)] = 51233, + [SMALL_STATE(1415)] = 51253, + [SMALL_STATE(1416)] = 51273, + [SMALL_STATE(1417)] = 51293, + [SMALL_STATE(1418)] = 51313, + [SMALL_STATE(1419)] = 51337, + [SMALL_STATE(1420)] = 51357, + [SMALL_STATE(1421)] = 51377, + [SMALL_STATE(1422)] = 51398, + [SMALL_STATE(1423)] = 51423, + [SMALL_STATE(1424)] = 51446, + [SMALL_STATE(1425)] = 51469, + [SMALL_STATE(1426)] = 51494, + [SMALL_STATE(1427)] = 51517, + [SMALL_STATE(1428)] = 51540, + [SMALL_STATE(1429)] = 51563, + [SMALL_STATE(1430)] = 51586, + [SMALL_STATE(1431)] = 51611, + [SMALL_STATE(1432)] = 51634, + [SMALL_STATE(1433)] = 51659, + [SMALL_STATE(1434)] = 51684, + [SMALL_STATE(1435)] = 51707, + [SMALL_STATE(1436)] = 51730, + [SMALL_STATE(1437)] = 51755, + [SMALL_STATE(1438)] = 51780, + [SMALL_STATE(1439)] = 51805, + [SMALL_STATE(1440)] = 51826, + [SMALL_STATE(1441)] = 51849, + [SMALL_STATE(1442)] = 51872, + [SMALL_STATE(1443)] = 51895, + [SMALL_STATE(1444)] = 51916, + [SMALL_STATE(1445)] = 51951, + [SMALL_STATE(1446)] = 51971, + [SMALL_STATE(1447)] = 51991, + [SMALL_STATE(1448)] = 52011, + [SMALL_STATE(1449)] = 52031, + [SMALL_STATE(1450)] = 52051, + [SMALL_STATE(1451)] = 52071, + [SMALL_STATE(1452)] = 52103, + [SMALL_STATE(1453)] = 52123, + [SMALL_STATE(1454)] = 52155, + [SMALL_STATE(1455)] = 52187, + [SMALL_STATE(1456)] = 52207, + [SMALL_STATE(1457)] = 52227, + [SMALL_STATE(1458)] = 52259, + [SMALL_STATE(1459)] = 52279, + [SMALL_STATE(1460)] = 52299, + [SMALL_STATE(1461)] = 52325, + [SMALL_STATE(1462)] = 52345, + [SMALL_STATE(1463)] = 52365, + [SMALL_STATE(1464)] = 52397, + [SMALL_STATE(1465)] = 52417, + [SMALL_STATE(1466)] = 52437, + [SMALL_STATE(1467)] = 52461, + [SMALL_STATE(1468)] = 52481, + [SMALL_STATE(1469)] = 52501, + [SMALL_STATE(1470)] = 52521, + [SMALL_STATE(1471)] = 52541, + [SMALL_STATE(1472)] = 52573, + [SMALL_STATE(1473)] = 52593, + [SMALL_STATE(1474)] = 52613, + [SMALL_STATE(1475)] = 52633, + [SMALL_STATE(1476)] = 52653, + [SMALL_STATE(1477)] = 52673, + [SMALL_STATE(1478)] = 52693, + [SMALL_STATE(1479)] = 52713, + [SMALL_STATE(1480)] = 52745, + [SMALL_STATE(1481)] = 52765, + [SMALL_STATE(1482)] = 52785, + [SMALL_STATE(1483)] = 52809, + [SMALL_STATE(1484)] = 52833, + [SMALL_STATE(1485)] = 52853, + [SMALL_STATE(1486)] = 52885, + [SMALL_STATE(1487)] = 52905, + [SMALL_STATE(1488)] = 52931, + [SMALL_STATE(1489)] = 52951, + [SMALL_STATE(1490)] = 52975, + [SMALL_STATE(1491)] = 53004, + [SMALL_STATE(1492)] = 53037, + [SMALL_STATE(1493)] = 53060, + [SMALL_STATE(1494)] = 53085, + [SMALL_STATE(1495)] = 53118, + [SMALL_STATE(1496)] = 53141, + [SMALL_STATE(1497)] = 53164, + [SMALL_STATE(1498)] = 53197, + [SMALL_STATE(1499)] = 53222, + [SMALL_STATE(1500)] = 53253, + [SMALL_STATE(1501)] = 53278, + [SMALL_STATE(1502)] = 53305, + [SMALL_STATE(1503)] = 53338, + [SMALL_STATE(1504)] = 53370, + [SMALL_STATE(1505)] = 53402, + [SMALL_STATE(1506)] = 53432, + [SMALL_STATE(1507)] = 53458, + [SMALL_STATE(1508)] = 53484, + [SMALL_STATE(1509)] = 53514, + [SMALL_STATE(1510)] = 53544, + [SMALL_STATE(1511)] = 53570, + [SMALL_STATE(1512)] = 53600, + [SMALL_STATE(1513)] = 53630, + [SMALL_STATE(1514)] = 53656, + [SMALL_STATE(1515)] = 53686, + [SMALL_STATE(1516)] = 53716, + [SMALL_STATE(1517)] = 53738, + [SMALL_STATE(1518)] = 53764, + [SMALL_STATE(1519)] = 53794, + [SMALL_STATE(1520)] = 53816, + [SMALL_STATE(1521)] = 53848, + [SMALL_STATE(1522)] = 53870, + [SMALL_STATE(1523)] = 53896, + [SMALL_STATE(1524)] = 53918, + [SMALL_STATE(1525)] = 53940, + [SMALL_STATE(1526)] = 53970, + [SMALL_STATE(1527)] = 54000, + [SMALL_STATE(1528)] = 54026, + [SMALL_STATE(1529)] = 54056, + [SMALL_STATE(1530)] = 54082, + [SMALL_STATE(1531)] = 54112, + [SMALL_STATE(1532)] = 54142, + [SMALL_STATE(1533)] = 54168, + [SMALL_STATE(1534)] = 54194, + [SMALL_STATE(1535)] = 54224, + [SMALL_STATE(1536)] = 54254, + [SMALL_STATE(1537)] = 54284, + [SMALL_STATE(1538)] = 54314, + [SMALL_STATE(1539)] = 54346, + [SMALL_STATE(1540)] = 54376, + [SMALL_STATE(1541)] = 54402, + [SMALL_STATE(1542)] = 54432, + [SMALL_STATE(1543)] = 54454, + [SMALL_STATE(1544)] = 54484, + [SMALL_STATE(1545)] = 54514, + [SMALL_STATE(1546)] = 54533, + [SMALL_STATE(1547)] = 54560, + [SMALL_STATE(1548)] = 54583, + [SMALL_STATE(1549)] = 54602, + [SMALL_STATE(1550)] = 54621, + [SMALL_STATE(1551)] = 54650, + [SMALL_STATE(1552)] = 54677, + [SMALL_STATE(1553)] = 54704, + [SMALL_STATE(1554)] = 54733, + [SMALL_STATE(1555)] = 54760, + [SMALL_STATE(1556)] = 54783, + [SMALL_STATE(1557)] = 54810, + [SMALL_STATE(1558)] = 54831, + [SMALL_STATE(1559)] = 54850, + [SMALL_STATE(1560)] = 54879, + [SMALL_STATE(1561)] = 54906, + [SMALL_STATE(1562)] = 54933, + [SMALL_STATE(1563)] = 54960, + [SMALL_STATE(1564)] = 54979, + [SMALL_STATE(1565)] = 55006, + [SMALL_STATE(1566)] = 55025, + [SMALL_STATE(1567)] = 55052, + [SMALL_STATE(1568)] = 55075, + [SMALL_STATE(1569)] = 55102, + [SMALL_STATE(1570)] = 55131, + [SMALL_STATE(1571)] = 55160, + [SMALL_STATE(1572)] = 55183, + [SMALL_STATE(1573)] = 55204, + [SMALL_STATE(1574)] = 55231, + [SMALL_STATE(1575)] = 55258, + [SMALL_STATE(1576)] = 55277, + [SMALL_STATE(1577)] = 55304, + [SMALL_STATE(1578)] = 55323, + [SMALL_STATE(1579)] = 55352, + [SMALL_STATE(1580)] = 55377, + [SMALL_STATE(1581)] = 55392, + [SMALL_STATE(1582)] = 55411, + [SMALL_STATE(1583)] = 55434, + [SMALL_STATE(1584)] = 55453, + [SMALL_STATE(1585)] = 55480, + [SMALL_STATE(1586)] = 55499, + [SMALL_STATE(1587)] = 55521, + [SMALL_STATE(1588)] = 55537, + [SMALL_STATE(1589)] = 55551, + [SMALL_STATE(1590)] = 55565, + [SMALL_STATE(1591)] = 55587, + [SMALL_STATE(1592)] = 55601, + [SMALL_STATE(1593)] = 55623, + [SMALL_STATE(1594)] = 55649, + [SMALL_STATE(1595)] = 55671, + [SMALL_STATE(1596)] = 55693, + [SMALL_STATE(1597)] = 55709, + [SMALL_STATE(1598)] = 55723, + [SMALL_STATE(1599)] = 55745, + [SMALL_STATE(1600)] = 55761, + [SMALL_STATE(1601)] = 55775, + [SMALL_STATE(1602)] = 55799, + [SMALL_STATE(1603)] = 55813, + [SMALL_STATE(1604)] = 55839, + [SMALL_STATE(1605)] = 55865, + [SMALL_STATE(1606)] = 55891, + [SMALL_STATE(1607)] = 55917, + [SMALL_STATE(1608)] = 55943, + [SMALL_STATE(1609)] = 55969, + [SMALL_STATE(1610)] = 55993, + [SMALL_STATE(1611)] = 56019, + [SMALL_STATE(1612)] = 56033, + [SMALL_STATE(1613)] = 56059, + [SMALL_STATE(1614)] = 56085, + [SMALL_STATE(1615)] = 56111, + [SMALL_STATE(1616)] = 56137, + [SMALL_STATE(1617)] = 56163, + [SMALL_STATE(1618)] = 56179, + [SMALL_STATE(1619)] = 56203, + [SMALL_STATE(1620)] = 56229, + [SMALL_STATE(1621)] = 56255, + [SMALL_STATE(1622)] = 56271, + [SMALL_STATE(1623)] = 56297, + [SMALL_STATE(1624)] = 56321, + [SMALL_STATE(1625)] = 56337, + [SMALL_STATE(1626)] = 56363, + [SMALL_STATE(1627)] = 56389, + [SMALL_STATE(1628)] = 56415, + [SMALL_STATE(1629)] = 56441, + [SMALL_STATE(1630)] = 56457, + [SMALL_STATE(1631)] = 56481, + [SMALL_STATE(1632)] = 56497, + [SMALL_STATE(1633)] = 56520, + [SMALL_STATE(1634)] = 56537, + [SMALL_STATE(1635)] = 56560, + [SMALL_STATE(1636)] = 56583, + [SMALL_STATE(1637)] = 56606, + [SMALL_STATE(1638)] = 56629, + [SMALL_STATE(1639)] = 56652, + [SMALL_STATE(1640)] = 56675, + [SMALL_STATE(1641)] = 56692, + [SMALL_STATE(1642)] = 56715, + [SMALL_STATE(1643)] = 56738, + [SMALL_STATE(1644)] = 56761, + [SMALL_STATE(1645)] = 56778, + [SMALL_STATE(1646)] = 56801, + [SMALL_STATE(1647)] = 56824, + [SMALL_STATE(1648)] = 56841, + [SMALL_STATE(1649)] = 56864, + [SMALL_STATE(1650)] = 56887, + [SMALL_STATE(1651)] = 56910, + [SMALL_STATE(1652)] = 56933, + [SMALL_STATE(1653)] = 56950, + [SMALL_STATE(1654)] = 56973, + [SMALL_STATE(1655)] = 56996, + [SMALL_STATE(1656)] = 57013, + [SMALL_STATE(1657)] = 57036, + [SMALL_STATE(1658)] = 57059, + [SMALL_STATE(1659)] = 57082, + [SMALL_STATE(1660)] = 57099, + [SMALL_STATE(1661)] = 57120, + [SMALL_STATE(1662)] = 57143, + [SMALL_STATE(1663)] = 57162, + [SMALL_STATE(1664)] = 57185, + [SMALL_STATE(1665)] = 57208, + [SMALL_STATE(1666)] = 57223, + [SMALL_STATE(1667)] = 57240, + [SMALL_STATE(1668)] = 57263, + [SMALL_STATE(1669)] = 57282, + [SMALL_STATE(1670)] = 57305, + [SMALL_STATE(1671)] = 57328, + [SMALL_STATE(1672)] = 57351, + [SMALL_STATE(1673)] = 57374, + [SMALL_STATE(1674)] = 57397, + [SMALL_STATE(1675)] = 57420, + [SMALL_STATE(1676)] = 57437, + [SMALL_STATE(1677)] = 57460, + [SMALL_STATE(1678)] = 57483, + [SMALL_STATE(1679)] = 57506, + [SMALL_STATE(1680)] = 57529, + [SMALL_STATE(1681)] = 57546, + [SMALL_STATE(1682)] = 57569, + [SMALL_STATE(1683)] = 57592, + [SMALL_STATE(1684)] = 57615, + [SMALL_STATE(1685)] = 57638, + [SMALL_STATE(1686)] = 57661, + [SMALL_STATE(1687)] = 57684, + [SMALL_STATE(1688)] = 57705, + [SMALL_STATE(1689)] = 57728, + [SMALL_STATE(1690)] = 57751, + [SMALL_STATE(1691)] = 57774, + [SMALL_STATE(1692)] = 57797, + [SMALL_STATE(1693)] = 57820, + [SMALL_STATE(1694)] = 57843, + [SMALL_STATE(1695)] = 57866, + [SMALL_STATE(1696)] = 57883, + [SMALL_STATE(1697)] = 57906, + [SMALL_STATE(1698)] = 57923, + [SMALL_STATE(1699)] = 57946, + [SMALL_STATE(1700)] = 57969, + [SMALL_STATE(1701)] = 57992, + [SMALL_STATE(1702)] = 58015, + [SMALL_STATE(1703)] = 58038, + [SMALL_STATE(1704)] = 58061, + [SMALL_STATE(1705)] = 58084, + [SMALL_STATE(1706)] = 58107, + [SMALL_STATE(1707)] = 58130, + [SMALL_STATE(1708)] = 58153, + [SMALL_STATE(1709)] = 58176, + [SMALL_STATE(1710)] = 58199, + [SMALL_STATE(1711)] = 58222, + [SMALL_STATE(1712)] = 58237, + [SMALL_STATE(1713)] = 58260, + [SMALL_STATE(1714)] = 58277, + [SMALL_STATE(1715)] = 58300, + [SMALL_STATE(1716)] = 58323, + [SMALL_STATE(1717)] = 58346, + [SMALL_STATE(1718)] = 58369, + [SMALL_STATE(1719)] = 58392, + [SMALL_STATE(1720)] = 58409, + [SMALL_STATE(1721)] = 58432, + [SMALL_STATE(1722)] = 58455, + [SMALL_STATE(1723)] = 58472, + [SMALL_STATE(1724)] = 58491, + [SMALL_STATE(1725)] = 58503, + [SMALL_STATE(1726)] = 58521, + [SMALL_STATE(1727)] = 58539, + [SMALL_STATE(1728)] = 58555, + [SMALL_STATE(1729)] = 58567, + [SMALL_STATE(1730)] = 58579, + [SMALL_STATE(1731)] = 58591, + [SMALL_STATE(1732)] = 58607, + [SMALL_STATE(1733)] = 58623, + [SMALL_STATE(1734)] = 58635, + [SMALL_STATE(1735)] = 58655, + [SMALL_STATE(1736)] = 58671, + [SMALL_STATE(1737)] = 58687, + [SMALL_STATE(1738)] = 58707, + [SMALL_STATE(1739)] = 58727, + [SMALL_STATE(1740)] = 58743, + [SMALL_STATE(1741)] = 58759, + [SMALL_STATE(1742)] = 58771, + [SMALL_STATE(1743)] = 58789, + [SMALL_STATE(1744)] = 58807, + [SMALL_STATE(1745)] = 58827, + [SMALL_STATE(1746)] = 58843, + [SMALL_STATE(1747)] = 58855, + [SMALL_STATE(1748)] = 58873, + [SMALL_STATE(1749)] = 58885, + [SMALL_STATE(1750)] = 58899, + [SMALL_STATE(1751)] = 58911, + [SMALL_STATE(1752)] = 58927, + [SMALL_STATE(1753)] = 58945, + [SMALL_STATE(1754)] = 58961, + [SMALL_STATE(1755)] = 58977, + [SMALL_STATE(1756)] = 58989, + [SMALL_STATE(1757)] = 59001, + [SMALL_STATE(1758)] = 59019, + [SMALL_STATE(1759)] = 59031, + [SMALL_STATE(1760)] = 59043, + [SMALL_STATE(1761)] = 59055, + [SMALL_STATE(1762)] = 59067, + [SMALL_STATE(1763)] = 59079, + [SMALL_STATE(1764)] = 59095, + [SMALL_STATE(1765)] = 59115, + [SMALL_STATE(1766)] = 59127, + [SMALL_STATE(1767)] = 59139, + [SMALL_STATE(1768)] = 59151, + [SMALL_STATE(1769)] = 59163, + [SMALL_STATE(1770)] = 59175, + [SMALL_STATE(1771)] = 59191, + [SMALL_STATE(1772)] = 59205, + [SMALL_STATE(1773)] = 59225, + [SMALL_STATE(1774)] = 59243, + [SMALL_STATE(1775)] = 59260, + [SMALL_STATE(1776)] = 59277, + [SMALL_STATE(1777)] = 59292, + [SMALL_STATE(1778)] = 59307, + [SMALL_STATE(1779)] = 59322, + [SMALL_STATE(1780)] = 59337, + [SMALL_STATE(1781)] = 59352, + [SMALL_STATE(1782)] = 59367, + [SMALL_STATE(1783)] = 59384, + [SMALL_STATE(1784)] = 59401, + [SMALL_STATE(1785)] = 59416, + [SMALL_STATE(1786)] = 59433, + [SMALL_STATE(1787)] = 59448, + [SMALL_STATE(1788)] = 59463, + [SMALL_STATE(1789)] = 59480, + [SMALL_STATE(1790)] = 59497, + [SMALL_STATE(1791)] = 59514, + [SMALL_STATE(1792)] = 59527, + [SMALL_STATE(1793)] = 59540, + [SMALL_STATE(1794)] = 59557, + [SMALL_STATE(1795)] = 59574, + [SMALL_STATE(1796)] = 59589, + [SMALL_STATE(1797)] = 59604, + [SMALL_STATE(1798)] = 59621, + [SMALL_STATE(1799)] = 59636, + [SMALL_STATE(1800)] = 59653, + [SMALL_STATE(1801)] = 59666, + [SMALL_STATE(1802)] = 59683, + [SMALL_STATE(1803)] = 59700, + [SMALL_STATE(1804)] = 59717, + [SMALL_STATE(1805)] = 59734, + [SMALL_STATE(1806)] = 59751, + [SMALL_STATE(1807)] = 59768, + [SMALL_STATE(1808)] = 59783, + [SMALL_STATE(1809)] = 59800, + [SMALL_STATE(1810)] = 59817, + [SMALL_STATE(1811)] = 59832, + [SMALL_STATE(1812)] = 59849, + [SMALL_STATE(1813)] = 59862, + [SMALL_STATE(1814)] = 59877, + [SMALL_STATE(1815)] = 59894, + [SMALL_STATE(1816)] = 59911, + [SMALL_STATE(1817)] = 59928, + [SMALL_STATE(1818)] = 59945, + [SMALL_STATE(1819)] = 59962, + [SMALL_STATE(1820)] = 59979, + [SMALL_STATE(1821)] = 59996, + [SMALL_STATE(1822)] = 60013, + [SMALL_STATE(1823)] = 60026, + [SMALL_STATE(1824)] = 60043, + [SMALL_STATE(1825)] = 60056, + [SMALL_STATE(1826)] = 60073, + [SMALL_STATE(1827)] = 60090, + [SMALL_STATE(1828)] = 60107, + [SMALL_STATE(1829)] = 60124, + [SMALL_STATE(1830)] = 60141, + [SMALL_STATE(1831)] = 60156, + [SMALL_STATE(1832)] = 60173, + [SMALL_STATE(1833)] = 60190, + [SMALL_STATE(1834)] = 60207, + [SMALL_STATE(1835)] = 60224, + [SMALL_STATE(1836)] = 60241, + [SMALL_STATE(1837)] = 60258, + [SMALL_STATE(1838)] = 60275, + [SMALL_STATE(1839)] = 60292, + [SMALL_STATE(1840)] = 60309, + [SMALL_STATE(1841)] = 60324, + [SMALL_STATE(1842)] = 60341, + [SMALL_STATE(1843)] = 60358, + [SMALL_STATE(1844)] = 60375, + [SMALL_STATE(1845)] = 60392, + [SMALL_STATE(1846)] = 60409, + [SMALL_STATE(1847)] = 60426, + [SMALL_STATE(1848)] = 60443, + [SMALL_STATE(1849)] = 60460, + [SMALL_STATE(1850)] = 60477, + [SMALL_STATE(1851)] = 60494, + [SMALL_STATE(1852)] = 60511, + [SMALL_STATE(1853)] = 60526, + [SMALL_STATE(1854)] = 60543, + [SMALL_STATE(1855)] = 60558, + [SMALL_STATE(1856)] = 60571, + [SMALL_STATE(1857)] = 60588, + [SMALL_STATE(1858)] = 60605, + [SMALL_STATE(1859)] = 60622, + [SMALL_STATE(1860)] = 60639, + [SMALL_STATE(1861)] = 60654, + [SMALL_STATE(1862)] = 60669, + [SMALL_STATE(1863)] = 60684, + [SMALL_STATE(1864)] = 60699, + [SMALL_STATE(1865)] = 60712, + [SMALL_STATE(1866)] = 60729, + [SMALL_STATE(1867)] = 60744, + [SMALL_STATE(1868)] = 60761, + [SMALL_STATE(1869)] = 60776, + [SMALL_STATE(1870)] = 60793, + [SMALL_STATE(1871)] = 60806, + [SMALL_STATE(1872)] = 60821, + [SMALL_STATE(1873)] = 60834, + [SMALL_STATE(1874)] = 60851, + [SMALL_STATE(1875)] = 60868, + [SMALL_STATE(1876)] = 60880, + [SMALL_STATE(1877)] = 60894, + [SMALL_STATE(1878)] = 60908, + [SMALL_STATE(1879)] = 60918, + [SMALL_STATE(1880)] = 60930, + [SMALL_STATE(1881)] = 60944, + [SMALL_STATE(1882)] = 60958, + [SMALL_STATE(1883)] = 60972, + [SMALL_STATE(1884)] = 60986, + [SMALL_STATE(1885)] = 61000, + [SMALL_STATE(1886)] = 61014, + [SMALL_STATE(1887)] = 61028, + [SMALL_STATE(1888)] = 61042, + [SMALL_STATE(1889)] = 61056, + [SMALL_STATE(1890)] = 61070, + [SMALL_STATE(1891)] = 61084, + [SMALL_STATE(1892)] = 61098, + [SMALL_STATE(1893)] = 61112, + [SMALL_STATE(1894)] = 61122, + [SMALL_STATE(1895)] = 61132, + [SMALL_STATE(1896)] = 61144, + [SMALL_STATE(1897)] = 61156, + [SMALL_STATE(1898)] = 61168, + [SMALL_STATE(1899)] = 61182, + [SMALL_STATE(1900)] = 61194, + [SMALL_STATE(1901)] = 61208, + [SMALL_STATE(1902)] = 61218, + [SMALL_STATE(1903)] = 61230, + [SMALL_STATE(1904)] = 61244, + [SMALL_STATE(1905)] = 61258, + [SMALL_STATE(1906)] = 61270, + [SMALL_STATE(1907)] = 61284, + [SMALL_STATE(1908)] = 61294, + [SMALL_STATE(1909)] = 61306, + [SMALL_STATE(1910)] = 61320, + [SMALL_STATE(1911)] = 61334, + [SMALL_STATE(1912)] = 61346, + [SMALL_STATE(1913)] = 61356, + [SMALL_STATE(1914)] = 61368, + [SMALL_STATE(1915)] = 61382, + [SMALL_STATE(1916)] = 61396, + [SMALL_STATE(1917)] = 61410, + [SMALL_STATE(1918)] = 61424, + [SMALL_STATE(1919)] = 61438, + [SMALL_STATE(1920)] = 61452, + [SMALL_STATE(1921)] = 61466, + [SMALL_STATE(1922)] = 61480, + [SMALL_STATE(1923)] = 61492, + [SMALL_STATE(1924)] = 61504, + [SMALL_STATE(1925)] = 61518, + [SMALL_STATE(1926)] = 61528, + [SMALL_STATE(1927)] = 61542, + [SMALL_STATE(1928)] = 61556, + [SMALL_STATE(1929)] = 61568, + [SMALL_STATE(1930)] = 61582, + [SMALL_STATE(1931)] = 61594, + [SMALL_STATE(1932)] = 61608, + [SMALL_STATE(1933)] = 61618, + [SMALL_STATE(1934)] = 61632, + [SMALL_STATE(1935)] = 61644, + [SMALL_STATE(1936)] = 61656, + [SMALL_STATE(1937)] = 61670, + [SMALL_STATE(1938)] = 61684, + [SMALL_STATE(1939)] = 61698, + [SMALL_STATE(1940)] = 61710, + [SMALL_STATE(1941)] = 61724, + [SMALL_STATE(1942)] = 61734, + [SMALL_STATE(1943)] = 61748, + [SMALL_STATE(1944)] = 61758, + [SMALL_STATE(1945)] = 61772, + [SMALL_STATE(1946)] = 61782, + [SMALL_STATE(1947)] = 61796, + [SMALL_STATE(1948)] = 61810, + [SMALL_STATE(1949)] = 61824, + [SMALL_STATE(1950)] = 61838, + [SMALL_STATE(1951)] = 61852, + [SMALL_STATE(1952)] = 61862, + [SMALL_STATE(1953)] = 61872, + [SMALL_STATE(1954)] = 61882, + [SMALL_STATE(1955)] = 61892, + [SMALL_STATE(1956)] = 61906, + [SMALL_STATE(1957)] = 61920, + [SMALL_STATE(1958)] = 61934, + [SMALL_STATE(1959)] = 61946, + [SMALL_STATE(1960)] = 61960, + [SMALL_STATE(1961)] = 61974, + [SMALL_STATE(1962)] = 61988, + [SMALL_STATE(1963)] = 62002, + [SMALL_STATE(1964)] = 62016, + [SMALL_STATE(1965)] = 62028, + [SMALL_STATE(1966)] = 62038, + [SMALL_STATE(1967)] = 62048, + [SMALL_STATE(1968)] = 62062, + [SMALL_STATE(1969)] = 62076, + [SMALL_STATE(1970)] = 62090, + [SMALL_STATE(1971)] = 62104, + [SMALL_STATE(1972)] = 62118, + [SMALL_STATE(1973)] = 62132, + [SMALL_STATE(1974)] = 62142, + [SMALL_STATE(1975)] = 62156, + [SMALL_STATE(1976)] = 62168, + [SMALL_STATE(1977)] = 62182, + [SMALL_STATE(1978)] = 62196, + [SMALL_STATE(1979)] = 62210, + [SMALL_STATE(1980)] = 62224, + [SMALL_STATE(1981)] = 62238, + [SMALL_STATE(1982)] = 62252, + [SMALL_STATE(1983)] = 62266, + [SMALL_STATE(1984)] = 62280, + [SMALL_STATE(1985)] = 62294, + [SMALL_STATE(1986)] = 62308, + [SMALL_STATE(1987)] = 62322, + [SMALL_STATE(1988)] = 62336, + [SMALL_STATE(1989)] = 62350, + [SMALL_STATE(1990)] = 62364, + [SMALL_STATE(1991)] = 62378, + [SMALL_STATE(1992)] = 62388, + [SMALL_STATE(1993)] = 62402, + [SMALL_STATE(1994)] = 62416, + [SMALL_STATE(1995)] = 62428, + [SMALL_STATE(1996)] = 62442, + [SMALL_STATE(1997)] = 62456, + [SMALL_STATE(1998)] = 62470, + [SMALL_STATE(1999)] = 62482, + [SMALL_STATE(2000)] = 62496, + [SMALL_STATE(2001)] = 62510, + [SMALL_STATE(2002)] = 62524, + [SMALL_STATE(2003)] = 62538, + [SMALL_STATE(2004)] = 62552, + [SMALL_STATE(2005)] = 62566, + [SMALL_STATE(2006)] = 62580, + [SMALL_STATE(2007)] = 62594, + [SMALL_STATE(2008)] = 62608, + [SMALL_STATE(2009)] = 62622, + [SMALL_STATE(2010)] = 62636, + [SMALL_STATE(2011)] = 62650, + [SMALL_STATE(2012)] = 62664, + [SMALL_STATE(2013)] = 62678, + [SMALL_STATE(2014)] = 62692, + [SMALL_STATE(2015)] = 62706, + [SMALL_STATE(2016)] = 62720, + [SMALL_STATE(2017)] = 62734, + [SMALL_STATE(2018)] = 62748, + [SMALL_STATE(2019)] = 62762, + [SMALL_STATE(2020)] = 62776, + [SMALL_STATE(2021)] = 62786, + [SMALL_STATE(2022)] = 62796, + [SMALL_STATE(2023)] = 62810, + [SMALL_STATE(2024)] = 62822, + [SMALL_STATE(2025)] = 62834, + [SMALL_STATE(2026)] = 62848, + [SMALL_STATE(2027)] = 62860, + [SMALL_STATE(2028)] = 62874, + [SMALL_STATE(2029)] = 62886, + [SMALL_STATE(2030)] = 62896, + [SMALL_STATE(2031)] = 62910, + [SMALL_STATE(2032)] = 62922, + [SMALL_STATE(2033)] = 62932, + [SMALL_STATE(2034)] = 62946, + [SMALL_STATE(2035)] = 62960, + [SMALL_STATE(2036)] = 62972, + [SMALL_STATE(2037)] = 62982, + [SMALL_STATE(2038)] = 62996, + [SMALL_STATE(2039)] = 63008, + [SMALL_STATE(2040)] = 63022, + [SMALL_STATE(2041)] = 63034, + [SMALL_STATE(2042)] = 63046, + [SMALL_STATE(2043)] = 63060, + [SMALL_STATE(2044)] = 63074, + [SMALL_STATE(2045)] = 63088, + [SMALL_STATE(2046)] = 63102, + [SMALL_STATE(2047)] = 63116, + [SMALL_STATE(2048)] = 63130, + [SMALL_STATE(2049)] = 63142, + [SMALL_STATE(2050)] = 63156, + [SMALL_STATE(2051)] = 63170, + [SMALL_STATE(2052)] = 63184, + [SMALL_STATE(2053)] = 63198, + [SMALL_STATE(2054)] = 63210, + [SMALL_STATE(2055)] = 63224, + [SMALL_STATE(2056)] = 63236, + [SMALL_STATE(2057)] = 63250, + [SMALL_STATE(2058)] = 63264, + [SMALL_STATE(2059)] = 63278, + [SMALL_STATE(2060)] = 63292, + [SMALL_STATE(2061)] = 63306, + [SMALL_STATE(2062)] = 63320, + [SMALL_STATE(2063)] = 63334, + [SMALL_STATE(2064)] = 63344, + [SMALL_STATE(2065)] = 63358, + [SMALL_STATE(2066)] = 63372, + [SMALL_STATE(2067)] = 63382, + [SMALL_STATE(2068)] = 63396, + [SMALL_STATE(2069)] = 63410, + [SMALL_STATE(2070)] = 63424, + [SMALL_STATE(2071)] = 63438, + [SMALL_STATE(2072)] = 63452, + [SMALL_STATE(2073)] = 63466, + [SMALL_STATE(2074)] = 63480, + [SMALL_STATE(2075)] = 63494, + [SMALL_STATE(2076)] = 63508, + [SMALL_STATE(2077)] = 63522, + [SMALL_STATE(2078)] = 63532, + [SMALL_STATE(2079)] = 63546, + [SMALL_STATE(2080)] = 63560, + [SMALL_STATE(2081)] = 63574, + [SMALL_STATE(2082)] = 63588, + [SMALL_STATE(2083)] = 63602, + [SMALL_STATE(2084)] = 63616, + [SMALL_STATE(2085)] = 63630, + [SMALL_STATE(2086)] = 63642, + [SMALL_STATE(2087)] = 63656, + [SMALL_STATE(2088)] = 63670, + [SMALL_STATE(2089)] = 63684, + [SMALL_STATE(2090)] = 63698, + [SMALL_STATE(2091)] = 63712, + [SMALL_STATE(2092)] = 63726, + [SMALL_STATE(2093)] = 63740, + [SMALL_STATE(2094)] = 63754, + [SMALL_STATE(2095)] = 63768, + [SMALL_STATE(2096)] = 63782, + [SMALL_STATE(2097)] = 63796, + [SMALL_STATE(2098)] = 63806, + [SMALL_STATE(2099)] = 63820, + [SMALL_STATE(2100)] = 63834, + [SMALL_STATE(2101)] = 63848, + [SMALL_STATE(2102)] = 63862, + [SMALL_STATE(2103)] = 63876, + [SMALL_STATE(2104)] = 63890, + [SMALL_STATE(2105)] = 63904, + [SMALL_STATE(2106)] = 63918, + [SMALL_STATE(2107)] = 63932, + [SMALL_STATE(2108)] = 63946, + [SMALL_STATE(2109)] = 63960, + [SMALL_STATE(2110)] = 63974, + [SMALL_STATE(2111)] = 63988, + [SMALL_STATE(2112)] = 64002, + [SMALL_STATE(2113)] = 64016, + [SMALL_STATE(2114)] = 64030, + [SMALL_STATE(2115)] = 64040, + [SMALL_STATE(2116)] = 64054, + [SMALL_STATE(2117)] = 64068, + [SMALL_STATE(2118)] = 64082, + [SMALL_STATE(2119)] = 64096, + [SMALL_STATE(2120)] = 64110, + [SMALL_STATE(2121)] = 64124, + [SMALL_STATE(2122)] = 64138, + [SMALL_STATE(2123)] = 64152, + [SMALL_STATE(2124)] = 64166, + [SMALL_STATE(2125)] = 64176, + [SMALL_STATE(2126)] = 64190, + [SMALL_STATE(2127)] = 64204, + [SMALL_STATE(2128)] = 64218, + [SMALL_STATE(2129)] = 64232, + [SMALL_STATE(2130)] = 64242, + [SMALL_STATE(2131)] = 64256, + [SMALL_STATE(2132)] = 64270, + [SMALL_STATE(2133)] = 64284, + [SMALL_STATE(2134)] = 64294, + [SMALL_STATE(2135)] = 64308, + [SMALL_STATE(2136)] = 64322, + [SMALL_STATE(2137)] = 64336, + [SMALL_STATE(2138)] = 64350, + [SMALL_STATE(2139)] = 64364, + [SMALL_STATE(2140)] = 64378, + [SMALL_STATE(2141)] = 64392, + [SMALL_STATE(2142)] = 64406, + [SMALL_STATE(2143)] = 64417, + [SMALL_STATE(2144)] = 64428, + [SMALL_STATE(2145)] = 64439, + [SMALL_STATE(2146)] = 64450, + [SMALL_STATE(2147)] = 64461, + [SMALL_STATE(2148)] = 64472, + [SMALL_STATE(2149)] = 64483, + [SMALL_STATE(2150)] = 64494, + [SMALL_STATE(2151)] = 64503, + [SMALL_STATE(2152)] = 64514, + [SMALL_STATE(2153)] = 64523, + [SMALL_STATE(2154)] = 64534, + [SMALL_STATE(2155)] = 64545, + [SMALL_STATE(2156)] = 64556, + [SMALL_STATE(2157)] = 64567, + [SMALL_STATE(2158)] = 64578, + [SMALL_STATE(2159)] = 64587, + [SMALL_STATE(2160)] = 64598, + [SMALL_STATE(2161)] = 64609, + [SMALL_STATE(2162)] = 64620, + [SMALL_STATE(2163)] = 64631, + [SMALL_STATE(2164)] = 64642, + [SMALL_STATE(2165)] = 64653, + [SMALL_STATE(2166)] = 64664, + [SMALL_STATE(2167)] = 64675, + [SMALL_STATE(2168)] = 64686, + [SMALL_STATE(2169)] = 64697, + [SMALL_STATE(2170)] = 64708, + [SMALL_STATE(2171)] = 64719, + [SMALL_STATE(2172)] = 64730, + [SMALL_STATE(2173)] = 64741, + [SMALL_STATE(2174)] = 64752, + [SMALL_STATE(2175)] = 64763, + [SMALL_STATE(2176)] = 64774, + [SMALL_STATE(2177)] = 64785, + [SMALL_STATE(2178)] = 64796, + [SMALL_STATE(2179)] = 64805, + [SMALL_STATE(2180)] = 64816, + [SMALL_STATE(2181)] = 64827, + [SMALL_STATE(2182)] = 64838, + [SMALL_STATE(2183)] = 64849, + [SMALL_STATE(2184)] = 64860, + [SMALL_STATE(2185)] = 64871, + [SMALL_STATE(2186)] = 64882, + [SMALL_STATE(2187)] = 64893, + [SMALL_STATE(2188)] = 64904, + [SMALL_STATE(2189)] = 64915, + [SMALL_STATE(2190)] = 64926, + [SMALL_STATE(2191)] = 64937, + [SMALL_STATE(2192)] = 64948, + [SMALL_STATE(2193)] = 64959, + [SMALL_STATE(2194)] = 64970, + [SMALL_STATE(2195)] = 64981, + [SMALL_STATE(2196)] = 64992, + [SMALL_STATE(2197)] = 65003, + [SMALL_STATE(2198)] = 65014, + [SMALL_STATE(2199)] = 65025, + [SMALL_STATE(2200)] = 65034, + [SMALL_STATE(2201)] = 65045, + [SMALL_STATE(2202)] = 65056, + [SMALL_STATE(2203)] = 65067, + [SMALL_STATE(2204)] = 65076, + [SMALL_STATE(2205)] = 65087, + [SMALL_STATE(2206)] = 65098, + [SMALL_STATE(2207)] = 65109, + [SMALL_STATE(2208)] = 65120, + [SMALL_STATE(2209)] = 65131, + [SMALL_STATE(2210)] = 65142, + [SMALL_STATE(2211)] = 65153, + [SMALL_STATE(2212)] = 65164, + [SMALL_STATE(2213)] = 65175, + [SMALL_STATE(2214)] = 65184, + [SMALL_STATE(2215)] = 65195, + [SMALL_STATE(2216)] = 65206, + [SMALL_STATE(2217)] = 65217, + [SMALL_STATE(2218)] = 65228, + [SMALL_STATE(2219)] = 65237, + [SMALL_STATE(2220)] = 65246, + [SMALL_STATE(2221)] = 65257, + [SMALL_STATE(2222)] = 65268, + [SMALL_STATE(2223)] = 65277, + [SMALL_STATE(2224)] = 65286, + [SMALL_STATE(2225)] = 65297, + [SMALL_STATE(2226)] = 65308, + [SMALL_STATE(2227)] = 65319, + [SMALL_STATE(2228)] = 65330, + [SMALL_STATE(2229)] = 65341, + [SMALL_STATE(2230)] = 65350, + [SMALL_STATE(2231)] = 65361, + [SMALL_STATE(2232)] = 65372, + [SMALL_STATE(2233)] = 65383, + [SMALL_STATE(2234)] = 65394, + [SMALL_STATE(2235)] = 65405, + [SMALL_STATE(2236)] = 65416, + [SMALL_STATE(2237)] = 65427, + [SMALL_STATE(2238)] = 65438, + [SMALL_STATE(2239)] = 65449, + [SMALL_STATE(2240)] = 65460, + [SMALL_STATE(2241)] = 65469, + [SMALL_STATE(2242)] = 65480, + [SMALL_STATE(2243)] = 65491, + [SMALL_STATE(2244)] = 65502, + [SMALL_STATE(2245)] = 65513, + [SMALL_STATE(2246)] = 65524, + [SMALL_STATE(2247)] = 65535, + [SMALL_STATE(2248)] = 65546, + [SMALL_STATE(2249)] = 65557, + [SMALL_STATE(2250)] = 65568, + [SMALL_STATE(2251)] = 65579, + [SMALL_STATE(2252)] = 65590, + [SMALL_STATE(2253)] = 65601, + [SMALL_STATE(2254)] = 65612, + [SMALL_STATE(2255)] = 65623, + [SMALL_STATE(2256)] = 65634, + [SMALL_STATE(2257)] = 65645, + [SMALL_STATE(2258)] = 65656, + [SMALL_STATE(2259)] = 65667, + [SMALL_STATE(2260)] = 65678, + [SMALL_STATE(2261)] = 65689, + [SMALL_STATE(2262)] = 65700, + [SMALL_STATE(2263)] = 65711, + [SMALL_STATE(2264)] = 65722, + [SMALL_STATE(2265)] = 65731, + [SMALL_STATE(2266)] = 65742, + [SMALL_STATE(2267)] = 65751, + [SMALL_STATE(2268)] = 65760, + [SMALL_STATE(2269)] = 65771, + [SMALL_STATE(2270)] = 65782, + [SMALL_STATE(2271)] = 65793, + [SMALL_STATE(2272)] = 65804, + [SMALL_STATE(2273)] = 65815, + [SMALL_STATE(2274)] = 65824, + [SMALL_STATE(2275)] = 65835, + [SMALL_STATE(2276)] = 65846, + [SMALL_STATE(2277)] = 65857, + [SMALL_STATE(2278)] = 65868, + [SMALL_STATE(2279)] = 65879, + [SMALL_STATE(2280)] = 65888, + [SMALL_STATE(2281)] = 65899, + [SMALL_STATE(2282)] = 65910, + [SMALL_STATE(2283)] = 65919, + [SMALL_STATE(2284)] = 65928, + [SMALL_STATE(2285)] = 65939, + [SMALL_STATE(2286)] = 65950, + [SMALL_STATE(2287)] = 65961, + [SMALL_STATE(2288)] = 65970, + [SMALL_STATE(2289)] = 65981, + [SMALL_STATE(2290)] = 65992, + [SMALL_STATE(2291)] = 66003, + [SMALL_STATE(2292)] = 66014, + [SMALL_STATE(2293)] = 66025, + [SMALL_STATE(2294)] = 66036, + [SMALL_STATE(2295)] = 66047, + [SMALL_STATE(2296)] = 66058, + [SMALL_STATE(2297)] = 66069, + [SMALL_STATE(2298)] = 66080, + [SMALL_STATE(2299)] = 66091, + [SMALL_STATE(2300)] = 66102, + [SMALL_STATE(2301)] = 66111, + [SMALL_STATE(2302)] = 66122, + [SMALL_STATE(2303)] = 66133, + [SMALL_STATE(2304)] = 66142, + [SMALL_STATE(2305)] = 66153, + [SMALL_STATE(2306)] = 66164, + [SMALL_STATE(2307)] = 66175, + [SMALL_STATE(2308)] = 66184, + [SMALL_STATE(2309)] = 66195, + [SMALL_STATE(2310)] = 66204, + [SMALL_STATE(2311)] = 66215, + [SMALL_STATE(2312)] = 66226, + [SMALL_STATE(2313)] = 66237, + [SMALL_STATE(2314)] = 66248, + [SMALL_STATE(2315)] = 66259, + [SMALL_STATE(2316)] = 66268, + [SMALL_STATE(2317)] = 66279, + [SMALL_STATE(2318)] = 66290, + [SMALL_STATE(2319)] = 66299, + [SMALL_STATE(2320)] = 66310, + [SMALL_STATE(2321)] = 66321, + [SMALL_STATE(2322)] = 66332, + [SMALL_STATE(2323)] = 66343, + [SMALL_STATE(2324)] = 66352, + [SMALL_STATE(2325)] = 66363, + [SMALL_STATE(2326)] = 66374, + [SMALL_STATE(2327)] = 66385, + [SMALL_STATE(2328)] = 66396, + [SMALL_STATE(2329)] = 66404, + [SMALL_STATE(2330)] = 66412, + [SMALL_STATE(2331)] = 66420, + [SMALL_STATE(2332)] = 66428, + [SMALL_STATE(2333)] = 66436, + [SMALL_STATE(2334)] = 66444, + [SMALL_STATE(2335)] = 66452, + [SMALL_STATE(2336)] = 66460, + [SMALL_STATE(2337)] = 66468, + [SMALL_STATE(2338)] = 66476, + [SMALL_STATE(2339)] = 66484, + [SMALL_STATE(2340)] = 66492, + [SMALL_STATE(2341)] = 66500, + [SMALL_STATE(2342)] = 66508, + [SMALL_STATE(2343)] = 66516, + [SMALL_STATE(2344)] = 66524, + [SMALL_STATE(2345)] = 66532, + [SMALL_STATE(2346)] = 66540, + [SMALL_STATE(2347)] = 66548, + [SMALL_STATE(2348)] = 66556, + [SMALL_STATE(2349)] = 66564, + [SMALL_STATE(2350)] = 66572, + [SMALL_STATE(2351)] = 66580, + [SMALL_STATE(2352)] = 66588, + [SMALL_STATE(2353)] = 66596, + [SMALL_STATE(2354)] = 66604, + [SMALL_STATE(2355)] = 66612, + [SMALL_STATE(2356)] = 66620, + [SMALL_STATE(2357)] = 66628, + [SMALL_STATE(2358)] = 66636, + [SMALL_STATE(2359)] = 66644, + [SMALL_STATE(2360)] = 66652, + [SMALL_STATE(2361)] = 66660, + [SMALL_STATE(2362)] = 66668, + [SMALL_STATE(2363)] = 66676, + [SMALL_STATE(2364)] = 66684, + [SMALL_STATE(2365)] = 66692, + [SMALL_STATE(2366)] = 66700, + [SMALL_STATE(2367)] = 66708, + [SMALL_STATE(2368)] = 66716, + [SMALL_STATE(2369)] = 66724, + [SMALL_STATE(2370)] = 66732, + [SMALL_STATE(2371)] = 66740, + [SMALL_STATE(2372)] = 66748, + [SMALL_STATE(2373)] = 66756, + [SMALL_STATE(2374)] = 66764, + [SMALL_STATE(2375)] = 66772, + [SMALL_STATE(2376)] = 66780, + [SMALL_STATE(2377)] = 66788, + [SMALL_STATE(2378)] = 66796, + [SMALL_STATE(2379)] = 66804, + [SMALL_STATE(2380)] = 66812, + [SMALL_STATE(2381)] = 66820, + [SMALL_STATE(2382)] = 66828, + [SMALL_STATE(2383)] = 66836, + [SMALL_STATE(2384)] = 66844, + [SMALL_STATE(2385)] = 66852, + [SMALL_STATE(2386)] = 66860, + [SMALL_STATE(2387)] = 66868, + [SMALL_STATE(2388)] = 66876, + [SMALL_STATE(2389)] = 66884, + [SMALL_STATE(2390)] = 66892, + [SMALL_STATE(2391)] = 66900, + [SMALL_STATE(2392)] = 66908, + [SMALL_STATE(2393)] = 66916, + [SMALL_STATE(2394)] = 66924, + [SMALL_STATE(2395)] = 66932, + [SMALL_STATE(2396)] = 66940, + [SMALL_STATE(2397)] = 66948, + [SMALL_STATE(2398)] = 66956, + [SMALL_STATE(2399)] = 66964, + [SMALL_STATE(2400)] = 66972, + [SMALL_STATE(2401)] = 66980, + [SMALL_STATE(2402)] = 66988, + [SMALL_STATE(2403)] = 66996, + [SMALL_STATE(2404)] = 67004, + [SMALL_STATE(2405)] = 67012, + [SMALL_STATE(2406)] = 67020, + [SMALL_STATE(2407)] = 67028, + [SMALL_STATE(2408)] = 67036, + [SMALL_STATE(2409)] = 67044, + [SMALL_STATE(2410)] = 67052, + [SMALL_STATE(2411)] = 67060, + [SMALL_STATE(2412)] = 67068, + [SMALL_STATE(2413)] = 67076, + [SMALL_STATE(2414)] = 67084, + [SMALL_STATE(2415)] = 67092, + [SMALL_STATE(2416)] = 67100, + [SMALL_STATE(2417)] = 67108, + [SMALL_STATE(2418)] = 67116, + [SMALL_STATE(2419)] = 67124, + [SMALL_STATE(2420)] = 67132, + [SMALL_STATE(2421)] = 67140, + [SMALL_STATE(2422)] = 67148, + [SMALL_STATE(2423)] = 67156, + [SMALL_STATE(2424)] = 67164, + [SMALL_STATE(2425)] = 67172, + [SMALL_STATE(2426)] = 67180, + [SMALL_STATE(2427)] = 67188, + [SMALL_STATE(2428)] = 67196, + [SMALL_STATE(2429)] = 67204, + [SMALL_STATE(2430)] = 67212, + [SMALL_STATE(2431)] = 67220, + [SMALL_STATE(2432)] = 67228, + [SMALL_STATE(2433)] = 67236, + [SMALL_STATE(2434)] = 67244, + [SMALL_STATE(2435)] = 67252, + [SMALL_STATE(2436)] = 67260, + [SMALL_STATE(2437)] = 67268, + [SMALL_STATE(2438)] = 67276, + [SMALL_STATE(2439)] = 67284, + [SMALL_STATE(2440)] = 67292, + [SMALL_STATE(2441)] = 67300, + [SMALL_STATE(2442)] = 67308, + [SMALL_STATE(2443)] = 67316, + [SMALL_STATE(2444)] = 67324, + [SMALL_STATE(2445)] = 67332, + [SMALL_STATE(2446)] = 67340, + [SMALL_STATE(2447)] = 67348, + [SMALL_STATE(2448)] = 67356, + [SMALL_STATE(2449)] = 67364, + [SMALL_STATE(2450)] = 67372, + [SMALL_STATE(2451)] = 67380, + [SMALL_STATE(2452)] = 67388, + [SMALL_STATE(2453)] = 67396, + [SMALL_STATE(2454)] = 67404, + [SMALL_STATE(2455)] = 67412, + [SMALL_STATE(2456)] = 67420, + [SMALL_STATE(2457)] = 67428, + [SMALL_STATE(2458)] = 67436, + [SMALL_STATE(2459)] = 67444, + [SMALL_STATE(2460)] = 67452, + [SMALL_STATE(2461)] = 67460, + [SMALL_STATE(2462)] = 67468, + [SMALL_STATE(2463)] = 67476, + [SMALL_STATE(2464)] = 67484, + [SMALL_STATE(2465)] = 67492, + [SMALL_STATE(2466)] = 67500, + [SMALL_STATE(2467)] = 67508, + [SMALL_STATE(2468)] = 67516, + [SMALL_STATE(2469)] = 67524, + [SMALL_STATE(2470)] = 67532, + [SMALL_STATE(2471)] = 67540, + [SMALL_STATE(2472)] = 67548, + [SMALL_STATE(2473)] = 67556, + [SMALL_STATE(2474)] = 67564, + [SMALL_STATE(2475)] = 67572, + [SMALL_STATE(2476)] = 67580, + [SMALL_STATE(2477)] = 67588, + [SMALL_STATE(2478)] = 67596, + [SMALL_STATE(2479)] = 67604, + [SMALL_STATE(2480)] = 67612, + [SMALL_STATE(2481)] = 67620, + [SMALL_STATE(2482)] = 67628, + [SMALL_STATE(2483)] = 67636, + [SMALL_STATE(2484)] = 67644, + [SMALL_STATE(2485)] = 67652, + [SMALL_STATE(2486)] = 67660, + [SMALL_STATE(2487)] = 67668, + [SMALL_STATE(2488)] = 67676, + [SMALL_STATE(2489)] = 67684, + [SMALL_STATE(2490)] = 67692, + [SMALL_STATE(2491)] = 67700, + [SMALL_STATE(2492)] = 67708, + [SMALL_STATE(2493)] = 67716, + [SMALL_STATE(2494)] = 67724, + [SMALL_STATE(2495)] = 67732, + [SMALL_STATE(2496)] = 67740, + [SMALL_STATE(2497)] = 67748, + [SMALL_STATE(2498)] = 67756, + [SMALL_STATE(2499)] = 67764, + [SMALL_STATE(2500)] = 67772, + [SMALL_STATE(2501)] = 67780, + [SMALL_STATE(2502)] = 67788, + [SMALL_STATE(2503)] = 67796, + [SMALL_STATE(2504)] = 67804, + [SMALL_STATE(2505)] = 67812, + [SMALL_STATE(2506)] = 67820, + [SMALL_STATE(2507)] = 67828, + [SMALL_STATE(2508)] = 67836, + [SMALL_STATE(2509)] = 67844, + [SMALL_STATE(2510)] = 67852, + [SMALL_STATE(2511)] = 67860, + [SMALL_STATE(2512)] = 67868, + [SMALL_STATE(2513)] = 67876, + [SMALL_STATE(2514)] = 67884, + [SMALL_STATE(2515)] = 67892, + [SMALL_STATE(2516)] = 67900, + [SMALL_STATE(2517)] = 67908, + [SMALL_STATE(2518)] = 67916, + [SMALL_STATE(2519)] = 67924, + [SMALL_STATE(2520)] = 67932, + [SMALL_STATE(2521)] = 67940, + [SMALL_STATE(2522)] = 67948, + [SMALL_STATE(2523)] = 67956, + [SMALL_STATE(2524)] = 67964, + [SMALL_STATE(2525)] = 67972, + [SMALL_STATE(2526)] = 67980, + [SMALL_STATE(2527)] = 67988, + [SMALL_STATE(2528)] = 67996, + [SMALL_STATE(2529)] = 68004, + [SMALL_STATE(2530)] = 68012, + [SMALL_STATE(2531)] = 68020, + [SMALL_STATE(2532)] = 68028, + [SMALL_STATE(2533)] = 68036, + [SMALL_STATE(2534)] = 68044, + [SMALL_STATE(2535)] = 68052, + [SMALL_STATE(2536)] = 68060, + [SMALL_STATE(2537)] = 68068, + [SMALL_STATE(2538)] = 68076, + [SMALL_STATE(2539)] = 68084, + [SMALL_STATE(2540)] = 68092, + [SMALL_STATE(2541)] = 68100, + [SMALL_STATE(2542)] = 68108, + [SMALL_STATE(2543)] = 68116, + [SMALL_STATE(2544)] = 68124, + [SMALL_STATE(2545)] = 68132, + [SMALL_STATE(2546)] = 68140, + [SMALL_STATE(2547)] = 68148, + [SMALL_STATE(2548)] = 68156, + [SMALL_STATE(2549)] = 68164, + [SMALL_STATE(2550)] = 68172, + [SMALL_STATE(2551)] = 68180, + [SMALL_STATE(2552)] = 68188, + [SMALL_STATE(2553)] = 68196, + [SMALL_STATE(2554)] = 68204, + [SMALL_STATE(2555)] = 68212, + [SMALL_STATE(2556)] = 68220, + [SMALL_STATE(2557)] = 68228, + [SMALL_STATE(2558)] = 68236, + [SMALL_STATE(2559)] = 68244, + [SMALL_STATE(2560)] = 68252, }; -static const TSParseActionEntry ts_parse_actions[] = { +static TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [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(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), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), [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(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), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1144), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(366), + [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1935), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(39), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), + [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(100), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1043), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2560), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1519), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1542), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(778), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(767), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2557), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2152), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(628), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(57), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(629), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(627), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2153), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(168), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2553), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1349), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1885), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2543), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2540), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2494), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1166), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1500), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1316), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(64), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2234), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1489), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(642), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2483), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(56), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(563), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2238), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1075), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1780), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1050), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1055), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2478), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1365), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1055), + [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [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), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), + [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), + [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), [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), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), [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), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), + [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(773), + [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(39), + [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2), + [409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(35), + [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(100), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1043), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2560), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1919), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2256), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(778), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(802), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(613), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(61), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2291), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(172), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2259), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(63), + [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(642), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2483), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(56), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(563), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2238), + [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1075), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1780), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1050), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1055), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2478), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1055), [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), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), [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 = 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), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), [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), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 218), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 218), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), + [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), [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), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), + [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), [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), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), [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), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), [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), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), [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), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 112), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 112), + [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), [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_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), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2239), + [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(810), + [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1899), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2472), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1557), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1624), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1549), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2363), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2229), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(633), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(608), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2367), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1349), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1886), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2368), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2369), + [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2370), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1910), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1548), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1314), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2228), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1482), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(642), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2400), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2375), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1367), + [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2375), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(253), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(485), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(486), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(487), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2456), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(570), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1810), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(565), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(556), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 184), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 184), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 236), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 236), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(281), + [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(524), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), + [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(523), + [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(522), + [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(570), + [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1810), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(565), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(281), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 241), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 241), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 242), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 242), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 223), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 223), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 177), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 177), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 232), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 232), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 210), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 210), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 231), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 231), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 230), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 230), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 223), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 223), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 146), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 146), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 148), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 148), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 184), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 184), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 228), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 228), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 225), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 225), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(483), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(544), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(543), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(539), + [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2425), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(570), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1810), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(565), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(483), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), [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), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1444), + [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(559), + [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(564), + [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1388), + [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2326), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1778), + [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2459), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(620), + [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(642), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2446), + [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1449), + [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(615), + [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(610), + [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1452), + [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2273), + [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1406), + [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1861), + [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1385), + [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1934), + [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1934), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), [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}}, 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}}, 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_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_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_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_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_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(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(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(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), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2459), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 110), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 110), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 112), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 112), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 112), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 195), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 195), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 143), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 143), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 151), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 151), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 102), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 102), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2502), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 145), + [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), + [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 112), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 173), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 219), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [3561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [3927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1572), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1575), + [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(496), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), + [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(499), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(584), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1382), + [4279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(189), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 224), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), + [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 198), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), + [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 224), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 198), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1171), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 125), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1866), + [4509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(617), + [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), + [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(582), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), + [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1186), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 221), + [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 199), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 191), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), + [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 190), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), + [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), + [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(148), + [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1554), + [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), + [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), + [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), + [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(555), + [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(749), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2241), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), + [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(246), + [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), + [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), + [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1660), + [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), + [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1574), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(195), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1562), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [5038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(42), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [5067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1315), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 124), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [5104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1567), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [5217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [5439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [5483] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), }; #ifdef __cplusplus @@ -129797,7 +130668,7 @@ void tree_sitter_rust_external_scanner_deserialize(void *, const char *, unsigne #endif extern const TSLanguage *tree_sitter_rust(void) { - static const TSLanguage language = { + static TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, @@ -129808,24 +130679,24 @@ extern const TSLanguage *tree_sitter_rust(void) { .production_id_count = PRODUCTION_ID_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, - .parse_table = &ts_parse_table[0][0], - .small_parse_table = ts_small_parse_table, - .small_parse_table_map = ts_small_parse_table_map, + .parse_table = (const uint16_t *)ts_parse_table, + .small_parse_table = (const uint16_t *)ts_small_parse_table, + .small_parse_table_map = (const uint32_t *)ts_small_parse_table_map, .parse_actions = ts_parse_actions, .symbol_names = ts_symbol_names, .field_names = ts_field_names, - .field_map_slices = ts_field_map_slices, - .field_map_entries = ts_field_map_entries, + .field_map_slices = (const TSFieldMapSlice *)ts_field_map_slices, + .field_map_entries = (const TSFieldMapEntry *)ts_field_map_entries, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, - .alias_sequences = &ts_alias_sequences[0][0], + .alias_sequences = (const TSSymbol *)ts_alias_sequences, .lex_modes = ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, .external_scanner = { - &ts_external_scanner_states[0][0], + (const bool *)ts_external_scanner_states, ts_external_scanner_symbol_map, tree_sitter_rust_external_scanner_create, tree_sitter_rust_external_scanner_destroy, diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 2b14ac10..a3a87bd1 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -102,8 +102,8 @@ struct TSLanguage { const uint16_t *small_parse_table; const uint32_t *small_parse_table_map; const TSParseActionEntry *parse_actions; - const char * const *symbol_names; - const char * const *field_names; + const char **symbol_names; + const char **field_names; const TSFieldMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; @@ -123,7 +123,6 @@ struct TSLanguage { unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; - const TSStateId *primary_state_ids; }; /* From 4dc21476d64389866119da511ea97fc061c6e013 Mon Sep 17 00:00:00 2001 From: ninevra Date: Mon, 7 Mar 2022 17:37:57 -0800 Subject: [PATCH 3/6] Test macro invocations with transcriber syntax --- corpus/macros.txt | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/corpus/macros.txt b/corpus/macros.txt index ecc40c5d..5d26b420 100644 --- a/corpus/macros.txt +++ b/corpus/macros.txt @@ -55,6 +55,7 @@ a!($); a!($()); a!($ a $); a!(${$([ a ])}); +a!($a $a:ident $($a);*); -------------------------------------------------------------------------------- @@ -121,7 +122,16 @@ a!(${$([ a ])}); (expression_statement (macro_invocation (identifier) - (token_tree (token_tree (token_tree (token_tree (identifier)))))))) + (token_tree (token_tree (token_tree (token_tree (identifier))))))) + (expression_statement + (macro_invocation + (identifier) + (token_tree + (identifier) + (identifier) + (identifier) + (token_tree + (identifier)))))) ================================================================================ Macro invocation with comments From 3ad0430ab2177837a0b193c3ea2227fe3d7f8082 Mon Sep 17 00:00:00 2001 From: ninevra Date: Mon, 7 Mar 2022 17:48:54 -0800 Subject: [PATCH 4/6] Don't match metavariables in macro invocations Metavariables can only occur in macro transcribers, so matching them in invocations makes little sense. Instead, match $ and an identifier separately. --- grammar.js | 9 +- src/grammar.json | 17 +- src/parser.c | 131267 ++++++++++++++++++++++---------------------- 3 files changed, 65841 insertions(+), 65452 deletions(-) diff --git a/grammar.js b/grammar.js index 0454cd3a..89f4ab64 100644 --- a/grammar.js +++ b/grammar.js @@ -191,7 +191,12 @@ module.exports = grammar({ ), _non_special_token: $ => choice( - $._literal, $.identifier, $.metavariable, $.mutable_specifier, $.self, $.super, $.crate, + $._never_special_token, + $.metavariable + ), + + _never_special_token: $ => choice( + $._literal, $.identifier, $.mutable_specifier, $.self, $.super, $.crate, alias(choice(...primitive_types), $.primitive_type), /[/_\-=->,;:::!=?.@*&#%^+<>|~]+/, '\'', @@ -906,7 +911,7 @@ module.exports = grammar({ ), _non_delim_token: $ => choice( - $._non_special_token, + $._never_special_token, '$' ), diff --git a/src/grammar.json b/src/grammar.json index 17702d6c..2bb73612 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -658,15 +658,24 @@ "members": [ { "type": "SYMBOL", - "name": "_literal" + "name": "_never_special_token" }, { "type": "SYMBOL", - "name": "identifier" + "name": "metavariable" + } + ] + }, + "_never_special_token": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_literal" }, { "type": "SYMBOL", - "name": "metavariable" + "name": "identifier" }, { "type": "SYMBOL", @@ -5026,7 +5035,7 @@ "members": [ { "type": "SYMBOL", - "name": "_non_special_token" + "name": "_never_special_token" }, { "type": "STRING", diff --git a/src/parser.c b/src/parser.c index f1a975af..dcd70722 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2561 -#define LARGE_STATE_COUNT 643 -#define SYMBOL_COUNT 320 +#define STATE_COUNT 2567 +#define LARGE_STATE_COUNT 647 +#define SYMBOL_COUNT 321 #define ALIAS_COUNT 3 #define TOKEN_COUNT 139 #define EXTERNAL_TOKEN_COUNT 4 @@ -63,7 +63,7 @@ enum { anon_sym_bool = 44, anon_sym_str = 45, anon_sym_char = 46, - aux_sym__non_special_token_token1 = 47, + aux_sym__never_special_token_token1 = 47, anon_sym_SQUOTE = 48, anon_sym_as = 49, anon_sym_async = 50, @@ -168,177 +168,178 @@ enum { sym_fragment_specifier = 149, sym_token_tree = 150, sym_token_repetition = 151, - sym_attribute_item = 152, - sym_inner_attribute_item = 153, - sym_meta_item = 154, - sym_meta_arguments = 155, - sym_mod_item = 156, - sym_foreign_mod_item = 157, - sym_declaration_list = 158, - sym_struct_item = 159, - sym_union_item = 160, - sym_enum_item = 161, - sym_enum_variant_list = 162, - sym_enum_variant = 163, - sym_field_declaration_list = 164, - sym_field_declaration = 165, - sym_ordered_field_declaration_list = 166, - sym_extern_crate_declaration = 167, - sym_const_item = 168, - sym_static_item = 169, - sym_type_item = 170, - sym_function_item = 171, - sym_function_signature_item = 172, - sym_function_modifiers = 173, - sym_where_clause = 174, - sym_where_predicate = 175, - sym_impl_item = 176, - sym_trait_item = 177, - sym_associated_type = 178, - sym_trait_bounds = 179, - sym_higher_ranked_trait_bound = 180, - sym_removed_trait_bound = 181, - sym_type_parameters = 182, - sym_const_parameter = 183, - sym_constrained_type_parameter = 184, - sym_optional_type_parameter = 185, - sym_let_declaration = 186, - sym_use_declaration = 187, - sym__use_clause = 188, - sym_scoped_use_list = 189, - sym_use_list = 190, - sym_use_as_clause = 191, - sym_use_wildcard = 192, - sym_parameters = 193, - sym_self_parameter = 194, - sym_variadic_parameter = 195, - sym_parameter = 196, - sym_extern_modifier = 197, - sym_visibility_modifier = 198, - sym__type = 199, - sym_bracketed_type = 200, - sym_qualified_type = 201, - sym_lifetime = 202, - sym_array_type = 203, - sym_for_lifetimes = 204, - sym_function_type = 205, - sym_tuple_type = 206, - sym_unit_type = 207, - sym_generic_function = 208, - sym_generic_type = 209, - sym_generic_type_with_turbofish = 210, - sym_bounded_type = 211, - sym_type_arguments = 212, - sym_type_binding = 213, - sym_reference_type = 214, - sym_pointer_type = 215, - sym_empty_type = 216, - sym_abstract_type = 217, - sym_dynamic_type = 218, - sym__expression_except_range = 219, - sym__expression = 220, - sym_macro_invocation = 221, - sym_delim_token_tree = 222, - sym__delim_tokens = 223, - sym__non_delim_token = 224, - sym_scoped_identifier = 225, - sym_scoped_type_identifier_in_expression_position = 226, - sym_scoped_type_identifier = 227, - sym_range_expression = 228, - sym_unary_expression = 229, - sym_try_expression = 230, - sym_reference_expression = 231, - sym_binary_expression = 232, - sym_assignment_expression = 233, - sym_compound_assignment_expr = 234, - sym_type_cast_expression = 235, - sym_return_expression = 236, - sym_yield_expression = 237, - sym_call_expression = 238, - sym_arguments = 239, - sym_array_expression = 240, - sym_parenthesized_expression = 241, - sym_tuple_expression = 242, - sym_unit_expression = 243, - sym_struct_expression = 244, - sym_field_initializer_list = 245, - sym_shorthand_field_initializer = 246, - sym_field_initializer = 247, - sym_base_field_initializer = 248, - sym_if_expression = 249, - sym_if_let_expression = 250, - sym_else_clause = 251, - sym_match_expression = 252, - sym_match_block = 253, - sym_match_arm = 254, - sym_last_match_arm = 255, - sym_match_pattern = 256, - sym_while_expression = 257, - sym_while_let_expression = 258, - sym_loop_expression = 259, - sym_for_expression = 260, - sym_const_block = 261, - sym_closure_expression = 262, - sym_closure_parameters = 263, - sym_loop_label = 264, - sym_break_expression = 265, - sym_continue_expression = 266, - sym_index_expression = 267, - sym_await_expression = 268, - sym_field_expression = 269, - sym_unsafe_block = 270, - sym_async_block = 271, - sym_block = 272, - sym__pattern = 273, - sym_tuple_pattern = 274, - sym_slice_pattern = 275, - sym_tuple_struct_pattern = 276, - sym_struct_pattern = 277, - sym_field_pattern = 278, - sym_remaining_field_pattern = 279, - sym_mut_pattern = 280, - sym_range_pattern = 281, - sym_ref_pattern = 282, - sym_captured_pattern = 283, - sym_reference_pattern = 284, - sym_or_pattern = 285, - sym__literal = 286, - sym__literal_pattern = 287, - sym_negative_literal = 288, - sym_string_literal = 289, - sym_boolean_literal = 290, - aux_sym_source_file_repeat1 = 291, - aux_sym_macro_definition_repeat1 = 292, - aux_sym_token_tree_pattern_repeat1 = 293, - aux_sym_token_tree_repeat1 = 294, - aux_sym_meta_arguments_repeat1 = 295, - aux_sym_declaration_list_repeat1 = 296, - aux_sym_enum_variant_list_repeat1 = 297, - aux_sym_enum_variant_list_repeat2 = 298, - aux_sym_field_declaration_list_repeat1 = 299, - aux_sym_ordered_field_declaration_list_repeat1 = 300, - aux_sym_function_modifiers_repeat1 = 301, - aux_sym_where_clause_repeat1 = 302, - aux_sym_trait_bounds_repeat1 = 303, - aux_sym_type_parameters_repeat1 = 304, - aux_sym_use_list_repeat1 = 305, - aux_sym_parameters_repeat1 = 306, - aux_sym_for_lifetimes_repeat1 = 307, - aux_sym_tuple_type_repeat1 = 308, - aux_sym_type_arguments_repeat1 = 309, - aux_sym_delim_token_tree_repeat1 = 310, - aux_sym_arguments_repeat1 = 311, - aux_sym_array_expression_repeat1 = 312, - aux_sym_tuple_expression_repeat1 = 313, - aux_sym_field_initializer_list_repeat1 = 314, - aux_sym_match_block_repeat1 = 315, - aux_sym_closure_parameters_repeat1 = 316, - aux_sym_tuple_pattern_repeat1 = 317, - aux_sym_struct_pattern_repeat1 = 318, - aux_sym_string_literal_repeat1 = 319, - alias_sym_field_identifier = 320, - alias_sym_shorthand_field_identifier = 321, - alias_sym_type_identifier = 322, + sym__never_special_token = 152, + sym_attribute_item = 153, + sym_inner_attribute_item = 154, + sym_meta_item = 155, + sym_meta_arguments = 156, + sym_mod_item = 157, + sym_foreign_mod_item = 158, + sym_declaration_list = 159, + sym_struct_item = 160, + sym_union_item = 161, + sym_enum_item = 162, + sym_enum_variant_list = 163, + sym_enum_variant = 164, + sym_field_declaration_list = 165, + sym_field_declaration = 166, + sym_ordered_field_declaration_list = 167, + sym_extern_crate_declaration = 168, + sym_const_item = 169, + sym_static_item = 170, + sym_type_item = 171, + sym_function_item = 172, + sym_function_signature_item = 173, + sym_function_modifiers = 174, + sym_where_clause = 175, + sym_where_predicate = 176, + sym_impl_item = 177, + sym_trait_item = 178, + sym_associated_type = 179, + sym_trait_bounds = 180, + sym_higher_ranked_trait_bound = 181, + sym_removed_trait_bound = 182, + sym_type_parameters = 183, + sym_const_parameter = 184, + sym_constrained_type_parameter = 185, + sym_optional_type_parameter = 186, + sym_let_declaration = 187, + sym_use_declaration = 188, + sym__use_clause = 189, + sym_scoped_use_list = 190, + sym_use_list = 191, + sym_use_as_clause = 192, + sym_use_wildcard = 193, + sym_parameters = 194, + sym_self_parameter = 195, + sym_variadic_parameter = 196, + sym_parameter = 197, + sym_extern_modifier = 198, + sym_visibility_modifier = 199, + sym__type = 200, + sym_bracketed_type = 201, + sym_qualified_type = 202, + sym_lifetime = 203, + sym_array_type = 204, + sym_for_lifetimes = 205, + sym_function_type = 206, + sym_tuple_type = 207, + sym_unit_type = 208, + sym_generic_function = 209, + sym_generic_type = 210, + sym_generic_type_with_turbofish = 211, + sym_bounded_type = 212, + sym_type_arguments = 213, + sym_type_binding = 214, + sym_reference_type = 215, + sym_pointer_type = 216, + sym_empty_type = 217, + sym_abstract_type = 218, + sym_dynamic_type = 219, + sym__expression_except_range = 220, + sym__expression = 221, + sym_macro_invocation = 222, + sym_delim_token_tree = 223, + sym__delim_tokens = 224, + sym__non_delim_token = 225, + sym_scoped_identifier = 226, + sym_scoped_type_identifier_in_expression_position = 227, + sym_scoped_type_identifier = 228, + sym_range_expression = 229, + sym_unary_expression = 230, + sym_try_expression = 231, + sym_reference_expression = 232, + sym_binary_expression = 233, + sym_assignment_expression = 234, + sym_compound_assignment_expr = 235, + sym_type_cast_expression = 236, + sym_return_expression = 237, + sym_yield_expression = 238, + sym_call_expression = 239, + sym_arguments = 240, + sym_array_expression = 241, + sym_parenthesized_expression = 242, + sym_tuple_expression = 243, + sym_unit_expression = 244, + sym_struct_expression = 245, + sym_field_initializer_list = 246, + sym_shorthand_field_initializer = 247, + sym_field_initializer = 248, + sym_base_field_initializer = 249, + sym_if_expression = 250, + sym_if_let_expression = 251, + sym_else_clause = 252, + sym_match_expression = 253, + sym_match_block = 254, + sym_match_arm = 255, + sym_last_match_arm = 256, + sym_match_pattern = 257, + sym_while_expression = 258, + sym_while_let_expression = 259, + sym_loop_expression = 260, + sym_for_expression = 261, + sym_const_block = 262, + sym_closure_expression = 263, + sym_closure_parameters = 264, + sym_loop_label = 265, + sym_break_expression = 266, + sym_continue_expression = 267, + sym_index_expression = 268, + sym_await_expression = 269, + sym_field_expression = 270, + sym_unsafe_block = 271, + sym_async_block = 272, + sym_block = 273, + sym__pattern = 274, + sym_tuple_pattern = 275, + sym_slice_pattern = 276, + sym_tuple_struct_pattern = 277, + sym_struct_pattern = 278, + sym_field_pattern = 279, + sym_remaining_field_pattern = 280, + sym_mut_pattern = 281, + sym_range_pattern = 282, + sym_ref_pattern = 283, + sym_captured_pattern = 284, + sym_reference_pattern = 285, + sym_or_pattern = 286, + sym__literal = 287, + sym__literal_pattern = 288, + sym_negative_literal = 289, + sym_string_literal = 290, + sym_boolean_literal = 291, + aux_sym_source_file_repeat1 = 292, + aux_sym_macro_definition_repeat1 = 293, + aux_sym_token_tree_pattern_repeat1 = 294, + aux_sym_token_tree_repeat1 = 295, + aux_sym_meta_arguments_repeat1 = 296, + aux_sym_declaration_list_repeat1 = 297, + aux_sym_enum_variant_list_repeat1 = 298, + aux_sym_enum_variant_list_repeat2 = 299, + aux_sym_field_declaration_list_repeat1 = 300, + aux_sym_ordered_field_declaration_list_repeat1 = 301, + aux_sym_function_modifiers_repeat1 = 302, + aux_sym_where_clause_repeat1 = 303, + aux_sym_trait_bounds_repeat1 = 304, + aux_sym_type_parameters_repeat1 = 305, + aux_sym_use_list_repeat1 = 306, + aux_sym_parameters_repeat1 = 307, + aux_sym_for_lifetimes_repeat1 = 308, + aux_sym_tuple_type_repeat1 = 309, + aux_sym_type_arguments_repeat1 = 310, + aux_sym_delim_token_tree_repeat1 = 311, + aux_sym_arguments_repeat1 = 312, + aux_sym_array_expression_repeat1 = 313, + aux_sym_tuple_expression_repeat1 = 314, + aux_sym_field_initializer_list_repeat1 = 315, + aux_sym_match_block_repeat1 = 316, + aux_sym_closure_parameters_repeat1 = 317, + aux_sym_tuple_pattern_repeat1 = 318, + aux_sym_struct_pattern_repeat1 = 319, + aux_sym_string_literal_repeat1 = 320, + alias_sym_field_identifier = 321, + alias_sym_shorthand_field_identifier = 322, + alias_sym_type_identifier = 323, }; static const char *ts_symbol_names[] = { @@ -389,7 +390,7 @@ static const char *ts_symbol_names[] = { [anon_sym_bool] = "primitive_type", [anon_sym_str] = "primitive_type", [anon_sym_char] = "primitive_type", - [aux_sym__non_special_token_token1] = "_non_special_token_token1", + [aux_sym__never_special_token_token1] = "_never_special_token_token1", [anon_sym_SQUOTE] = "'", [anon_sym_as] = "as", [anon_sym_async] = "async", @@ -494,6 +495,7 @@ static const char *ts_symbol_names[] = { [sym_fragment_specifier] = "fragment_specifier", [sym_token_tree] = "token_tree", [sym_token_repetition] = "token_repetition", + [sym__never_special_token] = "_never_special_token", [sym_attribute_item] = "attribute_item", [sym_inner_attribute_item] = "inner_attribute_item", [sym_meta_item] = "meta_item", @@ -715,7 +717,7 @@ static TSSymbol ts_symbol_map[] = { [anon_sym_bool] = anon_sym_u8, [anon_sym_str] = anon_sym_u8, [anon_sym_char] = anon_sym_u8, - [aux_sym__non_special_token_token1] = aux_sym__non_special_token_token1, + [aux_sym__never_special_token_token1] = aux_sym__never_special_token_token1, [anon_sym_SQUOTE] = anon_sym_SQUOTE, [anon_sym_as] = anon_sym_as, [anon_sym_async] = anon_sym_async, @@ -820,6 +822,7 @@ static TSSymbol ts_symbol_map[] = { [sym_fragment_specifier] = sym_fragment_specifier, [sym_token_tree] = sym_token_tree, [sym_token_repetition] = sym_token_repetition, + [sym__never_special_token] = sym__never_special_token, [sym_attribute_item] = sym_attribute_item, [sym_inner_attribute_item] = sym_inner_attribute_item, [sym_meta_item] = sym_meta_item, @@ -1182,7 +1185,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [aux_sym__non_special_token_token1] = { + [aux_sym__never_special_token_token1] = { .visible = false, .named = false, }, @@ -1602,6 +1605,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__never_special_token] = { + .visible = false, + .named = true, + }, [sym_attribute_item] = { .visible = true, .named = true, @@ -9648,789 +9655,814 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(148); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '@') ADVANCE(137); - if (lookahead == '[') ADVANCE(66); - if (lookahead == '\\') ADVANCE(35); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (eof) ADVANCE(59); + if (lookahead == '!') ADVANCE(91); + if (lookahead == '"') ADVANCE(150); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(73); + if (lookahead == '%') ADVANCE(127); + if (lookahead == '&') ADVANCE(104); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(81); + if (lookahead == '+') ADVANCE(79); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(113); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '/') ADVANCE(126); + if (lookahead == '0') ADVANCE(144); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(94); + if (lookahead == '>') ADVANCE(101); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '@') ADVANCE(139); + if (lookahead == '[') ADVANCE(67); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == ']') ADVANCE(68); + if (lookahead == '^') ADVANCE(119); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'm') ADVANCE(159); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(118); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(55) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); + lookahead == ' ') SKIP(56) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(168); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(91); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(54); + if (lookahead == '%') ADVANCE(127); + if (lookahead == '&') ADVANCE(104); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(81); + if (lookahead == '+') ADVANCE(79); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(112); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '/') ADVANCE(126); + if (lookahead == '0') ADVANCE(144); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(94); + if (lookahead == '>') ADVANCE(101); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == '^') ADVANCE(119); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(118); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(89); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(91); + if (lookahead == '%') ADVANCE(127); + if (lookahead == '&') ADVANCE(104); + if (lookahead == '\'') ADVANCE(87); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(81); + if (lookahead == '+') ADVANCE(79); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(113); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '/') ADVANCE(126); + if (lookahead == ':') ADVANCE(31); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(94); + if (lookahead == '>') ADVANCE(101); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == '^') ADVANCE(119); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(118); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(89); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(91); + if (lookahead == '%') ADVANCE(127); + if (lookahead == '&') ADVANCE(104); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(81); + if (lookahead == '+') ADVANCE(79); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(112); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '/') ADVANCE(126); + if (lookahead == ':') ADVANCE(31); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(94); + if (lookahead == '>') ADVANCE(101); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == '^') ADVANCE(119); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(118); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(148); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '\\') ADVANCE(35); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '"') ADVANCE(150); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(54); + if (lookahead == '\'') ADVANCE(87); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '+') ADVANCE(78); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '.') ADVANCE(23); + if (lookahead == '/') ADVANCE(24); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(98); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(100); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == ']') ADVANCE(68); + if (lookahead == 'm') ADVANCE(159); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '|') ADVANCE(117); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(112); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(54); + if (lookahead == '&') ADVANCE(103); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(80); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(114); + if (lookahead == '.') ADVANCE(21); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(144); + if (lookahead == ':') ADVANCE(31); + if (lookahead == '<') ADVANCE(98); + if (lookahead == '>') ADVANCE(100); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(117); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(109); - if (lookahead == '.') ADVANCE(21); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '[') ADVANCE(66); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(54); + if (lookahead == '&') ADVANCE(103); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(80); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(111); + if (lookahead == '.') ADVANCE(22); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(144); + if (lookahead == ':') ADVANCE(31); + if (lookahead == '<') ADVANCE(98); + if (lookahead == '[') ADVANCE(67); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'r') ADVANCE(157); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(32); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(54); + if (lookahead == '&') ADVANCE(103); + if (lookahead == '\'') ADVANCE(87); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(80); + if (lookahead == '+') ADVANCE(78); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(33); + if (lookahead == '.') ADVANCE(23); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(144); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(98); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(100); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(117); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '\'') ADVANCE(85); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == '>') ADVANCE(98); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(54); + if (lookahead == '\'') ADVANCE(87); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '+') ADVANCE(78); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '.') ADVANCE(23); + if (lookahead == '/') ADVANCE(24); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(98); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(100); + if (lookahead == ']') ADVANCE(68); + if (lookahead == 'm') ADVANCE(159); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '|') ADVANCE(117); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(88); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '@') ADVANCE(137); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '+') ADVANCE(78); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '.') ADVANCE(23); + if (lookahead == '/') ADVANCE(24); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(100); + if (lookahead == '@') ADVANCE(139); + if (lookahead == ']') ADVANCE(68); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(117); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(31); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '!') ADVANCE(32); + if (lookahead == '%') ADVANCE(127); + if (lookahead == '&') ADVANCE(104); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(81); + if (lookahead == '+') ADVANCE(79); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(112); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '/') ADVANCE(126); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(94); + if (lookahead == '>') ADVANCE(101); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == '^') ADVANCE(119); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(118); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(10) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(147); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '/') ADVANCE(81); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(70); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '_') ADVANCE(82); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '$') ADVANCE(73); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '/') ADVANCE(83); + if (lookahead == '0') ADVANCE(144); + if (lookahead == ':') ADVANCE(71); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == '_') ADVANCE(84); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(11) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); if (('!' <= lookahead && lookahead <= '@') || lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(83); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); + ('|' <= lookahead && lookahead <= '~')) ADVANCE(85); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(168); END_STATE(); case 12: - if (lookahead == '"') ADVANCE(147); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '/') ADVANCE(81); - if (lookahead == '0') ADVANCE(142); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '_') ADVANCE(82); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '$') ADVANCE(73); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '/') ADVANCE(83); + if (lookahead == '0') ADVANCE(144); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == '_') ADVANCE(84); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); if (('!' <= lookahead && lookahead <= '@') || lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(83); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); + ('|' <= lookahead && lookahead <= '~')) ADVANCE(85); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(168); END_STATE(); case 13: - if (lookahead == '"') ADVANCE(147); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == 'b') ADVANCE(154); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '$') ADVANCE(72); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '/') ADVANCE(83); + if (lookahead == '0') ADVANCE(144); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == '_') ADVANCE(84); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (('!' <= lookahead && lookahead <= '@') || + lookahead == '^' || + ('|' <= lookahead && lookahead <= '~')) ADVANCE(85); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(168); END_STATE(); case 14: - if (lookahead == '#') ADVANCE(87); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(68); - if (lookahead == '<') ADVANCE(96); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '/') ADVANCE(24); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(98); + if (lookahead == '=') ADVANCE(92); + if (lookahead == 'b') ADVANCE(156); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(14) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 15: - if (lookahead == '\'') ADVANCE(149); + if (lookahead == '#') ADVANCE(89); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '.') ADVANCE(21); + if (lookahead == '/') ADVANCE(24); + if (lookahead == ':') ADVANCE(69); + if (lookahead == '<') ADVANCE(98); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '}') ADVANCE(65); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(15) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 16: - if (lookahead == '\'') ADVANCE(149); - if (lookahead == '\\') ADVANCE(36); - if (lookahead != 0) ADVANCE(15); + if (lookahead == '\'') ADVANCE(151); END_STATE(); case 17: - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(32); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(98); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(17) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (lookahead == '\'') ADVANCE(151); + if (lookahead == '\\') ADVANCE(37); + if (lookahead != 0) ADVANCE(16); END_STATE(); case 18: - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '?') ADVANCE(80); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(80); + if (lookahead == '+') ADVANCE(78); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(33); + if (lookahead == '.') ADVANCE(23); + if (lookahead == '/') ADVANCE(24); + if (lookahead == ':') ADVANCE(69); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(95); + if (lookahead == '>') ADVANCE(100); + if (lookahead == ']') ADVANCE(68); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(117); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(73); - if (lookahead != 0) ADVANCE(75); + lookahead == ' ') SKIP(18) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 19: - if (lookahead == '.') ADVANCE(103); - if (lookahead == '=') ADVANCE(108); + if (lookahead == '*') ADVANCE(80); + if (lookahead == '+') ADVANCE(78); + if (lookahead == '/') ADVANCE(76); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(75); + if (lookahead != 0) ADVANCE(77); END_STATE(); case 20: if (lookahead == '.') ADVANCE(105); + if (lookahead == '=') ADVANCE(110); END_STATE(); case 21: - if (lookahead == '.') ADVANCE(106); + if (lookahead == '.') ADVANCE(107); END_STATE(); case 22: - if (lookahead == '.') ADVANCE(19); + if (lookahead == '.') ADVANCE(108); END_STATE(); case 23: - if (lookahead == '/') ADVANCE(151); + if (lookahead == '.') ADVANCE(20); END_STATE(); case 24: - if (lookahead == '1') ADVANCE(26); - if (lookahead == '3') ADVANCE(25); - if (lookahead == '6') ADVANCE(28); - if (lookahead == '8') ADVANCE(138); - if (lookahead == 's') ADVANCE(34); + if (lookahead == '/') ADVANCE(153); END_STATE(); case 25: - if (lookahead == '2') ADVANCE(138); + if (lookahead == '1') ADVANCE(27); + if (lookahead == '3') ADVANCE(26); + if (lookahead == '6') ADVANCE(29); + if (lookahead == '8') ADVANCE(140); + if (lookahead == 's') ADVANCE(35); END_STATE(); case 26: - if (lookahead == '2') ADVANCE(29); - if (lookahead == '6') ADVANCE(138); + if (lookahead == '2') ADVANCE(140); END_STATE(); case 27: - if (lookahead == '3') ADVANCE(25); - if (lookahead == '6') ADVANCE(28); + if (lookahead == '2') ADVANCE(30); + if (lookahead == '6') ADVANCE(140); END_STATE(); case 28: - if (lookahead == '4') ADVANCE(138); + if (lookahead == '3') ADVANCE(26); + if (lookahead == '6') ADVANCE(29); END_STATE(); case 29: - if (lookahead == '8') ADVANCE(138); + if (lookahead == '4') ADVANCE(140); END_STATE(); case 30: - if (lookahead == ':') ADVANCE(100); + if (lookahead == '8') ADVANCE(140); END_STATE(); case 31: - if (lookahead == '=') ADVANCE(119); + if (lookahead == ':') ADVANCE(102); END_STATE(); case 32: - if (lookahead == '>') ADVANCE(95); + if (lookahead == '=') ADVANCE(121); END_STATE(); case 33: - if (lookahead == 'e') ADVANCE(138); + if (lookahead == '>') ADVANCE(97); END_STATE(); case 34: - if (lookahead == 'i') ADVANCE(37); + if (lookahead == 'e') ADVANCE(140); END_STATE(); case 35: - if (lookahead == 'u') ADVANCE(38); - if (lookahead == 'x') ADVANCE(49); - if (lookahead != 0) ADVANCE(150); + if (lookahead == 'i') ADVANCE(38); END_STATE(); case 36: if (lookahead == 'u') ADVANCE(39); if (lookahead == 'x') ADVANCE(50); - if (lookahead != 0) ADVANCE(15); + if (lookahead != 0) ADVANCE(152); END_STATE(); case 37: - if (lookahead == 'z') ADVANCE(33); + if (lookahead == 'u') ADVANCE(40); + if (lookahead == 'x') ADVANCE(51); + if (lookahead != 0) ADVANCE(16); END_STATE(); case 38: - if (lookahead == '{') ADVANCE(47); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); + if (lookahead == 'z') ADVANCE(34); END_STATE(); case 39: if (lookahead == '{') ADVANCE(48); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); END_STATE(); case 40: - if (lookahead == '}') ADVANCE(15); + if (lookahead == '{') ADVANCE(49); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(52); END_STATE(); case 41: - if (lookahead == '}') ADVANCE(150); + if (lookahead == '}') ADVANCE(16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); END_STATE(); case 42: - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(143); + if (lookahead == '}') ADVANCE(152); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); END_STATE(); case 43: - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(144); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(145); END_STATE(); case 44: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(15); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(146); END_STATE(); case 45: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(16); END_STATE(); case 46: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); END_STATE(); case 47: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(152); END_STATE(); case 48: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); END_STATE(); case 49: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); END_STATE(); case 50: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); END_STATE(); case 51: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); END_STATE(); case 52: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); END_STATE(); case 53: - if (('A' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(148); END_STATE(); case 54: - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(169); END_STATE(); case 55: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == ',') ADVANCE(94); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '@') ADVANCE(137); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(55) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 56: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(89); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '%') ADVANCE(125); - if (lookahead == '&') ADVANCE(102); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == '*') ADVANCE(79); - if (lookahead == '+') ADVANCE(77); - if (lookahead == '-') ADVANCE(110); - if (lookahead == '.') ADVANCE(136); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(97); - if (lookahead == '=') ADVANCE(91); - if (lookahead == '>') ADVANCE(99); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(116); - if (lookahead == '}') ADVANCE(64); + if (eof) ADVANCE(59); + if (lookahead == '!') ADVANCE(91); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(73); + if (lookahead == '%') ADVANCE(127); + if (lookahead == '&') ADVANCE(104); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(81); + if (lookahead == '+') ADVANCE(79); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(113); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '/') ADVANCE(126); + if (lookahead == '0') ADVANCE(144); + if (lookahead == ':') ADVANCE(70); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(106); + if (lookahead == '=') ADVANCE(94); + if (lookahead == '>') ADVANCE(101); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '@') ADVANCE(139); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == '^') ADVANCE(119); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'm') ADVANCE(159); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(118); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(56) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 57: - if (eof) ADVANCE(58); - if (lookahead == '!') ADVANCE(88); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(87); - if (lookahead == '$') ADVANCE(53); - if (lookahead == '&') ADVANCE(101); - if (lookahead == '\'') ADVANCE(86); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(78); - if (lookahead == '+') ADVANCE(76); - if (lookahead == ',') ADVANCE(94); + if (eof) ADVANCE(59); + if (lookahead == '!') ADVANCE(91); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(54); + if (lookahead == '%') ADVANCE(127); + if (lookahead == '&') ADVANCE(104); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == '*') ADVANCE(81); + if (lookahead == '+') ADVANCE(79); if (lookahead == '-') ADVANCE(112); - if (lookahead == '.') ADVANCE(20); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(142); - if (lookahead == ':') ADVANCE(30); - if (lookahead == ';') ADVANCE(59); - if (lookahead == '<') ADVANCE(96); - if (lookahead == '=') ADVANCE(90); - if (lookahead == '>') ADVANCE(98); - if (lookahead == '?') ADVANCE(80); - if (lookahead == '[') ADVANCE(66); - if (lookahead == ']') ADVANCE(67); - if (lookahead == 'b') ADVANCE(153); - if (lookahead == 'm') ADVANCE(157); - if (lookahead == 'r') ADVANCE(155); - if (lookahead == '{') ADVANCE(63); - if (lookahead == '|') ADVANCE(115); - if (lookahead == '}') ADVANCE(64); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '/') ADVANCE(126); + if (lookahead == '0') ADVANCE(144); + if (lookahead == ':') ADVANCE(31); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(101); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '[') ADVANCE(67); + if (lookahead == '^') ADVANCE(119); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'm') ADVANCE(159); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(118); + if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(57) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(145); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 58: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(59); + if (lookahead == '!') ADVANCE(90); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(54); + if (lookahead == '&') ADVANCE(103); + if (lookahead == '\'') ADVANCE(88); + if (lookahead == '(') ADVANCE(62); + if (lookahead == ')') ADVANCE(63); + if (lookahead == '*') ADVANCE(80); + if (lookahead == '+') ADVANCE(78); + if (lookahead == ',') ADVANCE(96); + if (lookahead == '-') ADVANCE(114); + if (lookahead == '.') ADVANCE(21); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '0') ADVANCE(144); + if (lookahead == ':') ADVANCE(31); + if (lookahead == ';') ADVANCE(60); + if (lookahead == '<') ADVANCE(98); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(100); + if (lookahead == '?') ADVANCE(82); + if (lookahead == '[') ADVANCE(67); + if (lookahead == ']') ADVANCE(68); + if (lookahead == 'b') ADVANCE(155); + if (lookahead == 'm') ADVANCE(159); + if (lookahead == 'r') ADVANCE(157); + if (lookahead == '{') ADVANCE(64); + if (lookahead == '|') ADVANCE(117); + if (lookahead == '}') ADVANCE(65); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(58) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_macro_rules_BANG); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_macro_rules_BANG); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 67: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 69: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(100); END_STATE(); case 70: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(102); + END_STATE(); + case 71: ACCEPT_TOKEN(anon_sym_COLON); if (lookahead == '!' || lookahead == '#' || @@ -10441,69 +10473,72 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(83); + lookahead == '~') ADVANCE(85); END_STATE(); - case 71: + case 72: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 73: ACCEPT_TOKEN(anon_sym_DOLLAR); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(169); END_STATE(); - case 72: + case 74: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '\n') ADVANCE(75); + if (lookahead == '\n') ADVANCE(77); if (lookahead == '*' || lookahead == '+' || - lookahead == '?') ADVANCE(151); - if (lookahead != 0) ADVANCE(72); + lookahead == '?') ADVANCE(153); + if (lookahead != 0) ADVANCE(74); END_STATE(); - case 73: + case 75: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '/') ADVANCE(74); + if (lookahead == '/') ADVANCE(76); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(73); + lookahead == ' ') ADVANCE(75); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(75); + lookahead != '?') ADVANCE(77); END_STATE(); - case 74: + case 76: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '/') ADVANCE(72); + if (lookahead == '/') ADVANCE(74); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(75); + lookahead != '?') ADVANCE(77); END_STATE(); - case 75: + case 77: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(75); + lookahead != '?') ADVANCE(77); END_STATE(); - case 76: + case 78: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 77: + case 79: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(126); + if (lookahead == '=') ADVANCE(128); END_STATE(); - case 78: + case 80: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 79: + case 81: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(128); + if (lookahead == '=') ADVANCE(130); END_STATE(); - case 80: + case 82: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 81: - ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '/') ADVANCE(84); + case 83: + ACCEPT_TOKEN(aux_sym__never_special_token_token1); + if (lookahead == '/') ADVANCE(86); if (lookahead == '!' || lookahead == '#' || lookahead == '%' || @@ -10513,11 +10548,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(83); + lookahead == '~') ADVANCE(85); END_STATE(); - case 82: - ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '_') ADVANCE(82); + case 84: + ACCEPT_TOKEN(aux_sym__never_special_token_token1); + if (lookahead == '_') ADVANCE(84); if (lookahead == '!' || lookahead == '#' || lookahead == '%' || @@ -10526,11 +10561,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (':' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(83); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(166); + lookahead == '~') ADVANCE(85); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(168); END_STATE(); - case 83: - ACCEPT_TOKEN(aux_sym__non_special_token_token1); + case 85: + ACCEPT_TOKEN(aux_sym__never_special_token_token1); if (lookahead == '!' || lookahead == '#' || lookahead == '%' || @@ -10540,10 +10575,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(83); + lookahead == '~') ADVANCE(85); END_STATE(); - case 84: - ACCEPT_TOKEN(aux_sym__non_special_token_token1); + case 86: + ACCEPT_TOKEN(aux_sym__never_special_token_token1); if (lookahead == '!' || lookahead == '#' || lookahead == '%' || @@ -10553,380 +10588,380 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(84); + lookahead == '~') ADVANCE(86); if (lookahead != 0 && - lookahead != '\n') ADVANCE(151); - END_STATE(); - case 85: - ACCEPT_TOKEN(anon_sym_SQUOTE); - END_STATE(); - case 86: - ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(149); - if (lookahead == '\\') ADVANCE(36); - if (lookahead != 0) ADVANCE(15); + lookahead != '\n') ADVANCE(153); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_POUND); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(151); + if (lookahead == '\\') ADVANCE(37); + if (lookahead != 0) ADVANCE(16); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(119); + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(118); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(121); END_STATE(); case 92: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(118); - if (lookahead == '>') ADVANCE(65); END_STATE(); case 93: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(65); + if (lookahead == '=') ADVANCE(120); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(120); + if (lookahead == '>') ADVANCE(66); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(66); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(120); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(121); - if (lookahead == '>') ADVANCE(123); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(124); + if (lookahead == '=') ADVANCE(122); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(123); + if (lookahead == '>') ADVANCE(125); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(113); - if (lookahead == '=') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(115); + if (lookahead == '=') ADVANCE(133); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(103); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 107: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(103); - if (lookahead == '=') ADVANCE(108); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(105); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(105); + if (lookahead == '=') ADVANCE(110); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(127); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 111: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(127); - if (lookahead == '>') ADVANCE(95); END_STATE(); case 112: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(95); + if (lookahead == '=') ADVANCE(129); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(129); + if (lookahead == '>') ADVANCE(97); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(97); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(132); - if (lookahead == '|') ADVANCE(114); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(133); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(134); + if (lookahead == '|') ADVANCE(116); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(135); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(134); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(135); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(151); - if (lookahead == '=') ADVANCE(129); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(136); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(137); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(153); + if (lookahead == '=') ADVANCE(131); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(132); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(107); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 138: - ACCEPT_TOKEN(sym_integer_literal); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(109); END_STATE(); case 139: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 140: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '2') ADVANCE(146); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + END_STATE(); + case 141: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == '2') ADVANCE(148); + if (lookahead == 'f') ADVANCE(142); + if (lookahead == 'i') ADVANCE(25); + if (lookahead == 'u') ADVANCE(25); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(148); END_STATE(); - case 140: + case 142: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '3') ADVANCE(139); - if (lookahead == '6') ADVANCE(141); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == '3') ADVANCE(141); + if (lookahead == '6') ADVANCE(143); + if (lookahead == 'f') ADVANCE(142); + if (lookahead == 'i') ADVANCE(25); + if (lookahead == 'u') ADVANCE(25); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(148); END_STATE(); - case 141: + case 143: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '4') ADVANCE(146); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == '4') ADVANCE(148); + if (lookahead == 'f') ADVANCE(142); + if (lookahead == 'i') ADVANCE(25); + if (lookahead == 'u') ADVANCE(25); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(148); END_STATE(); - case 142: + case 144: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'b') ADVANCE(42); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'o') ADVANCE(43); - if (lookahead == 'u') ADVANCE(24); - if (lookahead == 'x') ADVANCE(52); + if (lookahead == 'b') ADVANCE(43); + if (lookahead == 'f') ADVANCE(28); + if (lookahead == 'i') ADVANCE(25); + if (lookahead == 'o') ADVANCE(44); + if (lookahead == 'u') ADVANCE(25); + if (lookahead == 'x') ADVANCE(53); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(145); + lookahead == '_') ADVANCE(147); END_STATE(); - case 143: + case 145: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == 'f') ADVANCE(28); + if (lookahead == 'i') ADVANCE(25); + if (lookahead == 'u') ADVANCE(25); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(143); + lookahead == '_') ADVANCE(145); END_STATE(); - case 144: + case 146: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == 'f') ADVANCE(28); + if (lookahead == 'i') ADVANCE(25); + if (lookahead == 'u') ADVANCE(25); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(144); + lookahead == '_') ADVANCE(146); END_STATE(); - case 145: + case 147: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(27); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == 'f') ADVANCE(28); + if (lookahead == 'i') ADVANCE(25); + if (lookahead == 'u') ADVANCE(25); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(145); + lookahead == '_') ADVANCE(147); END_STATE(); - case 146: + case 148: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(140); - if (lookahead == 'i') ADVANCE(24); - if (lookahead == 'u') ADVANCE(24); + if (lookahead == 'f') ADVANCE(142); + if (lookahead == 'i') ADVANCE(25); + if (lookahead == 'u') ADVANCE(25); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(148); END_STATE(); - case 147: + case 149: ACCEPT_TOKEN(aux_sym_string_literal_token1); END_STATE(); - case 148: + case 150: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 149: + case 151: ACCEPT_TOKEN(sym_char_literal); END_STATE(); - case 150: + case 152: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 151: + case 153: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(151); - END_STATE(); - case 152: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(60); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); - END_STATE(); - case 153: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '\'') ADVANCE(16); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + lookahead != '\n') ADVANCE(153); END_STATE(); case 154: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(147); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == '!') ADVANCE(61); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 155: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '#') ADVANCE(54); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == '"') ADVANCE(149); + if (lookahead == '\'') ADVANCE(17); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 156: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(163); - if (sym_identifier_character_set_6(lookahead)) ADVANCE(166); + if (lookahead == '"') ADVANCE(149); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 157: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(158); - if (sym_identifier_character_set_7(lookahead)) ADVANCE(166); + if (lookahead == '#') ADVANCE(55); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 158: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(162); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == '_') ADVANCE(165); + if (sym_identifier_character_set_6(lookahead)) ADVANCE(168); END_STATE(); case 159: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(164); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'a') ADVANCE(160); + if (sym_identifier_character_set_7(lookahead)) ADVANCE(168); END_STATE(); case 160: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(159); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'c') ADVANCE(164); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 161: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(156); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'e') ADVANCE(166); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 162: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(161); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'l') ADVANCE(161); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 163: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(165); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'o') ADVANCE(158); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 164: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(152); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'r') ADVANCE(163); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 165: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(160); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 'r') ADVANCE(167); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 166: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(166); + if (lookahead == 's') ADVANCE(154); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); END_STATE(); case 167: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(162); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); + END_STATE(); + case 168: + ACCEPT_TOKEN(sym_identifier); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); + END_STATE(); + case 169: ACCEPT_TOKEN(sym_metavariable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(169); END_STATE(); default: return false; @@ -11663,22 +11698,22 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 57, .external_lex_state = 2}, - [2] = {.lex_state = 57, .external_lex_state = 2}, - [3] = {.lex_state = 57, .external_lex_state = 2}, - [4] = {.lex_state = 57, .external_lex_state = 2}, - [5] = {.lex_state = 57, .external_lex_state = 2}, - [6] = {.lex_state = 57, .external_lex_state = 2}, - [7] = {.lex_state = 57, .external_lex_state = 2}, - [8] = {.lex_state = 57, .external_lex_state = 2}, - [9] = {.lex_state = 57, .external_lex_state = 2}, - [10] = {.lex_state = 57, .external_lex_state = 2}, - [11] = {.lex_state = 57, .external_lex_state = 2}, - [12] = {.lex_state = 57, .external_lex_state = 2}, - [13] = {.lex_state = 57, .external_lex_state = 2}, - [14] = {.lex_state = 57, .external_lex_state = 2}, - [15] = {.lex_state = 57, .external_lex_state = 2}, - [16] = {.lex_state = 57, .external_lex_state = 2}, + [1] = {.lex_state = 58, .external_lex_state = 2}, + [2] = {.lex_state = 58, .external_lex_state = 2}, + [3] = {.lex_state = 58, .external_lex_state = 2}, + [4] = {.lex_state = 58, .external_lex_state = 2}, + [5] = {.lex_state = 58, .external_lex_state = 2}, + [6] = {.lex_state = 58, .external_lex_state = 2}, + [7] = {.lex_state = 58, .external_lex_state = 2}, + [8] = {.lex_state = 58, .external_lex_state = 2}, + [9] = {.lex_state = 58, .external_lex_state = 2}, + [10] = {.lex_state = 58, .external_lex_state = 2}, + [11] = {.lex_state = 58, .external_lex_state = 2}, + [12] = {.lex_state = 58, .external_lex_state = 2}, + [13] = {.lex_state = 58, .external_lex_state = 2}, + [14] = {.lex_state = 58, .external_lex_state = 2}, + [15] = {.lex_state = 58, .external_lex_state = 2}, + [16] = {.lex_state = 58, .external_lex_state = 2}, [17] = {.lex_state = 1, .external_lex_state = 2}, [18] = {.lex_state = 1, .external_lex_state = 2}, [19] = {.lex_state = 1, .external_lex_state = 2}, @@ -11706,20 +11741,20 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 56, .external_lex_state = 2}, + [44] = {.lex_state = 5, .external_lex_state = 2}, [45] = {.lex_state = 5, .external_lex_state = 2}, - [46] = {.lex_state = 5, .external_lex_state = 2}, - [47] = {.lex_state = 56, .external_lex_state = 2}, + [46] = {.lex_state = 57, .external_lex_state = 2}, + [47] = {.lex_state = 5, .external_lex_state = 2}, [48] = {.lex_state = 5, .external_lex_state = 2}, [49] = {.lex_state = 5, .external_lex_state = 2}, - [50] = {.lex_state = 5, .external_lex_state = 2}, + [50] = {.lex_state = 57, .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}, + [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}, + [57] = {.lex_state = 57, .external_lex_state = 2}, [58] = {.lex_state = 5, .external_lex_state = 2}, [59] = {.lex_state = 5, .external_lex_state = 2}, [60] = {.lex_state = 5, .external_lex_state = 2}, @@ -11727,125 +11762,125 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [62] = {.lex_state = 5, .external_lex_state = 2}, [63] = {.lex_state = 5, .external_lex_state = 2}, [64] = {.lex_state = 5, .external_lex_state = 2}, - [65] = {.lex_state = 5, .external_lex_state = 2}, + [65] = {.lex_state = 57, .external_lex_state = 2}, [66] = {.lex_state = 5, .external_lex_state = 2}, - [67] = {.lex_state = 5, .external_lex_state = 2}, - [68] = {.lex_state = 56, .external_lex_state = 2}, + [67] = {.lex_state = 57, .external_lex_state = 2}, + [68] = {.lex_state = 5, .external_lex_state = 2}, [69] = {.lex_state = 5, .external_lex_state = 2}, [70] = {.lex_state = 5, .external_lex_state = 2}, - [71] = {.lex_state = 56, .external_lex_state = 2}, - [72] = {.lex_state = 5, .external_lex_state = 2}, + [71] = {.lex_state = 5, .external_lex_state = 2}, + [72] = {.lex_state = 57, .external_lex_state = 2}, [73] = {.lex_state = 5, .external_lex_state = 2}, [74] = {.lex_state = 5, .external_lex_state = 2}, - [75] = {.lex_state = 56, .external_lex_state = 2}, - [76] = {.lex_state = 56, .external_lex_state = 2}, + [75] = {.lex_state = 5, .external_lex_state = 2}, + [76] = {.lex_state = 5, .external_lex_state = 2}, [77] = {.lex_state = 5, .external_lex_state = 2}, - [78] = {.lex_state = 56, .external_lex_state = 2}, + [78] = {.lex_state = 5, .external_lex_state = 2}, [79] = {.lex_state = 5, .external_lex_state = 2}, [80] = {.lex_state = 5, .external_lex_state = 2}, [81] = {.lex_state = 5, .external_lex_state = 2}, - [82] = {.lex_state = 56, .external_lex_state = 2}, + [82] = {.lex_state = 5, .external_lex_state = 2}, [83] = {.lex_state = 5, .external_lex_state = 2}, [84] = {.lex_state = 5, .external_lex_state = 2}, [85] = {.lex_state = 5, .external_lex_state = 2}, - [86] = {.lex_state = 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 = 5, .external_lex_state = 2}, [90] = {.lex_state = 5, .external_lex_state = 2}, - [91] = {.lex_state = 5, .external_lex_state = 2}, + [91] = {.lex_state = 57, .external_lex_state = 2}, [92] = {.lex_state = 5, .external_lex_state = 2}, [93] = {.lex_state = 5, .external_lex_state = 2}, - [94] = {.lex_state = 56, .external_lex_state = 2}, - [95] = {.lex_state = 5, .external_lex_state = 2}, - [96] = {.lex_state = 56, .external_lex_state = 2}, - [97] = {.lex_state = 56, .external_lex_state = 2}, - [98] = {.lex_state = 5, .external_lex_state = 2}, - [99] = {.lex_state = 56, .external_lex_state = 2}, + [94] = {.lex_state = 5, .external_lex_state = 2}, + [95] = {.lex_state = 57, .external_lex_state = 2}, + [96] = {.lex_state = 5, .external_lex_state = 2}, + [97] = {.lex_state = 57, .external_lex_state = 2}, + [98] = {.lex_state = 57, .external_lex_state = 2}, + [99] = {.lex_state = 57, .external_lex_state = 2}, [100] = {.lex_state = 5, .external_lex_state = 2}, - [101] = {.lex_state = 56, .external_lex_state = 2}, + [101] = {.lex_state = 5, .external_lex_state = 2}, [102] = {.lex_state = 5, .external_lex_state = 2}, [103] = {.lex_state = 5, .external_lex_state = 2}, - [104] = {.lex_state = 56, .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}, - [109] = {.lex_state = 5, .external_lex_state = 2}, + [109] = {.lex_state = 57, .external_lex_state = 2}, [110] = {.lex_state = 5, .external_lex_state = 2}, [111] = {.lex_state = 5, .external_lex_state = 2}, - [112] = {.lex_state = 5, .external_lex_state = 2}, - [113] = {.lex_state = 5, .external_lex_state = 2}, + [112] = {.lex_state = 57, .external_lex_state = 2}, + [113] = {.lex_state = 57, .external_lex_state = 2}, [114] = {.lex_state = 5, .external_lex_state = 2}, - [115] = {.lex_state = 5, .external_lex_state = 2}, + [115] = {.lex_state = 57, .external_lex_state = 2}, [116] = {.lex_state = 5, .external_lex_state = 2}, - [117] = {.lex_state = 56, .external_lex_state = 2}, + [117] = {.lex_state = 5, .external_lex_state = 2}, [118] = {.lex_state = 5, .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}, - [124] = {.lex_state = 5, .external_lex_state = 2}, + [124] = {.lex_state = 57, .external_lex_state = 2}, [125] = {.lex_state = 5, .external_lex_state = 2}, [126] = {.lex_state = 5, .external_lex_state = 2}, [127] = {.lex_state = 5, .external_lex_state = 2}, [128] = {.lex_state = 5, .external_lex_state = 2}, - [129] = {.lex_state = 5, .external_lex_state = 2}, - [130] = {.lex_state = 5, .external_lex_state = 2}, + [129] = {.lex_state = 57, .external_lex_state = 2}, + [130] = {.lex_state = 57, .external_lex_state = 2}, [131] = {.lex_state = 5, .external_lex_state = 2}, [132] = {.lex_state = 5, .external_lex_state = 2}, [133] = {.lex_state = 5, .external_lex_state = 2}, [134] = {.lex_state = 5, .external_lex_state = 2}, [135] = {.lex_state = 5, .external_lex_state = 2}, [136] = {.lex_state = 5, .external_lex_state = 2}, - [137] = {.lex_state = 5, .external_lex_state = 2}, + [137] = {.lex_state = 57, .external_lex_state = 2}, [138] = {.lex_state = 5, .external_lex_state = 2}, [139] = {.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 = 56, .external_lex_state = 2}, + [140] = {.lex_state = 5, .external_lex_state = 2}, + [141] = {.lex_state = 57, .external_lex_state = 2}, + [142] = {.lex_state = 5, .external_lex_state = 2}, [143] = {.lex_state = 5, .external_lex_state = 2}, [144] = {.lex_state = 5, .external_lex_state = 2}, [145] = {.lex_state = 5, .external_lex_state = 2}, [146] = {.lex_state = 5, .external_lex_state = 2}, [147] = {.lex_state = 5, .external_lex_state = 2}, [148] = {.lex_state = 5, .external_lex_state = 2}, - [149] = {.lex_state = 56, .external_lex_state = 2}, - [150] = {.lex_state = 56, .external_lex_state = 2}, + [149] = {.lex_state = 57, .external_lex_state = 2}, + [150] = {.lex_state = 57, .external_lex_state = 2}, [151] = {.lex_state = 5, .external_lex_state = 2}, [152] = {.lex_state = 5, .external_lex_state = 2}, - [153] = {.lex_state = 56, .external_lex_state = 2}, - [154] = {.lex_state = 5, .external_lex_state = 2}, + [153] = {.lex_state = 5, .external_lex_state = 2}, + [154] = {.lex_state = 57, .external_lex_state = 2}, [155] = {.lex_state = 5, .external_lex_state = 2}, - [156] = {.lex_state = 56, .external_lex_state = 2}, + [156] = {.lex_state = 5, .external_lex_state = 2}, [157] = {.lex_state = 5, .external_lex_state = 2}, - [158] = {.lex_state = 5, .external_lex_state = 2}, - [159] = {.lex_state = 5, .external_lex_state = 2}, + [158] = {.lex_state = 57, .external_lex_state = 2}, + [159] = {.lex_state = 57, .external_lex_state = 2}, [160] = {.lex_state = 5, .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}, - [164] = {.lex_state = 56, .external_lex_state = 2}, - [165] = {.lex_state = 56, .external_lex_state = 2}, + [163] = {.lex_state = 57, .external_lex_state = 2}, + [164] = {.lex_state = 57, .external_lex_state = 2}, + [165] = {.lex_state = 5, .external_lex_state = 2}, [166] = {.lex_state = 5, .external_lex_state = 2}, - [167] = {.lex_state = 5, .external_lex_state = 2}, - [168] = {.lex_state = 5, .external_lex_state = 2}, + [167] = {.lex_state = 57, .external_lex_state = 2}, + [168] = {.lex_state = 57, .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}, - [174] = {.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}, + [176] = {.lex_state = 57, .external_lex_state = 2}, [177] = {.lex_state = 5, .external_lex_state = 2}, - [178] = {.lex_state = 56, .external_lex_state = 2}, - [179] = {.lex_state = 56, .external_lex_state = 2}, - [180] = {.lex_state = 56, .external_lex_state = 2}, + [178] = {.lex_state = 5, .external_lex_state = 2}, + [179] = {.lex_state = 5, .external_lex_state = 2}, + [180] = {.lex_state = 5, .external_lex_state = 2}, [181] = {.lex_state = 5, .external_lex_state = 2}, - [182] = {.lex_state = 56, .external_lex_state = 2}, - [183] = {.lex_state = 56, .external_lex_state = 2}, + [182] = {.lex_state = 5, .external_lex_state = 2}, + [183] = {.lex_state = 57, .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}, @@ -11884,12 +11919,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [222] = {.lex_state = 5, .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}, + [227] = {.lex_state = 1, .external_lex_state = 2}, [228] = {.lex_state = 5, .external_lex_state = 2}, [229] = {.lex_state = 1, .external_lex_state = 2}, [230] = {.lex_state = 1, .external_lex_state = 2}, @@ -11902,314 +11937,314 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [237] = {.lex_state = 1, .external_lex_state = 2}, [238] = {.lex_state = 1, .external_lex_state = 2}, [239] = {.lex_state = 1, .external_lex_state = 2}, - [240] = {.lex_state = 5, .external_lex_state = 2}, - [241] = {.lex_state = 5, .external_lex_state = 2}, + [240] = {.lex_state = 1, .external_lex_state = 2}, + [241] = {.lex_state = 1, .external_lex_state = 2}, [242] = {.lex_state = 1, .external_lex_state = 2}, - [243] = {.lex_state = 1, .external_lex_state = 2}, + [243] = {.lex_state = 5, .external_lex_state = 2}, [244] = {.lex_state = 1, .external_lex_state = 2}, - [245] = {.lex_state = 5, .external_lex_state = 2}, + [245] = {.lex_state = 12, .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}, + [248] = {.lex_state = 5, .external_lex_state = 2}, [249] = {.lex_state = 4, .external_lex_state = 3}, [250] = {.lex_state = 4, .external_lex_state = 3}, [251] = {.lex_state = 4, .external_lex_state = 3}, [252] = {.lex_state = 4, .external_lex_state = 3}, - [253] = {.lex_state = 12, .external_lex_state = 2}, - [254] = {.lex_state = 57, .external_lex_state = 2}, - [255] = {.lex_state = 57, .external_lex_state = 2}, - [256] = {.lex_state = 57, .external_lex_state = 2}, - [257] = {.lex_state = 57, .external_lex_state = 2}, - [258] = {.lex_state = 57, .external_lex_state = 2}, - [259] = {.lex_state = 57, .external_lex_state = 2}, - [260] = {.lex_state = 57, .external_lex_state = 2}, - [261] = {.lex_state = 57, .external_lex_state = 2}, - [262] = {.lex_state = 57, .external_lex_state = 2}, - [263] = {.lex_state = 57, .external_lex_state = 2}, - [264] = {.lex_state = 57, .external_lex_state = 2}, - [265] = {.lex_state = 57, .external_lex_state = 2}, - [266] = {.lex_state = 57, .external_lex_state = 2}, - [267] = {.lex_state = 57, .external_lex_state = 2}, - [268] = {.lex_state = 57, .external_lex_state = 2}, - [269] = {.lex_state = 57, .external_lex_state = 2}, - [270] = {.lex_state = 57, .external_lex_state = 2}, - [271] = {.lex_state = 57, .external_lex_state = 2}, - [272] = {.lex_state = 5, .external_lex_state = 2}, - [273] = {.lex_state = 57, .external_lex_state = 2}, - [274] = {.lex_state = 57, .external_lex_state = 2}, - [275] = {.lex_state = 57, .external_lex_state = 2}, - [276] = {.lex_state = 57, .external_lex_state = 2}, - [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}, - [281] = {.lex_state = 12, .external_lex_state = 2}, - [282] = {.lex_state = 57, .external_lex_state = 2}, - [283] = {.lex_state = 57, .external_lex_state = 2}, - [284] = {.lex_state = 57, .external_lex_state = 2}, - [285] = {.lex_state = 57, .external_lex_state = 2}, - [286] = {.lex_state = 57, .external_lex_state = 2}, - [287] = {.lex_state = 57, .external_lex_state = 2}, - [288] = {.lex_state = 57, .external_lex_state = 2}, - [289] = {.lex_state = 57, .external_lex_state = 2}, - [290] = {.lex_state = 57, .external_lex_state = 2}, - [291] = {.lex_state = 57, .external_lex_state = 2}, - [292] = {.lex_state = 57, .external_lex_state = 2}, - [293] = {.lex_state = 57, .external_lex_state = 2}, - [294] = {.lex_state = 57, .external_lex_state = 2}, - [295] = {.lex_state = 57, .external_lex_state = 2}, - [296] = {.lex_state = 57, .external_lex_state = 2}, - [297] = {.lex_state = 57, .external_lex_state = 2}, - [298] = {.lex_state = 57, .external_lex_state = 2}, - [299] = {.lex_state = 57, .external_lex_state = 2}, - [300] = {.lex_state = 57, .external_lex_state = 2}, - [301] = {.lex_state = 57, .external_lex_state = 2}, - [302] = {.lex_state = 57, .external_lex_state = 2}, - [303] = {.lex_state = 57, .external_lex_state = 2}, - [304] = {.lex_state = 57, .external_lex_state = 2}, - [305] = {.lex_state = 57, .external_lex_state = 2}, - [306] = {.lex_state = 57, .external_lex_state = 2}, - [307] = {.lex_state = 57, .external_lex_state = 2}, - [308] = {.lex_state = 57, .external_lex_state = 2}, - [309] = {.lex_state = 57, .external_lex_state = 2}, - [310] = {.lex_state = 57, .external_lex_state = 2}, - [311] = {.lex_state = 57, .external_lex_state = 2}, - [312] = {.lex_state = 57, .external_lex_state = 2}, - [313] = {.lex_state = 57, .external_lex_state = 2}, - [314] = {.lex_state = 57, .external_lex_state = 2}, - [315] = {.lex_state = 57, .external_lex_state = 2}, - [316] = {.lex_state = 57, .external_lex_state = 2}, - [317] = {.lex_state = 57, .external_lex_state = 2}, - [318] = {.lex_state = 57, .external_lex_state = 2}, - [319] = {.lex_state = 57, .external_lex_state = 2}, - [320] = {.lex_state = 57, .external_lex_state = 2}, - [321] = {.lex_state = 57, .external_lex_state = 2}, - [322] = {.lex_state = 57, .external_lex_state = 2}, - [323] = {.lex_state = 57, .external_lex_state = 2}, - [324] = {.lex_state = 57, .external_lex_state = 2}, - [325] = {.lex_state = 57, .external_lex_state = 2}, - [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 = 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}, - [333] = {.lex_state = 57, .external_lex_state = 2}, - [334] = {.lex_state = 57, .external_lex_state = 2}, - [335] = {.lex_state = 57, .external_lex_state = 2}, - [336] = {.lex_state = 57, .external_lex_state = 2}, - [337] = {.lex_state = 57, .external_lex_state = 2}, - [338] = {.lex_state = 57, .external_lex_state = 2}, - [339] = {.lex_state = 57, .external_lex_state = 2}, - [340] = {.lex_state = 57, .external_lex_state = 2}, - [341] = {.lex_state = 57, .external_lex_state = 2}, - [342] = {.lex_state = 57, .external_lex_state = 2}, - [343] = {.lex_state = 57, .external_lex_state = 2}, - [344] = {.lex_state = 57, .external_lex_state = 2}, - [345] = {.lex_state = 57, .external_lex_state = 2}, - [346] = {.lex_state = 57, .external_lex_state = 2}, - [347] = {.lex_state = 57, .external_lex_state = 2}, - [348] = {.lex_state = 57, .external_lex_state = 2}, - [349] = {.lex_state = 57, .external_lex_state = 2}, - [350] = {.lex_state = 57, .external_lex_state = 2}, - [351] = {.lex_state = 57, .external_lex_state = 2}, - [352] = {.lex_state = 57, .external_lex_state = 2}, - [353] = {.lex_state = 57, .external_lex_state = 2}, - [354] = {.lex_state = 57, .external_lex_state = 2}, - [355] = {.lex_state = 57, .external_lex_state = 2}, - [356] = {.lex_state = 57, .external_lex_state = 2}, - [357] = {.lex_state = 57, .external_lex_state = 2}, - [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 = 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}, - [366] = {.lex_state = 57, .external_lex_state = 2}, - [367] = {.lex_state = 57, .external_lex_state = 2}, - [368] = {.lex_state = 57, .external_lex_state = 2}, - [369] = {.lex_state = 57, .external_lex_state = 2}, - [370] = {.lex_state = 57, .external_lex_state = 2}, - [371] = {.lex_state = 57, .external_lex_state = 2}, - [372] = {.lex_state = 57, .external_lex_state = 2}, - [373] = {.lex_state = 57, .external_lex_state = 2}, - [374] = {.lex_state = 57, .external_lex_state = 2}, - [375] = {.lex_state = 57, .external_lex_state = 2}, - [376] = {.lex_state = 57, .external_lex_state = 2}, - [377] = {.lex_state = 57, .external_lex_state = 2}, - [378] = {.lex_state = 57, .external_lex_state = 2}, - [379] = {.lex_state = 57, .external_lex_state = 2}, - [380] = {.lex_state = 57, .external_lex_state = 2}, - [381] = {.lex_state = 5, .external_lex_state = 2}, - [382] = {.lex_state = 57, .external_lex_state = 2}, - [383] = {.lex_state = 57, .external_lex_state = 2}, - [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}, - [388] = {.lex_state = 57, .external_lex_state = 2}, - [389] = {.lex_state = 57, .external_lex_state = 2}, - [390] = {.lex_state = 57, .external_lex_state = 2}, - [391] = {.lex_state = 57, .external_lex_state = 2}, - [392] = {.lex_state = 57, .external_lex_state = 2}, - [393] = {.lex_state = 57, .external_lex_state = 2}, - [394] = {.lex_state = 57, .external_lex_state = 2}, - [395] = {.lex_state = 57, .external_lex_state = 2}, - [396] = {.lex_state = 57, .external_lex_state = 2}, - [397] = {.lex_state = 57, .external_lex_state = 2}, - [398] = {.lex_state = 57, .external_lex_state = 2}, - [399] = {.lex_state = 57, .external_lex_state = 2}, - [400] = {.lex_state = 57, .external_lex_state = 2}, - [401] = {.lex_state = 57, .external_lex_state = 2}, - [402] = {.lex_state = 57, .external_lex_state = 2}, - [403] = {.lex_state = 57, .external_lex_state = 2}, - [404] = {.lex_state = 57, .external_lex_state = 2}, - [405] = {.lex_state = 57, .external_lex_state = 2}, - [406] = {.lex_state = 57, .external_lex_state = 2}, - [407] = {.lex_state = 57, .external_lex_state = 2}, - [408] = {.lex_state = 57, .external_lex_state = 2}, - [409] = {.lex_state = 57, .external_lex_state = 2}, - [410] = {.lex_state = 57, .external_lex_state = 2}, - [411] = {.lex_state = 57, .external_lex_state = 2}, - [412] = {.lex_state = 57, .external_lex_state = 2}, - [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 = 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}, - [420] = {.lex_state = 57, .external_lex_state = 2}, - [421] = {.lex_state = 57, .external_lex_state = 2}, - [422] = {.lex_state = 57, .external_lex_state = 2}, - [423] = {.lex_state = 57, .external_lex_state = 2}, - [424] = {.lex_state = 57, .external_lex_state = 2}, - [425] = {.lex_state = 57, .external_lex_state = 2}, - [426] = {.lex_state = 57, .external_lex_state = 2}, - [427] = {.lex_state = 57, .external_lex_state = 2}, - [428] = {.lex_state = 57, .external_lex_state = 2}, - [429] = {.lex_state = 57, .external_lex_state = 2}, - [430] = {.lex_state = 57, .external_lex_state = 2}, - [431] = {.lex_state = 57, .external_lex_state = 2}, - [432] = {.lex_state = 57, .external_lex_state = 2}, - [433] = {.lex_state = 57, .external_lex_state = 2}, - [434] = {.lex_state = 57, .external_lex_state = 2}, - [435] = {.lex_state = 57, .external_lex_state = 2}, - [436] = {.lex_state = 57, .external_lex_state = 2}, - [437] = {.lex_state = 57, .external_lex_state = 2}, - [438] = {.lex_state = 57, .external_lex_state = 2}, - [439] = {.lex_state = 57, .external_lex_state = 2}, - [440] = {.lex_state = 57, .external_lex_state = 2}, - [441] = {.lex_state = 57, .external_lex_state = 2}, - [442] = {.lex_state = 57, .external_lex_state = 2}, - [443] = {.lex_state = 57, .external_lex_state = 2}, - [444] = {.lex_state = 57, .external_lex_state = 2}, - [445] = {.lex_state = 57, .external_lex_state = 2}, - [446] = {.lex_state = 57, .external_lex_state = 2}, - [447] = {.lex_state = 57, .external_lex_state = 2}, - [448] = {.lex_state = 57, .external_lex_state = 2}, - [449] = {.lex_state = 57, .external_lex_state = 2}, - [450] = {.lex_state = 57, .external_lex_state = 2}, - [451] = {.lex_state = 57, .external_lex_state = 2}, - [452] = {.lex_state = 57, .external_lex_state = 2}, - [453] = {.lex_state = 57, .external_lex_state = 2}, - [454] = {.lex_state = 57, .external_lex_state = 2}, - [455] = {.lex_state = 57, .external_lex_state = 2}, - [456] = {.lex_state = 57, .external_lex_state = 2}, - [457] = {.lex_state = 57, .external_lex_state = 2}, - [458] = {.lex_state = 57, .external_lex_state = 2}, - [459] = {.lex_state = 57, .external_lex_state = 2}, - [460] = {.lex_state = 57, .external_lex_state = 2}, - [461] = {.lex_state = 57, .external_lex_state = 2}, - [462] = {.lex_state = 57, .external_lex_state = 2}, - [463] = {.lex_state = 57, .external_lex_state = 2}, - [464] = {.lex_state = 57, .external_lex_state = 2}, - [465] = {.lex_state = 57, .external_lex_state = 2}, - [466] = {.lex_state = 57, .external_lex_state = 2}, - [467] = {.lex_state = 57, .external_lex_state = 2}, - [468] = {.lex_state = 57, .external_lex_state = 2}, - [469] = {.lex_state = 57, .external_lex_state = 2}, - [470] = {.lex_state = 57, .external_lex_state = 2}, - [471] = {.lex_state = 57, .external_lex_state = 2}, - [472] = {.lex_state = 57, .external_lex_state = 2}, - [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 = 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 = 57, .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 = 5, .external_lex_state = 2}, - [489] = {.lex_state = 5, .external_lex_state = 2}, - [490] = {.lex_state = 5, .external_lex_state = 2}, - [491] = {.lex_state = 12, .external_lex_state = 2}, - [492] = {.lex_state = 12, .external_lex_state = 2}, - [493] = {.lex_state = 12, .external_lex_state = 2}, + [253] = {.lex_state = 4, .external_lex_state = 3}, + [254] = {.lex_state = 58, .external_lex_state = 2}, + [255] = {.lex_state = 58, .external_lex_state = 2}, + [256] = {.lex_state = 58, .external_lex_state = 2}, + [257] = {.lex_state = 58, .external_lex_state = 2}, + [258] = {.lex_state = 58, .external_lex_state = 2}, + [259] = {.lex_state = 58, .external_lex_state = 2}, + [260] = {.lex_state = 58, .external_lex_state = 2}, + [261] = {.lex_state = 58, .external_lex_state = 2}, + [262] = {.lex_state = 58, .external_lex_state = 2}, + [263] = {.lex_state = 58, .external_lex_state = 2}, + [264] = {.lex_state = 58, .external_lex_state = 2}, + [265] = {.lex_state = 58, .external_lex_state = 2}, + [266] = {.lex_state = 58, .external_lex_state = 2}, + [267] = {.lex_state = 58, .external_lex_state = 2}, + [268] = {.lex_state = 12, .external_lex_state = 2}, + [269] = {.lex_state = 58, .external_lex_state = 2}, + [270] = {.lex_state = 58, .external_lex_state = 2}, + [271] = {.lex_state = 12, .external_lex_state = 2}, + [272] = {.lex_state = 58, .external_lex_state = 2}, + [273] = {.lex_state = 5, .external_lex_state = 2}, + [274] = {.lex_state = 58, .external_lex_state = 2}, + [275] = {.lex_state = 12, .external_lex_state = 2}, + [276] = {.lex_state = 58, .external_lex_state = 2}, + [277] = {.lex_state = 58, .external_lex_state = 2}, + [278] = {.lex_state = 58, .external_lex_state = 2}, + [279] = {.lex_state = 58, .external_lex_state = 2}, + [280] = {.lex_state = 58, .external_lex_state = 2}, + [281] = {.lex_state = 58, .external_lex_state = 2}, + [282] = {.lex_state = 58, .external_lex_state = 2}, + [283] = {.lex_state = 58, .external_lex_state = 2}, + [284] = {.lex_state = 58, .external_lex_state = 2}, + [285] = {.lex_state = 58, .external_lex_state = 2}, + [286] = {.lex_state = 58, .external_lex_state = 2}, + [287] = {.lex_state = 58, .external_lex_state = 2}, + [288] = {.lex_state = 58, .external_lex_state = 2}, + [289] = {.lex_state = 58, .external_lex_state = 2}, + [290] = {.lex_state = 58, .external_lex_state = 2}, + [291] = {.lex_state = 58, .external_lex_state = 2}, + [292] = {.lex_state = 58, .external_lex_state = 2}, + [293] = {.lex_state = 58, .external_lex_state = 2}, + [294] = {.lex_state = 58, .external_lex_state = 2}, + [295] = {.lex_state = 58, .external_lex_state = 2}, + [296] = {.lex_state = 58, .external_lex_state = 2}, + [297] = {.lex_state = 58, .external_lex_state = 2}, + [298] = {.lex_state = 58, .external_lex_state = 2}, + [299] = {.lex_state = 58, .external_lex_state = 2}, + [300] = {.lex_state = 58, .external_lex_state = 2}, + [301] = {.lex_state = 58, .external_lex_state = 2}, + [302] = {.lex_state = 12, .external_lex_state = 2}, + [303] = {.lex_state = 13, .external_lex_state = 2}, + [304] = {.lex_state = 58, .external_lex_state = 2}, + [305] = {.lex_state = 58, .external_lex_state = 2}, + [306] = {.lex_state = 58, .external_lex_state = 2}, + [307] = {.lex_state = 58, .external_lex_state = 2}, + [308] = {.lex_state = 58, .external_lex_state = 2}, + [309] = {.lex_state = 58, .external_lex_state = 2}, + [310] = {.lex_state = 58, .external_lex_state = 2}, + [311] = {.lex_state = 58, .external_lex_state = 2}, + [312] = {.lex_state = 58, .external_lex_state = 2}, + [313] = {.lex_state = 58, .external_lex_state = 2}, + [314] = {.lex_state = 58, .external_lex_state = 2}, + [315] = {.lex_state = 58, .external_lex_state = 2}, + [316] = {.lex_state = 58, .external_lex_state = 2}, + [317] = {.lex_state = 58, .external_lex_state = 2}, + [318] = {.lex_state = 58, .external_lex_state = 2}, + [319] = {.lex_state = 58, .external_lex_state = 2}, + [320] = {.lex_state = 58, .external_lex_state = 2}, + [321] = {.lex_state = 58, .external_lex_state = 2}, + [322] = {.lex_state = 58, .external_lex_state = 2}, + [323] = {.lex_state = 58, .external_lex_state = 2}, + [324] = {.lex_state = 58, .external_lex_state = 2}, + [325] = {.lex_state = 58, .external_lex_state = 2}, + [326] = {.lex_state = 58, .external_lex_state = 2}, + [327] = {.lex_state = 58, .external_lex_state = 2}, + [328] = {.lex_state = 58, .external_lex_state = 2}, + [329] = {.lex_state = 58, .external_lex_state = 2}, + [330] = {.lex_state = 58, .external_lex_state = 2}, + [331] = {.lex_state = 58, .external_lex_state = 2}, + [332] = {.lex_state = 58, .external_lex_state = 2}, + [333] = {.lex_state = 58, .external_lex_state = 2}, + [334] = {.lex_state = 58, .external_lex_state = 2}, + [335] = {.lex_state = 58, .external_lex_state = 2}, + [336] = {.lex_state = 58, .external_lex_state = 2}, + [337] = {.lex_state = 58, .external_lex_state = 2}, + [338] = {.lex_state = 58, .external_lex_state = 2}, + [339] = {.lex_state = 58, .external_lex_state = 2}, + [340] = {.lex_state = 58, .external_lex_state = 2}, + [341] = {.lex_state = 58, .external_lex_state = 2}, + [342] = {.lex_state = 12, .external_lex_state = 2}, + [343] = {.lex_state = 12, .external_lex_state = 2}, + [344] = {.lex_state = 12, .external_lex_state = 2}, + [345] = {.lex_state = 58, .external_lex_state = 2}, + [346] = {.lex_state = 58, .external_lex_state = 2}, + [347] = {.lex_state = 58, .external_lex_state = 2}, + [348] = {.lex_state = 58, .external_lex_state = 2}, + [349] = {.lex_state = 58, .external_lex_state = 2}, + [350] = {.lex_state = 58, .external_lex_state = 2}, + [351] = {.lex_state = 58, .external_lex_state = 2}, + [352] = {.lex_state = 58, .external_lex_state = 2}, + [353] = {.lex_state = 58, .external_lex_state = 2}, + [354] = {.lex_state = 58, .external_lex_state = 2}, + [355] = {.lex_state = 58, .external_lex_state = 2}, + [356] = {.lex_state = 58, .external_lex_state = 2}, + [357] = {.lex_state = 58, .external_lex_state = 2}, + [358] = {.lex_state = 58, .external_lex_state = 2}, + [359] = {.lex_state = 58, .external_lex_state = 2}, + [360] = {.lex_state = 5, .external_lex_state = 2}, + [361] = {.lex_state = 58, .external_lex_state = 2}, + [362] = {.lex_state = 58, .external_lex_state = 2}, + [363] = {.lex_state = 58, .external_lex_state = 2}, + [364] = {.lex_state = 58, .external_lex_state = 2}, + [365] = {.lex_state = 58, .external_lex_state = 2}, + [366] = {.lex_state = 58, .external_lex_state = 2}, + [367] = {.lex_state = 58, .external_lex_state = 2}, + [368] = {.lex_state = 58, .external_lex_state = 2}, + [369] = {.lex_state = 58, .external_lex_state = 2}, + [370] = {.lex_state = 12, .external_lex_state = 2}, + [371] = {.lex_state = 58, .external_lex_state = 2}, + [372] = {.lex_state = 12, .external_lex_state = 2}, + [373] = {.lex_state = 12, .external_lex_state = 2}, + [374] = {.lex_state = 58, .external_lex_state = 2}, + [375] = {.lex_state = 58, .external_lex_state = 2}, + [376] = {.lex_state = 58, .external_lex_state = 2}, + [377] = {.lex_state = 58, .external_lex_state = 2}, + [378] = {.lex_state = 5, .external_lex_state = 2}, + [379] = {.lex_state = 12, .external_lex_state = 2}, + [380] = {.lex_state = 58, .external_lex_state = 2}, + [381] = {.lex_state = 58, .external_lex_state = 2}, + [382] = {.lex_state = 58, .external_lex_state = 2}, + [383] = {.lex_state = 58, .external_lex_state = 2}, + [384] = {.lex_state = 58, .external_lex_state = 2}, + [385] = {.lex_state = 58, .external_lex_state = 2}, + [386] = {.lex_state = 58, .external_lex_state = 2}, + [387] = {.lex_state = 58, .external_lex_state = 2}, + [388] = {.lex_state = 58, .external_lex_state = 2}, + [389] = {.lex_state = 58, .external_lex_state = 2}, + [390] = {.lex_state = 58, .external_lex_state = 2}, + [391] = {.lex_state = 58, .external_lex_state = 2}, + [392] = {.lex_state = 58, .external_lex_state = 2}, + [393] = {.lex_state = 58, .external_lex_state = 2}, + [394] = {.lex_state = 58, .external_lex_state = 2}, + [395] = {.lex_state = 58, .external_lex_state = 2}, + [396] = {.lex_state = 58, .external_lex_state = 2}, + [397] = {.lex_state = 58, .external_lex_state = 2}, + [398] = {.lex_state = 58, .external_lex_state = 2}, + [399] = {.lex_state = 58, .external_lex_state = 2}, + [400] = {.lex_state = 58, .external_lex_state = 2}, + [401] = {.lex_state = 58, .external_lex_state = 2}, + [402] = {.lex_state = 58, .external_lex_state = 2}, + [403] = {.lex_state = 58, .external_lex_state = 2}, + [404] = {.lex_state = 58, .external_lex_state = 2}, + [405] = {.lex_state = 58, .external_lex_state = 2}, + [406] = {.lex_state = 58, .external_lex_state = 2}, + [407] = {.lex_state = 58, .external_lex_state = 2}, + [408] = {.lex_state = 58, .external_lex_state = 2}, + [409] = {.lex_state = 58, .external_lex_state = 2}, + [410] = {.lex_state = 58, .external_lex_state = 2}, + [411] = {.lex_state = 58, .external_lex_state = 2}, + [412] = {.lex_state = 58, .external_lex_state = 2}, + [413] = {.lex_state = 58, .external_lex_state = 2}, + [414] = {.lex_state = 58, .external_lex_state = 2}, + [415] = {.lex_state = 58, .external_lex_state = 2}, + [416] = {.lex_state = 58, .external_lex_state = 2}, + [417] = {.lex_state = 58, .external_lex_state = 2}, + [418] = {.lex_state = 58, .external_lex_state = 2}, + [419] = {.lex_state = 58, .external_lex_state = 2}, + [420] = {.lex_state = 58, .external_lex_state = 2}, + [421] = {.lex_state = 58, .external_lex_state = 2}, + [422] = {.lex_state = 58, .external_lex_state = 2}, + [423] = {.lex_state = 58, .external_lex_state = 2}, + [424] = {.lex_state = 58, .external_lex_state = 2}, + [425] = {.lex_state = 58, .external_lex_state = 2}, + [426] = {.lex_state = 58, .external_lex_state = 2}, + [427] = {.lex_state = 58, .external_lex_state = 2}, + [428] = {.lex_state = 58, .external_lex_state = 2}, + [429] = {.lex_state = 58, .external_lex_state = 2}, + [430] = {.lex_state = 58, .external_lex_state = 2}, + [431] = {.lex_state = 58, .external_lex_state = 2}, + [432] = {.lex_state = 58, .external_lex_state = 2}, + [433] = {.lex_state = 58, .external_lex_state = 2}, + [434] = {.lex_state = 58, .external_lex_state = 2}, + [435] = {.lex_state = 58, .external_lex_state = 2}, + [436] = {.lex_state = 58, .external_lex_state = 2}, + [437] = {.lex_state = 58, .external_lex_state = 2}, + [438] = {.lex_state = 58, .external_lex_state = 2}, + [439] = {.lex_state = 58, .external_lex_state = 2}, + [440] = {.lex_state = 58, .external_lex_state = 2}, + [441] = {.lex_state = 58, .external_lex_state = 2}, + [442] = {.lex_state = 58, .external_lex_state = 2}, + [443] = {.lex_state = 58, .external_lex_state = 2}, + [444] = {.lex_state = 58, .external_lex_state = 2}, + [445] = {.lex_state = 58, .external_lex_state = 2}, + [446] = {.lex_state = 58, .external_lex_state = 2}, + [447] = {.lex_state = 58, .external_lex_state = 2}, + [448] = {.lex_state = 58, .external_lex_state = 2}, + [449] = {.lex_state = 58, .external_lex_state = 2}, + [450] = {.lex_state = 58, .external_lex_state = 2}, + [451] = {.lex_state = 58, .external_lex_state = 2}, + [452] = {.lex_state = 58, .external_lex_state = 2}, + [453] = {.lex_state = 58, .external_lex_state = 2}, + [454] = {.lex_state = 58, .external_lex_state = 2}, + [455] = {.lex_state = 58, .external_lex_state = 2}, + [456] = {.lex_state = 58, .external_lex_state = 2}, + [457] = {.lex_state = 58, .external_lex_state = 2}, + [458] = {.lex_state = 58, .external_lex_state = 2}, + [459] = {.lex_state = 58, .external_lex_state = 2}, + [460] = {.lex_state = 58, .external_lex_state = 2}, + [461] = {.lex_state = 58, .external_lex_state = 2}, + [462] = {.lex_state = 58, .external_lex_state = 2}, + [463] = {.lex_state = 58, .external_lex_state = 2}, + [464] = {.lex_state = 58, .external_lex_state = 2}, + [465] = {.lex_state = 58, .external_lex_state = 2}, + [466] = {.lex_state = 58, .external_lex_state = 2}, + [467] = {.lex_state = 58, .external_lex_state = 2}, + [468] = {.lex_state = 58, .external_lex_state = 2}, + [469] = {.lex_state = 58, .external_lex_state = 2}, + [470] = {.lex_state = 58, .external_lex_state = 2}, + [471] = {.lex_state = 58, .external_lex_state = 2}, + [472] = {.lex_state = 58, .external_lex_state = 2}, + [473] = {.lex_state = 58, .external_lex_state = 2}, + [474] = {.lex_state = 58, .external_lex_state = 2}, + [475] = {.lex_state = 58, .external_lex_state = 2}, + [476] = {.lex_state = 58, .external_lex_state = 2}, + [477] = {.lex_state = 58, .external_lex_state = 2}, + [478] = {.lex_state = 58, .external_lex_state = 2}, + [479] = {.lex_state = 58, .external_lex_state = 2}, + [480] = {.lex_state = 58, .external_lex_state = 2}, + [481] = {.lex_state = 12, .external_lex_state = 2}, + [482] = {.lex_state = 58, .external_lex_state = 2}, + [483] = {.lex_state = 58, .external_lex_state = 2}, + [484] = {.lex_state = 58, .external_lex_state = 2}, + [485] = {.lex_state = 58, .external_lex_state = 2}, + [486] = {.lex_state = 58, .external_lex_state = 2}, + [487] = {.lex_state = 58, .external_lex_state = 2}, + [488] = {.lex_state = 58, .external_lex_state = 2}, + [489] = {.lex_state = 58, .external_lex_state = 2}, + [490] = {.lex_state = 58, .external_lex_state = 2}, + [491] = {.lex_state = 58, .external_lex_state = 2}, + [492] = {.lex_state = 58, .external_lex_state = 2}, + [493] = {.lex_state = 58, .external_lex_state = 2}, [494] = {.lex_state = 12, .external_lex_state = 2}, - [495] = {.lex_state = 12, .external_lex_state = 2}, + [495] = {.lex_state = 58, .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}, - [501] = {.lex_state = 12, .external_lex_state = 2}, - [502] = {.lex_state = 12, .external_lex_state = 2}, - [503] = {.lex_state = 12, .external_lex_state = 2}, - [504] = {.lex_state = 12, .external_lex_state = 2}, - [505] = {.lex_state = 12, .external_lex_state = 2}, - [506] = {.lex_state = 12, .external_lex_state = 2}, - [507] = {.lex_state = 12, .external_lex_state = 2}, + [498] = {.lex_state = 5, .external_lex_state = 2}, + [499] = {.lex_state = 5, .external_lex_state = 2}, + [500] = {.lex_state = 5, .external_lex_state = 2}, + [501] = {.lex_state = 13, .external_lex_state = 2}, + [502] = {.lex_state = 13, .external_lex_state = 2}, + [503] = {.lex_state = 13, .external_lex_state = 2}, + [504] = {.lex_state = 13, .external_lex_state = 2}, + [505] = {.lex_state = 13, .external_lex_state = 2}, + [506] = {.lex_state = 5, .external_lex_state = 2}, + [507] = {.lex_state = 13, .external_lex_state = 2}, [508] = {.lex_state = 12, .external_lex_state = 2}, - [509] = {.lex_state = 12, .external_lex_state = 2}, - [510] = {.lex_state = 12, .external_lex_state = 2}, + [509] = {.lex_state = 13, .external_lex_state = 2}, + [510] = {.lex_state = 13, .external_lex_state = 2}, [511] = {.lex_state = 12, .external_lex_state = 2}, [512] = {.lex_state = 12, .external_lex_state = 2}, - [513] = {.lex_state = 12, .external_lex_state = 2}, + [513] = {.lex_state = 13, .external_lex_state = 2}, [514] = {.lex_state = 12, .external_lex_state = 2}, - [515] = {.lex_state = 5, .external_lex_state = 2}, + [515] = {.lex_state = 13, .external_lex_state = 2}, [516] = {.lex_state = 12, .external_lex_state = 2}, [517] = {.lex_state = 12, .external_lex_state = 2}, - [518] = {.lex_state = 12, .external_lex_state = 2}, - [519] = {.lex_state = 12, .external_lex_state = 2}, - [520] = {.lex_state = 12, .external_lex_state = 2}, - [521] = {.lex_state = 12, .external_lex_state = 2}, - [522] = {.lex_state = 12, .external_lex_state = 2}, - [523] = {.lex_state = 12, .external_lex_state = 2}, - [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 = 12, .external_lex_state = 2}, - [528] = {.lex_state = 12, .external_lex_state = 2}, - [529] = {.lex_state = 12, .external_lex_state = 2}, + [518] = {.lex_state = 13, .external_lex_state = 2}, + [519] = {.lex_state = 13, .external_lex_state = 2}, + [520] = {.lex_state = 13, .external_lex_state = 2}, + [521] = {.lex_state = 13, .external_lex_state = 2}, + [522] = {.lex_state = 13, .external_lex_state = 2}, + [523] = {.lex_state = 13, .external_lex_state = 2}, + [524] = {.lex_state = 13, .external_lex_state = 2}, + [525] = {.lex_state = 13, .external_lex_state = 2}, + [526] = {.lex_state = 13, .external_lex_state = 2}, + [527] = {.lex_state = 13, .external_lex_state = 2}, + [528] = {.lex_state = 13, .external_lex_state = 2}, + [529] = {.lex_state = 13, .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}, + [531] = {.lex_state = 13, .external_lex_state = 2}, + [532] = {.lex_state = 13, .external_lex_state = 2}, [533] = {.lex_state = 12, .external_lex_state = 2}, - [534] = {.lex_state = 12, .external_lex_state = 2}, - [535] = {.lex_state = 12, .external_lex_state = 2}, - [536] = {.lex_state = 12, .external_lex_state = 2}, + [534] = {.lex_state = 13, .external_lex_state = 2}, + [535] = {.lex_state = 13, .external_lex_state = 2}, + [536] = {.lex_state = 13, .external_lex_state = 2}, [537] = {.lex_state = 12, .external_lex_state = 2}, [538] = {.lex_state = 12, .external_lex_state = 2}, [539] = {.lex_state = 12, .external_lex_state = 2}, [540] = {.lex_state = 12, .external_lex_state = 2}, - [541] = {.lex_state = 12, .external_lex_state = 2}, + [541] = {.lex_state = 13, .external_lex_state = 2}, [542] = {.lex_state = 12, .external_lex_state = 2}, - [543] = {.lex_state = 12, .external_lex_state = 2}, - [544] = {.lex_state = 12, .external_lex_state = 2}, + [543] = {.lex_state = 13, .external_lex_state = 2}, + [544] = {.lex_state = 13, .external_lex_state = 2}, [545] = {.lex_state = 12, .external_lex_state = 2}, - [546] = {.lex_state = 5, .external_lex_state = 2}, - [547] = {.lex_state = 7, .external_lex_state = 3}, + [546] = {.lex_state = 7, .external_lex_state = 3}, + [547] = {.lex_state = 5, .external_lex_state = 2}, [548] = {.lex_state = 5, .external_lex_state = 2}, [549] = {.lex_state = 7, .external_lex_state = 3}, [550] = {.lex_state = 7, .external_lex_state = 3}, @@ -12221,12 +12256,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [556] = {.lex_state = 11, .external_lex_state = 2}, [557] = {.lex_state = 7, .external_lex_state = 3}, [558] = {.lex_state = 7, .external_lex_state = 3}, - [559] = {.lex_state = 5, .external_lex_state = 2}, - [560] = {.lex_state = 7, .external_lex_state = 3}, - [561] = {.lex_state = 12, .external_lex_state = 2}, - [562] = {.lex_state = 5, .external_lex_state = 2}, - [563] = {.lex_state = 5, .external_lex_state = 2}, - [564] = {.lex_state = 5, .external_lex_state = 2}, + [559] = {.lex_state = 12, .external_lex_state = 2}, + [560] = {.lex_state = 5, .external_lex_state = 2}, + [561] = {.lex_state = 5, .external_lex_state = 2}, + [562] = {.lex_state = 12, .external_lex_state = 2}, + [563] = {.lex_state = 7, .external_lex_state = 3}, + [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 = 12, .external_lex_state = 2}, @@ -12235,66 +12270,66 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [570] = {.lex_state = 12, .external_lex_state = 2}, [571] = {.lex_state = 12, .external_lex_state = 2}, [572] = {.lex_state = 12, .external_lex_state = 2}, - [573] = {.lex_state = 12, .external_lex_state = 2}, + [573] = {.lex_state = 5, .external_lex_state = 2}, [574] = {.lex_state = 12, .external_lex_state = 2}, [575] = {.lex_state = 12, .external_lex_state = 2}, [576] = {.lex_state = 12, .external_lex_state = 2}, [577] = {.lex_state = 12, .external_lex_state = 2}, [578] = {.lex_state = 12, .external_lex_state = 2}, - [579] = {.lex_state = 12, .external_lex_state = 2}, - [580] = {.lex_state = 12, .external_lex_state = 2}, - [581] = {.lex_state = 12, .external_lex_state = 2}, + [579] = {.lex_state = 5, .external_lex_state = 2}, + [580] = {.lex_state = 7, .external_lex_state = 3}, + [581] = {.lex_state = 5, .external_lex_state = 2}, [582] = {.lex_state = 5, .external_lex_state = 2}, - [583] = {.lex_state = 5, .external_lex_state = 2}, - [584] = {.lex_state = 7, .external_lex_state = 3}, - [585] = {.lex_state = 7, .external_lex_state = 3}, - [586] = {.lex_state = 5, .external_lex_state = 2}, - [587] = {.lex_state = 5, .external_lex_state = 2}, - [588] = {.lex_state = 7, .external_lex_state = 3}, - [589] = {.lex_state = 5, .external_lex_state = 2}, + [583] = {.lex_state = 7, .external_lex_state = 3}, + [584] = {.lex_state = 5, .external_lex_state = 2}, + [585] = {.lex_state = 5, .external_lex_state = 2}, + [586] = {.lex_state = 7, .external_lex_state = 3}, + [587] = {.lex_state = 13, .external_lex_state = 2}, + [588] = {.lex_state = 5, .external_lex_state = 2}, + [589] = {.lex_state = 7, .external_lex_state = 3}, [590] = {.lex_state = 5, .external_lex_state = 2}, - [591] = {.lex_state = 7, .external_lex_state = 3}, + [591] = {.lex_state = 13, .external_lex_state = 2}, [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 = 7, .external_lex_state = 3}, + [593] = {.lex_state = 13, .external_lex_state = 2}, + [594] = {.lex_state = 13, .external_lex_state = 2}, + [595] = {.lex_state = 13, .external_lex_state = 2}, + [596] = {.lex_state = 13, .external_lex_state = 2}, [597] = {.lex_state = 5, .external_lex_state = 2}, [598] = {.lex_state = 5, .external_lex_state = 2}, - [599] = {.lex_state = 5, .external_lex_state = 2}, + [599] = {.lex_state = 7, .external_lex_state = 3}, [600] = {.lex_state = 5, .external_lex_state = 2}, [601] = {.lex_state = 5, .external_lex_state = 2}, [602] = {.lex_state = 5, .external_lex_state = 2}, [603] = {.lex_state = 5, .external_lex_state = 2}, [604] = {.lex_state = 5, .external_lex_state = 2}, - [605] = {.lex_state = 5, .external_lex_state = 2}, + [605] = {.lex_state = 7, .external_lex_state = 3}, [606] = {.lex_state = 5, .external_lex_state = 2}, - [607] = {.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 = 7, .external_lex_state = 3}, + [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}, + [614] = {.lex_state = 5, .external_lex_state = 2}, [615] = {.lex_state = 5, .external_lex_state = 2}, [616] = {.lex_state = 5, .external_lex_state = 2}, [617] = {.lex_state = 5, .external_lex_state = 2}, - [618] = {.lex_state = 5, .external_lex_state = 2}, + [618] = {.lex_state = 7, .external_lex_state = 3}, [619] = {.lex_state = 5, .external_lex_state = 2}, [620] = {.lex_state = 5, .external_lex_state = 2}, [621] = {.lex_state = 5, .external_lex_state = 2}, - [622] = {.lex_state = 5, .external_lex_state = 2}, + [622] = {.lex_state = 7, .external_lex_state = 3}, [623] = {.lex_state = 5, .external_lex_state = 2}, [624] = {.lex_state = 5, .external_lex_state = 2}, [625] = {.lex_state = 5, .external_lex_state = 2}, [626] = {.lex_state = 5, .external_lex_state = 2}, [627] = {.lex_state = 5, .external_lex_state = 2}, [628] = {.lex_state = 5, .external_lex_state = 2}, - [629] = {.lex_state = 7, .external_lex_state = 3}, - [630] = {.lex_state = 7, .external_lex_state = 3}, - [631] = {.lex_state = 7, .external_lex_state = 3}, - [632] = {.lex_state = 7, .external_lex_state = 3}, + [629] = {.lex_state = 5, .external_lex_state = 2}, + [630] = {.lex_state = 5, .external_lex_state = 2}, + [631] = {.lex_state = 5, .external_lex_state = 2}, + [632] = {.lex_state = 5, .external_lex_state = 2}, [633] = {.lex_state = 7, .external_lex_state = 3}, [634] = {.lex_state = 7, .external_lex_state = 3}, [635] = {.lex_state = 7, .external_lex_state = 3}, @@ -12344,7 +12379,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [679] = {.lex_state = 7, .external_lex_state = 3}, [680] = {.lex_state = 7, .external_lex_state = 3}, [681] = {.lex_state = 7, .external_lex_state = 3}, - [682] = {.lex_state = 7, .external_lex_state = 3}, + [682] = {.lex_state = 5, .external_lex_state = 2}, [683] = {.lex_state = 7, .external_lex_state = 3}, [684] = {.lex_state = 7, .external_lex_state = 3}, [685] = {.lex_state = 7, .external_lex_state = 3}, @@ -12356,7 +12391,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [691] = {.lex_state = 7, .external_lex_state = 3}, [692] = {.lex_state = 7, .external_lex_state = 3}, [693] = {.lex_state = 7, .external_lex_state = 3}, - [694] = {.lex_state = 5, .external_lex_state = 2}, + [694] = {.lex_state = 7, .external_lex_state = 3}, [695] = {.lex_state = 7, .external_lex_state = 3}, [696] = {.lex_state = 7, .external_lex_state = 3}, [697] = {.lex_state = 7, .external_lex_state = 3}, @@ -12415,40 +12450,40 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [750] = {.lex_state = 7, .external_lex_state = 3}, [751] = {.lex_state = 7, .external_lex_state = 3}, [752] = {.lex_state = 7, .external_lex_state = 3}, - [753] = {.lex_state = 5, .external_lex_state = 2}, - [754] = {.lex_state = 5, .external_lex_state = 2}, - [755] = {.lex_state = 5, .external_lex_state = 2}, - [756] = {.lex_state = 5, .external_lex_state = 2}, - [757] = {.lex_state = 6, .external_lex_state = 2}, - [758] = {.lex_state = 3, .external_lex_state = 3}, - [759] = {.lex_state = 3, .external_lex_state = 3}, - [760] = {.lex_state = 3, .external_lex_state = 3}, - [761] = {.lex_state = 4, .external_lex_state = 3}, - [762] = {.lex_state = 4, .external_lex_state = 3}, + [753] = {.lex_state = 7, .external_lex_state = 3}, + [754] = {.lex_state = 7, .external_lex_state = 3}, + [755] = {.lex_state = 7, .external_lex_state = 3}, + [756] = {.lex_state = 7, .external_lex_state = 3}, + [757] = {.lex_state = 5, .external_lex_state = 2}, + [758] = {.lex_state = 5, .external_lex_state = 2}, + [759] = {.lex_state = 5, .external_lex_state = 2}, + [760] = {.lex_state = 5, .external_lex_state = 2}, + [761] = {.lex_state = 6, .external_lex_state = 2}, + [762] = {.lex_state = 3, .external_lex_state = 3}, [763] = {.lex_state = 3, .external_lex_state = 3}, - [764] = {.lex_state = 4, .external_lex_state = 3}, - [765] = {.lex_state = 4, .external_lex_state = 3}, - [766] = {.lex_state = 3, .external_lex_state = 3}, + [764] = {.lex_state = 3, .external_lex_state = 3}, + [765] = {.lex_state = 3, .external_lex_state = 3}, + [766] = {.lex_state = 4, .external_lex_state = 3}, [767] = {.lex_state = 2, .external_lex_state = 3}, - [768] = {.lex_state = 3, .external_lex_state = 3}, + [768] = {.lex_state = 4, .external_lex_state = 3}, [769] = {.lex_state = 3, .external_lex_state = 3}, [770] = {.lex_state = 3, .external_lex_state = 3}, - [771] = {.lex_state = 3, .external_lex_state = 3}, - [772] = {.lex_state = 4, .external_lex_state = 3}, - [773] = {.lex_state = 2, .external_lex_state = 3}, + [771] = {.lex_state = 4, .external_lex_state = 3}, + [772] = {.lex_state = 3, .external_lex_state = 3}, + [773] = {.lex_state = 4, .external_lex_state = 3}, [774] = {.lex_state = 3, .external_lex_state = 3}, - [775] = {.lex_state = 2, .external_lex_state = 3}, - [776] = {.lex_state = 2, .external_lex_state = 3}, + [775] = {.lex_state = 3, .external_lex_state = 3}, + [776] = {.lex_state = 4, .external_lex_state = 3}, [777] = {.lex_state = 2, .external_lex_state = 3}, - [778] = {.lex_state = 2, .external_lex_state = 3}, + [778] = {.lex_state = 3, .external_lex_state = 3}, [779] = {.lex_state = 2, .external_lex_state = 3}, [780] = {.lex_state = 2, .external_lex_state = 3}, [781] = {.lex_state = 2, .external_lex_state = 3}, [782] = {.lex_state = 2, .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}, + [783] = {.lex_state = 2, .external_lex_state = 3}, + [784] = {.lex_state = 2, .external_lex_state = 3}, + [785] = {.lex_state = 2, .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}, @@ -12463,20 +12498,20 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [798] = {.lex_state = 2, .external_lex_state = 3}, [799] = {.lex_state = 4, .external_lex_state = 3}, [800] = {.lex_state = 4, .external_lex_state = 3}, - [801] = {.lex_state = 2, .external_lex_state = 3}, + [801] = {.lex_state = 4, .external_lex_state = 3}, [802] = {.lex_state = 2, .external_lex_state = 3}, - [803] = {.lex_state = 10, .external_lex_state = 3}, + [803] = {.lex_state = 4, .external_lex_state = 3}, [804] = {.lex_state = 4, .external_lex_state = 3}, [805] = {.lex_state = 4, .external_lex_state = 3}, [806] = {.lex_state = 4, .external_lex_state = 3}, - [807] = {.lex_state = 2, .external_lex_state = 3}, + [807] = {.lex_state = 4, .external_lex_state = 3}, [808] = {.lex_state = 4, .external_lex_state = 3}, [809] = {.lex_state = 4, .external_lex_state = 3}, [810] = {.lex_state = 4, .external_lex_state = 3}, [811] = {.lex_state = 4, .external_lex_state = 3}, [812] = {.lex_state = 4, .external_lex_state = 3}, - [813] = {.lex_state = 4, .external_lex_state = 3}, - [814] = {.lex_state = 4, .external_lex_state = 3}, + [813] = {.lex_state = 2, .external_lex_state = 3}, + [814] = {.lex_state = 2, .external_lex_state = 3}, [815] = {.lex_state = 4, .external_lex_state = 3}, [816] = {.lex_state = 4, .external_lex_state = 3}, [817] = {.lex_state = 4, .external_lex_state = 3}, @@ -12486,14 +12521,14 @@ static 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}, - [825] = {.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}, + [827] = {.lex_state = 2, .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 = 2, .external_lex_state = 3}, + [830] = {.lex_state = 2, .external_lex_state = 3}, + [831] = {.lex_state = 4, .external_lex_state = 3}, [832] = {.lex_state = 2, .external_lex_state = 3}, [833] = {.lex_state = 4, .external_lex_state = 3}, [834] = {.lex_state = 4, .external_lex_state = 3}, @@ -12501,33 +12536,33 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [836] = {.lex_state = 4, .external_lex_state = 3}, [837] = {.lex_state = 2, .external_lex_state = 3}, [838] = {.lex_state = 4, .external_lex_state = 3}, - [839] = {.lex_state = 4, .external_lex_state = 3}, - [840] = {.lex_state = 2, .external_lex_state = 3}, + [839] = {.lex_state = 2, .external_lex_state = 3}, + [840] = {.lex_state = 4, .external_lex_state = 3}, [841] = {.lex_state = 4, .external_lex_state = 3}, [842] = {.lex_state = 4, .external_lex_state = 3}, [843] = {.lex_state = 4, .external_lex_state = 3}, - [844] = {.lex_state = 2, .external_lex_state = 3}, + [844] = {.lex_state = 4, .external_lex_state = 3}, [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 = 2, .external_lex_state = 3}, - [851] = {.lex_state = 2, .external_lex_state = 3}, - [852] = {.lex_state = 2, .external_lex_state = 3}, + [851] = {.lex_state = 4, .external_lex_state = 3}, + [852] = {.lex_state = 4, .external_lex_state = 3}, [853] = {.lex_state = 4, .external_lex_state = 3}, [854] = {.lex_state = 2, .external_lex_state = 3}, [855] = {.lex_state = 4, .external_lex_state = 3}, [856] = {.lex_state = 4, .external_lex_state = 3}, [857] = {.lex_state = 4, .external_lex_state = 3}, - [858] = {.lex_state = 4, .external_lex_state = 3}, + [858] = {.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 = 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}, + [865] = {.lex_state = 10, .external_lex_state = 3}, [866] = {.lex_state = 2, .external_lex_state = 3}, [867] = {.lex_state = 4, .external_lex_state = 3}, [868] = {.lex_state = 4, .external_lex_state = 3}, @@ -12537,10 +12572,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [872] = {.lex_state = 4, .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}, + [875] = {.lex_state = 2, .external_lex_state = 3}, [876] = {.lex_state = 4, .external_lex_state = 3}, [877] = {.lex_state = 4, .external_lex_state = 3}, - [878] = {.lex_state = 2, .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}, [881] = {.lex_state = 4, .external_lex_state = 3}, @@ -12555,7 +12590,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [890] = {.lex_state = 4, .external_lex_state = 3}, [891] = {.lex_state = 4, .external_lex_state = 3}, [892] = {.lex_state = 4, .external_lex_state = 3}, - [893] = {.lex_state = 2, .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}, @@ -12570,18 +12605,18 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [905] = {.lex_state = 2, .external_lex_state = 3}, [906] = {.lex_state = 4, .external_lex_state = 3}, [907] = {.lex_state = 4, .external_lex_state = 3}, - [908] = {.lex_state = 4, .external_lex_state = 3}, + [908] = {.lex_state = 2, .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}, + [912] = {.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}, [917] = {.lex_state = 4, .external_lex_state = 3}, [918] = {.lex_state = 4, .external_lex_state = 3}, - [919] = {.lex_state = 4, .external_lex_state = 3}, + [919] = {.lex_state = 2, .external_lex_state = 3}, [920] = {.lex_state = 4, .external_lex_state = 3}, [921] = {.lex_state = 4, .external_lex_state = 3}, [922] = {.lex_state = 4, .external_lex_state = 3}, @@ -12595,21 +12630,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [930] = {.lex_state = 4, .external_lex_state = 3}, [931] = {.lex_state = 4, .external_lex_state = 3}, [932] = {.lex_state = 4, .external_lex_state = 3}, - [933] = {.lex_state = 4, .external_lex_state = 3}, + [933] = {.lex_state = 2, .external_lex_state = 3}, [934] = {.lex_state = 4, .external_lex_state = 3}, [935] = {.lex_state = 4, .external_lex_state = 3}, [936] = {.lex_state = 4, .external_lex_state = 3}, [937] = {.lex_state = 4, .external_lex_state = 3}, [938] = {.lex_state = 4, .external_lex_state = 3}, - [939] = {.lex_state = 2, .external_lex_state = 3}, + [939] = {.lex_state = 4, .external_lex_state = 3}, [940] = {.lex_state = 4, .external_lex_state = 3}, [941] = {.lex_state = 4, .external_lex_state = 3}, - [942] = {.lex_state = 2, .external_lex_state = 3}, + [942] = {.lex_state = 4, .external_lex_state = 3}, [943] = {.lex_state = 4, .external_lex_state = 3}, [944] = {.lex_state = 4, .external_lex_state = 3}, [945] = {.lex_state = 4, .external_lex_state = 3}, [946] = {.lex_state = 4, .external_lex_state = 3}, - [947] = {.lex_state = 4, .external_lex_state = 3}, + [947] = {.lex_state = 2, .external_lex_state = 3}, [948] = {.lex_state = 4, .external_lex_state = 3}, [949] = {.lex_state = 4, .external_lex_state = 3}, [950] = {.lex_state = 2, .external_lex_state = 3}, @@ -12617,75 +12652,75 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [952] = {.lex_state = 4, .external_lex_state = 3}, [953] = {.lex_state = 4, .external_lex_state = 3}, [954] = {.lex_state = 4, .external_lex_state = 3}, - [955] = {.lex_state = 2, .external_lex_state = 3}, + [955] = {.lex_state = 4, .external_lex_state = 3}, [956] = {.lex_state = 4, .external_lex_state = 3}, - [957] = {.lex_state = 4, .external_lex_state = 3}, + [957] = {.lex_state = 2, .external_lex_state = 3}, [958] = {.lex_state = 4, .external_lex_state = 3}, [959] = {.lex_state = 4, .external_lex_state = 3}, - [960] = {.lex_state = 4, .external_lex_state = 3}, + [960] = {.lex_state = 2, .external_lex_state = 3}, [961] = {.lex_state = 4, .external_lex_state = 3}, - [962] = {.lex_state = 4, .external_lex_state = 3}, + [962] = {.lex_state = 2, .external_lex_state = 3}, [963] = {.lex_state = 4, .external_lex_state = 3}, [964] = {.lex_state = 4, .external_lex_state = 3}, [965] = {.lex_state = 4, .external_lex_state = 3}, [966] = {.lex_state = 4, .external_lex_state = 3}, [967] = {.lex_state = 4, .external_lex_state = 3}, - [968] = {.lex_state = 2, .external_lex_state = 3}, + [968] = {.lex_state = 4, .external_lex_state = 3}, [969] = {.lex_state = 4, .external_lex_state = 3}, - [970] = {.lex_state = 2, .external_lex_state = 3}, + [970] = {.lex_state = 4, .external_lex_state = 3}, [971] = {.lex_state = 4, .external_lex_state = 3}, [972] = {.lex_state = 4, .external_lex_state = 3}, [973] = {.lex_state = 4, .external_lex_state = 3}, [974] = {.lex_state = 4, .external_lex_state = 3}, - [975] = {.lex_state = 4, .external_lex_state = 3}, + [975] = {.lex_state = 2, .external_lex_state = 3}, [976] = {.lex_state = 4, .external_lex_state = 3}, [977] = {.lex_state = 4, .external_lex_state = 3}, [978] = {.lex_state = 4, .external_lex_state = 3}, - [979] = {.lex_state = 2, .external_lex_state = 3}, - [980] = {.lex_state = 2, .external_lex_state = 3}, + [979] = {.lex_state = 4, .external_lex_state = 3}, + [980] = {.lex_state = 4, .external_lex_state = 3}, [981] = {.lex_state = 4, .external_lex_state = 3}, [982] = {.lex_state = 4, .external_lex_state = 3}, [983] = {.lex_state = 4, .external_lex_state = 3}, [984] = {.lex_state = 4, .external_lex_state = 3}, - [985] = {.lex_state = 2, .external_lex_state = 3}, + [985] = {.lex_state = 4, .external_lex_state = 3}, [986] = {.lex_state = 4, .external_lex_state = 3}, [987] = {.lex_state = 4, .external_lex_state = 3}, - [988] = {.lex_state = 2, .external_lex_state = 3}, - [989] = {.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}, [991] = {.lex_state = 4, .external_lex_state = 3}, [992] = {.lex_state = 4, .external_lex_state = 3}, [993] = {.lex_state = 4, .external_lex_state = 3}, [994] = {.lex_state = 4, .external_lex_state = 3}, - [995] = {.lex_state = 3, .external_lex_state = 3}, + [995] = {.lex_state = 4, .external_lex_state = 3}, [996] = {.lex_state = 4, .external_lex_state = 3}, [997] = {.lex_state = 4, .external_lex_state = 3}, [998] = {.lex_state = 4, .external_lex_state = 3}, - [999] = {.lex_state = 2, .external_lex_state = 3}, + [999] = {.lex_state = 4, .external_lex_state = 3}, [1000] = {.lex_state = 4, .external_lex_state = 3}, [1001] = {.lex_state = 4, .external_lex_state = 3}, [1002] = {.lex_state = 4, .external_lex_state = 3}, - [1003] = {.lex_state = 4, .external_lex_state = 3}, - [1004] = {.lex_state = 2, .external_lex_state = 3}, + [1003] = {.lex_state = 3, .external_lex_state = 3}, + [1004] = {.lex_state = 4, .external_lex_state = 3}, [1005] = {.lex_state = 4, .external_lex_state = 3}, [1006] = {.lex_state = 4, .external_lex_state = 3}, - [1007] = {.lex_state = 4, .external_lex_state = 3}, + [1007] = {.lex_state = 2, .external_lex_state = 3}, [1008] = {.lex_state = 4, .external_lex_state = 3}, [1009] = {.lex_state = 4, .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}, + [1012] = {.lex_state = 2, .external_lex_state = 3}, [1013] = {.lex_state = 4, .external_lex_state = 3}, [1014] = {.lex_state = 4, .external_lex_state = 3}, [1015] = {.lex_state = 4, .external_lex_state = 3}, [1016] = {.lex_state = 4, .external_lex_state = 3}, [1017] = {.lex_state = 4, .external_lex_state = 3}, - [1018] = {.lex_state = 4, .external_lex_state = 3}, - [1019] = {.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 = 4, .external_lex_state = 3}, - [1021] = {.lex_state = 4, .external_lex_state = 3}, + [1021] = {.lex_state = 2, .external_lex_state = 3}, [1022] = {.lex_state = 4, .external_lex_state = 3}, - [1023] = {.lex_state = 4, .external_lex_state = 3}, + [1023] = {.lex_state = 2, .external_lex_state = 3}, [1024] = {.lex_state = 4, .external_lex_state = 3}, [1025] = {.lex_state = 4, .external_lex_state = 3}, [1026] = {.lex_state = 4, .external_lex_state = 3}, @@ -12703,10 +12738,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1038] = {.lex_state = 4, .external_lex_state = 3}, [1039] = {.lex_state = 4, .external_lex_state = 3}, [1040] = {.lex_state = 4, .external_lex_state = 3}, - [1041] = {.lex_state = 2, .external_lex_state = 3}, - [1042] = {.lex_state = 2, .external_lex_state = 3}, - [1043] = {.lex_state = 2, .external_lex_state = 3}, - [1044] = {.lex_state = 2, .external_lex_state = 3}, + [1041] = {.lex_state = 4, .external_lex_state = 3}, + [1042] = {.lex_state = 4, .external_lex_state = 3}, + [1043] = {.lex_state = 4, .external_lex_state = 3}, + [1044] = {.lex_state = 4, .external_lex_state = 3}, [1045] = {.lex_state = 2, .external_lex_state = 3}, [1046] = {.lex_state = 2, .external_lex_state = 3}, [1047] = {.lex_state = 2, .external_lex_state = 3}, @@ -12727,15 +12762,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1062] = {.lex_state = 2, .external_lex_state = 3}, [1063] = {.lex_state = 2, .external_lex_state = 3}, [1064] = {.lex_state = 2, .external_lex_state = 3}, - [1065] = {.lex_state = 2, .external_lex_state = 3}, + [1065] = {.lex_state = 7, .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}, [1069] = {.lex_state = 2, .external_lex_state = 3}, - [1070] = {.lex_state = 5, .external_lex_state = 2}, + [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}, + [1073] = {.lex_state = 7, .external_lex_state = 3}, [1074] = {.lex_state = 2, .external_lex_state = 3}, [1075] = {.lex_state = 2, .external_lex_state = 3}, [1076] = {.lex_state = 2, .external_lex_state = 3}, @@ -12743,9 +12778,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1078] = {.lex_state = 2, .external_lex_state = 3}, [1079] = {.lex_state = 2, .external_lex_state = 3}, [1080] = {.lex_state = 2, .external_lex_state = 3}, - [1081] = {.lex_state = 7, .external_lex_state = 3}, - [1082] = {.lex_state = 2, .external_lex_state = 3}, - [1083] = {.lex_state = 2, .external_lex_state = 3}, + [1081] = {.lex_state = 2, .external_lex_state = 3}, + [1082] = {.lex_state = 7, .external_lex_state = 3}, + [1083] = {.lex_state = 7, .external_lex_state = 3}, [1084] = {.lex_state = 2, .external_lex_state = 3}, [1085] = {.lex_state = 2, .external_lex_state = 3}, [1086] = {.lex_state = 2, .external_lex_state = 3}, @@ -12755,11 +12790,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1090] = {.lex_state = 2, .external_lex_state = 3}, [1091] = {.lex_state = 2, .external_lex_state = 3}, [1092] = {.lex_state = 2, .external_lex_state = 3}, - [1093] = {.lex_state = 7, .external_lex_state = 3}, + [1093] = {.lex_state = 2, .external_lex_state = 3}, [1094] = {.lex_state = 7, .external_lex_state = 3}, [1095] = {.lex_state = 2, .external_lex_state = 3}, - [1096] = {.lex_state = 7, .external_lex_state = 3}, - [1097] = {.lex_state = 5, .external_lex_state = 2}, + [1096] = {.lex_state = 2, .external_lex_state = 3}, + [1097] = {.lex_state = 2, .external_lex_state = 3}, [1098] = {.lex_state = 2, .external_lex_state = 3}, [1099] = {.lex_state = 2, .external_lex_state = 3}, [1100] = {.lex_state = 2, .external_lex_state = 3}, @@ -12770,26 +12805,26 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1108] = {.lex_state = 7, .external_lex_state = 3}, [1109] = {.lex_state = 2, .external_lex_state = 3}, [1110] = {.lex_state = 2, .external_lex_state = 3}, [1111] = {.lex_state = 2, .external_lex_state = 3}, [1112] = {.lex_state = 2, .external_lex_state = 3}, [1113] = {.lex_state = 2, .external_lex_state = 3}, - [1114] = {.lex_state = 7, .external_lex_state = 3}, + [1114] = {.lex_state = 2, .external_lex_state = 3}, [1115] = {.lex_state = 2, .external_lex_state = 3}, [1116] = {.lex_state = 2, .external_lex_state = 3}, [1117] = {.lex_state = 2, .external_lex_state = 3}, - [1118] = {.lex_state = 7, .external_lex_state = 3}, + [1118] = {.lex_state = 2, .external_lex_state = 3}, [1119] = {.lex_state = 2, .external_lex_state = 3}, [1120] = {.lex_state = 2, .external_lex_state = 3}, - [1121] = {.lex_state = 7, .external_lex_state = 3}, - [1122] = {.lex_state = 7, .external_lex_state = 3}, + [1121] = {.lex_state = 2, .external_lex_state = 3}, + [1122] = {.lex_state = 2, .external_lex_state = 3}, [1123] = {.lex_state = 2, .external_lex_state = 3}, [1124] = {.lex_state = 2, .external_lex_state = 3}, [1125] = {.lex_state = 2, .external_lex_state = 3}, [1126] = {.lex_state = 2, .external_lex_state = 3}, - [1127] = {.lex_state = 2, .external_lex_state = 3}, + [1127] = {.lex_state = 5, .external_lex_state = 2}, [1128] = {.lex_state = 2, .external_lex_state = 3}, [1129] = {.lex_state = 2, .external_lex_state = 3}, [1130] = {.lex_state = 2, .external_lex_state = 3}, @@ -12802,15 +12837,15 @@ static 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 = 7, .external_lex_state = 3}, [1141] = {.lex_state = 2, .external_lex_state = 3}, - [1142] = {.lex_state = 2, .external_lex_state = 3}, + [1142] = {.lex_state = 5, .external_lex_state = 2}, [1143] = {.lex_state = 2, .external_lex_state = 3}, - [1144] = {.lex_state = 2, .external_lex_state = 3}, + [1144] = {.lex_state = 7, .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}, + [1148] = {.lex_state = 5, .external_lex_state = 2}, [1149] = {.lex_state = 5, .external_lex_state = 2}, [1150] = {.lex_state = 2, .external_lex_state = 3}, [1151] = {.lex_state = 2, .external_lex_state = 3}, @@ -12818,7 +12853,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1153] = {.lex_state = 2, .external_lex_state = 3}, [1154] = {.lex_state = 2, .external_lex_state = 3}, [1155] = {.lex_state = 2, .external_lex_state = 3}, - [1156] = {.lex_state = 5, .external_lex_state = 2}, + [1156] = {.lex_state = 2, .external_lex_state = 3}, [1157] = {.lex_state = 2, .external_lex_state = 3}, [1158] = {.lex_state = 2, .external_lex_state = 3}, [1159] = {.lex_state = 2, .external_lex_state = 3}, @@ -12826,62 +12861,62 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1161] = {.lex_state = 2, .external_lex_state = 3}, [1162] = {.lex_state = 2, .external_lex_state = 3}, [1163] = {.lex_state = 2, .external_lex_state = 3}, - [1164] = {.lex_state = 7, .external_lex_state = 3}, - [1165] = {.lex_state = 7, .external_lex_state = 3}, + [1164] = {.lex_state = 2, .external_lex_state = 3}, + [1165] = {.lex_state = 2, .external_lex_state = 3}, [1166] = {.lex_state = 2, .external_lex_state = 3}, - [1167] = {.lex_state = 7, .external_lex_state = 3}, + [1167] = {.lex_state = 2, .external_lex_state = 3}, [1168] = {.lex_state = 7, .external_lex_state = 3}, [1169] = {.lex_state = 7, .external_lex_state = 3}, [1170] = {.lex_state = 7, .external_lex_state = 3}, - [1171] = {.lex_state = 7, .external_lex_state = 3}, + [1171] = {.lex_state = 2, .external_lex_state = 3}, [1172] = {.lex_state = 7, .external_lex_state = 3}, - [1173] = {.lex_state = 5, .external_lex_state = 2}, - [1174] = {.lex_state = 2, .external_lex_state = 3}, - [1175] = {.lex_state = 5, .external_lex_state = 2}, - [1176] = {.lex_state = 2, .external_lex_state = 3}, - [1177] = {.lex_state = 5, .external_lex_state = 2}, + [1173] = {.lex_state = 7, .external_lex_state = 3}, + [1174] = {.lex_state = 7, .external_lex_state = 3}, + [1175] = {.lex_state = 7, .external_lex_state = 3}, + [1176] = {.lex_state = 5, .external_lex_state = 2}, + [1177] = {.lex_state = 7, .external_lex_state = 3}, [1178] = {.lex_state = 5, .external_lex_state = 2}, [1179] = {.lex_state = 5, .external_lex_state = 2}, [1180] = {.lex_state = 2, .external_lex_state = 3}, - [1181] = {.lex_state = 7, .external_lex_state = 3}, + [1181] = {.lex_state = 5, .external_lex_state = 2}, [1182] = {.lex_state = 2, .external_lex_state = 3}, - [1183] = {.lex_state = 2, .external_lex_state = 3}, - [1184] = {.lex_state = 7, .external_lex_state = 3}, - [1185] = {.lex_state = 7, .external_lex_state = 3}, + [1183] = {.lex_state = 5, .external_lex_state = 2}, + [1184] = {.lex_state = 2, .external_lex_state = 3}, + [1185] = {.lex_state = 2, .external_lex_state = 3}, [1186] = {.lex_state = 5, .external_lex_state = 2}, - [1187] = {.lex_state = 7, .external_lex_state = 3}, + [1187] = {.lex_state = 2, .external_lex_state = 3}, [1188] = {.lex_state = 7, .external_lex_state = 3}, [1189] = {.lex_state = 7, .external_lex_state = 3}, [1190] = {.lex_state = 2, .external_lex_state = 3}, - [1191] = {.lex_state = 2, .external_lex_state = 3}, + [1191] = {.lex_state = 7, .external_lex_state = 3}, [1192] = {.lex_state = 7, .external_lex_state = 3}, [1193] = {.lex_state = 2, .external_lex_state = 3}, [1194] = {.lex_state = 2, .external_lex_state = 3}, [1195] = {.lex_state = 2, .external_lex_state = 3}, [1196] = {.lex_state = 7, .external_lex_state = 3}, [1197] = {.lex_state = 2, .external_lex_state = 3}, - [1198] = {.lex_state = 2, .external_lex_state = 3}, - [1199] = {.lex_state = 2, .external_lex_state = 3}, - [1200] = {.lex_state = 7, .external_lex_state = 3}, - [1201] = {.lex_state = 2, .external_lex_state = 3}, + [1198] = {.lex_state = 7, .external_lex_state = 3}, + [1199] = {.lex_state = 7, .external_lex_state = 3}, + [1200] = {.lex_state = 2, .external_lex_state = 3}, + [1201] = {.lex_state = 7, .external_lex_state = 3}, [1202] = {.lex_state = 2, .external_lex_state = 3}, [1203] = {.lex_state = 2, .external_lex_state = 3}, [1204] = {.lex_state = 2, .external_lex_state = 3}, [1205] = {.lex_state = 2, .external_lex_state = 3}, [1206] = {.lex_state = 2, .external_lex_state = 3}, - [1207] = {.lex_state = 2, .external_lex_state = 3}, + [1207] = {.lex_state = 7, .external_lex_state = 3}, [1208] = {.lex_state = 2, .external_lex_state = 3}, [1209] = {.lex_state = 2, .external_lex_state = 3}, [1210] = {.lex_state = 2, .external_lex_state = 3}, [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 = 7, .external_lex_state = 3}, + [1214] = {.lex_state = 2, .external_lex_state = 3}, [1215] = {.lex_state = 2, .external_lex_state = 3}, [1216] = {.lex_state = 2, .external_lex_state = 3}, [1217] = {.lex_state = 2, .external_lex_state = 3}, [1218] = {.lex_state = 2, .external_lex_state = 3}, - [1219] = {.lex_state = 2, .external_lex_state = 3}, + [1219] = {.lex_state = 7, .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}, @@ -12952,7 +12987,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1287] = {.lex_state = 2, .external_lex_state = 3}, [1288] = {.lex_state = 2, .external_lex_state = 3}, [1289] = {.lex_state = 2, .external_lex_state = 3}, - [1290] = {.lex_state = 2, .external_lex_state = 3}, + [1290] = {.lex_state = 7, .external_lex_state = 3}, [1291] = {.lex_state = 2, .external_lex_state = 3}, [1292] = {.lex_state = 2, .external_lex_state = 3}, [1293] = {.lex_state = 2, .external_lex_state = 3}, @@ -12966,18 +13001,18 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1301] = {.lex_state = 2, .external_lex_state = 3}, [1302] = {.lex_state = 2, .external_lex_state = 3}, [1303] = {.lex_state = 2, .external_lex_state = 3}, - [1304] = {.lex_state = 7, .external_lex_state = 3}, + [1304] = {.lex_state = 2, .external_lex_state = 3}, [1305] = {.lex_state = 2, .external_lex_state = 3}, [1306] = {.lex_state = 2, .external_lex_state = 3}, [1307] = {.lex_state = 2, .external_lex_state = 3}, [1308] = {.lex_state = 2, .external_lex_state = 3}, [1309] = {.lex_state = 2, .external_lex_state = 3}, [1310] = {.lex_state = 2, .external_lex_state = 3}, - [1311] = {.lex_state = 7, .external_lex_state = 3}, + [1311] = {.lex_state = 2, .external_lex_state = 3}, [1312] = {.lex_state = 2, .external_lex_state = 3}, - [1313] = {.lex_state = 7, .external_lex_state = 3}, - [1314] = {.lex_state = 7, .external_lex_state = 3}, - [1315] = {.lex_state = 7, .external_lex_state = 3}, + [1313] = {.lex_state = 2, .external_lex_state = 3}, + [1314] = {.lex_state = 2, .external_lex_state = 3}, + [1315] = {.lex_state = 2, .external_lex_state = 3}, [1316] = {.lex_state = 7, .external_lex_state = 3}, [1317] = {.lex_state = 7, .external_lex_state = 3}, [1318] = {.lex_state = 7, .external_lex_state = 3}, @@ -12992,12 +13027,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1327] = {.lex_state = 7, .external_lex_state = 3}, [1328] = {.lex_state = 7, .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 = 9, .external_lex_state = 3}, - [1333] = {.lex_state = 9, .external_lex_state = 3}, - [1334] = {.lex_state = 9, .external_lex_state = 3}, - [1335] = {.lex_state = 9, .external_lex_state = 3}, + [1330] = {.lex_state = 7, .external_lex_state = 3}, + [1331] = {.lex_state = 7, .external_lex_state = 3}, + [1332] = {.lex_state = 7, .external_lex_state = 3}, + [1333] = {.lex_state = 7, .external_lex_state = 3}, + [1334] = {.lex_state = 18, .external_lex_state = 3}, + [1335] = {.lex_state = 18, .external_lex_state = 3}, [1336] = {.lex_state = 9, .external_lex_state = 3}, [1337] = {.lex_state = 9, .external_lex_state = 3}, [1338] = {.lex_state = 9, .external_lex_state = 3}, @@ -13006,1045 +13041,1045 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1341] = {.lex_state = 9, .external_lex_state = 3}, [1342] = {.lex_state = 9, .external_lex_state = 3}, [1343] = {.lex_state = 9, .external_lex_state = 3}, - [1344] = {.lex_state = 7, .external_lex_state = 3}, - [1345] = {.lex_state = 7, .external_lex_state = 3}, - [1346] = {.lex_state = 17, .external_lex_state = 3}, - [1347] = {.lex_state = 17, .external_lex_state = 3}, - [1348] = {.lex_state = 17, .external_lex_state = 3}, - [1349] = {.lex_state = 7, .external_lex_state = 3}, - [1350] = {.lex_state = 17, .external_lex_state = 3}, + [1344] = {.lex_state = 9, .external_lex_state = 3}, + [1345] = {.lex_state = 9, .external_lex_state = 3}, + [1346] = {.lex_state = 9, .external_lex_state = 3}, + [1347] = {.lex_state = 9, .external_lex_state = 3}, + [1348] = {.lex_state = 18, .external_lex_state = 3}, + [1349] = {.lex_state = 18, .external_lex_state = 3}, + [1350] = {.lex_state = 7, .external_lex_state = 3}, [1351] = {.lex_state = 7, .external_lex_state = 3}, - [1352] = {.lex_state = 9, .external_lex_state = 3}, - [1353] = {.lex_state = 7, .external_lex_state = 3}, + [1352] = {.lex_state = 18, .external_lex_state = 3}, + [1353] = {.lex_state = 18, .external_lex_state = 3}, [1354] = {.lex_state = 7, .external_lex_state = 3}, - [1355] = {.lex_state = 7, .external_lex_state = 3}, + [1355] = {.lex_state = 18, .external_lex_state = 3}, [1356] = {.lex_state = 7, .external_lex_state = 3}, [1357] = {.lex_state = 7, .external_lex_state = 3}, [1358] = {.lex_state = 7, .external_lex_state = 3}, [1359] = {.lex_state = 7, .external_lex_state = 3}, [1360] = {.lex_state = 7, .external_lex_state = 3}, - [1361] = {.lex_state = 17, .external_lex_state = 3}, + [1361] = {.lex_state = 7, .external_lex_state = 3}, [1362] = {.lex_state = 7, .external_lex_state = 3}, [1363] = {.lex_state = 9, .external_lex_state = 3}, - [1364] = {.lex_state = 9, .external_lex_state = 3}, + [1364] = {.lex_state = 7, .external_lex_state = 3}, [1365] = {.lex_state = 7, .external_lex_state = 3}, [1366] = {.lex_state = 7, .external_lex_state = 3}, - [1367] = {.lex_state = 7, .external_lex_state = 3}, + [1367] = {.lex_state = 9, .external_lex_state = 3}, [1368] = {.lex_state = 7, .external_lex_state = 3}, - [1369] = {.lex_state = 17, .external_lex_state = 3}, - [1370] = {.lex_state = 17, .external_lex_state = 3}, + [1369] = {.lex_state = 7, .external_lex_state = 3}, + [1370] = {.lex_state = 7, .external_lex_state = 3}, [1371] = {.lex_state = 9, .external_lex_state = 3}, [1372] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, - [1377] = {.lex_state = 17, .external_lex_state = 3}, - [1378] = {.lex_state = 7, .external_lex_state = 3}, - [1379] = {.lex_state = 17, .external_lex_state = 3}, - [1380] = {.lex_state = 17, .external_lex_state = 3}, - [1381] = {.lex_state = 17, .external_lex_state = 3}, - [1382] = {.lex_state = 17, .external_lex_state = 3}, - [1383] = {.lex_state = 17, .external_lex_state = 3}, - [1384] = {.lex_state = 17, .external_lex_state = 3}, - [1385] = {.lex_state = 17, .external_lex_state = 3}, - [1386] = {.lex_state = 7, .external_lex_state = 3}, - [1387] = {.lex_state = 17, .external_lex_state = 3}, - [1388] = {.lex_state = 7, .external_lex_state = 3}, + [1374] = {.lex_state = 18, .external_lex_state = 3}, + [1375] = {.lex_state = 7, .external_lex_state = 3}, + [1376] = {.lex_state = 9, .external_lex_state = 3}, + [1377] = {.lex_state = 18, .external_lex_state = 3}, + [1378] = {.lex_state = 18, .external_lex_state = 3}, + [1379] = {.lex_state = 7, .external_lex_state = 3}, + [1380] = {.lex_state = 7, .external_lex_state = 3}, + [1381] = {.lex_state = 7, .external_lex_state = 3}, + [1382] = {.lex_state = 18, .external_lex_state = 3}, + [1383] = {.lex_state = 18, .external_lex_state = 3}, + [1384] = {.lex_state = 18, .external_lex_state = 3}, + [1385] = {.lex_state = 18, .external_lex_state = 3}, + [1386] = {.lex_state = 18, .external_lex_state = 3}, + [1387] = {.lex_state = 18, .external_lex_state = 3}, + [1388] = {.lex_state = 18, .external_lex_state = 3}, [1389] = {.lex_state = 7, .external_lex_state = 3}, - [1390] = {.lex_state = 17, .external_lex_state = 3}, - [1391] = {.lex_state = 17, .external_lex_state = 3}, - [1392] = {.lex_state = 17, .external_lex_state = 3}, - [1393] = {.lex_state = 17, .external_lex_state = 3}, - [1394] = {.lex_state = 7, .external_lex_state = 3}, - [1395] = {.lex_state = 17, .external_lex_state = 3}, - [1396] = {.lex_state = 17, .external_lex_state = 3}, - [1397] = {.lex_state = 17, .external_lex_state = 3}, - [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 = 17, .external_lex_state = 3}, - [1402] = {.lex_state = 17, .external_lex_state = 3}, - [1403] = {.lex_state = 17, .external_lex_state = 3}, - [1404] = {.lex_state = 17, .external_lex_state = 3}, - [1405] = {.lex_state = 17, .external_lex_state = 3}, - [1406] = {.lex_state = 17, .external_lex_state = 3}, - [1407] = {.lex_state = 17, .external_lex_state = 3}, - [1408] = {.lex_state = 17, .external_lex_state = 3}, - [1409] = {.lex_state = 17, .external_lex_state = 3}, - [1410] = {.lex_state = 17, .external_lex_state = 3}, - [1411] = {.lex_state = 17, .external_lex_state = 3}, - [1412] = {.lex_state = 17, .external_lex_state = 3}, - [1413] = {.lex_state = 17, .external_lex_state = 3}, - [1414] = {.lex_state = 17, .external_lex_state = 3}, - [1415] = {.lex_state = 17, .external_lex_state = 3}, - [1416] = {.lex_state = 17, .external_lex_state = 3}, - [1417] = {.lex_state = 17, .external_lex_state = 3}, - [1418] = {.lex_state = 17, .external_lex_state = 3}, - [1419] = {.lex_state = 17, .external_lex_state = 3}, - [1420] = {.lex_state = 17, .external_lex_state = 3}, - [1421] = {.lex_state = 17, .external_lex_state = 3}, - [1422] = {.lex_state = 9, .external_lex_state = 3}, - [1423] = {.lex_state = 9, .external_lex_state = 3}, - [1424] = {.lex_state = 9, .external_lex_state = 3}, + [1390] = {.lex_state = 18, .external_lex_state = 3}, + [1391] = {.lex_state = 18, .external_lex_state = 3}, + [1392] = {.lex_state = 18, .external_lex_state = 3}, + [1393] = {.lex_state = 7, .external_lex_state = 3}, + [1394] = {.lex_state = 18, .external_lex_state = 3}, + [1395] = {.lex_state = 18, .external_lex_state = 3}, + [1396] = {.lex_state = 18, .external_lex_state = 3}, + [1397] = {.lex_state = 18, .external_lex_state = 3}, + [1398] = {.lex_state = 18, .external_lex_state = 3}, + [1399] = {.lex_state = 18, .external_lex_state = 3}, + [1400] = {.lex_state = 18, .external_lex_state = 3}, + [1401] = {.lex_state = 18, .external_lex_state = 3}, + [1402] = {.lex_state = 18, .external_lex_state = 3}, + [1403] = {.lex_state = 7, .external_lex_state = 3}, + [1404] = {.lex_state = 18, .external_lex_state = 3}, + [1405] = {.lex_state = 18, .external_lex_state = 3}, + [1406] = {.lex_state = 18, .external_lex_state = 3}, + [1407] = {.lex_state = 18, .external_lex_state = 3}, + [1408] = {.lex_state = 18, .external_lex_state = 3}, + [1409] = {.lex_state = 18, .external_lex_state = 3}, + [1410] = {.lex_state = 18, .external_lex_state = 3}, + [1411] = {.lex_state = 18, .external_lex_state = 3}, + [1412] = {.lex_state = 18, .external_lex_state = 3}, + [1413] = {.lex_state = 18, .external_lex_state = 3}, + [1414] = {.lex_state = 18, .external_lex_state = 3}, + [1415] = {.lex_state = 18, .external_lex_state = 3}, + [1416] = {.lex_state = 18, .external_lex_state = 3}, + [1417] = {.lex_state = 18, .external_lex_state = 3}, + [1418] = {.lex_state = 18, .external_lex_state = 3}, + [1419] = {.lex_state = 18, .external_lex_state = 3}, + [1420] = {.lex_state = 18, .external_lex_state = 3}, + [1421] = {.lex_state = 18, .external_lex_state = 3}, + [1422] = {.lex_state = 18, .external_lex_state = 3}, + [1423] = {.lex_state = 18, .external_lex_state = 3}, + [1424] = {.lex_state = 18, .external_lex_state = 3}, [1425] = {.lex_state = 9, .external_lex_state = 3}, - [1426] = {.lex_state = 7, .external_lex_state = 3}, + [1426] = {.lex_state = 18, .external_lex_state = 3}, [1427] = {.lex_state = 9, .external_lex_state = 3}, [1428] = {.lex_state = 9, .external_lex_state = 3}, - [1429] = {.lex_state = 7, .external_lex_state = 3}, + [1429] = {.lex_state = 9, .external_lex_state = 3}, [1430] = {.lex_state = 9, .external_lex_state = 3}, - [1431] = {.lex_state = 7, .external_lex_state = 3}, + [1431] = {.lex_state = 9, .external_lex_state = 3}, [1432] = {.lex_state = 9, .external_lex_state = 3}, [1433] = {.lex_state = 9, .external_lex_state = 3}, - [1434] = {.lex_state = 7, .external_lex_state = 3}, - [1435] = {.lex_state = 7, .external_lex_state = 3}, - [1436] = {.lex_state = 9, .external_lex_state = 3}, - [1437] = {.lex_state = 9, .external_lex_state = 3}, + [1434] = {.lex_state = 9, .external_lex_state = 3}, + [1435] = {.lex_state = 9, .external_lex_state = 3}, + [1436] = {.lex_state = 18, .external_lex_state = 3}, + [1437] = {.lex_state = 18, .external_lex_state = 3}, [1438] = {.lex_state = 9, .external_lex_state = 3}, - [1439] = {.lex_state = 17, .external_lex_state = 3}, + [1439] = {.lex_state = 9, .external_lex_state = 3}, [1440] = {.lex_state = 7, .external_lex_state = 3}, - [1441] = {.lex_state = 7, .external_lex_state = 3}, + [1441] = {.lex_state = 9, .external_lex_state = 3}, [1442] = {.lex_state = 7, .external_lex_state = 3}, - [1443] = {.lex_state = 17, .external_lex_state = 3}, - [1444] = {.lex_state = 9, .external_lex_state = 3}, - [1445] = {.lex_state = 17, .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}, - [1449] = {.lex_state = 17, .external_lex_state = 3}, - [1450] = {.lex_state = 17, .external_lex_state = 3}, - [1451] = {.lex_state = 9, .external_lex_state = 3}, - [1452] = {.lex_state = 17, .external_lex_state = 3}, - [1453] = {.lex_state = 9, .external_lex_state = 3}, + [1443] = {.lex_state = 7, .external_lex_state = 3}, + [1444] = {.lex_state = 7, .external_lex_state = 3}, + [1445] = {.lex_state = 7, .external_lex_state = 3}, + [1446] = {.lex_state = 7, .external_lex_state = 3}, + [1447] = {.lex_state = 7, .external_lex_state = 3}, + [1448] = {.lex_state = 7, .external_lex_state = 3}, + [1449] = {.lex_state = 9, .external_lex_state = 3}, + [1450] = {.lex_state = 18, .external_lex_state = 3}, + [1451] = {.lex_state = 18, .external_lex_state = 3}, + [1452] = {.lex_state = 9, .external_lex_state = 3}, + [1453] = {.lex_state = 18, .external_lex_state = 3}, [1454] = {.lex_state = 9, .external_lex_state = 3}, - [1455] = {.lex_state = 17, .external_lex_state = 3}, - [1456] = {.lex_state = 17, .external_lex_state = 3}, - [1457] = {.lex_state = 9, .external_lex_state = 3}, - [1458] = {.lex_state = 17, .external_lex_state = 3}, - [1459] = {.lex_state = 17, .external_lex_state = 3}, - [1460] = {.lex_state = 7, .external_lex_state = 3}, - [1461] = {.lex_state = 17, .external_lex_state = 3}, - [1462] = {.lex_state = 17, .external_lex_state = 3}, - [1463] = {.lex_state = 9, .external_lex_state = 3}, - [1464] = {.lex_state = 17, .external_lex_state = 3}, - [1465] = {.lex_state = 17, .external_lex_state = 3}, - [1466] = {.lex_state = 13, .external_lex_state = 3}, - [1467] = {.lex_state = 17, .external_lex_state = 3}, - [1468] = {.lex_state = 17, .external_lex_state = 3}, - [1469] = {.lex_state = 17, .external_lex_state = 3}, - [1470] = {.lex_state = 17, .external_lex_state = 3}, - [1471] = {.lex_state = 9, .external_lex_state = 3}, - [1472] = {.lex_state = 17, .external_lex_state = 3}, - [1473] = {.lex_state = 17, .external_lex_state = 3}, - [1474] = {.lex_state = 17, .external_lex_state = 3}, - [1475] = {.lex_state = 17, .external_lex_state = 3}, - [1476] = {.lex_state = 17, .external_lex_state = 3}, - [1477] = {.lex_state = 17, .external_lex_state = 3}, - [1478] = {.lex_state = 17, .external_lex_state = 3}, - [1479] = {.lex_state = 9, .external_lex_state = 3}, - [1480] = {.lex_state = 17, .external_lex_state = 3}, - [1481] = {.lex_state = 17, .external_lex_state = 3}, - [1482] = {.lex_state = 13, .external_lex_state = 3}, - [1483] = {.lex_state = 13, .external_lex_state = 3}, - [1484] = {.lex_state = 17, .external_lex_state = 3}, - [1485] = {.lex_state = 9, .external_lex_state = 3}, - [1486] = {.lex_state = 17, .external_lex_state = 3}, - [1487] = {.lex_state = 7, .external_lex_state = 3}, - [1488] = {.lex_state = 17, .external_lex_state = 3}, - [1489] = {.lex_state = 13, .external_lex_state = 3}, - [1490] = {.lex_state = 14, .external_lex_state = 3}, - [1491] = {.lex_state = 7, .external_lex_state = 3}, - [1492] = {.lex_state = 7, .external_lex_state = 3}, - [1493] = {.lex_state = 1, .external_lex_state = 2}, + [1455] = {.lex_state = 9, .external_lex_state = 3}, + [1456] = {.lex_state = 18, .external_lex_state = 3}, + [1457] = {.lex_state = 18, .external_lex_state = 3}, + [1458] = {.lex_state = 18, .external_lex_state = 3}, + [1459] = {.lex_state = 18, .external_lex_state = 3}, + [1460] = {.lex_state = 18, .external_lex_state = 3}, + [1461] = {.lex_state = 9, .external_lex_state = 3}, + [1462] = {.lex_state = 18, .external_lex_state = 3}, + [1463] = {.lex_state = 18, .external_lex_state = 3}, + [1464] = {.lex_state = 18, .external_lex_state = 3}, + [1465] = {.lex_state = 9, .external_lex_state = 3}, + [1466] = {.lex_state = 18, .external_lex_state = 3}, + [1467] = {.lex_state = 7, .external_lex_state = 3}, + [1468] = {.lex_state = 18, .external_lex_state = 3}, + [1469] = {.lex_state = 18, .external_lex_state = 3}, + [1470] = {.lex_state = 18, .external_lex_state = 3}, + [1471] = {.lex_state = 18, .external_lex_state = 3}, + [1472] = {.lex_state = 14, .external_lex_state = 3}, + [1473] = {.lex_state = 18, .external_lex_state = 3}, + [1474] = {.lex_state = 18, .external_lex_state = 3}, + [1475] = {.lex_state = 7, .external_lex_state = 3}, + [1476] = {.lex_state = 18, .external_lex_state = 3}, + [1477] = {.lex_state = 18, .external_lex_state = 3}, + [1478] = {.lex_state = 18, .external_lex_state = 3}, + [1479] = {.lex_state = 14, .external_lex_state = 3}, + [1480] = {.lex_state = 18, .external_lex_state = 3}, + [1481] = {.lex_state = 18, .external_lex_state = 3}, + [1482] = {.lex_state = 18, .external_lex_state = 3}, + [1483] = {.lex_state = 14, .external_lex_state = 3}, + [1484] = {.lex_state = 18, .external_lex_state = 3}, + [1485] = {.lex_state = 14, .external_lex_state = 3}, + [1486] = {.lex_state = 9, .external_lex_state = 3}, + [1487] = {.lex_state = 18, .external_lex_state = 3}, + [1488] = {.lex_state = 18, .external_lex_state = 3}, + [1489] = {.lex_state = 18, .external_lex_state = 3}, + [1490] = {.lex_state = 18, .external_lex_state = 3}, + [1491] = {.lex_state = 18, .external_lex_state = 3}, + [1492] = {.lex_state = 18, .external_lex_state = 3}, + [1493] = {.lex_state = 9, .external_lex_state = 3}, [1494] = {.lex_state = 7, .external_lex_state = 3}, [1495] = {.lex_state = 7, .external_lex_state = 3}, [1496] = {.lex_state = 7, .external_lex_state = 3}, [1497] = {.lex_state = 7, .external_lex_state = 3}, - [1498] = {.lex_state = 1, .external_lex_state = 2}, + [1498] = {.lex_state = 7, .external_lex_state = 3}, [1499] = {.lex_state = 9, .external_lex_state = 3}, - [1500] = {.lex_state = 7, .external_lex_state = 3}, - [1501] = {.lex_state = 17, .external_lex_state = 3}, + [1500] = {.lex_state = 18, .external_lex_state = 3}, + [1501] = {.lex_state = 7, .external_lex_state = 3}, [1502] = {.lex_state = 7, .external_lex_state = 3}, - [1503] = {.lex_state = 7, .external_lex_state = 3}, - [1504] = {.lex_state = 7, .external_lex_state = 3}, - [1505] = {.lex_state = 7, .external_lex_state = 3}, - [1506] = {.lex_state = 14, .external_lex_state = 3}, - [1507] = {.lex_state = 17, .external_lex_state = 3}, + [1503] = {.lex_state = 1, .external_lex_state = 2}, + [1504] = {.lex_state = 1, .external_lex_state = 2}, + [1505] = {.lex_state = 15, .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 = 17, .external_lex_state = 3}, + [1510] = {.lex_state = 7, .external_lex_state = 3}, [1511] = {.lex_state = 7, .external_lex_state = 3}, [1512] = {.lex_state = 7, .external_lex_state = 3}, - [1513] = {.lex_state = 17, .external_lex_state = 3}, + [1513] = {.lex_state = 7, .external_lex_state = 3}, [1514] = {.lex_state = 7, .external_lex_state = 3}, - [1515] = {.lex_state = 7, .external_lex_state = 3}, + [1515] = {.lex_state = 15, .external_lex_state = 3}, [1516] = {.lex_state = 7, .external_lex_state = 3}, - [1517] = {.lex_state = 17, .external_lex_state = 3}, - [1518] = {.lex_state = 7, .external_lex_state = 3}, - [1519] = {.lex_state = 7, .external_lex_state = 3}, + [1517] = {.lex_state = 18, .external_lex_state = 3}, + [1518] = {.lex_state = 15, .external_lex_state = 3}, + [1519] = {.lex_state = 4, .external_lex_state = 3}, [1520] = {.lex_state = 7, .external_lex_state = 3}, [1521] = {.lex_state = 7, .external_lex_state = 3}, - [1522] = {.lex_state = 17, .external_lex_state = 3}, + [1522] = {.lex_state = 7, .external_lex_state = 3}, [1523] = {.lex_state = 7, .external_lex_state = 3}, - [1524] = {.lex_state = 7, .external_lex_state = 3}, + [1524] = {.lex_state = 18, .external_lex_state = 3}, [1525] = {.lex_state = 7, .external_lex_state = 3}, - [1526] = {.lex_state = 7, .external_lex_state = 3}, - [1527] = {.lex_state = 4, .external_lex_state = 3}, + [1526] = {.lex_state = 18, .external_lex_state = 3}, + [1527] = {.lex_state = 7, .external_lex_state = 3}, [1528] = {.lex_state = 7, .external_lex_state = 3}, - [1529] = {.lex_state = 17, .external_lex_state = 3}, + [1529] = {.lex_state = 18, .external_lex_state = 3}, [1530] = {.lex_state = 7, .external_lex_state = 3}, [1531] = {.lex_state = 7, .external_lex_state = 3}, - [1532] = {.lex_state = 17, .external_lex_state = 3}, - [1533] = {.lex_state = 14, .external_lex_state = 3}, + [1532] = {.lex_state = 7, .external_lex_state = 3}, + [1533] = {.lex_state = 7, .external_lex_state = 3}, [1534] = {.lex_state = 7, .external_lex_state = 3}, [1535] = {.lex_state = 7, .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}, - [1540] = {.lex_state = 17, .external_lex_state = 3}, + [1538] = {.lex_state = 18, .external_lex_state = 3}, + [1539] = {.lex_state = 18, .external_lex_state = 3}, + [1540] = {.lex_state = 7, .external_lex_state = 3}, [1541] = {.lex_state = 7, .external_lex_state = 3}, [1542] = {.lex_state = 7, .external_lex_state = 3}, - [1543] = {.lex_state = 7, .external_lex_state = 3}, + [1543] = {.lex_state = 18, .external_lex_state = 3}, [1544] = {.lex_state = 7, .external_lex_state = 3}, [1545] = {.lex_state = 7, .external_lex_state = 3}, - [1546] = {.lex_state = 7, .external_lex_state = 3}, - [1547] = {.lex_state = 4, .external_lex_state = 3}, + [1546] = {.lex_state = 18, .external_lex_state = 3}, + [1547] = {.lex_state = 7, .external_lex_state = 3}, [1548] = {.lex_state = 7, .external_lex_state = 3}, - [1549] = {.lex_state = 7, .external_lex_state = 3}, - [1550] = {.lex_state = 14, .external_lex_state = 3}, + [1549] = {.lex_state = 4, .external_lex_state = 3}, + [1550] = {.lex_state = 0, .external_lex_state = 3}, [1551] = {.lex_state = 7, .external_lex_state = 3}, - [1552] = {.lex_state = 7, .external_lex_state = 3}, + [1552] = {.lex_state = 4, .external_lex_state = 3}, [1553] = {.lex_state = 14, .external_lex_state = 3}, [1554] = {.lex_state = 7, .external_lex_state = 3}, - [1555] = {.lex_state = 4, .external_lex_state = 3}, + [1555] = {.lex_state = 7, .external_lex_state = 3}, [1556] = {.lex_state = 7, .external_lex_state = 3}, [1557] = {.lex_state = 7, .external_lex_state = 3}, - [1558] = {.lex_state = 7, .external_lex_state = 3}, - [1559] = {.lex_state = 14, .external_lex_state = 3}, + [1558] = {.lex_state = 15, .external_lex_state = 3}, + [1559] = {.lex_state = 15, .external_lex_state = 3}, [1560] = {.lex_state = 7, .external_lex_state = 3}, - [1561] = {.lex_state = 7, .external_lex_state = 3}, + [1561] = {.lex_state = 15, .external_lex_state = 3}, [1562] = {.lex_state = 7, .external_lex_state = 3}, [1563] = {.lex_state = 7, .external_lex_state = 3}, - [1564] = {.lex_state = 14, .external_lex_state = 3}, - [1565] = {.lex_state = 7, .external_lex_state = 3}, + [1564] = {.lex_state = 7, .external_lex_state = 3}, + [1565] = {.lex_state = 15, .external_lex_state = 3}, [1566] = {.lex_state = 7, .external_lex_state = 3}, - [1567] = {.lex_state = 14, .external_lex_state = 3}, + [1567] = {.lex_state = 15, .external_lex_state = 3}, [1568] = {.lex_state = 7, .external_lex_state = 3}, - [1569] = {.lex_state = 14, .external_lex_state = 3}, - [1570] = {.lex_state = 14, .external_lex_state = 3}, - [1571] = {.lex_state = 7, .external_lex_state = 3}, - [1572] = {.lex_state = 7, .external_lex_state = 3}, - [1573] = {.lex_state = 7, .external_lex_state = 3}, + [1569] = {.lex_state = 7, .external_lex_state = 3}, + [1570] = {.lex_state = 7, .external_lex_state = 3}, + [1571] = {.lex_state = 4, .external_lex_state = 3}, + [1572] = {.lex_state = 15, .external_lex_state = 3}, + [1573] = {.lex_state = 15, .external_lex_state = 3}, [1574] = {.lex_state = 7, .external_lex_state = 3}, - [1575] = {.lex_state = 13, .external_lex_state = 3}, - [1576] = {.lex_state = 0, .external_lex_state = 3}, - [1577] = {.lex_state = 7, .external_lex_state = 3}, - [1578] = {.lex_state = 14, .external_lex_state = 3}, + [1575] = {.lex_state = 7, .external_lex_state = 3}, + [1576] = {.lex_state = 7, .external_lex_state = 3}, + [1577] = {.lex_state = 15, .external_lex_state = 3}, + [1578] = {.lex_state = 7, .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 = 4, .external_lex_state = 3}, + [1582] = {.lex_state = 7, .external_lex_state = 3}, [1583] = {.lex_state = 7, .external_lex_state = 3}, - [1584] = {.lex_state = 14, .external_lex_state = 3}, + [1584] = {.lex_state = 15, .external_lex_state = 3}, [1585] = {.lex_state = 7, .external_lex_state = 3}, - [1586] = {.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 = 7, .external_lex_state = 3}, [1589] = {.lex_state = 7, .external_lex_state = 3}, - [1590] = {.lex_state = 0, .external_lex_state = 3}, - [1591] = {.lex_state = 7, .external_lex_state = 3}, + [1590] = {.lex_state = 15, .external_lex_state = 3}, + [1591] = {.lex_state = 0, .external_lex_state = 3}, [1592] = {.lex_state = 0, .external_lex_state = 3}, - [1593] = {.lex_state = 7, .external_lex_state = 3}, + [1593] = {.lex_state = 0, .external_lex_state = 3}, [1594] = {.lex_state = 0, .external_lex_state = 3}, [1595] = {.lex_state = 0, .external_lex_state = 3}, - [1596] = {.lex_state = 7, .external_lex_state = 3}, - [1597] = {.lex_state = 7, .external_lex_state = 3}, + [1596] = {.lex_state = 0, .external_lex_state = 3}, + [1597] = {.lex_state = 0, .external_lex_state = 3}, [1598] = {.lex_state = 0, .external_lex_state = 3}, - [1599] = {.lex_state = 7, .external_lex_state = 3}, - [1600] = {.lex_state = 7, .external_lex_state = 3}, - [1601] = {.lex_state = 14, .external_lex_state = 3}, + [1599] = {.lex_state = 0, .external_lex_state = 3}, + [1600] = {.lex_state = 0, .external_lex_state = 3}, + [1601] = {.lex_state = 7, .external_lex_state = 3}, [1602] = {.lex_state = 7, .external_lex_state = 3}, - [1603] = {.lex_state = 0, .external_lex_state = 3}, + [1603] = {.lex_state = 15, .external_lex_state = 3}, [1604] = {.lex_state = 0, .external_lex_state = 3}, [1605] = {.lex_state = 0, .external_lex_state = 3}, - [1606] = {.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 = 0, .external_lex_state = 3}, - [1609] = {.lex_state = 4, .external_lex_state = 3}, - [1610] = {.lex_state = 7, .external_lex_state = 3}, - [1611] = {.lex_state = 7, .external_lex_state = 3}, - [1612] = {.lex_state = 0, .external_lex_state = 3}, - [1613] = {.lex_state = 0, .external_lex_state = 3}, + [1609] = {.lex_state = 7, .external_lex_state = 3}, + [1610] = {.lex_state = 0, .external_lex_state = 3}, + [1611] = {.lex_state = 0, .external_lex_state = 3}, + [1612] = {.lex_state = 4, .external_lex_state = 3}, + [1613] = {.lex_state = 7, .external_lex_state = 3}, [1614] = {.lex_state = 0, .external_lex_state = 3}, [1615] = {.lex_state = 0, .external_lex_state = 3}, - [1616] = {.lex_state = 0, .external_lex_state = 3}, + [1616] = {.lex_state = 7, .external_lex_state = 3}, [1617] = {.lex_state = 7, .external_lex_state = 3}, - [1618] = {.lex_state = 14, .external_lex_state = 3}, + [1618] = {.lex_state = 0, .external_lex_state = 3}, [1619] = {.lex_state = 0, .external_lex_state = 3}, - [1620] = {.lex_state = 0, .external_lex_state = 3}, - [1621] = {.lex_state = 7, .external_lex_state = 3}, - [1622] = {.lex_state = 0, .external_lex_state = 3}, - [1623] = {.lex_state = 14, .external_lex_state = 3}, + [1620] = {.lex_state = 15, .external_lex_state = 3}, + [1621] = {.lex_state = 0, .external_lex_state = 3}, + [1622] = {.lex_state = 7, .external_lex_state = 3}, + [1623] = {.lex_state = 7, .external_lex_state = 3}, [1624] = {.lex_state = 7, .external_lex_state = 3}, [1625] = {.lex_state = 7, .external_lex_state = 3}, [1626] = {.lex_state = 7, .external_lex_state = 3}, - [1627] = {.lex_state = 0, .external_lex_state = 3}, - [1628] = {.lex_state = 0, .external_lex_state = 3}, + [1627] = {.lex_state = 7, .external_lex_state = 3}, + [1628] = {.lex_state = 7, .external_lex_state = 3}, [1629] = {.lex_state = 7, .external_lex_state = 3}, - [1630] = {.lex_state = 14, .external_lex_state = 3}, - [1631] = {.lex_state = 7, .external_lex_state = 3}, + [1630] = {.lex_state = 7, .external_lex_state = 3}, + [1631] = {.lex_state = 15, .external_lex_state = 3}, [1632] = {.lex_state = 7, .external_lex_state = 3}, [1633] = {.lex_state = 7, .external_lex_state = 3}, - [1634] = {.lex_state = 7, .external_lex_state = 3}, + [1634] = {.lex_state = 0, .external_lex_state = 3}, [1635] = {.lex_state = 7, .external_lex_state = 3}, - [1636] = {.lex_state = 10, .external_lex_state = 3}, + [1636] = {.lex_state = 0, .external_lex_state = 3}, [1637] = {.lex_state = 7, .external_lex_state = 3}, - [1638] = {.lex_state = 10, .external_lex_state = 3}, - [1639] = {.lex_state = 7, .external_lex_state = 3}, + [1638] = {.lex_state = 7, .external_lex_state = 3}, + [1639] = {.lex_state = 4, .external_lex_state = 3}, [1640] = {.lex_state = 7, .external_lex_state = 3}, [1641] = {.lex_state = 7, .external_lex_state = 3}, - [1642] = {.lex_state = 7, .external_lex_state = 3}, + [1642] = {.lex_state = 18, .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}, + [1644] = {.lex_state = 10, .external_lex_state = 3}, + [1645] = {.lex_state = 18, .external_lex_state = 3}, [1646] = {.lex_state = 7, .external_lex_state = 3}, [1647] = {.lex_state = 7, .external_lex_state = 3}, [1648] = {.lex_state = 7, .external_lex_state = 3}, [1649] = {.lex_state = 7, .external_lex_state = 3}, [1650] = {.lex_state = 7, .external_lex_state = 3}, - [1651] = {.lex_state = 13, .external_lex_state = 3}, - [1652] = {.lex_state = 17, .external_lex_state = 3}, + [1651] = {.lex_state = 7, .external_lex_state = 3}, + [1652] = {.lex_state = 10, .external_lex_state = 3}, [1653] = {.lex_state = 7, .external_lex_state = 3}, - [1654] = {.lex_state = 17, .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 = 17, .external_lex_state = 3}, - [1658] = {.lex_state = 17, .external_lex_state = 3}, - [1659] = {.lex_state = 4, .external_lex_state = 3}, - [1660] = {.lex_state = 14, .external_lex_state = 3}, + [1657] = {.lex_state = 7, .external_lex_state = 3}, + [1658] = {.lex_state = 7, .external_lex_state = 3}, + [1659] = {.lex_state = 7, .external_lex_state = 3}, + [1660] = {.lex_state = 7, .external_lex_state = 3}, [1661] = {.lex_state = 7, .external_lex_state = 3}, - [1662] = {.lex_state = 0, .external_lex_state = 3}, + [1662] = {.lex_state = 7, .external_lex_state = 3}, [1663] = {.lex_state = 7, .external_lex_state = 3}, [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 17, .external_lex_state = 3}, - [1666] = {.lex_state = 4, .external_lex_state = 3}, + [1665] = {.lex_state = 18, .external_lex_state = 3}, + [1666] = {.lex_state = 0, .external_lex_state = 3}, [1667] = {.lex_state = 7, .external_lex_state = 3}, - [1668] = {.lex_state = 0, .external_lex_state = 3}, - [1669] = {.lex_state = 7, .external_lex_state = 3}, + [1668] = {.lex_state = 18, .external_lex_state = 3}, + [1669] = {.lex_state = 10, .external_lex_state = 3}, [1670] = {.lex_state = 7, .external_lex_state = 3}, [1671] = {.lex_state = 7, .external_lex_state = 3}, - [1672] = {.lex_state = 7, .external_lex_state = 3}, + [1672] = {.lex_state = 15, .external_lex_state = 3}, [1673] = {.lex_state = 7, .external_lex_state = 3}, [1674] = {.lex_state = 7, .external_lex_state = 3}, [1675] = {.lex_state = 7, .external_lex_state = 3}, [1676] = {.lex_state = 7, .external_lex_state = 3}, - [1677] = {.lex_state = 10, .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}, [1681] = {.lex_state = 7, .external_lex_state = 3}, - [1682] = {.lex_state = 7, .external_lex_state = 3}, + [1682] = {.lex_state = 18, .external_lex_state = 3}, [1683] = {.lex_state = 7, .external_lex_state = 3}, - [1684] = {.lex_state = 7, .external_lex_state = 3}, + [1684] = {.lex_state = 4, .external_lex_state = 3}, [1685] = {.lex_state = 7, .external_lex_state = 3}, - [1686] = {.lex_state = 17, .external_lex_state = 3}, + [1686] = {.lex_state = 0, .external_lex_state = 3}, [1687] = {.lex_state = 7, .external_lex_state = 3}, - [1688] = {.lex_state = 7, .external_lex_state = 3}, - [1689] = {.lex_state = 7, .external_lex_state = 3}, - [1690] = {.lex_state = 7, .external_lex_state = 3}, - [1691] = {.lex_state = 10, .external_lex_state = 3}, - [1692] = {.lex_state = 7, .external_lex_state = 3}, + [1688] = {.lex_state = 18, .external_lex_state = 3}, + [1689] = {.lex_state = 58, .external_lex_state = 3}, + [1690] = {.lex_state = 58, .external_lex_state = 3}, + [1691] = {.lex_state = 7, .external_lex_state = 3}, + [1692] = {.lex_state = 10, .external_lex_state = 3}, [1693] = {.lex_state = 7, .external_lex_state = 3}, [1694] = {.lex_state = 7, .external_lex_state = 3}, - [1695] = {.lex_state = 57, .external_lex_state = 3}, + [1695] = {.lex_state = 7, .external_lex_state = 3}, [1696] = {.lex_state = 7, .external_lex_state = 3}, - [1697] = {.lex_state = 57, .external_lex_state = 3}, + [1697] = {.lex_state = 7, .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 = 10, .external_lex_state = 3}, - [1702] = {.lex_state = 7, .external_lex_state = 3}, + [1701] = {.lex_state = 7, .external_lex_state = 3}, + [1702] = {.lex_state = 14, .external_lex_state = 3}, [1703] = {.lex_state = 7, .external_lex_state = 3}, [1704] = {.lex_state = 7, .external_lex_state = 3}, [1705] = {.lex_state = 7, .external_lex_state = 3}, - [1706] = {.lex_state = 7, .external_lex_state = 3}, + [1706] = {.lex_state = 18, .external_lex_state = 3}, [1707] = {.lex_state = 7, .external_lex_state = 3}, [1708] = {.lex_state = 7, .external_lex_state = 3}, [1709] = {.lex_state = 7, .external_lex_state = 3}, - [1710] = {.lex_state = 7, .external_lex_state = 3}, - [1711] = {.lex_state = 17, .external_lex_state = 3}, + [1710] = {.lex_state = 18, .external_lex_state = 3}, + [1711] = {.lex_state = 7, .external_lex_state = 3}, [1712] = {.lex_state = 7, .external_lex_state = 3}, [1713] = {.lex_state = 7, .external_lex_state = 3}, - [1714] = {.lex_state = 7, .external_lex_state = 3}, - [1715] = {.lex_state = 13, .external_lex_state = 3}, - [1716] = {.lex_state = 7, .external_lex_state = 3}, - [1717] = {.lex_state = 17, .external_lex_state = 3}, - [1718] = {.lex_state = 7, .external_lex_state = 3}, - [1719] = {.lex_state = 17, .external_lex_state = 3}, + [1714] = {.lex_state = 4, .external_lex_state = 3}, + [1715] = {.lex_state = 10, .external_lex_state = 3}, + [1716] = {.lex_state = 10, .external_lex_state = 3}, + [1717] = {.lex_state = 7, .external_lex_state = 3}, + [1718] = {.lex_state = 18, .external_lex_state = 3}, + [1719] = {.lex_state = 18, .external_lex_state = 3}, [1720] = {.lex_state = 7, .external_lex_state = 3}, - [1721] = {.lex_state = 10, .external_lex_state = 3}, - [1722] = {.lex_state = 4, .external_lex_state = 3}, - [1723] = {.lex_state = 0, .external_lex_state = 3}, + [1721] = {.lex_state = 14, .external_lex_state = 3}, + [1722] = {.lex_state = 7, .external_lex_state = 3}, + [1723] = {.lex_state = 7, .external_lex_state = 3}, [1724] = {.lex_state = 7, .external_lex_state = 3}, - [1725] = {.lex_state = 4, .external_lex_state = 3}, - [1726] = {.lex_state = 17, .external_lex_state = 3}, + [1725] = {.lex_state = 7, .external_lex_state = 3}, + [1726] = {.lex_state = 7, .external_lex_state = 3}, [1727] = {.lex_state = 7, .external_lex_state = 3}, - [1728] = {.lex_state = 10, .external_lex_state = 3}, - [1729] = {.lex_state = 10, .external_lex_state = 3}, - [1730] = {.lex_state = 7, .external_lex_state = 3}, + [1728] = {.lex_state = 7, .external_lex_state = 3}, + [1729] = {.lex_state = 4, .external_lex_state = 3}, + [1730] = {.lex_state = 18, .external_lex_state = 3}, [1731] = {.lex_state = 7, .external_lex_state = 3}, [1732] = {.lex_state = 7, .external_lex_state = 3}, [1733] = {.lex_state = 7, .external_lex_state = 3}, - [1734] = {.lex_state = 17, .external_lex_state = 3}, + [1734] = {.lex_state = 7, .external_lex_state = 3}, [1735] = {.lex_state = 7, .external_lex_state = 3}, - [1736] = {.lex_state = 7, .external_lex_state = 3}, - [1737] = {.lex_state = 0, .external_lex_state = 3}, - [1738] = {.lex_state = 17, .external_lex_state = 3}, - [1739] = {.lex_state = 0, .external_lex_state = 3}, - [1740] = {.lex_state = 57, .external_lex_state = 3}, - [1741] = {.lex_state = 0, .external_lex_state = 3}, - [1742] = {.lex_state = 17, .external_lex_state = 3}, - [1743] = {.lex_state = 17, .external_lex_state = 3}, - [1744] = {.lex_state = 0, .external_lex_state = 3}, - [1745] = {.lex_state = 7, .external_lex_state = 3}, + [1736] = {.lex_state = 58, .external_lex_state = 3}, + [1737] = {.lex_state = 7, .external_lex_state = 3}, + [1738] = {.lex_state = 10, .external_lex_state = 3}, + [1739] = {.lex_state = 10, .external_lex_state = 3}, + [1740] = {.lex_state = 0, .external_lex_state = 3}, + [1741] = {.lex_state = 18, .external_lex_state = 3}, + [1742] = {.lex_state = 0, .external_lex_state = 3}, + [1743] = {.lex_state = 18, .external_lex_state = 3}, + [1744] = {.lex_state = 7, .external_lex_state = 3}, + [1745] = {.lex_state = 10, .external_lex_state = 3}, [1746] = {.lex_state = 10, .external_lex_state = 3}, - [1747] = {.lex_state = 4, .external_lex_state = 3}, - [1748] = {.lex_state = 10, .external_lex_state = 3}, - [1749] = {.lex_state = 17, .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}, + [1747] = {.lex_state = 18, .external_lex_state = 3}, + [1748] = {.lex_state = 7, .external_lex_state = 3}, + [1749] = {.lex_state = 7, .external_lex_state = 3}, + [1750] = {.lex_state = 4, .external_lex_state = 3}, + [1751] = {.lex_state = 7, .external_lex_state = 3}, + [1752] = {.lex_state = 18, .external_lex_state = 3}, [1753] = {.lex_state = 0, .external_lex_state = 3}, - [1754] = {.lex_state = 0, .external_lex_state = 3}, - [1755] = {.lex_state = 10, .external_lex_state = 3}, - [1756] = {.lex_state = 10, .external_lex_state = 3}, - [1757] = {.lex_state = 17, .external_lex_state = 3}, - [1758] = {.lex_state = 7, .external_lex_state = 3}, - [1759] = {.lex_state = 7, .external_lex_state = 3}, - [1760] = {.lex_state = 7, .external_lex_state = 3}, - [1761] = {.lex_state = 7, .external_lex_state = 3}, - [1762] = {.lex_state = 7, .external_lex_state = 3}, - [1763] = {.lex_state = 7, .external_lex_state = 3}, - [1764] = {.lex_state = 17, .external_lex_state = 3}, + [1754] = {.lex_state = 58, .external_lex_state = 3}, + [1755] = {.lex_state = 18, .external_lex_state = 3}, + [1756] = {.lex_state = 7, .external_lex_state = 3}, + [1757] = {.lex_state = 0, .external_lex_state = 3}, + [1758] = {.lex_state = 0, .external_lex_state = 3}, + [1759] = {.lex_state = 18, .external_lex_state = 3}, + [1760] = {.lex_state = 10, .external_lex_state = 3}, + [1761] = {.lex_state = 10, .external_lex_state = 3}, + [1762] = {.lex_state = 18, .external_lex_state = 3}, + [1763] = {.lex_state = 0, .external_lex_state = 3}, + [1764] = {.lex_state = 18, .external_lex_state = 3}, [1765] = {.lex_state = 7, .external_lex_state = 3}, [1766] = {.lex_state = 7, .external_lex_state = 3}, [1767] = {.lex_state = 7, .external_lex_state = 3}, - [1768] = {.lex_state = 7, .external_lex_state = 3}, - [1769] = {.lex_state = 7, .external_lex_state = 3}, - [1770] = {.lex_state = 17, .external_lex_state = 3}, - [1771] = {.lex_state = 57, .external_lex_state = 3}, - [1772] = {.lex_state = 0, .external_lex_state = 3}, - [1773] = {.lex_state = 17, .external_lex_state = 3}, - [1774] = {.lex_state = 0, .external_lex_state = 3}, + [1768] = {.lex_state = 18, .external_lex_state = 3}, + [1769] = {.lex_state = 0, .external_lex_state = 3}, + [1770] = {.lex_state = 7, .external_lex_state = 3}, + [1771] = {.lex_state = 0, .external_lex_state = 3}, + [1772] = {.lex_state = 18, .external_lex_state = 3}, + [1773] = {.lex_state = 7, .external_lex_state = 3}, + [1774] = {.lex_state = 7, .external_lex_state = 3}, [1775] = {.lex_state = 7, .external_lex_state = 3}, - [1776] = {.lex_state = 18, .external_lex_state = 3}, - [1777] = {.lex_state = 17, .external_lex_state = 3}, - [1778] = {.lex_state = 4, .external_lex_state = 3}, - [1779] = {.lex_state = 4, .external_lex_state = 3}, - [1780] = {.lex_state = 4, .external_lex_state = 4}, - [1781] = {.lex_state = 4, .external_lex_state = 3}, - [1782] = {.lex_state = 0, .external_lex_state = 3}, - [1783] = {.lex_state = 57, .external_lex_state = 3}, - [1784] = {.lex_state = 18, .external_lex_state = 3}, - [1785] = {.lex_state = 57, .external_lex_state = 3}, - [1786] = {.lex_state = 18, .external_lex_state = 3}, - [1787] = {.lex_state = 18, .external_lex_state = 3}, - [1788] = {.lex_state = 7, .external_lex_state = 3}, - [1789] = {.lex_state = 57, .external_lex_state = 3}, - [1790] = {.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}, + [1779] = {.lex_state = 18, .external_lex_state = 3}, + [1780] = {.lex_state = 58, .external_lex_state = 3}, + [1781] = {.lex_state = 0, .external_lex_state = 3}, + [1782] = {.lex_state = 18, .external_lex_state = 3}, + [1783] = {.lex_state = 4, .external_lex_state = 3}, + [1784] = {.lex_state = 58, .external_lex_state = 3}, + [1785] = {.lex_state = 58, .external_lex_state = 3}, + [1786] = {.lex_state = 19, .external_lex_state = 3}, + [1787] = {.lex_state = 7, .external_lex_state = 3}, + [1788] = {.lex_state = 58, .external_lex_state = 3}, + [1789] = {.lex_state = 19, .external_lex_state = 3}, + [1790] = {.lex_state = 7, .external_lex_state = 3}, [1791] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, - [1797] = {.lex_state = 17, .external_lex_state = 3}, - [1798] = {.lex_state = 4, .external_lex_state = 4}, - [1799] = {.lex_state = 0, .external_lex_state = 3}, - [1800] = {.lex_state = 17, .external_lex_state = 3}, - [1801] = {.lex_state = 0, .external_lex_state = 3}, - [1802] = {.lex_state = 57, .external_lex_state = 3}, - [1803] = {.lex_state = 57, .external_lex_state = 3}, - [1804] = {.lex_state = 57, .external_lex_state = 3}, - [1805] = {.lex_state = 0, .external_lex_state = 3}, - [1806] = {.lex_state = 7, .external_lex_state = 3}, - [1807] = {.lex_state = 4, .external_lex_state = 4}, - [1808] = {.lex_state = 57, .external_lex_state = 3}, + [1792] = {.lex_state = 0, .external_lex_state = 3}, + [1793] = {.lex_state = 7, .external_lex_state = 3}, + [1794] = {.lex_state = 10, .external_lex_state = 3}, + [1795] = {.lex_state = 7, .external_lex_state = 3}, + [1796] = {.lex_state = 18, .external_lex_state = 3}, + [1797] = {.lex_state = 0, .external_lex_state = 3}, + [1798] = {.lex_state = 10, .external_lex_state = 3}, + [1799] = {.lex_state = 58, .external_lex_state = 3}, + [1800] = {.lex_state = 58, .external_lex_state = 3}, + [1801] = {.lex_state = 7, .external_lex_state = 3}, + [1802] = {.lex_state = 0, .external_lex_state = 3}, + [1803] = {.lex_state = 0, .external_lex_state = 3}, + [1804] = {.lex_state = 58, .external_lex_state = 3}, + [1805] = {.lex_state = 19, .external_lex_state = 3}, + [1806] = {.lex_state = 58, .external_lex_state = 3}, + [1807] = {.lex_state = 58, .external_lex_state = 3}, + [1808] = {.lex_state = 58, .external_lex_state = 3}, [1809] = {.lex_state = 0, .external_lex_state = 3}, - [1810] = {.lex_state = 4, .external_lex_state = 4}, - [1811] = {.lex_state = 57, .external_lex_state = 3}, - [1812] = {.lex_state = 17, .external_lex_state = 3}, - [1813] = {.lex_state = 0, .external_lex_state = 3}, + [1810] = {.lex_state = 58, .external_lex_state = 3}, + [1811] = {.lex_state = 58, .external_lex_state = 3}, + [1812] = {.lex_state = 4, .external_lex_state = 4}, + [1813] = {.lex_state = 58, .external_lex_state = 3}, [1814] = {.lex_state = 7, .external_lex_state = 3}, - [1815] = {.lex_state = 57, .external_lex_state = 3}, - [1816] = {.lex_state = 7, .external_lex_state = 3}, - [1817] = {.lex_state = 57, .external_lex_state = 3}, - [1818] = {.lex_state = 7, .external_lex_state = 3}, - [1819] = {.lex_state = 7, .external_lex_state = 3}, - [1820] = {.lex_state = 57, .external_lex_state = 3}, - [1821] = {.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 = 57, .external_lex_state = 3}, - [1825] = {.lex_state = 7, .external_lex_state = 3}, - [1826] = {.lex_state = 7, .external_lex_state = 3}, + [1815] = {.lex_state = 58, .external_lex_state = 3}, + [1816] = {.lex_state = 18, .external_lex_state = 3}, + [1817] = {.lex_state = 18, .external_lex_state = 3}, + [1818] = {.lex_state = 4, .external_lex_state = 4}, + [1819] = {.lex_state = 19, .external_lex_state = 3}, + [1820] = {.lex_state = 58, .external_lex_state = 3}, + [1821] = {.lex_state = 58, .external_lex_state = 3}, + [1822] = {.lex_state = 0, .external_lex_state = 3}, + [1823] = {.lex_state = 58, .external_lex_state = 3}, + [1824] = {.lex_state = 7, .external_lex_state = 3}, + [1825] = {.lex_state = 58, .external_lex_state = 3}, + [1826] = {.lex_state = 18, .external_lex_state = 3}, [1827] = {.lex_state = 7, .external_lex_state = 3}, - [1828] = {.lex_state = 7, .external_lex_state = 3}, + [1828] = {.lex_state = 0, .external_lex_state = 3}, [1829] = {.lex_state = 7, .external_lex_state = 3}, - [1830] = {.lex_state = 4, .external_lex_state = 3}, - [1831] = {.lex_state = 0, .external_lex_state = 3}, - [1832] = {.lex_state = 17, .external_lex_state = 3}, + [1830] = {.lex_state = 0, .external_lex_state = 3}, + [1831] = {.lex_state = 7, .external_lex_state = 3}, + [1832] = {.lex_state = 4, .external_lex_state = 4}, [1833] = {.lex_state = 7, .external_lex_state = 3}, - [1834] = {.lex_state = 57, .external_lex_state = 3}, - [1835] = {.lex_state = 57, .external_lex_state = 3}, - [1836] = {.lex_state = 57, .external_lex_state = 3}, - [1837] = {.lex_state = 57, .external_lex_state = 3}, - [1838] = {.lex_state = 57, .external_lex_state = 3}, - [1839] = {.lex_state = 7, .external_lex_state = 3}, - [1840] = {.lex_state = 17, .external_lex_state = 3}, + [1834] = {.lex_state = 58, .external_lex_state = 3}, + [1835] = {.lex_state = 0, .external_lex_state = 3}, + [1836] = {.lex_state = 4, .external_lex_state = 4}, + [1837] = {.lex_state = 4, .external_lex_state = 3}, + [1838] = {.lex_state = 4, .external_lex_state = 4}, + [1839] = {.lex_state = 0, .external_lex_state = 3}, + [1840] = {.lex_state = 58, .external_lex_state = 3}, [1841] = {.lex_state = 7, .external_lex_state = 3}, - [1842] = {.lex_state = 10, .external_lex_state = 3}, - [1843] = {.lex_state = 7, .external_lex_state = 3}, - [1844] = {.lex_state = 17, .external_lex_state = 3}, - [1845] = {.lex_state = 0, .external_lex_state = 3}, - [1846] = {.lex_state = 10, .external_lex_state = 3}, - [1847] = {.lex_state = 57, .external_lex_state = 3}, - [1848] = {.lex_state = 57, .external_lex_state = 3}, - [1849] = {.lex_state = 7, .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}, + [1842] = {.lex_state = 0, .external_lex_state = 3}, + [1843] = {.lex_state = 58, .external_lex_state = 3}, + [1844] = {.lex_state = 0, .external_lex_state = 3}, + [1845] = {.lex_state = 7, .external_lex_state = 3}, + [1846] = {.lex_state = 0, .external_lex_state = 3}, + [1847] = {.lex_state = 4, .external_lex_state = 3}, + [1848] = {.lex_state = 18, .external_lex_state = 3}, + [1849] = {.lex_state = 4, .external_lex_state = 4}, + [1850] = {.lex_state = 4, .external_lex_state = 3}, + [1851] = {.lex_state = 7, .external_lex_state = 3}, + [1852] = {.lex_state = 7, .external_lex_state = 3}, [1853] = {.lex_state = 7, .external_lex_state = 3}, - [1854] = {.lex_state = 0, .external_lex_state = 3}, - [1855] = {.lex_state = 57, .external_lex_state = 3}, - [1856] = {.lex_state = 17, .external_lex_state = 3}, - [1857] = {.lex_state = 57, .external_lex_state = 3}, - [1858] = {.lex_state = 7, .external_lex_state = 3}, + [1854] = {.lex_state = 58, .external_lex_state = 3}, + [1855] = {.lex_state = 18, .external_lex_state = 3}, + [1856] = {.lex_state = 58, .external_lex_state = 3}, + [1857] = {.lex_state = 7, .external_lex_state = 3}, + [1858] = {.lex_state = 58, .external_lex_state = 3}, [1859] = {.lex_state = 0, .external_lex_state = 3}, - [1860] = {.lex_state = 0, .external_lex_state = 3}, - [1861] = {.lex_state = 4, .external_lex_state = 4}, - [1862] = {.lex_state = 0, .external_lex_state = 3}, + [1860] = {.lex_state = 4, .external_lex_state = 4}, + [1861] = {.lex_state = 7, .external_lex_state = 3}, + [1862] = {.lex_state = 58, .external_lex_state = 3}, [1863] = {.lex_state = 0, .external_lex_state = 3}, - [1864] = {.lex_state = 17, .external_lex_state = 3}, - [1865] = {.lex_state = 0, .external_lex_state = 3}, - [1866] = {.lex_state = 4, .external_lex_state = 4}, - [1867] = {.lex_state = 7, .external_lex_state = 3}, - [1868] = {.lex_state = 0, .external_lex_state = 3}, - [1869] = {.lex_state = 57, .external_lex_state = 3}, - [1870] = {.lex_state = 57, .external_lex_state = 3}, - [1871] = {.lex_state = 7, .external_lex_state = 3}, - [1872] = {.lex_state = 57, .external_lex_state = 3}, - [1873] = {.lex_state = 57, .external_lex_state = 3}, - [1874] = {.lex_state = 7, .external_lex_state = 3}, - [1875] = {.lex_state = 0, .external_lex_state = 3}, - [1876] = {.lex_state = 57, .external_lex_state = 3}, - [1877] = {.lex_state = 0, .external_lex_state = 3}, - [1878] = {.lex_state = 0, .external_lex_state = 3}, - [1879] = {.lex_state = 17, .external_lex_state = 3}, - [1880] = {.lex_state = 57, .external_lex_state = 3}, - [1881] = {.lex_state = 57, .external_lex_state = 3}, - [1882] = {.lex_state = 0, .external_lex_state = 3}, - [1883] = {.lex_state = 7, .external_lex_state = 3}, - [1884] = {.lex_state = 0, .external_lex_state = 3}, - [1885] = {.lex_state = 7, .external_lex_state = 3}, + [1864] = {.lex_state = 7, .external_lex_state = 3}, + [1865] = {.lex_state = 18, .external_lex_state = 3}, + [1866] = {.lex_state = 7, .external_lex_state = 3}, + [1867] = {.lex_state = 0, .external_lex_state = 3}, + [1868] = {.lex_state = 7, .external_lex_state = 3}, + [1869] = {.lex_state = 58, .external_lex_state = 3}, + [1870] = {.lex_state = 7, .external_lex_state = 3}, + [1871] = {.lex_state = 18, .external_lex_state = 3}, + [1872] = {.lex_state = 7, .external_lex_state = 3}, + [1873] = {.lex_state = 18, .external_lex_state = 3}, + [1874] = {.lex_state = 0, .external_lex_state = 3}, + [1875] = {.lex_state = 58, .external_lex_state = 3}, + [1876] = {.lex_state = 0, .external_lex_state = 3}, + [1877] = {.lex_state = 58, .external_lex_state = 3}, + [1878] = {.lex_state = 4, .external_lex_state = 4}, + [1879] = {.lex_state = 58, .external_lex_state = 3}, + [1880] = {.lex_state = 4, .external_lex_state = 4}, + [1881] = {.lex_state = 0, .external_lex_state = 3}, + [1882] = {.lex_state = 58, .external_lex_state = 3}, + [1883] = {.lex_state = 10, .external_lex_state = 3}, + [1884] = {.lex_state = 58, .external_lex_state = 3}, + [1885] = {.lex_state = 0, .external_lex_state = 3}, [1886] = {.lex_state = 7, .external_lex_state = 3}, - [1887] = {.lex_state = 0, .external_lex_state = 3}, - [1888] = {.lex_state = 0, .external_lex_state = 3}, - [1889] = {.lex_state = 57, .external_lex_state = 3}, - [1890] = {.lex_state = 57, .external_lex_state = 3}, - [1891] = {.lex_state = 57, .external_lex_state = 3}, + [1887] = {.lex_state = 3, .external_lex_state = 3}, + [1888] = {.lex_state = 7, .external_lex_state = 3}, + [1889] = {.lex_state = 0, .external_lex_state = 3}, + [1890] = {.lex_state = 0, .external_lex_state = 3}, + [1891] = {.lex_state = 0, .external_lex_state = 3}, [1892] = {.lex_state = 0, .external_lex_state = 3}, - [1893] = {.lex_state = 57, .external_lex_state = 3}, - [1894] = {.lex_state = 0, .external_lex_state = 3}, - [1895] = {.lex_state = 57, .external_lex_state = 3}, - [1896] = {.lex_state = 57, .external_lex_state = 3}, - [1897] = {.lex_state = 57, .external_lex_state = 3}, + [1893] = {.lex_state = 3, .external_lex_state = 3}, + [1894] = {.lex_state = 58, .external_lex_state = 3}, + [1895] = {.lex_state = 58, .external_lex_state = 3}, + [1896] = {.lex_state = 58, .external_lex_state = 3}, + [1897] = {.lex_state = 0, .external_lex_state = 3}, [1898] = {.lex_state = 0, .external_lex_state = 3}, - [1899] = {.lex_state = 7, .external_lex_state = 3}, - [1900] = {.lex_state = 57, .external_lex_state = 3}, - [1901] = {.lex_state = 0, .external_lex_state = 3}, - [1902] = {.lex_state = 0, .external_lex_state = 3}, - [1903] = {.lex_state = 7, .external_lex_state = 3}, - [1904] = {.lex_state = 0, .external_lex_state = 3}, - [1905] = {.lex_state = 57, .external_lex_state = 3}, + [1899] = {.lex_state = 0, .external_lex_state = 3}, + [1900] = {.lex_state = 58, .external_lex_state = 3}, + [1901] = {.lex_state = 3, .external_lex_state = 3}, + [1902] = {.lex_state = 3, .external_lex_state = 3}, + [1903] = {.lex_state = 0, .external_lex_state = 3}, + [1904] = {.lex_state = 58, .external_lex_state = 3}, + [1905] = {.lex_state = 58, .external_lex_state = 3}, [1906] = {.lex_state = 0, .external_lex_state = 3}, - [1907] = {.lex_state = 57, .external_lex_state = 3}, - [1908] = {.lex_state = 57, .external_lex_state = 3}, - [1909] = {.lex_state = 7, .external_lex_state = 3}, - [1910] = {.lex_state = 7, .external_lex_state = 3}, - [1911] = {.lex_state = 0, .external_lex_state = 3}, + [1907] = {.lex_state = 0, .external_lex_state = 3}, + [1908] = {.lex_state = 0, .external_lex_state = 3}, + [1909] = {.lex_state = 0, .external_lex_state = 3}, + [1910] = {.lex_state = 0, .external_lex_state = 3}, + [1911] = {.lex_state = 3, .external_lex_state = 3}, [1912] = {.lex_state = 0, .external_lex_state = 3}, - [1913] = {.lex_state = 57, .external_lex_state = 3}, - [1914] = {.lex_state = 0, .external_lex_state = 3}, - [1915] = {.lex_state = 57, .external_lex_state = 3}, + [1913] = {.lex_state = 0, .external_lex_state = 3}, + [1914] = {.lex_state = 7, .external_lex_state = 3}, + [1915] = {.lex_state = 0, .external_lex_state = 3}, [1916] = {.lex_state = 0, .external_lex_state = 3}, - [1917] = {.lex_state = 0, .external_lex_state = 3}, - [1918] = {.lex_state = 0, .external_lex_state = 3}, - [1919] = {.lex_state = 7, .external_lex_state = 3}, + [1917] = {.lex_state = 3, .external_lex_state = 3}, + [1918] = {.lex_state = 3, .external_lex_state = 3}, + [1919] = {.lex_state = 58, .external_lex_state = 3}, [1920] = {.lex_state = 0, .external_lex_state = 3}, - [1921] = {.lex_state = 0, .external_lex_state = 3}, + [1921] = {.lex_state = 7, .external_lex_state = 3}, [1922] = {.lex_state = 0, .external_lex_state = 3}, - [1923] = {.lex_state = 10, .external_lex_state = 3}, - [1924] = {.lex_state = 7, .external_lex_state = 3}, - [1925] = {.lex_state = 57, .external_lex_state = 3}, - [1926] = {.lex_state = 57, .external_lex_state = 3}, - [1927] = {.lex_state = 57, .external_lex_state = 3}, - [1928] = {.lex_state = 0, .external_lex_state = 3}, - [1929] = {.lex_state = 57, .external_lex_state = 3}, - [1930] = {.lex_state = 57, .external_lex_state = 3}, - [1931] = {.lex_state = 0, .external_lex_state = 3}, - [1932] = {.lex_state = 57, .external_lex_state = 3}, + [1923] = {.lex_state = 0, .external_lex_state = 3}, + [1924] = {.lex_state = 0, .external_lex_state = 3}, + [1925] = {.lex_state = 0, .external_lex_state = 3}, + [1926] = {.lex_state = 0, .external_lex_state = 3}, + [1927] = {.lex_state = 7, .external_lex_state = 3}, + [1928] = {.lex_state = 58, .external_lex_state = 3}, + [1929] = {.lex_state = 0, .external_lex_state = 3}, + [1930] = {.lex_state = 58, .external_lex_state = 3}, + [1931] = {.lex_state = 58, .external_lex_state = 3}, + [1932] = {.lex_state = 7, .external_lex_state = 3}, [1933] = {.lex_state = 0, .external_lex_state = 3}, - [1934] = {.lex_state = 0, .external_lex_state = 3}, - [1935] = {.lex_state = 7, .external_lex_state = 3}, + [1934] = {.lex_state = 7, .external_lex_state = 3}, + [1935] = {.lex_state = 4, .external_lex_state = 3}, [1936] = {.lex_state = 0, .external_lex_state = 3}, - [1937] = {.lex_state = 0, .external_lex_state = 3}, - [1938] = {.lex_state = 0, .external_lex_state = 3}, - [1939] = {.lex_state = 0, .external_lex_state = 3}, + [1937] = {.lex_state = 3, .external_lex_state = 3}, + [1938] = {.lex_state = 3, .external_lex_state = 3}, + [1939] = {.lex_state = 58, .external_lex_state = 3}, [1940] = {.lex_state = 0, .external_lex_state = 3}, - [1941] = {.lex_state = 0, .external_lex_state = 3}, + [1941] = {.lex_state = 7, .external_lex_state = 3}, [1942] = {.lex_state = 0, .external_lex_state = 3}, - [1943] = {.lex_state = 57, .external_lex_state = 3}, - [1944] = {.lex_state = 57, .external_lex_state = 3}, - [1945] = {.lex_state = 57, .external_lex_state = 3}, - [1946] = {.lex_state = 0, .external_lex_state = 3}, - [1947] = {.lex_state = 0, .external_lex_state = 3}, - [1948] = {.lex_state = 7, .external_lex_state = 3}, + [1943] = {.lex_state = 0, .external_lex_state = 3}, + [1944] = {.lex_state = 0, .external_lex_state = 3}, + [1945] = {.lex_state = 0, .external_lex_state = 3}, + [1946] = {.lex_state = 58, .external_lex_state = 3}, + [1947] = {.lex_state = 3, .external_lex_state = 3}, + [1948] = {.lex_state = 0, .external_lex_state = 3}, [1949] = {.lex_state = 0, .external_lex_state = 3}, [1950] = {.lex_state = 0, .external_lex_state = 3}, [1951] = {.lex_state = 0, .external_lex_state = 3}, - [1952] = {.lex_state = 0, .external_lex_state = 3}, - [1953] = {.lex_state = 0, .external_lex_state = 3}, + [1952] = {.lex_state = 7, .external_lex_state = 3}, + [1953] = {.lex_state = 7, .external_lex_state = 3}, [1954] = {.lex_state = 0, .external_lex_state = 3}, [1955] = {.lex_state = 0, .external_lex_state = 3}, - [1956] = {.lex_state = 7, .external_lex_state = 3}, - [1957] = {.lex_state = 3, .external_lex_state = 3}, - [1958] = {.lex_state = 10, .external_lex_state = 3}, + [1956] = {.lex_state = 58, .external_lex_state = 3}, + [1957] = {.lex_state = 0, .external_lex_state = 3}, + [1958] = {.lex_state = 0, .external_lex_state = 3}, [1959] = {.lex_state = 0, .external_lex_state = 3}, [1960] = {.lex_state = 0, .external_lex_state = 3}, - [1961] = {.lex_state = 0, .external_lex_state = 3}, - [1962] = {.lex_state = 0, .external_lex_state = 3}, + [1961] = {.lex_state = 10, .external_lex_state = 3}, + [1962] = {.lex_state = 58, .external_lex_state = 3}, [1963] = {.lex_state = 0, .external_lex_state = 3}, - [1964] = {.lex_state = 57, .external_lex_state = 3}, + [1964] = {.lex_state = 58, .external_lex_state = 3}, [1965] = {.lex_state = 0, .external_lex_state = 3}, - [1966] = {.lex_state = 0, .external_lex_state = 3}, + [1966] = {.lex_state = 7, .external_lex_state = 3}, [1967] = {.lex_state = 0, .external_lex_state = 3}, [1968] = {.lex_state = 0, .external_lex_state = 3}, - [1969] = {.lex_state = 57, .external_lex_state = 3}, - [1970] = {.lex_state = 7, .external_lex_state = 3}, + [1969] = {.lex_state = 0, .external_lex_state = 3}, + [1970] = {.lex_state = 0, .external_lex_state = 3}, [1971] = {.lex_state = 0, .external_lex_state = 3}, [1972] = {.lex_state = 0, .external_lex_state = 3}, [1973] = {.lex_state = 0, .external_lex_state = 3}, [1974] = {.lex_state = 0, .external_lex_state = 3}, - [1975] = {.lex_state = 57, .external_lex_state = 3}, + [1975] = {.lex_state = 10, .external_lex_state = 3}, [1976] = {.lex_state = 0, .external_lex_state = 3}, [1977] = {.lex_state = 0, .external_lex_state = 3}, - [1978] = {.lex_state = 57, .external_lex_state = 3}, - [1979] = {.lex_state = 3, .external_lex_state = 3}, - [1980] = {.lex_state = 7, .external_lex_state = 3}, - [1981] = {.lex_state = 0, .external_lex_state = 3}, - [1982] = {.lex_state = 3, .external_lex_state = 3}, + [1978] = {.lex_state = 10, .external_lex_state = 3}, + [1979] = {.lex_state = 58, .external_lex_state = 3}, + [1980] = {.lex_state = 0, .external_lex_state = 3}, + [1981] = {.lex_state = 58, .external_lex_state = 3}, + [1982] = {.lex_state = 58, .external_lex_state = 3}, [1983] = {.lex_state = 0, .external_lex_state = 3}, - [1984] = {.lex_state = 3, .external_lex_state = 3}, - [1985] = {.lex_state = 3, .external_lex_state = 3}, - [1986] = {.lex_state = 0, .external_lex_state = 3}, - [1987] = {.lex_state = 57, .external_lex_state = 3}, - [1988] = {.lex_state = 57, .external_lex_state = 3}, - [1989] = {.lex_state = 57, .external_lex_state = 3}, + [1984] = {.lex_state = 58, .external_lex_state = 3}, + [1985] = {.lex_state = 0, .external_lex_state = 3}, + [1986] = {.lex_state = 58, .external_lex_state = 3}, + [1987] = {.lex_state = 0, .external_lex_state = 3}, + [1988] = {.lex_state = 3, .external_lex_state = 3}, + [1989] = {.lex_state = 0, .external_lex_state = 3}, [1990] = {.lex_state = 3, .external_lex_state = 3}, - [1991] = {.lex_state = 0, .external_lex_state = 3}, - [1992] = {.lex_state = 0, .external_lex_state = 3}, - [1993] = {.lex_state = 0, .external_lex_state = 3}, - [1994] = {.lex_state = 10, .external_lex_state = 3}, + [1991] = {.lex_state = 58, .external_lex_state = 3}, + [1992] = {.lex_state = 4, .external_lex_state = 3}, + [1993] = {.lex_state = 3, .external_lex_state = 3}, + [1994] = {.lex_state = 3, .external_lex_state = 3}, [1995] = {.lex_state = 0, .external_lex_state = 3}, - [1996] = {.lex_state = 57, .external_lex_state = 3}, - [1997] = {.lex_state = 0, .external_lex_state = 3}, - [1998] = {.lex_state = 57, .external_lex_state = 3}, - [1999] = {.lex_state = 3, .external_lex_state = 3}, - [2000] = {.lex_state = 3, .external_lex_state = 3}, + [1996] = {.lex_state = 58, .external_lex_state = 3}, + [1997] = {.lex_state = 58, .external_lex_state = 3}, + [1998] = {.lex_state = 0, .external_lex_state = 3}, + [1999] = {.lex_state = 0, .external_lex_state = 3}, + [2000] = {.lex_state = 58, .external_lex_state = 3}, [2001] = {.lex_state = 0, .external_lex_state = 3}, - [2002] = {.lex_state = 4, .external_lex_state = 3}, - [2003] = {.lex_state = 3, .external_lex_state = 3}, - [2004] = {.lex_state = 3, .external_lex_state = 3}, - [2005] = {.lex_state = 7, .external_lex_state = 3}, - [2006] = {.lex_state = 57, .external_lex_state = 3}, - [2007] = {.lex_state = 3, .external_lex_state = 3}, + [2002] = {.lex_state = 0, .external_lex_state = 3}, + [2003] = {.lex_state = 0, .external_lex_state = 3}, + [2004] = {.lex_state = 58, .external_lex_state = 3}, + [2005] = {.lex_state = 10, .external_lex_state = 3}, + [2006] = {.lex_state = 58, .external_lex_state = 3}, + [2007] = {.lex_state = 0, .external_lex_state = 3}, [2008] = {.lex_state = 3, .external_lex_state = 3}, - [2009] = {.lex_state = 3, .external_lex_state = 3}, - [2010] = {.lex_state = 57, .external_lex_state = 3}, - [2011] = {.lex_state = 57, .external_lex_state = 3}, - [2012] = {.lex_state = 57, .external_lex_state = 3}, - [2013] = {.lex_state = 4, .external_lex_state = 3}, - [2014] = {.lex_state = 7, .external_lex_state = 3}, - [2015] = {.lex_state = 3, .external_lex_state = 3}, - [2016] = {.lex_state = 7, .external_lex_state = 3}, - [2017] = {.lex_state = 57, .external_lex_state = 3}, + [2009] = {.lex_state = 0, .external_lex_state = 3}, + [2010] = {.lex_state = 0, .external_lex_state = 3}, + [2011] = {.lex_state = 0, .external_lex_state = 3}, + [2012] = {.lex_state = 3, .external_lex_state = 3}, + [2013] = {.lex_state = 0, .external_lex_state = 3}, + [2014] = {.lex_state = 0, .external_lex_state = 3}, + [2015] = {.lex_state = 7, .external_lex_state = 3}, + [2016] = {.lex_state = 58, .external_lex_state = 3}, + [2017] = {.lex_state = 0, .external_lex_state = 3}, [2018] = {.lex_state = 0, .external_lex_state = 3}, - [2019] = {.lex_state = 3, .external_lex_state = 3}, + [2019] = {.lex_state = 0, .external_lex_state = 3}, [2020] = {.lex_state = 0, .external_lex_state = 3}, - [2021] = {.lex_state = 0, .external_lex_state = 3}, - [2022] = {.lex_state = 57, .external_lex_state = 3}, - [2023] = {.lex_state = 57, .external_lex_state = 3}, - [2024] = {.lex_state = 57, .external_lex_state = 3}, - [2025] = {.lex_state = 7, .external_lex_state = 3}, - [2026] = {.lex_state = 57, .external_lex_state = 3}, - [2027] = {.lex_state = 3, .external_lex_state = 3}, - [2028] = {.lex_state = 57, .external_lex_state = 3}, - [2029] = {.lex_state = 0, .external_lex_state = 3}, + [2021] = {.lex_state = 58, .external_lex_state = 3}, + [2022] = {.lex_state = 0, .external_lex_state = 3}, + [2023] = {.lex_state = 0, .external_lex_state = 3}, + [2024] = {.lex_state = 0, .external_lex_state = 3}, + [2025] = {.lex_state = 58, .external_lex_state = 3}, + [2026] = {.lex_state = 0, .external_lex_state = 3}, + [2027] = {.lex_state = 0, .external_lex_state = 3}, + [2028] = {.lex_state = 0, .external_lex_state = 3}, + [2029] = {.lex_state = 7, .external_lex_state = 3}, [2030] = {.lex_state = 0, .external_lex_state = 3}, - [2031] = {.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 = 3, .external_lex_state = 3}, - [2034] = {.lex_state = 3, .external_lex_state = 3}, - [2035] = {.lex_state = 57, .external_lex_state = 3}, + [2034] = {.lex_state = 0, .external_lex_state = 3}, + [2035] = {.lex_state = 0, .external_lex_state = 3}, [2036] = {.lex_state = 0, .external_lex_state = 3}, - [2037] = {.lex_state = 0, .external_lex_state = 3}, - [2038] = {.lex_state = 10, .external_lex_state = 3}, - [2039] = {.lex_state = 57, .external_lex_state = 3}, - [2040] = {.lex_state = 57, .external_lex_state = 3}, - [2041] = {.lex_state = 57, .external_lex_state = 3}, + [2037] = {.lex_state = 58, .external_lex_state = 3}, + [2038] = {.lex_state = 58, .external_lex_state = 3}, + [2039] = {.lex_state = 0, .external_lex_state = 3}, + [2040] = {.lex_state = 0, .external_lex_state = 3}, + [2041] = {.lex_state = 0, .external_lex_state = 3}, [2042] = {.lex_state = 0, .external_lex_state = 3}, - [2043] = {.lex_state = 0, .external_lex_state = 3}, - [2044] = {.lex_state = 0, .external_lex_state = 3}, - [2045] = {.lex_state = 0, .external_lex_state = 3}, + [2043] = {.lex_state = 58, .external_lex_state = 3}, + [2044] = {.lex_state = 58, .external_lex_state = 3}, + [2045] = {.lex_state = 58, .external_lex_state = 3}, [2046] = {.lex_state = 0, .external_lex_state = 3}, - [2047] = {.lex_state = 0, .external_lex_state = 3}, - [2048] = {.lex_state = 10, .external_lex_state = 3}, - [2049] = {.lex_state = 0, .external_lex_state = 3}, + [2047] = {.lex_state = 58, .external_lex_state = 3}, + [2048] = {.lex_state = 0, .external_lex_state = 3}, + [2049] = {.lex_state = 58, .external_lex_state = 3}, [2050] = {.lex_state = 0, .external_lex_state = 3}, - [2051] = {.lex_state = 7, .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 = 57, .external_lex_state = 3}, - [2056] = {.lex_state = 0, .external_lex_state = 3}, - [2057] = {.lex_state = 57, .external_lex_state = 3}, - [2058] = {.lex_state = 57, .external_lex_state = 3}, - [2059] = {.lex_state = 57, .external_lex_state = 3}, + [2054] = {.lex_state = 3, .external_lex_state = 3}, + [2055] = {.lex_state = 58, .external_lex_state = 3}, + [2056] = {.lex_state = 58, .external_lex_state = 3}, + [2057] = {.lex_state = 0, .external_lex_state = 3}, + [2058] = {.lex_state = 0, .external_lex_state = 3}, + [2059] = {.lex_state = 58, .external_lex_state = 3}, [2060] = {.lex_state = 0, .external_lex_state = 3}, - [2061] = {.lex_state = 0, .external_lex_state = 3}, - [2062] = {.lex_state = 0, .external_lex_state = 3}, - [2063] = {.lex_state = 0, .external_lex_state = 3}, + [2061] = {.lex_state = 58, .external_lex_state = 3}, + [2062] = {.lex_state = 7, .external_lex_state = 3}, + [2063] = {.lex_state = 58, .external_lex_state = 3}, [2064] = {.lex_state = 0, .external_lex_state = 3}, [2065] = {.lex_state = 0, .external_lex_state = 3}, [2066] = {.lex_state = 0, .external_lex_state = 3}, - [2067] = {.lex_state = 57, .external_lex_state = 3}, - [2068] = {.lex_state = 0, .external_lex_state = 3}, + [2067] = {.lex_state = 7, .external_lex_state = 3}, + [2068] = {.lex_state = 7, .external_lex_state = 3}, [2069] = {.lex_state = 0, .external_lex_state = 3}, - [2070] = {.lex_state = 0, .external_lex_state = 3}, - [2071] = {.lex_state = 0, .external_lex_state = 3}, + [2070] = {.lex_state = 7, .external_lex_state = 3}, + [2071] = {.lex_state = 7, .external_lex_state = 3}, [2072] = {.lex_state = 0, .external_lex_state = 3}, [2073] = {.lex_state = 0, .external_lex_state = 3}, - [2074] = {.lex_state = 0, .external_lex_state = 3}, - [2075] = {.lex_state = 7, .external_lex_state = 3}, - [2076] = {.lex_state = 57, .external_lex_state = 3}, + [2074] = {.lex_state = 7, .external_lex_state = 3}, + [2075] = {.lex_state = 58, .external_lex_state = 3}, + [2076] = {.lex_state = 58, .external_lex_state = 3}, [2077] = {.lex_state = 0, .external_lex_state = 3}, - [2078] = {.lex_state = 3, .external_lex_state = 3}, + [2078] = {.lex_state = 0, .external_lex_state = 3}, [2079] = {.lex_state = 0, .external_lex_state = 3}, - [2080] = {.lex_state = 0, .external_lex_state = 3}, - [2081] = {.lex_state = 3, .external_lex_state = 3}, - [2082] = {.lex_state = 57, .external_lex_state = 3}, - [2083] = {.lex_state = 0, .external_lex_state = 3}, - [2084] = {.lex_state = 57, .external_lex_state = 3}, - [2085] = {.lex_state = 0, .external_lex_state = 3}, - [2086] = {.lex_state = 0, .external_lex_state = 3}, + [2080] = {.lex_state = 58, .external_lex_state = 3}, + [2081] = {.lex_state = 0, .external_lex_state = 3}, + [2082] = {.lex_state = 7, .external_lex_state = 3}, + [2083] = {.lex_state = 7, .external_lex_state = 3}, + [2084] = {.lex_state = 0, .external_lex_state = 3}, + [2085] = {.lex_state = 58, .external_lex_state = 3}, + [2086] = {.lex_state = 58, .external_lex_state = 3}, [2087] = {.lex_state = 0, .external_lex_state = 3}, - [2088] = {.lex_state = 0, .external_lex_state = 3}, - [2089] = {.lex_state = 0, .external_lex_state = 3}, - [2090] = {.lex_state = 57, .external_lex_state = 3}, + [2088] = {.lex_state = 58, .external_lex_state = 3}, + [2089] = {.lex_state = 58, .external_lex_state = 3}, + [2090] = {.lex_state = 58, .external_lex_state = 3}, [2091] = {.lex_state = 0, .external_lex_state = 3}, [2092] = {.lex_state = 0, .external_lex_state = 3}, - [2093] = {.lex_state = 0, .external_lex_state = 3}, - [2094] = {.lex_state = 57, .external_lex_state = 3}, + [2093] = {.lex_state = 7, .external_lex_state = 3}, + [2094] = {.lex_state = 58, .external_lex_state = 3}, [2095] = {.lex_state = 0, .external_lex_state = 3}, [2096] = {.lex_state = 0, .external_lex_state = 3}, [2097] = {.lex_state = 0, .external_lex_state = 3}, - [2098] = {.lex_state = 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 = 0, .external_lex_state = 3}, - [2102] = {.lex_state = 7, .external_lex_state = 3}, - [2103] = {.lex_state = 7, .external_lex_state = 3}, - [2104] = {.lex_state = 57, .external_lex_state = 3}, + [2101] = {.lex_state = 58, .external_lex_state = 3}, + [2102] = {.lex_state = 58, .external_lex_state = 3}, + [2103] = {.lex_state = 0, .external_lex_state = 3}, + [2104] = {.lex_state = 0, .external_lex_state = 3}, [2105] = {.lex_state = 0, .external_lex_state = 3}, - [2106] = {.lex_state = 0, .external_lex_state = 3}, + [2106] = {.lex_state = 7, .external_lex_state = 3}, [2107] = {.lex_state = 0, .external_lex_state = 3}, - [2108] = {.lex_state = 0, .external_lex_state = 3}, + [2108] = {.lex_state = 58, .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}, - [2112] = {.lex_state = 7, .external_lex_state = 3}, - [2113] = {.lex_state = 0, .external_lex_state = 3}, + [2112] = {.lex_state = 0, .external_lex_state = 3}, + [2113] = {.lex_state = 58, .external_lex_state = 3}, [2114] = {.lex_state = 0, .external_lex_state = 3}, - [2115] = {.lex_state = 57, .external_lex_state = 3}, + [2115] = {.lex_state = 0, .external_lex_state = 3}, [2116] = {.lex_state = 0, .external_lex_state = 3}, [2117] = {.lex_state = 0, .external_lex_state = 3}, [2118] = {.lex_state = 0, .external_lex_state = 3}, - [2119] = {.lex_state = 7, .external_lex_state = 3}, - [2120] = {.lex_state = 0, .external_lex_state = 3}, - [2121] = {.lex_state = 0, .external_lex_state = 3}, - [2122] = {.lex_state = 0, .external_lex_state = 3}, - [2123] = {.lex_state = 0, .external_lex_state = 3}, + [2119] = {.lex_state = 58, .external_lex_state = 3}, + [2120] = {.lex_state = 58, .external_lex_state = 3}, + [2121] = {.lex_state = 7, .external_lex_state = 3}, + [2122] = {.lex_state = 3, .external_lex_state = 3}, + [2123] = {.lex_state = 7, .external_lex_state = 3}, [2124] = {.lex_state = 0, .external_lex_state = 3}, - [2125] = {.lex_state = 57, .external_lex_state = 3}, + [2125] = {.lex_state = 0, .external_lex_state = 3}, [2126] = {.lex_state = 0, .external_lex_state = 3}, - [2127] = {.lex_state = 57, .external_lex_state = 3}, + [2127] = {.lex_state = 3, .external_lex_state = 3}, [2128] = {.lex_state = 0, .external_lex_state = 3}, [2129] = {.lex_state = 0, .external_lex_state = 3}, [2130] = {.lex_state = 0, .external_lex_state = 3}, - [2131] = {.lex_state = 7, .external_lex_state = 3}, - [2132] = {.lex_state = 0, .external_lex_state = 3}, - [2133] = {.lex_state = 0, .external_lex_state = 3}, - [2134] = {.lex_state = 0, .external_lex_state = 3}, + [2131] = {.lex_state = 18, .external_lex_state = 3}, + [2132] = {.lex_state = 58, .external_lex_state = 3}, + [2133] = {.lex_state = 58, .external_lex_state = 3}, + [2134] = {.lex_state = 58, .external_lex_state = 3}, [2135] = {.lex_state = 0, .external_lex_state = 3}, [2136] = {.lex_state = 0, .external_lex_state = 3}, - [2137] = {.lex_state = 0, .external_lex_state = 3}, - [2138] = {.lex_state = 0, .external_lex_state = 3}, + [2137] = {.lex_state = 58, .external_lex_state = 3}, + [2138] = {.lex_state = 58, .external_lex_state = 3}, [2139] = {.lex_state = 0, .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}, - [2143] = {.lex_state = 0, .external_lex_state = 3}, + [2141] = {.lex_state = 58, .external_lex_state = 3}, + [2142] = {.lex_state = 0, .external_lex_state = 3}, + [2143] = {.lex_state = 58, .external_lex_state = 3}, [2144] = {.lex_state = 0, .external_lex_state = 3}, [2145] = {.lex_state = 0, .external_lex_state = 3}, [2146] = {.lex_state = 0, .external_lex_state = 3}, [2147] = {.lex_state = 0, .external_lex_state = 3}, - [2148] = {.lex_state = 57, .external_lex_state = 3}, + [2148] = {.lex_state = 0, .external_lex_state = 3}, [2149] = {.lex_state = 0, .external_lex_state = 3}, - [2150] = {.lex_state = 0, .external_lex_state = 3}, + [2150] = {.lex_state = 58, .external_lex_state = 3}, [2151] = {.lex_state = 0, .external_lex_state = 3}, - [2152] = {.lex_state = 7, .external_lex_state = 3}, + [2152] = {.lex_state = 0, .external_lex_state = 3}, [2153] = {.lex_state = 0, .external_lex_state = 3}, [2154] = {.lex_state = 0, .external_lex_state = 3}, - [2155] = {.lex_state = 7, .external_lex_state = 3}, + [2155] = {.lex_state = 0, .external_lex_state = 3}, [2156] = {.lex_state = 0, .external_lex_state = 3}, [2157] = {.lex_state = 0, .external_lex_state = 3}, - [2158] = {.lex_state = 0, .external_lex_state = 3}, - [2159] = {.lex_state = 57, .external_lex_state = 3}, + [2158] = {.lex_state = 7, .external_lex_state = 3}, + [2159] = {.lex_state = 7, .external_lex_state = 3}, [2160] = {.lex_state = 0, .external_lex_state = 3}, - [2161] = {.lex_state = 7, .external_lex_state = 3}, + [2161] = {.lex_state = 0, .external_lex_state = 3}, [2162] = {.lex_state = 0, .external_lex_state = 3}, - [2163] = {.lex_state = 7, .external_lex_state = 3}, - [2164] = {.lex_state = 0, .external_lex_state = 3}, - [2165] = {.lex_state = 57, .external_lex_state = 3}, + [2163] = {.lex_state = 0, .external_lex_state = 3}, + [2164] = {.lex_state = 7, .external_lex_state = 3}, + [2165] = {.lex_state = 0, .external_lex_state = 3}, [2166] = {.lex_state = 0, .external_lex_state = 3}, - [2167] = {.lex_state = 57, .external_lex_state = 3}, + [2167] = {.lex_state = 0, .external_lex_state = 3}, [2168] = {.lex_state = 0, .external_lex_state = 3}, - [2169] = {.lex_state = 0, .external_lex_state = 3}, - [2170] = {.lex_state = 57, .external_lex_state = 3}, - [2171] = {.lex_state = 0, .external_lex_state = 3}, + [2169] = {.lex_state = 4, .external_lex_state = 3}, + [2170] = {.lex_state = 0, .external_lex_state = 3}, + [2171] = {.lex_state = 58, .external_lex_state = 3}, [2172] = {.lex_state = 0, .external_lex_state = 3}, [2173] = {.lex_state = 0, .external_lex_state = 3}, - [2174] = {.lex_state = 7, .external_lex_state = 3}, - [2175] = {.lex_state = 57, .external_lex_state = 3}, + [2174] = {.lex_state = 0, .external_lex_state = 3}, + [2175] = {.lex_state = 0, .external_lex_state = 3}, [2176] = {.lex_state = 0, .external_lex_state = 3}, [2177] = {.lex_state = 0, .external_lex_state = 3}, - [2178] = {.lex_state = 0, .external_lex_state = 3}, - [2179] = {.lex_state = 0, .external_lex_state = 3}, - [2180] = {.lex_state = 57, .external_lex_state = 3}, + [2178] = {.lex_state = 7, .external_lex_state = 3}, + [2179] = {.lex_state = 58, .external_lex_state = 3}, + [2180] = {.lex_state = 0, .external_lex_state = 3}, [2181] = {.lex_state = 7, .external_lex_state = 3}, [2182] = {.lex_state = 0, .external_lex_state = 3}, - [2183] = {.lex_state = 57, .external_lex_state = 3}, - [2184] = {.lex_state = 0, .external_lex_state = 3}, - [2185] = {.lex_state = 0, .external_lex_state = 3}, - [2186] = {.lex_state = 57, .external_lex_state = 3}, - [2187] = {.lex_state = 0, .external_lex_state = 3}, + [2183] = {.lex_state = 0, .external_lex_state = 3}, + [2184] = {.lex_state = 58, .external_lex_state = 3}, + [2185] = {.lex_state = 58, .external_lex_state = 3}, + [2186] = {.lex_state = 0, .external_lex_state = 3}, + [2187] = {.lex_state = 58, .external_lex_state = 3}, [2188] = {.lex_state = 0, .external_lex_state = 3}, [2189] = {.lex_state = 0, .external_lex_state = 3}, [2190] = {.lex_state = 7, .external_lex_state = 3}, - [2191] = {.lex_state = 17, .external_lex_state = 3}, - [2192] = {.lex_state = 17, .external_lex_state = 3}, - [2193] = {.lex_state = 0, .external_lex_state = 3}, - [2194] = {.lex_state = 4, .external_lex_state = 3}, - [2195] = {.lex_state = 57, .external_lex_state = 3}, - [2196] = {.lex_state = 57, .external_lex_state = 3}, - [2197] = {.lex_state = 0, .external_lex_state = 3}, - [2198] = {.lex_state = 0, .external_lex_state = 3}, - [2199] = {.lex_state = 7, .external_lex_state = 3}, + [2191] = {.lex_state = 58, .external_lex_state = 3}, + [2192] = {.lex_state = 0, .external_lex_state = 3}, + [2193] = {.lex_state = 7, .external_lex_state = 3}, + [2194] = {.lex_state = 0, .external_lex_state = 3}, + [2195] = {.lex_state = 0, .external_lex_state = 3}, + [2196] = {.lex_state = 7, .external_lex_state = 3}, + [2197] = {.lex_state = 58, .external_lex_state = 3}, + [2198] = {.lex_state = 4, .external_lex_state = 3}, + [2199] = {.lex_state = 58, .external_lex_state = 3}, [2200] = {.lex_state = 0, .external_lex_state = 3}, - [2201] = {.lex_state = 57, .external_lex_state = 3}, + [2201] = {.lex_state = 0, .external_lex_state = 3}, [2202] = {.lex_state = 0, .external_lex_state = 3}, - [2203] = {.lex_state = 7, .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}, + [2205] = {.lex_state = 58, .external_lex_state = 3}, + [2206] = {.lex_state = 0, .external_lex_state = 3}, [2207] = {.lex_state = 0, .external_lex_state = 3}, - [2208] = {.lex_state = 0, .external_lex_state = 3}, - [2209] = {.lex_state = 0, .external_lex_state = 3}, - [2210] = {.lex_state = 0, .external_lex_state = 3}, - [2211] = {.lex_state = 57, .external_lex_state = 3}, - [2212] = {.lex_state = 17, .external_lex_state = 3}, + [2208] = {.lex_state = 58, .external_lex_state = 3}, + [2209] = {.lex_state = 7, .external_lex_state = 3}, + [2210] = {.lex_state = 58, .external_lex_state = 3}, + [2211] = {.lex_state = 0, .external_lex_state = 3}, + [2212] = {.lex_state = 58, .external_lex_state = 3}, [2213] = {.lex_state = 0, .external_lex_state = 3}, [2214] = {.lex_state = 0, .external_lex_state = 3}, [2215] = {.lex_state = 0, .external_lex_state = 3}, - [2216] = {.lex_state = 0, .external_lex_state = 3}, + [2216] = {.lex_state = 7, .external_lex_state = 3}, [2217] = {.lex_state = 0, .external_lex_state = 3}, [2218] = {.lex_state = 0, .external_lex_state = 3}, - [2219] = {.lex_state = 57, .external_lex_state = 3}, + [2219] = {.lex_state = 0, .external_lex_state = 3}, [2220] = {.lex_state = 0, .external_lex_state = 3}, - [2221] = {.lex_state = 0, .external_lex_state = 3}, - [2222] = {.lex_state = 7, .external_lex_state = 3}, - [2223] = {.lex_state = 0, .external_lex_state = 3}, + [2221] = {.lex_state = 18, .external_lex_state = 3}, + [2222] = {.lex_state = 0, .external_lex_state = 3}, + [2223] = {.lex_state = 58, .external_lex_state = 3}, [2224] = {.lex_state = 0, .external_lex_state = 3}, - [2225] = {.lex_state = 7, .external_lex_state = 3}, - [2226] = {.lex_state = 57, .external_lex_state = 3}, - [2227] = {.lex_state = 0, .external_lex_state = 3}, - [2228] = {.lex_state = 57, .external_lex_state = 3}, - [2229] = {.lex_state = 7, .external_lex_state = 3}, + [2225] = {.lex_state = 0, .external_lex_state = 3}, + [2226] = {.lex_state = 7, .external_lex_state = 3}, + [2227] = {.lex_state = 58, .external_lex_state = 3}, + [2228] = {.lex_state = 7, .external_lex_state = 3}, + [2229] = {.lex_state = 58, .external_lex_state = 3}, [2230] = {.lex_state = 0, .external_lex_state = 3}, - [2231] = {.lex_state = 17, .external_lex_state = 3}, - [2232] = {.lex_state = 7, .external_lex_state = 3}, - [2233] = {.lex_state = 0, .external_lex_state = 3}, - [2234] = {.lex_state = 57, .external_lex_state = 3}, - [2235] = {.lex_state = 7, .external_lex_state = 3}, - [2236] = {.lex_state = 57, .external_lex_state = 3}, + [2231] = {.lex_state = 58, .external_lex_state = 3}, + [2232] = {.lex_state = 0, .external_lex_state = 3}, + [2233] = {.lex_state = 58, .external_lex_state = 3}, + [2234] = {.lex_state = 0, .external_lex_state = 3}, + [2235] = {.lex_state = 0, .external_lex_state = 3}, + [2236] = {.lex_state = 58, .external_lex_state = 3}, [2237] = {.lex_state = 0, .external_lex_state = 3}, - [2238] = {.lex_state = 57, .external_lex_state = 3}, - [2239] = {.lex_state = 57, .external_lex_state = 3}, + [2238] = {.lex_state = 0, .external_lex_state = 3}, + [2239] = {.lex_state = 0, .external_lex_state = 3}, [2240] = {.lex_state = 0, .external_lex_state = 3}, - [2241] = {.lex_state = 4, .external_lex_state = 3}, + [2241] = {.lex_state = 0, .external_lex_state = 3}, [2242] = {.lex_state = 0, .external_lex_state = 3}, [2243] = {.lex_state = 0, .external_lex_state = 3}, - [2244] = {.lex_state = 7, .external_lex_state = 3}, - [2245] = {.lex_state = 0, .external_lex_state = 3}, - [2246] = {.lex_state = 17, .external_lex_state = 3}, - [2247] = {.lex_state = 0, .external_lex_state = 3}, + [2244] = {.lex_state = 0, .external_lex_state = 3}, + [2245] = {.lex_state = 7, .external_lex_state = 3}, + [2246] = {.lex_state = 0, .external_lex_state = 3}, + [2247] = {.lex_state = 58, .external_lex_state = 3}, [2248] = {.lex_state = 0, .external_lex_state = 3}, [2249] = {.lex_state = 0, .external_lex_state = 3}, - [2250] = {.lex_state = 7, .external_lex_state = 3}, + [2250] = {.lex_state = 0, .external_lex_state = 3}, [2251] = {.lex_state = 0, .external_lex_state = 3}, [2252] = {.lex_state = 0, .external_lex_state = 3}, [2253] = {.lex_state = 0, .external_lex_state = 3}, - [2254] = {.lex_state = 57, .external_lex_state = 3}, - [2255] = {.lex_state = 0, .external_lex_state = 3}, + [2254] = {.lex_state = 0, .external_lex_state = 3}, + [2255] = {.lex_state = 58, .external_lex_state = 3}, [2256] = {.lex_state = 0, .external_lex_state = 3}, [2257] = {.lex_state = 0, .external_lex_state = 3}, [2258] = {.lex_state = 0, .external_lex_state = 3}, [2259] = {.lex_state = 0, .external_lex_state = 3}, [2260] = {.lex_state = 0, .external_lex_state = 3}, - [2261] = {.lex_state = 0, .external_lex_state = 3}, + [2261] = {.lex_state = 58, .external_lex_state = 3}, [2262] = {.lex_state = 0, .external_lex_state = 3}, [2263] = {.lex_state = 0, .external_lex_state = 3}, [2264] = {.lex_state = 0, .external_lex_state = 3}, - [2265] = {.lex_state = 0, .external_lex_state = 3}, + [2265] = {.lex_state = 7, .external_lex_state = 3}, [2266] = {.lex_state = 0, .external_lex_state = 3}, - [2267] = {.lex_state = 0, .external_lex_state = 3}, - [2268] = {.lex_state = 0, .external_lex_state = 3}, - [2269] = {.lex_state = 7, .external_lex_state = 3}, + [2267] = {.lex_state = 58, .external_lex_state = 3}, + [2268] = {.lex_state = 0, .external_lex_state = 5}, + [2269] = {.lex_state = 0, .external_lex_state = 3}, [2270] = {.lex_state = 0, .external_lex_state = 3}, - [2271] = {.lex_state = 0, .external_lex_state = 3}, + [2271] = {.lex_state = 58, .external_lex_state = 3}, [2272] = {.lex_state = 0, .external_lex_state = 3}, - [2273] = {.lex_state = 0, .external_lex_state = 5}, + [2273] = {.lex_state = 58, .external_lex_state = 3}, [2274] = {.lex_state = 0, .external_lex_state = 3}, - [2275] = {.lex_state = 0, .external_lex_state = 3}, - [2276] = {.lex_state = 0, .external_lex_state = 3}, + [2275] = {.lex_state = 7, .external_lex_state = 3}, + [2276] = {.lex_state = 7, .external_lex_state = 3}, [2277] = {.lex_state = 0, .external_lex_state = 3}, - [2278] = {.lex_state = 0, .external_lex_state = 3}, + [2278] = {.lex_state = 7, .external_lex_state = 3}, [2279] = {.lex_state = 0, .external_lex_state = 3}, - [2280] = {.lex_state = 0, .external_lex_state = 3}, - [2281] = {.lex_state = 7, .external_lex_state = 3}, - [2282] = {.lex_state = 7, .external_lex_state = 3}, - [2283] = {.lex_state = 57, .external_lex_state = 3}, - [2284] = {.lex_state = 0, .external_lex_state = 3}, - [2285] = {.lex_state = 0, .external_lex_state = 3}, - [2286] = {.lex_state = 0, .external_lex_state = 3}, - [2287] = {.lex_state = 57, .external_lex_state = 3}, - [2288] = {.lex_state = 57, .external_lex_state = 3}, + [2280] = {.lex_state = 58, .external_lex_state = 3}, + [2281] = {.lex_state = 0, .external_lex_state = 3}, + [2282] = {.lex_state = 0, .external_lex_state = 3}, + [2283] = {.lex_state = 0, .external_lex_state = 3}, + [2284] = {.lex_state = 7, .external_lex_state = 3}, + [2285] = {.lex_state = 7, .external_lex_state = 3}, + [2286] = {.lex_state = 7, .external_lex_state = 3}, + [2287] = {.lex_state = 0, .external_lex_state = 3}, + [2288] = {.lex_state = 18, .external_lex_state = 3}, [2289] = {.lex_state = 0, .external_lex_state = 3}, [2290] = {.lex_state = 0, .external_lex_state = 3}, [2291] = {.lex_state = 0, .external_lex_state = 3}, - [2292] = {.lex_state = 57, .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 = 0, .external_lex_state = 3}, [2296] = {.lex_state = 0, .external_lex_state = 3}, - [2297] = {.lex_state = 0, .external_lex_state = 3}, - [2298] = {.lex_state = 0, .external_lex_state = 3}, + [2297] = {.lex_state = 18, .external_lex_state = 3}, + [2298] = {.lex_state = 18, .external_lex_state = 3}, [2299] = {.lex_state = 0, .external_lex_state = 3}, - [2300] = {.lex_state = 57, .external_lex_state = 3}, - [2301] = {.lex_state = 57, .external_lex_state = 3}, - [2302] = {.lex_state = 0, .external_lex_state = 3}, + [2300] = {.lex_state = 58, .external_lex_state = 3}, + [2301] = {.lex_state = 58, .external_lex_state = 3}, + [2302] = {.lex_state = 58, .external_lex_state = 3}, [2303] = {.lex_state = 0, .external_lex_state = 3}, - [2304] = {.lex_state = 57, .external_lex_state = 3}, - [2305] = {.lex_state = 57, .external_lex_state = 3}, - [2306] = {.lex_state = 0, .external_lex_state = 3}, - [2307] = {.lex_state = 0, .external_lex_state = 3}, + [2304] = {.lex_state = 0, .external_lex_state = 3}, + [2305] = {.lex_state = 0, .external_lex_state = 3}, + [2306] = {.lex_state = 18, .external_lex_state = 3}, + [2307] = {.lex_state = 7, .external_lex_state = 3}, [2308] = {.lex_state = 0, .external_lex_state = 3}, - [2309] = {.lex_state = 7, .external_lex_state = 3}, - [2310] = {.lex_state = 0, .external_lex_state = 3}, + [2309] = {.lex_state = 0, .external_lex_state = 3}, + [2310] = {.lex_state = 58, .external_lex_state = 3}, [2311] = {.lex_state = 0, .external_lex_state = 3}, [2312] = {.lex_state = 0, .external_lex_state = 3}, - [2313] = {.lex_state = 57, .external_lex_state = 3}, - [2314] = {.lex_state = 57, .external_lex_state = 3}, - [2315] = {.lex_state = 57, .external_lex_state = 3}, + [2313] = {.lex_state = 0, .external_lex_state = 3}, + [2314] = {.lex_state = 58, .external_lex_state = 3}, + [2315] = {.lex_state = 58, .external_lex_state = 3}, [2316] = {.lex_state = 10, .external_lex_state = 3}, - [2317] = {.lex_state = 17, .external_lex_state = 3}, - [2318] = {.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}, - [2322] = {.lex_state = 7, .external_lex_state = 3}, - [2323] = {.lex_state = 7, .external_lex_state = 3}, - [2324] = {.lex_state = 0, .external_lex_state = 3}, - [2325] = {.lex_state = 57, .external_lex_state = 3}, + [2317] = {.lex_state = 0, .external_lex_state = 3}, + [2318] = {.lex_state = 58, .external_lex_state = 3}, + [2319] = {.lex_state = 58, .external_lex_state = 3}, + [2320] = {.lex_state = 58, .external_lex_state = 3}, + [2321] = {.lex_state = 7, .external_lex_state = 3}, + [2322] = {.lex_state = 0, .external_lex_state = 3}, + [2323] = {.lex_state = 0, .external_lex_state = 3}, + [2324] = {.lex_state = 7, .external_lex_state = 3}, + [2325] = {.lex_state = 0, .external_lex_state = 3}, [2326] = {.lex_state = 0, .external_lex_state = 3}, [2327] = {.lex_state = 0, .external_lex_state = 3}, [2328] = {.lex_state = 0, .external_lex_state = 3}, [2329] = {.lex_state = 0, .external_lex_state = 3}, - [2330] = {.lex_state = 7, .external_lex_state = 3}, - [2331] = {.lex_state = 7, .external_lex_state = 3}, + [2330] = {.lex_state = 0, .external_lex_state = 3}, + [2331] = {.lex_state = 0, .external_lex_state = 3}, [2332] = {.lex_state = 7, .external_lex_state = 3}, - [2333] = {.lex_state = 7, .external_lex_state = 3}, + [2333] = {.lex_state = 18, .external_lex_state = 3}, [2334] = {.lex_state = 0, .external_lex_state = 3}, [2335] = {.lex_state = 0, .external_lex_state = 3}, - [2336] = {.lex_state = 7, .external_lex_state = 3}, + [2336] = {.lex_state = 0, .external_lex_state = 3}, [2337] = {.lex_state = 7, .external_lex_state = 3}, - [2338] = {.lex_state = 7, .external_lex_state = 3}, + [2338] = {.lex_state = 0, .external_lex_state = 3}, [2339] = {.lex_state = 7, .external_lex_state = 3}, - [2340] = {.lex_state = 7, .external_lex_state = 3}, + [2340] = {.lex_state = 0, .external_lex_state = 3}, [2341] = {.lex_state = 7, .external_lex_state = 3}, - [2342] = {.lex_state = 7, .external_lex_state = 3}, + [2342] = {.lex_state = 0, .external_lex_state = 3}, [2343] = {.lex_state = 7, .external_lex_state = 3}, [2344] = {.lex_state = 7, .external_lex_state = 3}, - [2345] = {.lex_state = 7, .external_lex_state = 3}, - [2346] = {.lex_state = 7, .external_lex_state = 3}, + [2345] = {.lex_state = 10, .external_lex_state = 3}, + [2346] = {.lex_state = 58, .external_lex_state = 3}, [2347] = {.lex_state = 7, .external_lex_state = 3}, [2348] = {.lex_state = 7, .external_lex_state = 3}, [2349] = {.lex_state = 0, .external_lex_state = 3}, - [2350] = {.lex_state = 0, .external_lex_state = 3}, + [2350] = {.lex_state = 7, .external_lex_state = 3}, [2351] = {.lex_state = 0, .external_lex_state = 3}, [2352] = {.lex_state = 7, .external_lex_state = 3}, [2353] = {.lex_state = 7, .external_lex_state = 3}, - [2354] = {.lex_state = 0, .external_lex_state = 3}, + [2354] = {.lex_state = 7, .external_lex_state = 3}, [2355] = {.lex_state = 7, .external_lex_state = 3}, - [2356] = {.lex_state = 7, .external_lex_state = 3}, - [2357] = {.lex_state = 7, .external_lex_state = 3}, + [2356] = {.lex_state = 0, .external_lex_state = 3}, + [2357] = {.lex_state = 0, .external_lex_state = 3}, [2358] = {.lex_state = 0, .external_lex_state = 3}, - [2359] = {.lex_state = 7, .external_lex_state = 3}, - [2360] = {.lex_state = 7, .external_lex_state = 3}, + [2359] = {.lex_state = 0, .external_lex_state = 3}, + [2360] = {.lex_state = 0, .external_lex_state = 3}, [2361] = {.lex_state = 7, .external_lex_state = 3}, - [2362] = {.lex_state = 57, .external_lex_state = 3}, - [2363] = {.lex_state = 7, .external_lex_state = 3}, + [2362] = {.lex_state = 0, .external_lex_state = 3}, + [2363] = {.lex_state = 0, .external_lex_state = 3}, [2364] = {.lex_state = 7, .external_lex_state = 3}, [2365] = {.lex_state = 7, .external_lex_state = 3}, - [2366] = {.lex_state = 0, .external_lex_state = 3}, + [2366] = {.lex_state = 7, .external_lex_state = 3}, [2367] = {.lex_state = 7, .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}, + [2368] = {.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 = 0, .external_lex_state = 3}, [2372] = {.lex_state = 0, .external_lex_state = 3}, - [2373] = {.lex_state = 0, .external_lex_state = 3}, - [2374] = {.lex_state = 0, .external_lex_state = 3}, - [2375] = {.lex_state = 0, .external_lex_state = 3}, + [2373] = {.lex_state = 7, .external_lex_state = 3}, + [2374] = {.lex_state = 10, .external_lex_state = 3}, + [2375] = {.lex_state = 7, .external_lex_state = 3}, [2376] = {.lex_state = 7, .external_lex_state = 3}, [2377] = {.lex_state = 7, .external_lex_state = 3}, - [2378] = {.lex_state = 10, .external_lex_state = 3}, - [2379] = {.lex_state = 0, .external_lex_state = 3}, + [2378] = {.lex_state = 7, .external_lex_state = 3}, + [2379] = {.lex_state = 7, .external_lex_state = 3}, [2380] = {.lex_state = 0, .external_lex_state = 3}, - [2381] = {.lex_state = 0, .external_lex_state = 3}, - [2382] = {.lex_state = 57, .external_lex_state = 3}, + [2381] = {.lex_state = 7, .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}, @@ -14052,177 +14087,183 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2387] = {.lex_state = 7, .external_lex_state = 3}, [2388] = {.lex_state = 7, .external_lex_state = 3}, [2389] = {.lex_state = 7, .external_lex_state = 3}, - [2390] = {.lex_state = 7, .external_lex_state = 3}, + [2390] = {.lex_state = 10, .external_lex_state = 3}, [2391] = {.lex_state = 7, .external_lex_state = 3}, [2392] = {.lex_state = 7, .external_lex_state = 3}, - [2393] = {.lex_state = 10, .external_lex_state = 3}, + [2393] = {.lex_state = 0, .external_lex_state = 3}, [2394] = {.lex_state = 7, .external_lex_state = 3}, [2395] = {.lex_state = 7, .external_lex_state = 3}, - [2396] = {.lex_state = 7, .external_lex_state = 3}, - [2397] = {.lex_state = 0, .external_lex_state = 3}, + [2396] = {.lex_state = 0, .external_lex_state = 3}, + [2397] = {.lex_state = 7, .external_lex_state = 3}, [2398] = {.lex_state = 7, .external_lex_state = 3}, [2399] = {.lex_state = 0, .external_lex_state = 3}, [2400] = {.lex_state = 7, .external_lex_state = 3}, - [2401] = {.lex_state = 7, .external_lex_state = 3}, + [2401] = {.lex_state = 0, .external_lex_state = 3}, [2402] = {.lex_state = 0, .external_lex_state = 3}, - [2403] = {.lex_state = 57, .external_lex_state = 3}, - [2404] = {.lex_state = 0, .external_lex_state = 3}, - [2405] = {.lex_state = 7, .external_lex_state = 3}, + [2403] = {.lex_state = 7, .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}, [2407] = {.lex_state = 7, .external_lex_state = 3}, - [2408] = {.lex_state = 7, .external_lex_state = 3}, - [2409] = {.lex_state = 0, .external_lex_state = 3}, + [2408] = {.lex_state = 0, .external_lex_state = 3}, + [2409] = {.lex_state = 58, .external_lex_state = 3}, [2410] = {.lex_state = 0, .external_lex_state = 3}, [2411] = {.lex_state = 7, .external_lex_state = 3}, - [2412] = {.lex_state = 10, .external_lex_state = 3}, + [2412] = {.lex_state = 7, .external_lex_state = 3}, [2413] = {.lex_state = 7, .external_lex_state = 3}, [2414] = {.lex_state = 7, .external_lex_state = 3}, [2415] = {.lex_state = 0, .external_lex_state = 3}, - [2416] = {.lex_state = 10, .external_lex_state = 3}, - [2417] = {.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 = 0, .external_lex_state = 3}, [2419] = {.lex_state = 0, .external_lex_state = 3}, - [2420] = {.lex_state = 0, .external_lex_state = 3}, - [2421] = {.lex_state = 7, .external_lex_state = 3}, + [2420] = {.lex_state = 7, .external_lex_state = 3}, + [2421] = {.lex_state = 0, .external_lex_state = 3}, [2422] = {.lex_state = 0, .external_lex_state = 3}, - [2423] = {.lex_state = 57, .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 = 7, .external_lex_state = 3}, [2427] = {.lex_state = 0, .external_lex_state = 3}, [2428] = {.lex_state = 0, .external_lex_state = 3}, - [2429] = {.lex_state = 0, .external_lex_state = 3}, + [2429] = {.lex_state = 58, .external_lex_state = 3}, [2430] = {.lex_state = 7, .external_lex_state = 3}, - [2431] = {.lex_state = 7, .external_lex_state = 3}, - [2432] = {.lex_state = 0, .external_lex_state = 3}, - [2433] = {.lex_state = 0, .external_lex_state = 3}, - [2434] = {.lex_state = 0, .external_lex_state = 3}, + [2431] = {.lex_state = 0, .external_lex_state = 3}, + [2432] = {.lex_state = 7, .external_lex_state = 3}, + [2433] = {.lex_state = 7, .external_lex_state = 3}, + [2434] = {.lex_state = 7, .external_lex_state = 3}, [2435] = {.lex_state = 7, .external_lex_state = 3}, - [2436] = {.lex_state = 0, .external_lex_state = 3}, - [2437] = {.lex_state = 0, .external_lex_state = 3}, + [2436] = {.lex_state = 7, .external_lex_state = 3}, + [2437] = {.lex_state = 7, .external_lex_state = 3}, [2438] = {.lex_state = 0, .external_lex_state = 3}, [2439] = {.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 = 7, .external_lex_state = 3}, + [2440] = {.lex_state = 0, .external_lex_state = 3}, + [2441] = {.lex_state = 7, .external_lex_state = 3}, + [2442] = {.lex_state = 0, .external_lex_state = 3}, [2443] = {.lex_state = 7, .external_lex_state = 3}, - [2444] = {.lex_state = 7, .external_lex_state = 3}, - [2445] = {.lex_state = 7, .external_lex_state = 3}, + [2444] = {.lex_state = 0, .external_lex_state = 3}, + [2445] = {.lex_state = 0, .external_lex_state = 3}, [2446] = {.lex_state = 7, .external_lex_state = 3}, [2447] = {.lex_state = 7, .external_lex_state = 3}, [2448] = {.lex_state = 0, .external_lex_state = 3}, [2449] = {.lex_state = 0, .external_lex_state = 3}, [2450] = {.lex_state = 0, .external_lex_state = 3}, - [2451] = {.lex_state = 0, .external_lex_state = 3}, - [2452] = {.lex_state = 10, .external_lex_state = 3}, - [2453] = {.lex_state = 7, .external_lex_state = 3}, + [2451] = {.lex_state = 10, .external_lex_state = 3}, + [2452] = {.lex_state = 7, .external_lex_state = 3}, + [2453] = {.lex_state = 0, .external_lex_state = 3}, [2454] = {.lex_state = 0, .external_lex_state = 3}, [2455] = {.lex_state = 7, .external_lex_state = 3}, [2456] = {.lex_state = 0, .external_lex_state = 3}, [2457] = {.lex_state = 7, .external_lex_state = 3}, - [2458] = {.lex_state = 0, .external_lex_state = 3}, - [2459] = {.lex_state = 0, .external_lex_state = 3}, + [2458] = {.lex_state = 10, .external_lex_state = 3}, + [2459] = {.lex_state = 7, .external_lex_state = 3}, [2460] = {.lex_state = 7, .external_lex_state = 3}, - [2461] = {.lex_state = 0, .external_lex_state = 3}, - [2462] = {.lex_state = 0, .external_lex_state = 3}, + [2461] = {.lex_state = 7, .external_lex_state = 3}, + [2462] = {.lex_state = 7, .external_lex_state = 3}, [2463] = {.lex_state = 7, .external_lex_state = 3}, [2464] = {.lex_state = 0, .external_lex_state = 3}, [2465] = {.lex_state = 0, .external_lex_state = 3}, - [2466] = {.lex_state = 10, .external_lex_state = 3}, + [2466] = {.lex_state = 7, .external_lex_state = 3}, [2467] = {.lex_state = 7, .external_lex_state = 3}, [2468] = {.lex_state = 0, .external_lex_state = 3}, - [2469] = {.lex_state = 0, .external_lex_state = 3}, - [2470] = {.lex_state = 0, .external_lex_state = 3}, + [2469] = {.lex_state = 7, .external_lex_state = 3}, + [2470] = {.lex_state = 58, .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}, + [2472] = {.lex_state = 10, .external_lex_state = 3}, + [2473] = {.lex_state = 7, .external_lex_state = 3}, [2474] = {.lex_state = 0, .external_lex_state = 3}, [2475] = {.lex_state = 7, .external_lex_state = 3}, [2476] = {.lex_state = 0, .external_lex_state = 3}, - [2477] = {.lex_state = 0, .external_lex_state = 3}, + [2477] = {.lex_state = 10, .external_lex_state = 3}, [2478] = {.lex_state = 0, .external_lex_state = 3}, [2479] = {.lex_state = 0, .external_lex_state = 3}, - [2480] = {.lex_state = 10, .external_lex_state = 3}, + [2480] = {.lex_state = 0, .external_lex_state = 3}, [2481] = {.lex_state = 7, .external_lex_state = 3}, - [2482] = {.lex_state = 0, .external_lex_state = 3}, - [2483] = {.lex_state = 7, .external_lex_state = 3}, - [2484] = {.lex_state = 7, .external_lex_state = 3}, - [2485] = {.lex_state = 10, .external_lex_state = 3}, - [2486] = {.lex_state = 0, .external_lex_state = 3}, - [2487] = {.lex_state = 0, .external_lex_state = 3}, - [2488] = {.lex_state = 0, .external_lex_state = 3}, - [2489] = {.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 = 7, .external_lex_state = 3}, + [2482] = {.lex_state = 7, .external_lex_state = 3}, + [2483] = {.lex_state = 0, .external_lex_state = 3}, + [2484] = {.lex_state = 0, .external_lex_state = 3}, + [2485] = {.lex_state = 0, .external_lex_state = 3}, + [2486] = {.lex_state = 7, .external_lex_state = 3}, + [2487] = {.lex_state = 7, .external_lex_state = 3}, + [2488] = {.lex_state = 7, .external_lex_state = 3}, + [2489] = {.lex_state = 7, .external_lex_state = 3}, + [2490] = {.lex_state = 7, .external_lex_state = 3}, + [2491] = {.lex_state = 7, .external_lex_state = 3}, + [2492] = {.lex_state = 7, .external_lex_state = 3}, + [2493] = {.lex_state = 7, .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 = 7, .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 = 7, .external_lex_state = 3}, - [2501] = {.lex_state = 10, .external_lex_state = 3}, + [2501] = {.lex_state = 0, .external_lex_state = 3}, [2502] = {.lex_state = 0, .external_lex_state = 3}, - [2503] = {.lex_state = 10, .external_lex_state = 3}, + [2503] = {.lex_state = 0, .external_lex_state = 3}, [2504] = {.lex_state = 7, .external_lex_state = 3}, - [2505] = {.lex_state = 7, .external_lex_state = 3}, + [2505] = {.lex_state = 0, .external_lex_state = 3}, [2506] = {.lex_state = 0, .external_lex_state = 3}, - [2507] = {.lex_state = 7, .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}, + [2507] = {.lex_state = 10, .external_lex_state = 3}, + [2508] = {.lex_state = 0, .external_lex_state = 3}, + [2509] = {.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}, + [2512] = {.lex_state = 7, .external_lex_state = 3}, [2513] = {.lex_state = 0, .external_lex_state = 3}, - [2514] = {.lex_state = 0, .external_lex_state = 3}, - [2515] = {.lex_state = 7, .external_lex_state = 3}, + [2514] = {.lex_state = 10, .external_lex_state = 3}, + [2515] = {.lex_state = 0, .external_lex_state = 3}, [2516] = {.lex_state = 0, .external_lex_state = 3}, - [2517] = {.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}, + [2519] = {.lex_state = 10, .external_lex_state = 3}, [2520] = {.lex_state = 0, .external_lex_state = 3}, [2521] = {.lex_state = 0, .external_lex_state = 3}, - [2522] = {.lex_state = 10, .external_lex_state = 3}, - [2523] = {.lex_state = 0, .external_lex_state = 3}, + [2522] = {.lex_state = 0, .external_lex_state = 3}, + [2523] = {.lex_state = 10, .external_lex_state = 3}, [2524] = {.lex_state = 0, .external_lex_state = 3}, - [2525] = {.lex_state = 10, .external_lex_state = 3}, + [2525] = {.lex_state = 0, .external_lex_state = 3}, [2526] = {.lex_state = 0, .external_lex_state = 3}, - [2527] = {.lex_state = 0, .external_lex_state = 3}, - [2528] = {.lex_state = 0, .external_lex_state = 3}, + [2527] = {.lex_state = 10, .external_lex_state = 3}, + [2528] = {.lex_state = 10, .external_lex_state = 3}, [2529] = {.lex_state = 0, .external_lex_state = 3}, [2530] = {.lex_state = 0, .external_lex_state = 3}, [2531] = {.lex_state = 10, .external_lex_state = 3}, [2532] = {.lex_state = 0, .external_lex_state = 3}, - [2533] = {.lex_state = 10, .external_lex_state = 3}, + [2533] = {.lex_state = 7, .external_lex_state = 3}, [2534] = {.lex_state = 0, .external_lex_state = 3}, [2535] = {.lex_state = 0, .external_lex_state = 3}, [2536] = {.lex_state = 0, .external_lex_state = 3}, - [2537] = {.lex_state = 0, .external_lex_state = 3}, + [2537] = {.lex_state = 10, .external_lex_state = 3}, [2538] = {.lex_state = 0, .external_lex_state = 3}, - [2539] = {.lex_state = 0, .external_lex_state = 3}, - [2540] = {.lex_state = 7, .external_lex_state = 3}, + [2539] = {.lex_state = 10, .external_lex_state = 3}, + [2540] = {.lex_state = 0, .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}, + [2543] = {.lex_state = 0, .external_lex_state = 3}, [2544] = {.lex_state = 0, .external_lex_state = 3}, - [2545] = {.lex_state = 7, .external_lex_state = 3}, - [2546] = {.lex_state = 0, .external_lex_state = 3}, + [2545] = {.lex_state = 0, .external_lex_state = 3}, + [2546] = {.lex_state = 7, .external_lex_state = 3}, [2547] = {.lex_state = 0, .external_lex_state = 3}, - [2548] = {.lex_state = 0, .external_lex_state = 3}, + [2548] = {.lex_state = 7, .external_lex_state = 3}, [2549] = {.lex_state = 7, .external_lex_state = 3}, - [2550] = {.lex_state = 7, .external_lex_state = 3}, + [2550] = {.lex_state = 0, .external_lex_state = 3}, [2551] = {.lex_state = 7, .external_lex_state = 3}, [2552] = {.lex_state = 0, .external_lex_state = 3}, - [2553] = {.lex_state = 7, .external_lex_state = 3}, - [2554] = {.lex_state = 7, .external_lex_state = 3}, - [2555] = {.lex_state = 0, .external_lex_state = 3}, - [2556] = {.lex_state = 0, .external_lex_state = 3}, + [2553] = {.lex_state = 0, .external_lex_state = 3}, + [2554] = {.lex_state = 0, .external_lex_state = 3}, + [2555] = {.lex_state = 7, .external_lex_state = 3}, + [2556] = {.lex_state = 7, .external_lex_state = 3}, [2557] = {.lex_state = 7, .external_lex_state = 3}, - [2558] = {.lex_state = 10, .external_lex_state = 3}, - [2559] = {.lex_state = 0, .external_lex_state = 3}, + [2558] = {.lex_state = 0, .external_lex_state = 3}, + [2559] = {.lex_state = 7, .external_lex_state = 3}, [2560] = {.lex_state = 7, .external_lex_state = 3}, + [2561] = {.lex_state = 0, .external_lex_state = 3}, + [2562] = {.lex_state = 0, .external_lex_state = 3}, + [2563] = {.lex_state = 7, .external_lex_state = 3}, + [2564] = {.lex_state = 0, .external_lex_state = 3}, + [2565] = {.lex_state = 0, .external_lex_state = 3}, + [2566] = {.lex_state = 7, .external_lex_state = 3}, }; enum { @@ -14405,80 +14446,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2477), - [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(2475), - [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(1524), - [sym_visibility_modifier] = STATE(1344), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), + [sym_source_file] = STATE(2483), + [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(2481), + [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(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(78), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(82), - [sym_if_let_expression] = STATE(82), - [sym_match_expression] = STATE(82), - [sym_while_expression] = STATE(82), - [sym_while_let_expression] = STATE(82), - [sym_loop_expression] = STATE(82), - [sym_for_expression] = STATE(82), - [sym_const_block] = STATE(82), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2466), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(82), - [sym_async_block] = STATE(82), - [sym_block] = STATE(82), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -14555,79 +14596,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [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(2475), - [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(1524), - [sym_visibility_modifier] = STATE(1344), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1204), - [sym_macro_invocation] = STATE(78), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(82), - [sym_if_let_expression] = STATE(82), - [sym_match_expression] = STATE(82), - [sym_while_expression] = STATE(82), - [sym_while_let_expression] = STATE(82), - [sym_loop_expression] = STATE(82), - [sym_for_expression] = STATE(82), - [sym_const_block] = STATE(82), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2466), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(82), - [sym_async_block] = STATE(82), - [sym_block] = STATE(82), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [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(2481), + [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(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -14704,79 +14745,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2475), - [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(1524), - [sym_visibility_modifier] = STATE(1344), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1205), - [sym_macro_invocation] = STATE(78), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(82), - [sym_if_let_expression] = STATE(82), - [sym_match_expression] = STATE(82), - [sym_while_expression] = STATE(82), - [sym_while_let_expression] = STATE(82), - [sym_loop_expression] = STATE(82), - [sym_for_expression] = STATE(82), - [sym_const_block] = STATE(82), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2466), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(82), - [sym_async_block] = STATE(82), - [sym_block] = STATE(82), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1262), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -14853,85 +14894,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2475), - [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(1524), - [sym_visibility_modifier] = STATE(1344), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1226), - [sym_macro_invocation] = STATE(78), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(82), - [sym_if_let_expression] = STATE(82), - [sym_match_expression] = STATE(82), - [sym_while_expression] = STATE(82), - [sym_while_let_expression] = STATE(82), - [sym_loop_expression] = STATE(82), - [sym_for_expression] = STATE(82), - [sym_const_block] = STATE(82), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2466), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(82), - [sym_async_block] = STATE(82), - [sym_block] = STATE(82), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [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(2481), + [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(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [ts_builtin_sym_end] = ACTIONS(109), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(109), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15002,155 +15043,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [5] = { - [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(2475), - [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(1524), - [sym_visibility_modifier] = STATE(1344), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1261), - [sym_macro_invocation] = STATE(78), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(82), - [sym_if_let_expression] = STATE(82), - [sym_match_expression] = STATE(82), - [sym_while_expression] = STATE(82), - [sym_while_let_expression] = STATE(82), - [sym_loop_expression] = STATE(82), - [sym_for_expression] = STATE(82), - [sym_const_block] = STATE(82), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2466), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(82), - [sym_async_block] = STATE(82), - [sym_block] = STATE(82), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(111), - [anon_sym_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), - }, - [6] = { [sym__statement] = STATE(5), [sym_empty_statement] = STATE(5), [sym_expression_statement] = STATE(5), @@ -15168,68 +15060,217 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(5), [sym_function_item] = STATE(5), [sym_function_signature_item] = STATE(5), - [sym_function_modifiers] = STATE(2475), + [sym_function_modifiers] = STATE(2481), [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(1524), - [sym_visibility_modifier] = STATE(1344), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1254), - [sym_macro_invocation] = STATE(78), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(82), - [sym_if_let_expression] = STATE(82), - [sym_match_expression] = STATE(82), - [sym_while_expression] = STATE(82), - [sym_while_let_expression] = STATE(82), - [sym_loop_expression] = STATE(82), - [sym_for_expression] = STATE(82), - [sym_const_block] = STATE(82), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2466), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(82), - [sym_async_block] = STATE(82), - [sym_block] = STATE(82), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [ts_builtin_sym_end] = ACTIONS(111), + [sym_identifier] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(116), + [anon_sym_macro_rules_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(128), + [anon_sym_STAR] = ACTIONS(131), + [anon_sym_u8] = ACTIONS(134), + [anon_sym_i8] = ACTIONS(134), + [anon_sym_u16] = ACTIONS(134), + [anon_sym_i16] = ACTIONS(134), + [anon_sym_u32] = ACTIONS(134), + [anon_sym_i32] = ACTIONS(134), + [anon_sym_u64] = ACTIONS(134), + [anon_sym_i64] = ACTIONS(134), + [anon_sym_u128] = ACTIONS(134), + [anon_sym_i128] = ACTIONS(134), + [anon_sym_isize] = ACTIONS(134), + [anon_sym_usize] = ACTIONS(134), + [anon_sym_f32] = ACTIONS(134), + [anon_sym_f64] = ACTIONS(134), + [anon_sym_bool] = ACTIONS(134), + [anon_sym_str] = ACTIONS(134), + [anon_sym_char] = ACTIONS(134), + [anon_sym_SQUOTE] = ACTIONS(137), + [anon_sym_async] = ACTIONS(140), + [anon_sym_break] = ACTIONS(143), + [anon_sym_const] = ACTIONS(146), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_default] = ACTIONS(152), + [anon_sym_enum] = ACTIONS(155), + [anon_sym_fn] = ACTIONS(158), + [anon_sym_for] = ACTIONS(161), + [anon_sym_if] = ACTIONS(164), + [anon_sym_impl] = ACTIONS(167), + [anon_sym_let] = ACTIONS(170), + [anon_sym_loop] = ACTIONS(173), + [anon_sym_match] = ACTIONS(176), + [anon_sym_mod] = ACTIONS(179), + [anon_sym_pub] = ACTIONS(182), + [anon_sym_return] = ACTIONS(185), + [anon_sym_static] = ACTIONS(188), + [anon_sym_struct] = ACTIONS(191), + [anon_sym_trait] = ACTIONS(194), + [anon_sym_type] = ACTIONS(197), + [anon_sym_union] = ACTIONS(200), + [anon_sym_unsafe] = ACTIONS(203), + [anon_sym_use] = ACTIONS(206), + [anon_sym_while] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(212), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(218), + [anon_sym_COLON_COLON] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(224), + [anon_sym_DOT_DOT] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_move] = ACTIONS(236), + [sym_integer_literal] = ACTIONS(239), + [aux_sym_string_literal_token1] = ACTIONS(242), + [sym_char_literal] = ACTIONS(239), + [anon_sym_true] = ACTIONS(245), + [anon_sym_false] = ACTIONS(245), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(248), + [sym_super] = ACTIONS(251), + [sym_crate] = ACTIONS(254), + [sym_metavariable] = ACTIONS(257), + [sym_raw_string_literal] = ACTIONS(239), + [sym_float_literal] = ACTIONS(239), + [sym_block_comment] = ACTIONS(3), + }, + [6] = { + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1274), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_RBRACE] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -15300,234 +15341,234 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [7] = { - [sym__statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_macro_definition] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_foreign_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_union_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_extern_crate_declaration] = STATE(7), - [sym_const_item] = STATE(7), - [sym_static_item] = STATE(7), - [sym_type_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function_modifiers] = STATE(2475), - [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(1524), - [sym_visibility_modifier] = STATE(1344), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(78), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(82), - [sym_if_let_expression] = STATE(82), - [sym_match_expression] = STATE(82), - [sym_while_expression] = STATE(82), - [sym_while_let_expression] = STATE(82), - [sym_loop_expression] = STATE(82), - [sym_for_expression] = STATE(82), - [sym_const_block] = STATE(82), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2466), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(82), - [sym_async_block] = STATE(82), - [sym_block] = STATE(82), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [ts_builtin_sym_end] = ACTIONS(115), - [sym_identifier] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(120), - [anon_sym_macro_rules_BANG] = ACTIONS(123), - [anon_sym_LPAREN] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(132), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_u8] = ACTIONS(138), - [anon_sym_i8] = ACTIONS(138), - [anon_sym_u16] = ACTIONS(138), - [anon_sym_i16] = ACTIONS(138), - [anon_sym_u32] = ACTIONS(138), - [anon_sym_i32] = ACTIONS(138), - [anon_sym_u64] = ACTIONS(138), - [anon_sym_i64] = ACTIONS(138), - [anon_sym_u128] = ACTIONS(138), - [anon_sym_i128] = ACTIONS(138), - [anon_sym_isize] = ACTIONS(138), - [anon_sym_usize] = ACTIONS(138), - [anon_sym_f32] = ACTIONS(138), - [anon_sym_f64] = ACTIONS(138), - [anon_sym_bool] = ACTIONS(138), - [anon_sym_str] = ACTIONS(138), - [anon_sym_char] = ACTIONS(138), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_async] = ACTIONS(144), - [anon_sym_break] = ACTIONS(147), - [anon_sym_const] = ACTIONS(150), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_default] = ACTIONS(156), - [anon_sym_enum] = ACTIONS(159), - [anon_sym_fn] = ACTIONS(162), - [anon_sym_for] = ACTIONS(165), - [anon_sym_if] = ACTIONS(168), - [anon_sym_impl] = ACTIONS(171), - [anon_sym_let] = ACTIONS(174), - [anon_sym_loop] = ACTIONS(177), - [anon_sym_match] = ACTIONS(180), - [anon_sym_mod] = ACTIONS(183), - [anon_sym_pub] = ACTIONS(186), - [anon_sym_return] = ACTIONS(189), - [anon_sym_static] = ACTIONS(192), - [anon_sym_struct] = ACTIONS(195), - [anon_sym_trait] = ACTIONS(198), - [anon_sym_type] = ACTIONS(201), - [anon_sym_union] = ACTIONS(204), - [anon_sym_unsafe] = ACTIONS(207), - [anon_sym_use] = ACTIONS(210), - [anon_sym_while] = ACTIONS(213), - [anon_sym_POUND] = ACTIONS(216), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_LT] = ACTIONS(222), - [anon_sym_COLON_COLON] = ACTIONS(225), - [anon_sym_AMP] = ACTIONS(228), - [anon_sym_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(234), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_move] = ACTIONS(240), - [sym_integer_literal] = ACTIONS(243), - [aux_sym_string_literal_token1] = ACTIONS(246), - [sym_char_literal] = ACTIONS(243), - [anon_sym_true] = ACTIONS(249), - [anon_sym_false] = ACTIONS(249), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(252), - [sym_super] = ACTIONS(255), - [sym_crate] = ACTIONS(258), - [sym_metavariable] = ACTIONS(261), - [sym_raw_string_literal] = ACTIONS(243), - [sym_float_literal] = ACTIONS(243), + [sym__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(2481), + [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(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_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), }, [8] = { - [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(2475), - [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(1524), - [sym_visibility_modifier] = STATE(1344), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(78), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(82), - [sym_if_let_expression] = STATE(82), - [sym_match_expression] = STATE(82), - [sym_while_expression] = STATE(82), - [sym_while_let_expression] = STATE(82), - [sym_loop_expression] = STATE(82), - [sym_for_expression] = STATE(82), - [sym_const_block] = STATE(82), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2466), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(82), - [sym_async_block] = STATE(82), - [sym_block] = STATE(82), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [ts_builtin_sym_end] = ACTIONS(264), + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1270), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [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), @@ -15598,79 +15639,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [9] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2475), - [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(1524), - [sym_visibility_modifier] = STATE(1344), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1275), - [sym_macro_invocation] = STATE(78), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(82), - [sym_if_let_expression] = STATE(82), - [sym_match_expression] = STATE(82), - [sym_while_expression] = STATE(82), - [sym_while_let_expression] = STATE(82), - [sym_loop_expression] = STATE(82), - [sym_for_expression] = STATE(82), - [sym_const_block] = STATE(82), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2466), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(82), - [sym_async_block] = STATE(82), - [sym_block] = STATE(82), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [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(2481), + [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(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1215), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -15747,79 +15788,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [10] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2475), - [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(1524), - [sym_visibility_modifier] = STATE(1344), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1221), - [sym_macro_invocation] = STATE(78), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(82), - [sym_if_let_expression] = STATE(82), - [sym_match_expression] = STATE(82), - [sym_while_expression] = STATE(82), - [sym_while_let_expression] = STATE(82), - [sym_loop_expression] = STATE(82), - [sym_for_expression] = STATE(82), - [sym_const_block] = STATE(82), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2466), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(82), - [sym_async_block] = STATE(82), - [sym_block] = STATE(82), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [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(2481), + [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(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1247), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -15896,79 +15937,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [11] = { - [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(2475), - [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(1524), - [sym_visibility_modifier] = STATE(1344), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1222), - [sym_macro_invocation] = STATE(78), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(82), - [sym_if_let_expression] = STATE(82), - [sym_match_expression] = STATE(82), - [sym_while_expression] = STATE(82), - [sym_while_let_expression] = STATE(82), - [sym_loop_expression] = STATE(82), - [sym_for_expression] = STATE(82), - [sym_const_block] = STATE(82), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2466), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(82), - [sym_async_block] = STATE(82), - [sym_block] = STATE(82), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1268), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16045,228 +16086,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [12] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2475), - [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(1524), - [sym_visibility_modifier] = STATE(1344), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(183), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(82), - [sym_if_let_expression] = STATE(82), - [sym_match_expression] = STATE(82), - [sym_while_expression] = STATE(82), - [sym_while_let_expression] = STATE(82), - [sym_loop_expression] = STATE(82), - [sym_for_expression] = STATE(82), - [sym_const_block] = STATE(82), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2466), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(82), - [sym_async_block] = STATE(82), - [sym_block] = STATE(82), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(120), - [anon_sym_macro_rules_BANG] = ACTIONS(123), - [anon_sym_LPAREN] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_RBRACE] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(132), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_u8] = ACTIONS(138), - [anon_sym_i8] = ACTIONS(138), - [anon_sym_u16] = ACTIONS(138), - [anon_sym_i16] = ACTIONS(138), - [anon_sym_u32] = ACTIONS(138), - [anon_sym_i32] = ACTIONS(138), - [anon_sym_u64] = ACTIONS(138), - [anon_sym_i64] = ACTIONS(138), - [anon_sym_u128] = ACTIONS(138), - [anon_sym_i128] = ACTIONS(138), - [anon_sym_isize] = ACTIONS(138), - [anon_sym_usize] = ACTIONS(138), - [anon_sym_f32] = ACTIONS(138), - [anon_sym_f64] = ACTIONS(138), - [anon_sym_bool] = ACTIONS(138), - [anon_sym_str] = ACTIONS(138), - [anon_sym_char] = ACTIONS(138), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_async] = ACTIONS(144), - [anon_sym_break] = ACTIONS(147), - [anon_sym_const] = ACTIONS(150), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_default] = ACTIONS(156), - [anon_sym_enum] = ACTIONS(159), - [anon_sym_fn] = ACTIONS(162), - [anon_sym_for] = ACTIONS(165), - [anon_sym_if] = ACTIONS(168), - [anon_sym_impl] = ACTIONS(171), - [anon_sym_let] = ACTIONS(174), - [anon_sym_loop] = ACTIONS(177), - [anon_sym_match] = ACTIONS(180), - [anon_sym_mod] = ACTIONS(183), - [anon_sym_pub] = ACTIONS(186), - [anon_sym_return] = ACTIONS(189), - [anon_sym_static] = ACTIONS(192), - [anon_sym_struct] = ACTIONS(195), - [anon_sym_trait] = ACTIONS(198), - [anon_sym_type] = ACTIONS(201), - [anon_sym_union] = ACTIONS(204), - [anon_sym_unsafe] = ACTIONS(207), - [anon_sym_use] = ACTIONS(210), - [anon_sym_while] = ACTIONS(213), - [anon_sym_POUND] = ACTIONS(216), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_LT] = ACTIONS(222), - [anon_sym_COLON_COLON] = ACTIONS(225), - [anon_sym_AMP] = ACTIONS(228), - [anon_sym_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(234), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_move] = ACTIONS(240), - [sym_integer_literal] = ACTIONS(243), - [aux_sym_string_literal_token1] = ACTIONS(246), - [sym_char_literal] = ACTIONS(243), - [anon_sym_true] = ACTIONS(249), - [anon_sym_false] = ACTIONS(249), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(252), - [sym_super] = ACTIONS(255), - [sym_crate] = ACTIONS(258), - [sym_metavariable] = ACTIONS(261), - [sym_raw_string_literal] = ACTIONS(243), - [sym_float_literal] = ACTIONS(243), - [sym_block_comment] = ACTIONS(3), - }, - [13] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2475), - [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(1524), - [sym_visibility_modifier] = STATE(1344), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1279), - [sym_macro_invocation] = STATE(78), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(82), - [sym_if_let_expression] = STATE(82), - [sym_match_expression] = STATE(82), - [sym_while_expression] = STATE(82), - [sym_while_let_expression] = STATE(82), - [sym_loop_expression] = STATE(82), - [sym_for_expression] = STATE(82), - [sym_const_block] = STATE(82), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2466), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(82), - [sym_async_block] = STATE(82), - [sym_block] = STATE(82), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1248), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16342,80 +16234,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [14] = { - [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(2475), - [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(1524), - [sym_visibility_modifier] = STATE(1344), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1229), - [sym_macro_invocation] = STATE(78), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(82), - [sym_if_let_expression] = STATE(82), - [sym_match_expression] = STATE(82), - [sym_while_expression] = STATE(82), - [sym_while_let_expression] = STATE(82), - [sym_loop_expression] = STATE(82), - [sym_for_expression] = STATE(82), - [sym_const_block] = STATE(82), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2466), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(82), - [sym_async_block] = STATE(82), - [sym_block] = STATE(82), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [13] = { + [sym__statement] = STATE(14), + [sym_empty_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_macro_definition] = STATE(14), + [sym_attribute_item] = STATE(14), + [sym_inner_attribute_item] = STATE(14), + [sym_mod_item] = STATE(14), + [sym_foreign_mod_item] = STATE(14), + [sym_struct_item] = STATE(14), + [sym_union_item] = STATE(14), + [sym_enum_item] = STATE(14), + [sym_extern_crate_declaration] = STATE(14), + [sym_const_item] = STATE(14), + [sym_static_item] = STATE(14), + [sym_type_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function_modifiers] = STATE(2481), + [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(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16491,80 +16383,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [15] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2475), - [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(1524), - [sym_visibility_modifier] = STATE(1344), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1238), - [sym_macro_invocation] = STATE(78), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(82), - [sym_if_let_expression] = STATE(82), - [sym_match_expression] = STATE(82), - [sym_while_expression] = STATE(82), - [sym_while_let_expression] = STATE(82), - [sym_loop_expression] = STATE(82), - [sym_for_expression] = STATE(82), - [sym_const_block] = STATE(82), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2466), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(82), - [sym_async_block] = STATE(82), - [sym_block] = STATE(82), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [14] = { + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1255), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16640,80 +16532,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [16] = { - [sym__statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_macro_definition] = STATE(15), - [sym_attribute_item] = STATE(15), - [sym_inner_attribute_item] = STATE(15), - [sym_mod_item] = STATE(15), - [sym_foreign_mod_item] = STATE(15), - [sym_struct_item] = STATE(15), - [sym_union_item] = STATE(15), - [sym_enum_item] = STATE(15), - [sym_extern_crate_declaration] = STATE(15), - [sym_const_item] = STATE(15), - [sym_static_item] = STATE(15), - [sym_type_item] = STATE(15), - [sym_function_item] = STATE(15), - [sym_function_signature_item] = STATE(15), - [sym_function_modifiers] = STATE(2475), - [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(1524), - [sym_visibility_modifier] = STATE(1344), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1241), - [sym_macro_invocation] = STATE(78), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(82), - [sym_if_let_expression] = STATE(82), - [sym_match_expression] = STATE(82), - [sym_while_expression] = STATE(82), - [sym_while_let_expression] = STATE(82), - [sym_loop_expression] = STATE(82), - [sym_for_expression] = STATE(82), - [sym_const_block] = STATE(82), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2466), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(82), - [sym_async_block] = STATE(82), - [sym_block] = STATE(82), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [15] = { + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_macro_definition] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_foreign_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_union_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_extern_crate_declaration] = STATE(12), + [sym_const_item] = STATE(12), + [sym_static_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2481), + [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(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1222), + [sym_macro_invocation] = STATE(159), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16789,53 +16681,202 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [16] = { + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2481), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1547), + [sym_visibility_modifier] = STATE(1350), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(183), + [sym_scoped_identifier] = STATE(1182), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(72), + [sym_if_let_expression] = STATE(72), + [sym_match_expression] = STATE(72), + [sym_while_expression] = STATE(72), + [sym_while_let_expression] = STATE(72), + [sym_loop_expression] = STATE(72), + [sym_for_expression] = STATE(72), + [sym_const_block] = STATE(72), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2472), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(72), + [sym_async_block] = STATE(72), + [sym_block] = STATE(72), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(116), + [anon_sym_macro_rules_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(128), + [anon_sym_STAR] = ACTIONS(131), + [anon_sym_u8] = ACTIONS(134), + [anon_sym_i8] = ACTIONS(134), + [anon_sym_u16] = ACTIONS(134), + [anon_sym_i16] = ACTIONS(134), + [anon_sym_u32] = ACTIONS(134), + [anon_sym_i32] = ACTIONS(134), + [anon_sym_u64] = ACTIONS(134), + [anon_sym_i64] = ACTIONS(134), + [anon_sym_u128] = ACTIONS(134), + [anon_sym_i128] = ACTIONS(134), + [anon_sym_isize] = ACTIONS(134), + [anon_sym_usize] = ACTIONS(134), + [anon_sym_f32] = ACTIONS(134), + [anon_sym_f64] = ACTIONS(134), + [anon_sym_bool] = ACTIONS(134), + [anon_sym_str] = ACTIONS(134), + [anon_sym_char] = ACTIONS(134), + [anon_sym_SQUOTE] = ACTIONS(137), + [anon_sym_async] = ACTIONS(140), + [anon_sym_break] = ACTIONS(143), + [anon_sym_const] = ACTIONS(146), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_default] = ACTIONS(152), + [anon_sym_enum] = ACTIONS(155), + [anon_sym_fn] = ACTIONS(158), + [anon_sym_for] = ACTIONS(161), + [anon_sym_if] = ACTIONS(164), + [anon_sym_impl] = ACTIONS(167), + [anon_sym_let] = ACTIONS(170), + [anon_sym_loop] = ACTIONS(173), + [anon_sym_match] = ACTIONS(176), + [anon_sym_mod] = ACTIONS(179), + [anon_sym_pub] = ACTIONS(182), + [anon_sym_return] = ACTIONS(185), + [anon_sym_static] = ACTIONS(188), + [anon_sym_struct] = ACTIONS(191), + [anon_sym_trait] = ACTIONS(194), + [anon_sym_type] = ACTIONS(197), + [anon_sym_union] = ACTIONS(200), + [anon_sym_unsafe] = ACTIONS(203), + [anon_sym_use] = ACTIONS(206), + [anon_sym_while] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(212), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(218), + [anon_sym_COLON_COLON] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(224), + [anon_sym_DOT_DOT] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_move] = ACTIONS(236), + [sym_integer_literal] = ACTIONS(239), + [aux_sym_string_literal_token1] = ACTIONS(242), + [sym_char_literal] = ACTIONS(239), + [anon_sym_true] = ACTIONS(245), + [anon_sym_false] = ACTIONS(245), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(248), + [sym_super] = ACTIONS(251), + [sym_crate] = ACTIONS(254), + [sym_metavariable] = ACTIONS(257), + [sym_raw_string_literal] = ACTIONS(239), + [sym_float_literal] = ACTIONS(239), + [sym_block_comment] = ACTIONS(3), + }, [17] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1157), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1164), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(282), [anon_sym_LPAREN] = ACTIONS(282), @@ -16932,52 +16973,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1105), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1157), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(17), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(310), [anon_sym_LPAREN] = ACTIONS(310), @@ -17007,7 +17048,7 @@ static 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_SQUOTE] = ACTIONS(314), [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), @@ -17073,64 +17114,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), [sym__expression] = STATE(1105), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(310), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_RPAREN] = ACTIONS(316), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(310), - [anon_sym_EQ_GT] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_RBRACK] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(316), + [anon_sym_EQ_GT] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -17149,7 +17190,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(312), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -17164,41 +17205,41 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_COMMA] = ACTIONS(310), - [anon_sym_LT] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(312), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_AMP_AMP] = ACTIONS(310), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_EQ_EQ] = ACTIONS(310), - [anon_sym_BANG_EQ] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(312), - [anon_sym_GT_GT] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(312), - [anon_sym_PERCENT] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(310), - [anon_sym_DASH_EQ] = ACTIONS(310), - [anon_sym_STAR_EQ] = ACTIONS(310), - [anon_sym_SLASH_EQ] = ACTIONS(310), - [anon_sym_PERCENT_EQ] = ACTIONS(310), - [anon_sym_AMP_EQ] = ACTIONS(310), - [anon_sym_PIPE_EQ] = ACTIONS(310), - [anon_sym_CARET_EQ] = ACTIONS(310), - [anon_sym_LT_LT_EQ] = ACTIONS(310), - [anon_sym_GT_GT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -17214,64 +17255,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1152), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1105), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(314), + [anon_sym_SEMI] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(314), + [anon_sym_RPAREN] = ACTIONS(316), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(314), - [anon_sym_EQ_GT] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(314), + [anon_sym_RBRACE] = ACTIONS(316), + [anon_sym_EQ_GT] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -17290,7 +17331,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(316), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -17305,41 +17346,41 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(314), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(316), [anon_sym_LT] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(316), + [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(314), - [anon_sym_DOT_DOT] = ACTIONS(322), - [anon_sym_DOT_DOT_EQ] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(314), - [anon_sym_PIPE_PIPE] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(324), - [anon_sym_CARET] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(314), - [anon_sym_BANG_EQ] = ACTIONS(314), - [anon_sym_LT_EQ] = ACTIONS(314), - [anon_sym_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT] = ACTIONS(316), - [anon_sym_GT_GT] = ACTIONS(316), - [anon_sym_SLASH] = ACTIONS(316), - [anon_sym_PERCENT] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -17355,64 +17396,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1154), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(326), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(326), + [anon_sym_SEMI] = ACTIONS(320), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_RPAREN] = ACTIONS(320), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(326), - [anon_sym_EQ_GT] = ACTIONS(326), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(326), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(326), + [anon_sym_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), @@ -17431,7 +17472,7 @@ static 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(328), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -17446,41 +17487,41 @@ static 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(328), - [anon_sym_COMMA] = ACTIONS(326), - [anon_sym_LT] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(328), + [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(320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(326), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), [anon_sym_DOT_DOT] = ACTIONS(322), - [anon_sym_DOT_DOT_EQ] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(326), - [anon_sym_PIPE_PIPE] = ACTIONS(326), - [anon_sym_PIPE] = ACTIONS(324), - [anon_sym_CARET] = ACTIONS(328), - [anon_sym_EQ_EQ] = ACTIONS(326), - [anon_sym_BANG_EQ] = ACTIONS(326), - [anon_sym_LT_EQ] = ACTIONS(326), - [anon_sym_GT_EQ] = ACTIONS(326), - [anon_sym_LT_LT] = ACTIONS(328), - [anon_sym_GT_GT] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PERCENT] = ACTIONS(328), - [anon_sym_PLUS_EQ] = ACTIONS(326), - [anon_sym_DASH_EQ] = ACTIONS(326), - [anon_sym_STAR_EQ] = ACTIONS(326), - [anon_sym_SLASH_EQ] = ACTIONS(326), - [anon_sym_PERCENT_EQ] = ACTIONS(326), - [anon_sym_AMP_EQ] = ACTIONS(326), - [anon_sym_PIPE_EQ] = ACTIONS(326), - [anon_sym_CARET_EQ] = ACTIONS(326), - [anon_sym_LT_LT_EQ] = ACTIONS(326), - [anon_sym_GT_GT_EQ] = ACTIONS(326), + [anon_sym_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(328), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -17496,64 +17537,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1146), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1153), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(330), - [anon_sym_LPAREN] = ACTIONS(330), - [anon_sym_RPAREN] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(324), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(324), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(330), - [anon_sym_EQ_GT] = ACTIONS(330), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_RBRACK] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_QMARK] = ACTIONS(330), + [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_EQ_GT] = ACTIONS(324), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_STAR] = ACTIONS(308), + [anon_sym_QMARK] = ACTIONS(324), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -17571,8 +17612,8 @@ static 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(334), - [anon_sym_as] = ACTIONS(332), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(326), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -17587,41 +17628,41 @@ static 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(332), - [anon_sym_COMMA] = ACTIONS(330), - [anon_sym_LT] = ACTIONS(332), - [anon_sym_GT] = ACTIONS(332), + [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(332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(330), + [anon_sym_AMP] = ACTIONS(330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(324), [anon_sym_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(332), - [anon_sym_AMP_AMP] = ACTIONS(330), - [anon_sym_PIPE_PIPE] = ACTIONS(330), - [anon_sym_PIPE] = ACTIONS(332), - [anon_sym_CARET] = ACTIONS(332), - [anon_sym_EQ_EQ] = ACTIONS(330), - [anon_sym_BANG_EQ] = ACTIONS(330), - [anon_sym_LT_EQ] = ACTIONS(330), - [anon_sym_GT_EQ] = ACTIONS(330), - [anon_sym_LT_LT] = ACTIONS(332), - [anon_sym_GT_GT] = ACTIONS(332), - [anon_sym_SLASH] = ACTIONS(332), - [anon_sym_PERCENT] = ACTIONS(332), - [anon_sym_PLUS_EQ] = ACTIONS(330), - [anon_sym_DASH_EQ] = ACTIONS(330), - [anon_sym_STAR_EQ] = ACTIONS(330), - [anon_sym_SLASH_EQ] = ACTIONS(330), - [anon_sym_PERCENT_EQ] = ACTIONS(330), - [anon_sym_AMP_EQ] = ACTIONS(330), - [anon_sym_PIPE_EQ] = ACTIONS(330), - [anon_sym_CARET_EQ] = ACTIONS(330), - [anon_sym_LT_LT_EQ] = ACTIONS(330), - [anon_sym_GT_GT_EQ] = ACTIONS(330), + [anon_sym_DOT_DOT_EQ] = ACTIONS(324), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(324), + [anon_sym_LT_EQ] = ACTIONS(324), + [anon_sym_GT_EQ] = ACTIONS(324), + [anon_sym_LT_LT] = ACTIONS(326), + [anon_sym_GT_GT] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PERCENT] = ACTIONS(326), + [anon_sym_PLUS_EQ] = ACTIONS(324), + [anon_sym_DASH_EQ] = ACTIONS(324), + [anon_sym_STAR_EQ] = ACTIONS(324), + [anon_sym_SLASH_EQ] = ACTIONS(324), + [anon_sym_PERCENT_EQ] = ACTIONS(324), + [anon_sym_AMP_EQ] = ACTIONS(324), + [anon_sym_PIPE_EQ] = ACTIONS(324), + [anon_sym_CARET_EQ] = ACTIONS(324), + [anon_sym_LT_LT_EQ] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(324), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(332), + [anon_sym_DOT] = ACTIONS(326), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -17637,52 +17678,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1082), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1145), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(336), [anon_sym_LPAREN] = ACTIONS(13), @@ -17690,10 +17731,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -17730,17 +17771,17 @@ static 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), @@ -17778,64 +17819,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1082), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(336), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_RPAREN] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(320), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(320), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(336), - [anon_sym_EQ_GT] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_RBRACK] = ACTIONS(336), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_RBRACE] = ACTIONS(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), @@ -17854,7 +17895,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(338), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -17869,41 +17910,41 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_LT] = ACTIONS(338), - [anon_sym_GT] = ACTIONS(338), + [anon_sym_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(338), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(338), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(338), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(338), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(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(338), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -17919,52 +17960,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1267), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(282), [anon_sym_LBRACE] = ACTIONS(282), @@ -18055,59 +18096,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1225), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1105), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(328), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(326), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -18126,7 +18167,7 @@ static 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(328), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -18141,40 +18182,40 @@ static 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(328), + [anon_sym_EQ] = ACTIONS(318), [anon_sym_LT] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(326), - [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(326), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(326), - [anon_sym_PIPE_PIPE] = ACTIONS(326), - [anon_sym_PIPE] = ACTIONS(324), - [anon_sym_CARET] = ACTIONS(328), - [anon_sym_EQ_EQ] = ACTIONS(326), - [anon_sym_BANG_EQ] = ACTIONS(326), - [anon_sym_LT_EQ] = ACTIONS(326), - [anon_sym_GT_EQ] = ACTIONS(326), - [anon_sym_LT_LT] = ACTIONS(328), - [anon_sym_GT_GT] = ACTIONS(328), - [anon_sym_SLASH] = ACTIONS(328), - [anon_sym_PERCENT] = ACTIONS(328), - [anon_sym_PLUS_EQ] = ACTIONS(326), - [anon_sym_DASH_EQ] = ACTIONS(326), - [anon_sym_STAR_EQ] = ACTIONS(326), - [anon_sym_SLASH_EQ] = ACTIONS(326), - [anon_sym_PERCENT_EQ] = ACTIONS(326), - [anon_sym_AMP_EQ] = ACTIONS(326), - [anon_sym_PIPE_EQ] = ACTIONS(326), - [anon_sym_CARET_EQ] = ACTIONS(326), - [anon_sym_LT_LT_EQ] = ACTIONS(326), - [anon_sym_GT_GT_EQ] = ACTIONS(326), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(328), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18190,52 +18231,187 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), [sym__expression] = STATE(1105), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(318), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [anon_sym_DOT] = ACTIONS(318), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [28] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1241), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(25), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(310), [anon_sym_LBRACE] = ACTIONS(310), @@ -18260,7 +18436,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(342), [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(314), [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), @@ -18324,59 +18500,59 @@ static 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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1082), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [29] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1229), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(350), [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), @@ -18412,17 +18588,17 @@ static 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), @@ -18459,60 +18635,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [29] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1231), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [30] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1224), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(326), [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(314), + [anon_sym_QMARK] = ACTIONS(324), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -18531,7 +18707,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(316), + [anon_sym_as] = ACTIONS(326), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -18546,175 +18722,40 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(316), + [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(314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(324), [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(314), + [anon_sym_DOT_DOT_EQ] = ACTIONS(324), [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(314), - [anon_sym_PIPE_PIPE] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(324), - [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), - }, - [30] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1219), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(25), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(330), - [anon_sym_LBRACK] = ACTIONS(330), - [anon_sym_PLUS] = ACTIONS(332), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_QMARK] = ACTIONS(330), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [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(334), - [anon_sym_as] = ACTIONS(332), - [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(332), - [anon_sym_LT] = ACTIONS(332), - [anon_sym_GT] = ACTIONS(332), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(330), - [anon_sym_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT_EQ] = ACTIONS(330), - [anon_sym_DASH] = ACTIONS(332), - [anon_sym_AMP_AMP] = ACTIONS(330), - [anon_sym_PIPE_PIPE] = ACTIONS(330), - [anon_sym_PIPE] = ACTIONS(332), - [anon_sym_CARET] = ACTIONS(332), - [anon_sym_EQ_EQ] = ACTIONS(330), - [anon_sym_BANG_EQ] = ACTIONS(330), - [anon_sym_LT_EQ] = ACTIONS(330), - [anon_sym_GT_EQ] = ACTIONS(330), - [anon_sym_LT_LT] = ACTIONS(332), - [anon_sym_GT_GT] = ACTIONS(332), - [anon_sym_SLASH] = ACTIONS(332), - [anon_sym_PERCENT] = ACTIONS(332), - [anon_sym_PLUS_EQ] = ACTIONS(330), - [anon_sym_DASH_EQ] = ACTIONS(330), - [anon_sym_STAR_EQ] = ACTIONS(330), - [anon_sym_SLASH_EQ] = ACTIONS(330), - [anon_sym_PERCENT_EQ] = ACTIONS(330), - [anon_sym_AMP_EQ] = ACTIONS(330), - [anon_sym_PIPE_EQ] = ACTIONS(330), - [anon_sym_CARET_EQ] = ACTIONS(330), - [anon_sym_LT_LT_EQ] = ACTIONS(330), - [anon_sym_GT_GT_EQ] = ACTIONS(330), + [anon_sym_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(332), + [anon_sym_DOT] = ACTIONS(326), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18730,59 +18771,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1082), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(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), @@ -18801,7 +18842,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(338), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -18816,40 +18857,40 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_LT] = ACTIONS(338), - [anon_sym_GT] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(338), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(338), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(338), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(338), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(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(338), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -18865,59 +18906,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1105), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(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), @@ -18936,7 +18977,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(312), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -18951,40 +18992,40 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(312), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_AMP_AMP] = ACTIONS(310), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_EQ_EQ] = ACTIONS(310), - [anon_sym_BANG_EQ] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(312), - [anon_sym_GT_GT] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(312), - [anon_sym_PERCENT] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(310), - [anon_sym_DASH_EQ] = ACTIONS(310), - [anon_sym_STAR_EQ] = ACTIONS(310), - [anon_sym_SLASH_EQ] = ACTIONS(310), - [anon_sym_PERCENT_EQ] = ACTIONS(310), - [anon_sym_AMP_EQ] = ACTIONS(310), - [anon_sym_PIPE_EQ] = ACTIONS(310), - [anon_sym_CARET_EQ] = ACTIONS(310), - [anon_sym_LT_LT_EQ] = ACTIONS(310), - [anon_sym_GT_GT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(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(312), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19000,59 +19041,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym_attribute_item] = STATE(623), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1191), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_enum_variant_list_repeat1] = STATE(623), + [sym_attribute_item] = STATE(43), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1204), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(43), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(368), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(368), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -19111,59 +19152,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym_attribute_item] = STATE(41), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1201), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_enum_variant_list_repeat1] = STATE(41), + [sym_attribute_item] = STATE(600), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1197), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(600), [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), @@ -19222,54 +19263,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym_attribute_item] = STATE(33), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1190), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_enum_variant_list_repeat1] = STATE(33), + [sym_attribute_item] = STATE(34), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1195), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(34), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -19333,54 +19374,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym_attribute_item] = STATE(43), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1230), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_enum_variant_list_repeat1] = STATE(43), + [sym_attribute_item] = STATE(40), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1267), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(40), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(382), @@ -19443,54 +19484,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym_attribute_item] = STATE(43), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1230), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_enum_variant_list_repeat1] = STATE(43), + [sym_attribute_item] = STATE(42), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(42), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(384), @@ -19553,54 +19594,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [38] = { - [sym_attribute_item] = STATE(43), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1230), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_enum_variant_list_repeat1] = STATE(43), + [sym_attribute_item] = STATE(42), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(42), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(386), @@ -19663,54 +19704,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1250), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_enum_variant_list_repeat1] = STATE(40), + [sym_attribute_item] = STATE(42), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(42), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(388), @@ -19773,54 +19814,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym_attribute_item] = STATE(623), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1289), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_enum_variant_list_repeat1] = STATE(623), + [sym_attribute_item] = STATE(600), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1302), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(600), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -19882,54 +19923,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym_attribute_item] = STATE(623), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1197), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_enum_variant_list_repeat1] = STATE(623), + [sym_attribute_item] = STATE(42), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(42), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -19991,54 +20032,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym_attribute_item] = STATE(43), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1230), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_enum_variant_list_repeat1] = STATE(43), + [sym_attribute_item] = STATE(600), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1265), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(600), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20100,54 +20141,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym_attribute_item] = STATE(623), - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1265), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_enum_variant_list_repeat1] = STATE(623), + [sym_attribute_item] = STATE(600), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_enum_variant_list_repeat1] = STATE(600), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20209,164 +20250,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [44] = { - [sym_else_clause] = STATE(182), - [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), - }, - [45] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1211), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_tuple_expression_repeat1] = STATE(46), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_tuple_expression_repeat1] = STATE(48), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(396), + [anon_sym_RPAREN] = ACTIONS(390), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -20424,273 +20357,57 @@ static 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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_tuple_expression_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_STAR] = ACTIONS(412), - [anon_sym_u8] = ACTIONS(415), - [anon_sym_i8] = ACTIONS(415), - [anon_sym_u16] = ACTIONS(415), - [anon_sym_i16] = ACTIONS(415), - [anon_sym_u32] = ACTIONS(415), - [anon_sym_i32] = ACTIONS(415), - [anon_sym_u64] = ACTIONS(415), - [anon_sym_i64] = ACTIONS(415), - [anon_sym_u128] = ACTIONS(415), - [anon_sym_i128] = ACTIONS(415), - [anon_sym_isize] = ACTIONS(415), - [anon_sym_usize] = ACTIONS(415), - [anon_sym_f32] = ACTIONS(415), - [anon_sym_f64] = ACTIONS(415), - [anon_sym_bool] = ACTIONS(415), - [anon_sym_str] = ACTIONS(415), - [anon_sym_char] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(418), - [anon_sym_async] = ACTIONS(421), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(427), - [anon_sym_continue] = ACTIONS(430), - [anon_sym_default] = ACTIONS(433), - [anon_sym_for] = ACTIONS(436), - [anon_sym_if] = ACTIONS(439), - [anon_sym_loop] = ACTIONS(442), - [anon_sym_match] = ACTIONS(445), - [anon_sym_return] = ACTIONS(448), - [anon_sym_union] = ACTIONS(433), - [anon_sym_unsafe] = ACTIONS(451), - [anon_sym_while] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(457), - [anon_sym_COLON_COLON] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(463), - [anon_sym_DOT_DOT] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_PIPE] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(475), - [sym_integer_literal] = ACTIONS(478), - [aux_sym_string_literal_token1] = ACTIONS(481), - [sym_char_literal] = ACTIONS(478), - [anon_sym_true] = ACTIONS(484), - [anon_sym_false] = ACTIONS(484), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(490), - [sym_crate] = ACTIONS(490), - [sym_metavariable] = ACTIONS(493), - [sym_raw_string_literal] = ACTIONS(478), - [sym_float_literal] = ACTIONS(478), - [sym_block_comment] = ACTIONS(3), - }, - [47] = { - [sym_else_clause] = STATE(76), - [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(394), - [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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1211), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_tuple_expression_repeat1] = STATE(50), + [45] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1283), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_tuple_expression_repeat1] = STATE(47), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(396), + [anon_sym_RPAREN] = ACTIONS(392), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -20748,57 +20465,273 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [49] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1215), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_tuple_expression_repeat1] = STATE(45), + [46] = { + [sym_else_clause] = STATE(141), + [ts_builtin_sym_end] = ACTIONS(394), + [sym_identifier] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(394), + [anon_sym_macro_rules_BANG] = ACTIONS(394), + [anon_sym_LPAREN] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_RBRACE] = ACTIONS(394), + [anon_sym_LBRACK] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_QMARK] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(396), + [anon_sym_i8] = ACTIONS(396), + [anon_sym_u16] = ACTIONS(396), + [anon_sym_i16] = ACTIONS(396), + [anon_sym_u32] = ACTIONS(396), + [anon_sym_i32] = ACTIONS(396), + [anon_sym_u64] = ACTIONS(396), + [anon_sym_i64] = ACTIONS(396), + [anon_sym_u128] = ACTIONS(396), + [anon_sym_i128] = ACTIONS(396), + [anon_sym_isize] = ACTIONS(396), + [anon_sym_usize] = ACTIONS(396), + [anon_sym_f32] = ACTIONS(396), + [anon_sym_f64] = ACTIONS(396), + [anon_sym_bool] = ACTIONS(396), + [anon_sym_str] = ACTIONS(396), + [anon_sym_char] = ACTIONS(396), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_as] = ACTIONS(396), + [anon_sym_async] = ACTIONS(396), + [anon_sym_break] = ACTIONS(396), + [anon_sym_const] = ACTIONS(396), + [anon_sym_continue] = ACTIONS(396), + [anon_sym_default] = ACTIONS(396), + [anon_sym_enum] = ACTIONS(396), + [anon_sym_fn] = ACTIONS(396), + [anon_sym_for] = ACTIONS(396), + [anon_sym_if] = ACTIONS(396), + [anon_sym_impl] = ACTIONS(396), + [anon_sym_let] = ACTIONS(396), + [anon_sym_loop] = ACTIONS(396), + [anon_sym_match] = ACTIONS(396), + [anon_sym_mod] = ACTIONS(396), + [anon_sym_pub] = ACTIONS(396), + [anon_sym_return] = ACTIONS(396), + [anon_sym_static] = ACTIONS(396), + [anon_sym_struct] = ACTIONS(396), + [anon_sym_trait] = ACTIONS(396), + [anon_sym_type] = ACTIONS(396), + [anon_sym_union] = ACTIONS(396), + [anon_sym_unsafe] = ACTIONS(396), + [anon_sym_use] = ACTIONS(396), + [anon_sym_while] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_EQ] = ACTIONS(396), + [anon_sym_extern] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(396), + [anon_sym_COLON_COLON] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(394), + [anon_sym_DOT_DOT] = ACTIONS(396), + [anon_sym_DOT_DOT_EQ] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_AMP_AMP] = ACTIONS(394), + [anon_sym_PIPE_PIPE] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(396), + [anon_sym_CARET] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(394), + [anon_sym_BANG_EQ] = ACTIONS(394), + [anon_sym_LT_EQ] = ACTIONS(394), + [anon_sym_GT_EQ] = ACTIONS(394), + [anon_sym_LT_LT] = ACTIONS(396), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_PLUS_EQ] = ACTIONS(394), + [anon_sym_DASH_EQ] = ACTIONS(394), + [anon_sym_STAR_EQ] = ACTIONS(394), + [anon_sym_SLASH_EQ] = ACTIONS(394), + [anon_sym_PERCENT_EQ] = ACTIONS(394), + [anon_sym_AMP_EQ] = ACTIONS(394), + [anon_sym_PIPE_EQ] = ACTIONS(394), + [anon_sym_CARET_EQ] = ACTIONS(394), + [anon_sym_LT_LT_EQ] = ACTIONS(394), + [anon_sym_GT_GT_EQ] = ACTIONS(394), + [anon_sym_yield] = ACTIONS(396), + [anon_sym_else] = ACTIONS(398), + [anon_sym_move] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [sym_integer_literal] = ACTIONS(394), + [aux_sym_string_literal_token1] = ACTIONS(394), + [sym_char_literal] = ACTIONS(394), + [anon_sym_true] = ACTIONS(396), + [anon_sym_false] = ACTIONS(396), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(396), + [sym_super] = ACTIONS(396), + [sym_crate] = ACTIONS(396), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(394), + [sym_float_literal] = ACTIONS(394), + [sym_block_comment] = ACTIONS(3), + }, + [47] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_tuple_expression_repeat1] = STATE(47), + [sym_identifier] = ACTIONS(400), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(417), + [anon_sym_i8] = ACTIONS(417), + [anon_sym_u16] = ACTIONS(417), + [anon_sym_i16] = ACTIONS(417), + [anon_sym_u32] = ACTIONS(417), + [anon_sym_i32] = ACTIONS(417), + [anon_sym_u64] = ACTIONS(417), + [anon_sym_i64] = ACTIONS(417), + [anon_sym_u128] = ACTIONS(417), + [anon_sym_i128] = ACTIONS(417), + [anon_sym_isize] = ACTIONS(417), + [anon_sym_usize] = ACTIONS(417), + [anon_sym_f32] = ACTIONS(417), + [anon_sym_f64] = ACTIONS(417), + [anon_sym_bool] = ACTIONS(417), + [anon_sym_str] = ACTIONS(417), + [anon_sym_char] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_async] = ACTIONS(423), + [anon_sym_break] = ACTIONS(426), + [anon_sym_const] = ACTIONS(429), + [anon_sym_continue] = ACTIONS(432), + [anon_sym_default] = ACTIONS(435), + [anon_sym_for] = ACTIONS(438), + [anon_sym_if] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(444), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(450), + [anon_sym_union] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(456), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_AMP] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(471), + [anon_sym_yield] = ACTIONS(474), + [anon_sym_move] = ACTIONS(477), + [sym_integer_literal] = ACTIONS(480), + [aux_sym_string_literal_token1] = ACTIONS(483), + [sym_char_literal] = ACTIONS(480), + [anon_sym_true] = ACTIONS(486), + [anon_sym_false] = ACTIONS(486), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(492), + [sym_crate] = ACTIONS(492), + [sym_metavariable] = ACTIONS(495), + [sym_raw_string_literal] = ACTIONS(480), + [sym_float_literal] = ACTIONS(480), + [sym_block_comment] = ACTIONS(3), + }, + [48] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_tuple_expression_repeat1] = STATE(47), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(500), + [anon_sym_RPAREN] = ACTIONS(498), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -20856,57 +20789,57 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [50] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1255), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [aux_sym_tuple_expression_repeat1] = STATE(46), + [49] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [aux_sym_tuple_expression_repeat1] = STATE(45), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(502), + [anon_sym_RPAREN] = ACTIONS(498), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -20964,165 +20897,273 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [50] = { + [sym_else_clause] = STATE(115), + [ts_builtin_sym_end] = ACTIONS(500), + [sym_identifier] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(500), + [anon_sym_macro_rules_BANG] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(502), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u8] = ACTIONS(502), + [anon_sym_i8] = ACTIONS(502), + [anon_sym_u16] = ACTIONS(502), + [anon_sym_i16] = ACTIONS(502), + [anon_sym_u32] = ACTIONS(502), + [anon_sym_i32] = ACTIONS(502), + [anon_sym_u64] = ACTIONS(502), + [anon_sym_i64] = ACTIONS(502), + [anon_sym_u128] = ACTIONS(502), + [anon_sym_i128] = ACTIONS(502), + [anon_sym_isize] = ACTIONS(502), + [anon_sym_usize] = ACTIONS(502), + [anon_sym_f32] = ACTIONS(502), + [anon_sym_f64] = ACTIONS(502), + [anon_sym_bool] = ACTIONS(502), + [anon_sym_str] = ACTIONS(502), + [anon_sym_char] = ACTIONS(502), + [anon_sym_SQUOTE] = ACTIONS(502), + [anon_sym_as] = ACTIONS(502), + [anon_sym_async] = ACTIONS(502), + [anon_sym_break] = ACTIONS(502), + [anon_sym_const] = ACTIONS(502), + [anon_sym_continue] = ACTIONS(502), + [anon_sym_default] = ACTIONS(502), + [anon_sym_enum] = ACTIONS(502), + [anon_sym_fn] = ACTIONS(502), + [anon_sym_for] = ACTIONS(502), + [anon_sym_if] = ACTIONS(502), + [anon_sym_impl] = ACTIONS(502), + [anon_sym_let] = ACTIONS(502), + [anon_sym_loop] = ACTIONS(502), + [anon_sym_match] = ACTIONS(502), + [anon_sym_mod] = ACTIONS(502), + [anon_sym_pub] = ACTIONS(502), + [anon_sym_return] = ACTIONS(502), + [anon_sym_static] = ACTIONS(502), + [anon_sym_struct] = ACTIONS(502), + [anon_sym_trait] = ACTIONS(502), + [anon_sym_type] = ACTIONS(502), + [anon_sym_union] = ACTIONS(502), + [anon_sym_unsafe] = ACTIONS(502), + [anon_sym_use] = ACTIONS(502), + [anon_sym_while] = ACTIONS(502), + [anon_sym_POUND] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(502), + [anon_sym_extern] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(502), + [anon_sym_COLON_COLON] = ACTIONS(500), + [anon_sym_AMP] = ACTIONS(502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(500), + [anon_sym_DOT_DOT] = ACTIONS(502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_AMP_AMP] = ACTIONS(500), + [anon_sym_PIPE_PIPE] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(500), + [anon_sym_BANG_EQ] = ACTIONS(500), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_LT_LT] = ACTIONS(502), + [anon_sym_GT_GT] = ACTIONS(502), + [anon_sym_SLASH] = ACTIONS(502), + [anon_sym_PERCENT] = ACTIONS(502), + [anon_sym_PLUS_EQ] = ACTIONS(500), + [anon_sym_DASH_EQ] = ACTIONS(500), + [anon_sym_STAR_EQ] = ACTIONS(500), + [anon_sym_SLASH_EQ] = ACTIONS(500), + [anon_sym_PERCENT_EQ] = ACTIONS(500), + [anon_sym_AMP_EQ] = ACTIONS(500), + [anon_sym_PIPE_EQ] = ACTIONS(500), + [anon_sym_CARET_EQ] = ACTIONS(500), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_GT_GT_EQ] = ACTIONS(500), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_else] = ACTIONS(398), + [anon_sym_move] = ACTIONS(502), + [anon_sym_DOT] = ACTIONS(502), + [sym_integer_literal] = ACTIONS(500), + [aux_sym_string_literal_token1] = ACTIONS(500), + [sym_char_literal] = ACTIONS(500), + [anon_sym_true] = ACTIONS(502), + [anon_sym_false] = ACTIONS(502), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(502), + [sym_super] = ACTIONS(502), + [sym_crate] = ACTIONS(502), + [sym_metavariable] = ACTIONS(500), + [sym_raw_string_literal] = ACTIONS(500), + [sym_float_literal] = ACTIONS(500), + [sym_block_comment] = ACTIONS(3), + }, [51] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1148), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1240), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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_let] = ACTIONS(506), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(504), + [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(506), - [anon_sym_DASH] = ACTIONS(308), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(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), }, [52] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1258), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1210), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -21148,19 +21189,19 @@ static 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(510), + [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(508), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -21179,271 +21220,164 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [53] = { - [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_else] = 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), - [sym_block_comment] = ACTIONS(3), - }, - [54] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1225), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(520), - [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(508), + [sym_mutable_specifier] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(516), + [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), }, - [55] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [54] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(522), + [anon_sym_RBRACK] = ACTIONS(518), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -21499,165 +21433,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [56] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1153), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [sym_mutable_specifier] = ACTIONS(524), - [anon_sym_DOT_DOT] = ACTIONS(506), - [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), - }, - [57] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [55] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1213), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -21683,19 +21510,19 @@ static 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(526), + [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(508), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -21713,165 +21540,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [58] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1143), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [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(506), - [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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1259), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [56] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1256), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -21897,19 +21617,19 @@ static 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(530), + [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(508), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -21927,165 +21647,165 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [60] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1228), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [sym_mutable_specifier] = ACTIONS(532), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(508), - [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), + [57] = { + [ts_builtin_sym_end] = ACTIONS(524), + [sym_identifier] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(524), + [anon_sym_macro_rules_BANG] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(524), + [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_u8] = ACTIONS(526), + [anon_sym_i8] = ACTIONS(526), + [anon_sym_u16] = ACTIONS(526), + [anon_sym_i16] = ACTIONS(526), + [anon_sym_u32] = ACTIONS(526), + [anon_sym_i32] = ACTIONS(526), + [anon_sym_u64] = ACTIONS(526), + [anon_sym_i64] = ACTIONS(526), + [anon_sym_u128] = ACTIONS(526), + [anon_sym_i128] = ACTIONS(526), + [anon_sym_isize] = ACTIONS(526), + [anon_sym_usize] = ACTIONS(526), + [anon_sym_f32] = ACTIONS(526), + [anon_sym_f64] = ACTIONS(526), + [anon_sym_bool] = ACTIONS(526), + [anon_sym_str] = ACTIONS(526), + [anon_sym_char] = ACTIONS(526), + [anon_sym_SQUOTE] = ACTIONS(526), + [anon_sym_as] = ACTIONS(526), + [anon_sym_async] = ACTIONS(526), + [anon_sym_break] = ACTIONS(526), + [anon_sym_const] = ACTIONS(526), + [anon_sym_continue] = ACTIONS(526), + [anon_sym_default] = ACTIONS(526), + [anon_sym_enum] = ACTIONS(526), + [anon_sym_fn] = ACTIONS(526), + [anon_sym_for] = ACTIONS(526), + [anon_sym_if] = ACTIONS(526), + [anon_sym_impl] = ACTIONS(526), + [anon_sym_let] = ACTIONS(526), + [anon_sym_loop] = ACTIONS(526), + [anon_sym_match] = ACTIONS(526), + [anon_sym_mod] = ACTIONS(526), + [anon_sym_pub] = ACTIONS(526), + [anon_sym_return] = ACTIONS(526), + [anon_sym_static] = ACTIONS(526), + [anon_sym_struct] = ACTIONS(526), + [anon_sym_trait] = ACTIONS(526), + [anon_sym_type] = ACTIONS(526), + [anon_sym_union] = ACTIONS(526), + [anon_sym_unsafe] = ACTIONS(526), + [anon_sym_use] = ACTIONS(526), + [anon_sym_while] = ACTIONS(526), + [anon_sym_POUND] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_extern] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(524), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_AMP_AMP] = ACTIONS(524), + [anon_sym_PIPE_PIPE] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(526), + [anon_sym_EQ_EQ] = ACTIONS(524), + [anon_sym_BANG_EQ] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(524), + [anon_sym_LT_LT] = ACTIONS(526), + [anon_sym_GT_GT] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_PLUS_EQ] = ACTIONS(524), + [anon_sym_DASH_EQ] = ACTIONS(524), + [anon_sym_STAR_EQ] = ACTIONS(524), + [anon_sym_SLASH_EQ] = ACTIONS(524), + [anon_sym_PERCENT_EQ] = ACTIONS(524), + [anon_sym_AMP_EQ] = ACTIONS(524), + [anon_sym_PIPE_EQ] = ACTIONS(524), + [anon_sym_CARET_EQ] = ACTIONS(524), + [anon_sym_LT_LT_EQ] = ACTIONS(524), + [anon_sym_GT_GT_EQ] = ACTIONS(524), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_else] = ACTIONS(526), + [anon_sym_move] = ACTIONS(526), + [anon_sym_DOT] = ACTIONS(526), + [sym_integer_literal] = ACTIONS(524), + [aux_sym_string_literal_token1] = ACTIONS(524), + [sym_char_literal] = ACTIONS(524), + [anon_sym_true] = ACTIONS(526), + [anon_sym_false] = ACTIONS(526), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(526), + [sym_super] = ACTIONS(526), + [sym_crate] = ACTIONS(526), + [sym_metavariable] = ACTIONS(524), + [sym_raw_string_literal] = ACTIONS(524), + [sym_float_literal] = ACTIONS(524), [sym_block_comment] = ACTIONS(3), }, - [61] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1220), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [58] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22111,19 +21831,19 @@ static 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(536), + [anon_sym_let] = ACTIONS(528), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(508), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22141,58 +21861,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [62] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1274), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [59] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1228), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22218,19 +21938,19 @@ static 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(530), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_DASH_GT] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22248,58 +21968,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [63] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1227), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [60] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1271), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22325,19 +22045,19 @@ static 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(538), + [anon_sym_let] = ACTIONS(532), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(508), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22355,58 +22075,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [64] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [61] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1281), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22432,19 +22152,19 @@ static 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(540), [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(508), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_DASH_GT] = ACTIONS(534), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22462,58 +22182,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [65] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1239), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [62] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22539,19 +22259,19 @@ static 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(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(508), - [anon_sym_DASH_GT] = ACTIONS(528), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22569,165 +22289,164 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [66] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1278), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), + [63] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1147), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(542), [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(508), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(538), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(308), [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), }, - [67] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [64] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1156), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(544), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -22764,7 +22483,8 @@ static 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(542), + [anon_sym_DOT_DOT] = ACTIONS(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -22783,165 +22503,379 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [68] = { - [ts_builtin_sym_end] = ACTIONS(546), - [sym_identifier] = ACTIONS(548), - [anon_sym_SEMI] = ACTIONS(546), - [anon_sym_macro_rules_BANG] = ACTIONS(546), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_LBRACE] = ACTIONS(546), - [anon_sym_RBRACE] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(546), - [anon_sym_PLUS] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(546), - [anon_sym_u8] = ACTIONS(548), - [anon_sym_i8] = ACTIONS(548), - [anon_sym_u16] = ACTIONS(548), - [anon_sym_i16] = ACTIONS(548), - [anon_sym_u32] = ACTIONS(548), - [anon_sym_i32] = ACTIONS(548), - [anon_sym_u64] = ACTIONS(548), - [anon_sym_i64] = ACTIONS(548), - [anon_sym_u128] = ACTIONS(548), - [anon_sym_i128] = ACTIONS(548), - [anon_sym_isize] = ACTIONS(548), - [anon_sym_usize] = ACTIONS(548), - [anon_sym_f32] = ACTIONS(548), - [anon_sym_f64] = ACTIONS(548), - [anon_sym_bool] = ACTIONS(548), - [anon_sym_str] = ACTIONS(548), - [anon_sym_char] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(548), - [anon_sym_as] = ACTIONS(548), - [anon_sym_async] = ACTIONS(548), - [anon_sym_break] = ACTIONS(548), - [anon_sym_const] = ACTIONS(548), - [anon_sym_continue] = ACTIONS(548), - [anon_sym_default] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(548), - [anon_sym_fn] = ACTIONS(548), - [anon_sym_for] = ACTIONS(548), - [anon_sym_if] = ACTIONS(548), - [anon_sym_impl] = ACTIONS(548), + [65] = { + [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_else] = 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), + }, + [66] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1217), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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(548), - [anon_sym_match] = ACTIONS(548), - [anon_sym_mod] = ACTIONS(548), - [anon_sym_pub] = ACTIONS(548), - [anon_sym_return] = ACTIONS(548), - [anon_sym_static] = ACTIONS(548), - [anon_sym_struct] = ACTIONS(548), - [anon_sym_trait] = ACTIONS(548), - [anon_sym_type] = ACTIONS(548), - [anon_sym_union] = ACTIONS(548), - [anon_sym_unsafe] = ACTIONS(548), - [anon_sym_use] = ACTIONS(548), - [anon_sym_while] = ACTIONS(548), - [anon_sym_POUND] = ACTIONS(546), - [anon_sym_BANG] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(548), - [anon_sym_extern] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_COLON_COLON] = ACTIONS(546), - [anon_sym_AMP] = ACTIONS(548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(546), - [anon_sym_DOT_DOT] = ACTIONS(548), - [anon_sym_DOT_DOT_EQ] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(546), - [anon_sym_PIPE_PIPE] = ACTIONS(546), - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_CARET] = ACTIONS(548), - [anon_sym_EQ_EQ] = ACTIONS(546), - [anon_sym_BANG_EQ] = ACTIONS(546), - [anon_sym_LT_EQ] = ACTIONS(546), - [anon_sym_GT_EQ] = ACTIONS(546), - [anon_sym_LT_LT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(548), - [anon_sym_PERCENT] = ACTIONS(548), - [anon_sym_PLUS_EQ] = ACTIONS(546), - [anon_sym_DASH_EQ] = ACTIONS(546), - [anon_sym_STAR_EQ] = ACTIONS(546), - [anon_sym_SLASH_EQ] = ACTIONS(546), - [anon_sym_PERCENT_EQ] = ACTIONS(546), - [anon_sym_AMP_EQ] = ACTIONS(546), - [anon_sym_PIPE_EQ] = ACTIONS(546), - [anon_sym_CARET_EQ] = ACTIONS(546), - [anon_sym_LT_LT_EQ] = ACTIONS(546), - [anon_sym_GT_GT_EQ] = ACTIONS(546), - [anon_sym_yield] = ACTIONS(548), - [anon_sym_else] = ACTIONS(548), - [anon_sym_move] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(548), - [sym_integer_literal] = ACTIONS(546), - [aux_sym_string_literal_token1] = ACTIONS(546), - [sym_char_literal] = ACTIONS(546), - [anon_sym_true] = ACTIONS(548), - [anon_sym_false] = ACTIONS(548), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(548), - [sym_super] = ACTIONS(548), - [sym_crate] = ACTIONS(548), - [sym_metavariable] = ACTIONS(546), - [sym_raw_string_literal] = ACTIONS(546), - [sym_float_literal] = ACTIONS(546), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [69] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1276), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [67] = { + [ts_builtin_sym_end] = ACTIONS(550), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_macro_rules_BANG] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(550), + [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(552), + [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(552), + [anon_sym_extern] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(552), + [anon_sym_GT] = ACTIONS(552), + [anon_sym_COLON_COLON] = ACTIONS(550), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(550), + [anon_sym_DOT_DOT] = ACTIONS(552), + [anon_sym_DOT_DOT_EQ] = ACTIONS(550), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_AMP_AMP] = ACTIONS(550), + [anon_sym_PIPE_PIPE] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(552), + [anon_sym_CARET] = ACTIONS(552), + [anon_sym_EQ_EQ] = ACTIONS(550), + [anon_sym_BANG_EQ] = ACTIONS(550), + [anon_sym_LT_EQ] = ACTIONS(550), + [anon_sym_GT_EQ] = ACTIONS(550), + [anon_sym_LT_LT] = ACTIONS(552), + [anon_sym_GT_GT] = ACTIONS(552), + [anon_sym_SLASH] = ACTIONS(552), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_PLUS_EQ] = ACTIONS(550), + [anon_sym_DASH_EQ] = ACTIONS(550), + [anon_sym_STAR_EQ] = ACTIONS(550), + [anon_sym_SLASH_EQ] = ACTIONS(550), + [anon_sym_PERCENT_EQ] = ACTIONS(550), + [anon_sym_AMP_EQ] = ACTIONS(550), + [anon_sym_PIPE_EQ] = ACTIONS(550), + [anon_sym_CARET_EQ] = ACTIONS(550), + [anon_sym_LT_LT_EQ] = ACTIONS(550), + [anon_sym_GT_GT_EQ] = ACTIONS(550), + [anon_sym_yield] = ACTIONS(552), + [anon_sym_else] = ACTIONS(552), + [anon_sym_move] = ACTIONS(552), + [anon_sym_DOT] = ACTIONS(552), + [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), + }, + [68] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1233), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22967,126 +22901,19 @@ static 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(550), [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(508), + [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(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), - [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), - }, - [70] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1242), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(552), - [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(508), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23104,164 +22931,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [71] = { - [ts_builtin_sym_end] = ACTIONS(554), - [sym_identifier] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_macro_rules_BANG] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(556), - [anon_sym_i8] = ACTIONS(556), - [anon_sym_u16] = ACTIONS(556), - [anon_sym_i16] = ACTIONS(556), - [anon_sym_u32] = ACTIONS(556), - [anon_sym_i32] = ACTIONS(556), - [anon_sym_u64] = ACTIONS(556), - [anon_sym_i64] = ACTIONS(556), - [anon_sym_u128] = ACTIONS(556), - [anon_sym_i128] = ACTIONS(556), - [anon_sym_isize] = ACTIONS(556), - [anon_sym_usize] = ACTIONS(556), - [anon_sym_f32] = ACTIONS(556), - [anon_sym_f64] = ACTIONS(556), - [anon_sym_bool] = ACTIONS(556), - [anon_sym_str] = ACTIONS(556), - [anon_sym_char] = ACTIONS(556), - [anon_sym_SQUOTE] = ACTIONS(556), - [anon_sym_as] = ACTIONS(556), - [anon_sym_async] = ACTIONS(556), - [anon_sym_break] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_continue] = ACTIONS(556), - [anon_sym_default] = ACTIONS(556), - [anon_sym_enum] = ACTIONS(556), - [anon_sym_fn] = ACTIONS(556), - [anon_sym_for] = ACTIONS(556), - [anon_sym_if] = ACTIONS(556), - [anon_sym_impl] = ACTIONS(556), - [anon_sym_let] = ACTIONS(556), - [anon_sym_loop] = ACTIONS(556), - [anon_sym_match] = ACTIONS(556), - [anon_sym_mod] = ACTIONS(556), - [anon_sym_pub] = ACTIONS(556), - [anon_sym_return] = ACTIONS(556), - [anon_sym_static] = ACTIONS(556), - [anon_sym_struct] = ACTIONS(556), - [anon_sym_trait] = ACTIONS(556), - [anon_sym_type] = ACTIONS(556), - [anon_sym_union] = ACTIONS(556), - [anon_sym_unsafe] = ACTIONS(556), - [anon_sym_use] = ACTIONS(556), - [anon_sym_while] = ACTIONS(556), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_extern] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT] = ACTIONS(556), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_yield] = ACTIONS(556), - [anon_sym_else] = ACTIONS(556), - [anon_sym_move] = ACTIONS(556), - [anon_sym_DOT] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(554), - [aux_sym_string_literal_token1] = ACTIONS(554), - [sym_char_literal] = ACTIONS(554), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(556), - [sym_super] = ACTIONS(556), - [sym_crate] = ACTIONS(556), - [sym_metavariable] = ACTIONS(554), - [sym_raw_string_literal] = ACTIONS(554), - [sym_float_literal] = ACTIONS(554), - [sym_block_comment] = ACTIONS(3), - }, - [72] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1307), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [69] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(554), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -23317,159 +23038,160 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [73] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1277), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), + [70] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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_RBRACK] = ACTIONS(556), + [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(508), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [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), }, - [74] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1300), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [71] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1152), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23507,11 +23229,12 @@ static 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(534), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -23529,7 +23252,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [75] = { + [72] = { [ts_builtin_sym_end] = ACTIONS(558), [sym_identifier] = ACTIONS(560), [anon_sym_SEMI] = ACTIONS(558), @@ -23538,9 +23261,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(558), [anon_sym_RBRACE] = ACTIONS(558), [anon_sym_LBRACK] = ACTIONS(558), - [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(560), - [anon_sym_QMARK] = ACTIONS(558), + [anon_sym_QMARK] = ACTIONS(564), [anon_sym_u8] = ACTIONS(560), [anon_sym_i8] = ACTIONS(560), [anon_sym_u16] = ACTIONS(560), @@ -23559,7 +23282,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(560), [anon_sym_char] = ACTIONS(560), [anon_sym_SQUOTE] = ACTIONS(560), - [anon_sym_as] = ACTIONS(560), + [anon_sym_as] = ACTIONS(562), [anon_sym_async] = ACTIONS(560), [anon_sym_break] = ACTIONS(560), [anon_sym_const] = ACTIONS(560), @@ -23586,41 +23309,41 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(560), [anon_sym_POUND] = ACTIONS(558), [anon_sym_BANG] = ACTIONS(560), - [anon_sym_EQ] = ACTIONS(560), + [anon_sym_EQ] = ACTIONS(562), [anon_sym_extern] = ACTIONS(560), [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(562), [anon_sym_COLON_COLON] = ACTIONS(558), [anon_sym_AMP] = ACTIONS(560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(564), [anon_sym_DOT_DOT] = ACTIONS(560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(564), [anon_sym_DASH] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(558), - [anon_sym_PIPE_PIPE] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(564), [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_CARET] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(564), + [anon_sym_BANG_EQ] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_PLUS_EQ] = ACTIONS(564), + [anon_sym_DASH_EQ] = ACTIONS(564), + [anon_sym_STAR_EQ] = ACTIONS(564), + [anon_sym_SLASH_EQ] = ACTIONS(564), + [anon_sym_PERCENT_EQ] = ACTIONS(564), + [anon_sym_AMP_EQ] = ACTIONS(564), + [anon_sym_PIPE_EQ] = ACTIONS(564), + [anon_sym_CARET_EQ] = ACTIONS(564), + [anon_sym_LT_LT_EQ] = ACTIONS(564), + [anon_sym_GT_GT_EQ] = ACTIONS(564), [anon_sym_yield] = ACTIONS(560), [anon_sym_move] = ACTIONS(560), - [anon_sym_DOT] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(562), [sym_integer_literal] = ACTIONS(558), [aux_sym_string_literal_token1] = ACTIONS(558), [sym_char_literal] = ACTIONS(558), @@ -23635,164 +23358,164 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(558), [sym_block_comment] = ACTIONS(3), }, - [76] = { - [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), + [73] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1308), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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), }, - [77] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1249), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [74] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1246), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23824,12 +23547,12 @@ static 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(508), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23847,159 +23570,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [78] = { - [ts_builtin_sym_end] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_macro_rules_BANG] = ACTIONS(566), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(570), - [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(572), - [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(572), - [anon_sym_extern] = ACTIONS(568), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_COLON_COLON] = ACTIONS(566), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(570), - [anon_sym_DOT_DOT] = ACTIONS(572), - [anon_sym_DOT_DOT_EQ] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_AMP_AMP] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_CARET] = ACTIONS(572), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(572), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_yield] = ACTIONS(568), - [anon_sym_move] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(572), - [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), - }, - [79] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1252), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [75] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1314), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24059,159 +23676,159 @@ static 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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1282), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(280), + [76] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1243), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [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), }, - [81] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [77] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24252,7 +23869,7 @@ static 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(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -24271,159 +23888,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [82] = { - [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(572), - [anon_sym_STAR] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(570), - [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(572), - [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(572), - [anon_sym_extern] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_COLON_COLON] = ACTIONS(574), - [anon_sym_AMP] = ACTIONS(576), - [anon_sym_DOT_DOT_DOT] = ACTIONS(570), - [anon_sym_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(572), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(572), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_yield] = ACTIONS(576), - [anon_sym_move] = ACTIONS(576), - [anon_sym_DOT] = ACTIONS(572), - [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), - }, - [83] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1284), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [78] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1311), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24483,58 +23994,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1271), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [79] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1221), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -24566,12 +24077,12 @@ static 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(508), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -24589,58 +24100,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [85] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [80] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -24672,12 +24183,12 @@ static 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(508), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -24695,265 +24206,265 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [86] = { - [ts_builtin_sym_end] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym_macro_rules_BANG] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_async] = ACTIONS(580), - [anon_sym_break] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_enum] = ACTIONS(580), - [anon_sym_fn] = ACTIONS(580), - [anon_sym_for] = ACTIONS(580), - [anon_sym_if] = ACTIONS(580), - [anon_sym_impl] = ACTIONS(580), - [anon_sym_let] = ACTIONS(580), - [anon_sym_loop] = ACTIONS(580), - [anon_sym_match] = ACTIONS(580), - [anon_sym_mod] = ACTIONS(580), - [anon_sym_pub] = ACTIONS(580), - [anon_sym_return] = ACTIONS(580), - [anon_sym_static] = ACTIONS(580), - [anon_sym_struct] = ACTIONS(580), - [anon_sym_trait] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_unsafe] = ACTIONS(580), - [anon_sym_use] = ACTIONS(580), - [anon_sym_while] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_extern] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [anon_sym_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(580), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_PLUS_EQ] = ACTIONS(578), - [anon_sym_DASH_EQ] = ACTIONS(578), - [anon_sym_STAR_EQ] = ACTIONS(578), - [anon_sym_SLASH_EQ] = ACTIONS(578), - [anon_sym_PERCENT_EQ] = ACTIONS(578), - [anon_sym_AMP_EQ] = ACTIONS(578), - [anon_sym_PIPE_EQ] = ACTIONS(578), - [anon_sym_CARET_EQ] = ACTIONS(578), - [anon_sym_LT_LT_EQ] = ACTIONS(578), - [anon_sym_GT_GT_EQ] = ACTIONS(578), - [anon_sym_yield] = ACTIONS(580), - [anon_sym_move] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), + [81] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [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(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_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [87] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1298), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(280), + [82] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [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), }, - [88] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1286), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [83] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1307), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25013,265 +24524,265 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [89] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1273), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(280), + [84] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [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), }, - [90] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(280), + [85] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1238), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [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), }, - [91] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1296), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [86] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1305), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25331,53 +24842,159 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [92] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1283), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [87] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1275), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [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), + }, + [88] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1294), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25437,56 +25054,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [93] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1308), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(236), - [sym_if_let_expression] = STATE(236), - [sym_match_expression] = STATE(236), - [sym_while_expression] = STATE(236), - [sym_while_let_expression] = STATE(236), - [sym_loop_expression] = STATE(236), - [sym_for_expression] = STATE(236), - [sym_const_block] = STATE(236), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2533), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(236), - [sym_async_block] = STATE(236), - [sym_block] = STATE(236), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [89] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1304), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -25507,19 +25124,19 @@ static 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(584), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(586), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(592), - [anon_sym_match] = ACTIONS(594), + [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(596), - [anon_sym_while] = ACTIONS(598), + [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), @@ -25543,159 +25160,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [94] = { - [ts_builtin_sym_end] = ACTIONS(600), - [sym_identifier] = ACTIONS(602), - [anon_sym_SEMI] = ACTIONS(600), - [anon_sym_macro_rules_BANG] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(602), - [anon_sym_i8] = ACTIONS(602), - [anon_sym_u16] = ACTIONS(602), - [anon_sym_i16] = ACTIONS(602), - [anon_sym_u32] = ACTIONS(602), - [anon_sym_i32] = ACTIONS(602), - [anon_sym_u64] = ACTIONS(602), - [anon_sym_i64] = ACTIONS(602), - [anon_sym_u128] = ACTIONS(602), - [anon_sym_i128] = ACTIONS(602), - [anon_sym_isize] = ACTIONS(602), - [anon_sym_usize] = ACTIONS(602), - [anon_sym_f32] = ACTIONS(602), - [anon_sym_f64] = ACTIONS(602), - [anon_sym_bool] = ACTIONS(602), - [anon_sym_str] = ACTIONS(602), - [anon_sym_char] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(602), - [anon_sym_as] = ACTIONS(602), - [anon_sym_async] = ACTIONS(602), - [anon_sym_break] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_default] = ACTIONS(602), - [anon_sym_enum] = ACTIONS(602), - [anon_sym_fn] = ACTIONS(602), - [anon_sym_for] = ACTIONS(602), - [anon_sym_if] = ACTIONS(602), - [anon_sym_impl] = ACTIONS(602), - [anon_sym_let] = ACTIONS(602), - [anon_sym_loop] = ACTIONS(602), - [anon_sym_match] = ACTIONS(602), - [anon_sym_mod] = ACTIONS(602), - [anon_sym_pub] = ACTIONS(602), - [anon_sym_return] = ACTIONS(602), - [anon_sym_static] = ACTIONS(602), - [anon_sym_struct] = ACTIONS(602), - [anon_sym_trait] = ACTIONS(602), - [anon_sym_type] = ACTIONS(602), - [anon_sym_union] = ACTIONS(602), - [anon_sym_unsafe] = ACTIONS(602), - [anon_sym_use] = ACTIONS(602), - [anon_sym_while] = ACTIONS(602), - [anon_sym_POUND] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_extern] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_COLON_COLON] = ACTIONS(600), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_EQ] = ACTIONS(600), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(600), - [anon_sym_BANG_EQ] = ACTIONS(600), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(600), - [anon_sym_DASH_EQ] = ACTIONS(600), - [anon_sym_STAR_EQ] = ACTIONS(600), - [anon_sym_SLASH_EQ] = ACTIONS(600), - [anon_sym_PERCENT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(600), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_yield] = ACTIONS(602), - [anon_sym_move] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [sym_integer_literal] = ACTIONS(600), - [aux_sym_string_literal_token1] = ACTIONS(600), - [sym_char_literal] = ACTIONS(600), - [anon_sym_true] = ACTIONS(602), - [anon_sym_false] = ACTIONS(602), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(602), - [sym_super] = ACTIONS(602), - [sym_crate] = ACTIONS(602), - [sym_metavariable] = ACTIONS(600), - [sym_raw_string_literal] = ACTIONS(600), - [sym_float_literal] = ACTIONS(600), - [sym_block_comment] = ACTIONS(3), - }, - [95] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1290), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [90] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1292), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25755,270 +25266,164 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [96] = { - [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), - }, - [97] = { - [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), + [91] = { + [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(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [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(568), + [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(568), + [anon_sym_extern] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(566), + [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(568), + [anon_sym_move] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(568), + [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(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_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), }, - [98] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1233), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [92] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -26050,12 +25455,12 @@ static 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(508), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -26073,159 +25478,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [99] = { - [ts_builtin_sym_end] = ACTIONS(612), - [sym_identifier] = ACTIONS(614), - [anon_sym_SEMI] = ACTIONS(612), - [anon_sym_macro_rules_BANG] = ACTIONS(612), - [anon_sym_LPAREN] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(612), - [anon_sym_RBRACE] = ACTIONS(612), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(614), - [anon_sym_QMARK] = ACTIONS(612), - [anon_sym_u8] = ACTIONS(614), - [anon_sym_i8] = ACTIONS(614), - [anon_sym_u16] = ACTIONS(614), - [anon_sym_i16] = ACTIONS(614), - [anon_sym_u32] = ACTIONS(614), - [anon_sym_i32] = ACTIONS(614), - [anon_sym_u64] = ACTIONS(614), - [anon_sym_i64] = ACTIONS(614), - [anon_sym_u128] = ACTIONS(614), - [anon_sym_i128] = ACTIONS(614), - [anon_sym_isize] = ACTIONS(614), - [anon_sym_usize] = ACTIONS(614), - [anon_sym_f32] = ACTIONS(614), - [anon_sym_f64] = ACTIONS(614), - [anon_sym_bool] = ACTIONS(614), - [anon_sym_str] = ACTIONS(614), - [anon_sym_char] = ACTIONS(614), - [anon_sym_SQUOTE] = ACTIONS(614), - [anon_sym_as] = ACTIONS(614), - [anon_sym_async] = ACTIONS(614), - [anon_sym_break] = ACTIONS(614), - [anon_sym_const] = ACTIONS(614), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_default] = ACTIONS(614), - [anon_sym_enum] = ACTIONS(614), - [anon_sym_fn] = ACTIONS(614), - [anon_sym_for] = ACTIONS(614), - [anon_sym_if] = ACTIONS(614), - [anon_sym_impl] = ACTIONS(614), - [anon_sym_let] = ACTIONS(614), - [anon_sym_loop] = ACTIONS(614), - [anon_sym_match] = ACTIONS(614), - [anon_sym_mod] = ACTIONS(614), - [anon_sym_pub] = ACTIONS(614), - [anon_sym_return] = ACTIONS(614), - [anon_sym_static] = ACTIONS(614), - [anon_sym_struct] = ACTIONS(614), - [anon_sym_trait] = ACTIONS(614), - [anon_sym_type] = ACTIONS(614), - [anon_sym_union] = ACTIONS(614), - [anon_sym_unsafe] = ACTIONS(614), - [anon_sym_use] = ACTIONS(614), - [anon_sym_while] = ACTIONS(614), - [anon_sym_POUND] = ACTIONS(612), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_EQ] = ACTIONS(614), - [anon_sym_extern] = ACTIONS(614), - [anon_sym_LT] = ACTIONS(614), - [anon_sym_GT] = ACTIONS(614), - [anon_sym_COLON_COLON] = ACTIONS(612), - [anon_sym_AMP] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [anon_sym_DOT_DOT] = ACTIONS(614), - [anon_sym_DOT_DOT_EQ] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_AMP_AMP] = ACTIONS(612), - [anon_sym_PIPE_PIPE] = ACTIONS(612), - [anon_sym_PIPE] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_EQ_EQ] = ACTIONS(612), - [anon_sym_BANG_EQ] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(612), - [anon_sym_GT_EQ] = ACTIONS(612), - [anon_sym_LT_LT] = ACTIONS(614), - [anon_sym_GT_GT] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(614), - [anon_sym_PERCENT] = ACTIONS(614), - [anon_sym_PLUS_EQ] = ACTIONS(612), - [anon_sym_DASH_EQ] = ACTIONS(612), - [anon_sym_STAR_EQ] = ACTIONS(612), - [anon_sym_SLASH_EQ] = ACTIONS(612), - [anon_sym_PERCENT_EQ] = ACTIONS(612), - [anon_sym_AMP_EQ] = ACTIONS(612), - [anon_sym_PIPE_EQ] = ACTIONS(612), - [anon_sym_CARET_EQ] = ACTIONS(612), - [anon_sym_LT_LT_EQ] = ACTIONS(612), - [anon_sym_GT_GT_EQ] = ACTIONS(612), - [anon_sym_yield] = ACTIONS(614), - [anon_sym_move] = ACTIONS(614), - [anon_sym_DOT] = ACTIONS(614), - [sym_integer_literal] = ACTIONS(612), - [aux_sym_string_literal_token1] = ACTIONS(612), - [sym_char_literal] = ACTIONS(612), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(614), - [sym_super] = ACTIONS(614), - [sym_crate] = ACTIONS(614), - [sym_metavariable] = ACTIONS(612), - [sym_raw_string_literal] = ACTIONS(612), - [sym_float_literal] = ACTIONS(612), - [sym_block_comment] = ACTIONS(3), - }, - [100] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1145), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [93] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1155), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26266,7 +25565,7 @@ static 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(506), + [anon_sym_DOT_DOT] = ACTIONS(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -26285,159 +25584,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [101] = { - [ts_builtin_sym_end] = ACTIONS(616), - [sym_identifier] = ACTIONS(618), - [anon_sym_SEMI] = ACTIONS(616), - [anon_sym_macro_rules_BANG] = ACTIONS(616), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_RBRACE] = ACTIONS(616), - [anon_sym_LBRACK] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(618), - [anon_sym_QMARK] = ACTIONS(616), - [anon_sym_u8] = ACTIONS(618), - [anon_sym_i8] = ACTIONS(618), - [anon_sym_u16] = ACTIONS(618), - [anon_sym_i16] = ACTIONS(618), - [anon_sym_u32] = ACTIONS(618), - [anon_sym_i32] = ACTIONS(618), - [anon_sym_u64] = ACTIONS(618), - [anon_sym_i64] = ACTIONS(618), - [anon_sym_u128] = ACTIONS(618), - [anon_sym_i128] = ACTIONS(618), - [anon_sym_isize] = ACTIONS(618), - [anon_sym_usize] = ACTIONS(618), - [anon_sym_f32] = ACTIONS(618), - [anon_sym_f64] = ACTIONS(618), - [anon_sym_bool] = ACTIONS(618), - [anon_sym_str] = ACTIONS(618), - [anon_sym_char] = ACTIONS(618), - [anon_sym_SQUOTE] = ACTIONS(618), - [anon_sym_as] = ACTIONS(618), - [anon_sym_async] = ACTIONS(618), - [anon_sym_break] = ACTIONS(618), - [anon_sym_const] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(618), - [anon_sym_default] = ACTIONS(618), - [anon_sym_enum] = ACTIONS(618), - [anon_sym_fn] = ACTIONS(618), - [anon_sym_for] = ACTIONS(618), - [anon_sym_if] = ACTIONS(618), - [anon_sym_impl] = ACTIONS(618), - [anon_sym_let] = ACTIONS(618), - [anon_sym_loop] = ACTIONS(618), - [anon_sym_match] = ACTIONS(618), - [anon_sym_mod] = ACTIONS(618), - [anon_sym_pub] = ACTIONS(618), - [anon_sym_return] = ACTIONS(618), - [anon_sym_static] = ACTIONS(618), - [anon_sym_struct] = ACTIONS(618), - [anon_sym_trait] = ACTIONS(618), - [anon_sym_type] = ACTIONS(618), - [anon_sym_union] = ACTIONS(618), - [anon_sym_unsafe] = ACTIONS(618), - [anon_sym_use] = ACTIONS(618), - [anon_sym_while] = ACTIONS(618), - [anon_sym_POUND] = ACTIONS(616), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_EQ] = ACTIONS(618), - [anon_sym_extern] = ACTIONS(618), - [anon_sym_LT] = ACTIONS(618), - [anon_sym_GT] = ACTIONS(618), - [anon_sym_COLON_COLON] = ACTIONS(616), - [anon_sym_AMP] = ACTIONS(618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(616), - [anon_sym_DOT_DOT] = ACTIONS(618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_AMP_AMP] = ACTIONS(616), - [anon_sym_PIPE_PIPE] = ACTIONS(616), - [anon_sym_PIPE] = ACTIONS(618), - [anon_sym_CARET] = ACTIONS(618), - [anon_sym_EQ_EQ] = ACTIONS(616), - [anon_sym_BANG_EQ] = ACTIONS(616), - [anon_sym_LT_EQ] = ACTIONS(616), - [anon_sym_GT_EQ] = ACTIONS(616), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_GT_GT] = ACTIONS(618), - [anon_sym_SLASH] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(618), - [anon_sym_PLUS_EQ] = ACTIONS(616), - [anon_sym_DASH_EQ] = ACTIONS(616), - [anon_sym_STAR_EQ] = ACTIONS(616), - [anon_sym_SLASH_EQ] = ACTIONS(616), - [anon_sym_PERCENT_EQ] = ACTIONS(616), - [anon_sym_AMP_EQ] = ACTIONS(616), - [anon_sym_PIPE_EQ] = ACTIONS(616), - [anon_sym_CARET_EQ] = ACTIONS(616), - [anon_sym_LT_LT_EQ] = ACTIONS(616), - [anon_sym_GT_GT_EQ] = ACTIONS(616), - [anon_sym_yield] = ACTIONS(618), - [anon_sym_move] = ACTIONS(618), - [anon_sym_DOT] = ACTIONS(618), - [sym_integer_literal] = ACTIONS(616), - [aux_sym_string_literal_token1] = ACTIONS(616), - [sym_char_literal] = ACTIONS(616), - [anon_sym_true] = ACTIONS(618), - [anon_sym_false] = ACTIONS(618), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(618), - [sym_super] = ACTIONS(618), - [sym_crate] = ACTIONS(618), - [sym_metavariable] = ACTIONS(616), - [sym_raw_string_literal] = ACTIONS(616), - [sym_float_literal] = ACTIONS(616), - [sym_block_comment] = ACTIONS(3), - }, - [102] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1160), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [94] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1282), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26478,7 +25671,7 @@ static 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(506), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -26497,270 +25690,588 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [103] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1224), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), + [95] = { + [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(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [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(572), + [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(572), + [anon_sym_extern] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_move] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(572), + [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), + }, + [96] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1280), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), + [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(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(508), + [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), }, - [104] = { - [ts_builtin_sym_end] = ACTIONS(620), - [sym_identifier] = ACTIONS(622), - [anon_sym_SEMI] = ACTIONS(620), - [anon_sym_macro_rules_BANG] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(622), - [anon_sym_QMARK] = ACTIONS(620), - [anon_sym_u8] = ACTIONS(622), - [anon_sym_i8] = ACTIONS(622), - [anon_sym_u16] = ACTIONS(622), - [anon_sym_i16] = ACTIONS(622), - [anon_sym_u32] = ACTIONS(622), - [anon_sym_i32] = ACTIONS(622), - [anon_sym_u64] = ACTIONS(622), - [anon_sym_i64] = ACTIONS(622), - [anon_sym_u128] = ACTIONS(622), - [anon_sym_i128] = ACTIONS(622), - [anon_sym_isize] = ACTIONS(622), - [anon_sym_usize] = ACTIONS(622), - [anon_sym_f32] = ACTIONS(622), - [anon_sym_f64] = ACTIONS(622), - [anon_sym_bool] = ACTIONS(622), - [anon_sym_str] = ACTIONS(622), - [anon_sym_char] = ACTIONS(622), - [anon_sym_SQUOTE] = ACTIONS(622), - [anon_sym_as] = ACTIONS(622), - [anon_sym_async] = ACTIONS(622), - [anon_sym_break] = ACTIONS(622), - [anon_sym_const] = ACTIONS(622), - [anon_sym_continue] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_enum] = ACTIONS(622), - [anon_sym_fn] = ACTIONS(622), - [anon_sym_for] = ACTIONS(622), - [anon_sym_if] = ACTIONS(622), - [anon_sym_impl] = ACTIONS(622), - [anon_sym_let] = ACTIONS(622), - [anon_sym_loop] = ACTIONS(622), - [anon_sym_match] = ACTIONS(622), - [anon_sym_mod] = ACTIONS(622), - [anon_sym_pub] = ACTIONS(622), - [anon_sym_return] = ACTIONS(622), - [anon_sym_static] = ACTIONS(622), - [anon_sym_struct] = ACTIONS(622), - [anon_sym_trait] = ACTIONS(622), - [anon_sym_type] = ACTIONS(622), - [anon_sym_union] = ACTIONS(622), - [anon_sym_unsafe] = ACTIONS(622), - [anon_sym_use] = ACTIONS(622), - [anon_sym_while] = ACTIONS(622), - [anon_sym_POUND] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_EQ] = ACTIONS(622), - [anon_sym_extern] = ACTIONS(622), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_COLON_COLON] = ACTIONS(620), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_DOT_DOT_DOT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(622), - [anon_sym_DOT_DOT_EQ] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(622), - [anon_sym_AMP_AMP] = ACTIONS(620), - [anon_sym_PIPE_PIPE] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(622), - [anon_sym_CARET] = ACTIONS(622), - [anon_sym_EQ_EQ] = ACTIONS(620), - [anon_sym_BANG_EQ] = ACTIONS(620), - [anon_sym_LT_EQ] = ACTIONS(620), - [anon_sym_GT_EQ] = ACTIONS(620), - [anon_sym_LT_LT] = ACTIONS(622), - [anon_sym_GT_GT] = ACTIONS(622), - [anon_sym_SLASH] = ACTIONS(622), - [anon_sym_PERCENT] = ACTIONS(622), - [anon_sym_PLUS_EQ] = ACTIONS(620), - [anon_sym_DASH_EQ] = ACTIONS(620), - [anon_sym_STAR_EQ] = ACTIONS(620), - [anon_sym_SLASH_EQ] = ACTIONS(620), - [anon_sym_PERCENT_EQ] = ACTIONS(620), - [anon_sym_AMP_EQ] = ACTIONS(620), - [anon_sym_PIPE_EQ] = ACTIONS(620), - [anon_sym_CARET_EQ] = ACTIONS(620), - [anon_sym_LT_LT_EQ] = ACTIONS(620), - [anon_sym_GT_GT_EQ] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_move] = ACTIONS(622), - [anon_sym_DOT] = ACTIONS(622), - [sym_integer_literal] = ACTIONS(620), - [aux_sym_string_literal_token1] = ACTIONS(620), - [sym_char_literal] = ACTIONS(620), - [anon_sym_true] = ACTIONS(622), - [anon_sym_false] = ACTIONS(622), + [97] = { + [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(622), - [sym_super] = ACTIONS(622), - [sym_crate] = ACTIONS(622), - [sym_metavariable] = ACTIONS(620), - [sym_raw_string_literal] = ACTIONS(620), - [sym_float_literal] = ACTIONS(620), + [sym_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), }, - [105] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1232), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [98] = { + [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), + }, + [99] = { + [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), + }, + [100] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -26792,12 +26303,12 @@ static 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(508), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -26815,159 +26326,159 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [106] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1244), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), + [101] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1284), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(508), + [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), }, - [107] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1292), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [102] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27027,372 +26538,160 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [108] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1248), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), + [103] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(508), + [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), }, - [109] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1256), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(508), - [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), - }, - [110] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1262), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(508), - [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), - }, - [111] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1293), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(280), + [104] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1297), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), @@ -27451,159 +26750,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [112] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1082), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [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(506), - [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), - }, - [113] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1294), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [105] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1293), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27663,53 +26856,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [114] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1161), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [106] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1300), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27750,7 +26943,7 @@ static 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(506), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27769,56 +26962,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [115] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1162), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [107] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(230), + [sym_if_let_expression] = STATE(230), + [sym_match_expression] = STATE(230), + [sym_while_expression] = STATE(230), + [sym_while_let_expression] = STATE(230), + [sym_loop_expression] = STATE(230), + [sym_for_expression] = STATE(230), + [sym_const_block] = STATE(230), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2539), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(230), + [sym_async_block] = STATE(230), + [sym_block] = STATE(230), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(586), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -27839,24 +27032,24 @@ static 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(588), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(590), [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(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_loop] = ACTIONS(596), + [anon_sym_match] = ACTIONS(598), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), [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(506), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27875,53 +27068,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [116] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1163), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [108] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1310), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27962,7 +27155,7 @@ static 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(506), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27981,374 +27174,162 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [117] = { - [ts_builtin_sym_end] = ACTIONS(624), - [sym_identifier] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(624), - [anon_sym_macro_rules_BANG] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(624), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_PLUS] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_QMARK] = ACTIONS(624), - [anon_sym_u8] = ACTIONS(626), - [anon_sym_i8] = ACTIONS(626), - [anon_sym_u16] = ACTIONS(626), - [anon_sym_i16] = ACTIONS(626), - [anon_sym_u32] = ACTIONS(626), - [anon_sym_i32] = ACTIONS(626), - [anon_sym_u64] = ACTIONS(626), - [anon_sym_i64] = ACTIONS(626), - [anon_sym_u128] = ACTIONS(626), - [anon_sym_i128] = ACTIONS(626), - [anon_sym_isize] = ACTIONS(626), - [anon_sym_usize] = ACTIONS(626), - [anon_sym_f32] = ACTIONS(626), - [anon_sym_f64] = ACTIONS(626), - [anon_sym_bool] = ACTIONS(626), - [anon_sym_str] = ACTIONS(626), - [anon_sym_char] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(626), - [anon_sym_as] = ACTIONS(626), - [anon_sym_async] = ACTIONS(626), - [anon_sym_break] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_continue] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_enum] = ACTIONS(626), - [anon_sym_fn] = ACTIONS(626), - [anon_sym_for] = ACTIONS(626), - [anon_sym_if] = ACTIONS(626), - [anon_sym_impl] = ACTIONS(626), - [anon_sym_let] = ACTIONS(626), - [anon_sym_loop] = ACTIONS(626), - [anon_sym_match] = ACTIONS(626), - [anon_sym_mod] = ACTIONS(626), - [anon_sym_pub] = ACTIONS(626), - [anon_sym_return] = ACTIONS(626), - [anon_sym_static] = ACTIONS(626), - [anon_sym_struct] = ACTIONS(626), - [anon_sym_trait] = ACTIONS(626), - [anon_sym_type] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [anon_sym_unsafe] = ACTIONS(626), - [anon_sym_use] = ACTIONS(626), - [anon_sym_while] = ACTIONS(626), - [anon_sym_POUND] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(626), - [anon_sym_EQ] = ACTIONS(626), - [anon_sym_extern] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(626), - [anon_sym_COLON_COLON] = ACTIONS(624), - [anon_sym_AMP] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(624), - [anon_sym_DOT_DOT] = ACTIONS(626), - [anon_sym_DOT_DOT_EQ] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(626), - [anon_sym_CARET] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(624), - [anon_sym_BANG_EQ] = ACTIONS(624), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(626), - [anon_sym_SLASH] = ACTIONS(626), - [anon_sym_PERCENT] = ACTIONS(626), - [anon_sym_PLUS_EQ] = ACTIONS(624), - [anon_sym_DASH_EQ] = ACTIONS(624), - [anon_sym_STAR_EQ] = ACTIONS(624), - [anon_sym_SLASH_EQ] = ACTIONS(624), - [anon_sym_PERCENT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(624), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_move] = ACTIONS(626), - [anon_sym_DOT] = ACTIONS(626), - [sym_integer_literal] = ACTIONS(624), - [aux_sym_string_literal_token1] = ACTIONS(624), - [sym_char_literal] = ACTIONS(624), - [anon_sym_true] = ACTIONS(626), - [anon_sym_false] = ACTIONS(626), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_crate] = ACTIONS(626), - [sym_metavariable] = ACTIONS(624), - [sym_raw_string_literal] = ACTIONS(624), - [sym_float_literal] = ACTIONS(624), - [sym_block_comment] = ACTIONS(3), - }, - [118] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1082), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), - [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), - }, - [119] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1253), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), - [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), + [109] = { + [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(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(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), }, - [120] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1287), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [110] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1289), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(230), + [sym_if_let_expression] = STATE(230), + [sym_match_expression] = STATE(230), + [sym_while_expression] = STATE(230), + [sym_while_let_expression] = STATE(230), + [sym_loop_expression] = STATE(230), + [sym_for_expression] = STATE(230), + [sym_const_block] = STATE(230), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2539), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(230), + [sym_async_block] = STATE(230), + [sym_block] = STATE(230), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(586), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -28369,19 +27350,19 @@ static 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(588), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(590), [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(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_loop] = ACTIONS(596), + [anon_sym_match] = ACTIONS(598), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -28405,53 +27386,53 @@ static 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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1141), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [111] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1286), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28492,7 +27473,7 @@ static 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(506), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28511,58 +27492,270 @@ static 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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1263), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), + [112] = { + [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), + }, + [113] = { + [ts_builtin_sym_end] = ACTIONS(612), + [sym_identifier] = ACTIONS(614), + [anon_sym_SEMI] = ACTIONS(612), + [anon_sym_macro_rules_BANG] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_SQUOTE] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_async] = ACTIONS(614), + [anon_sym_break] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_continue] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(614), + [anon_sym_fn] = ACTIONS(614), + [anon_sym_for] = ACTIONS(614), + [anon_sym_if] = ACTIONS(614), + [anon_sym_impl] = ACTIONS(614), + [anon_sym_let] = ACTIONS(614), + [anon_sym_loop] = ACTIONS(614), + [anon_sym_match] = ACTIONS(614), + [anon_sym_mod] = ACTIONS(614), + [anon_sym_pub] = ACTIONS(614), + [anon_sym_return] = ACTIONS(614), + [anon_sym_static] = ACTIONS(614), + [anon_sym_struct] = ACTIONS(614), + [anon_sym_trait] = ACTIONS(614), + [anon_sym_type] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_unsafe] = ACTIONS(614), + [anon_sym_use] = ACTIONS(614), + [anon_sym_while] = ACTIONS(614), + [anon_sym_POUND] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_extern] = ACTIONS(614), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(612), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [anon_sym_DOT_DOT] = ACTIONS(614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_LT_EQ] = ACTIONS(612), + [anon_sym_GT_EQ] = ACTIONS(612), + [anon_sym_LT_LT] = ACTIONS(614), + [anon_sym_GT_GT] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(614), + [anon_sym_PERCENT] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(612), + [anon_sym_DASH_EQ] = ACTIONS(612), + [anon_sym_STAR_EQ] = ACTIONS(612), + [anon_sym_SLASH_EQ] = ACTIONS(612), + [anon_sym_PERCENT_EQ] = ACTIONS(612), + [anon_sym_AMP_EQ] = ACTIONS(612), + [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_CARET_EQ] = ACTIONS(612), + [anon_sym_LT_LT_EQ] = ACTIONS(612), + [anon_sym_GT_GT_EQ] = ACTIONS(612), + [anon_sym_yield] = ACTIONS(614), + [anon_sym_move] = ACTIONS(614), + [anon_sym_DOT] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(612), + [aux_sym_string_literal_token1] = ACTIONS(612), + [sym_char_literal] = ACTIONS(612), + [anon_sym_true] = ACTIONS(614), + [anon_sym_false] = ACTIONS(614), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(612), + [sym_raw_string_literal] = ACTIONS(612), + [sym_float_literal] = ACTIONS(612), + [sym_block_comment] = ACTIONS(3), + }, + [114] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1245), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -28594,12 +27787,12 @@ static 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(508), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -28617,53 +27810,159 @@ static 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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1280), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [115] = { + [ts_builtin_sym_end] = ACTIONS(616), + [sym_identifier] = ACTIONS(618), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_macro_rules_BANG] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(616), + [anon_sym_RBRACE] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(618), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(618), + [anon_sym_i8] = ACTIONS(618), + [anon_sym_u16] = ACTIONS(618), + [anon_sym_i16] = ACTIONS(618), + [anon_sym_u32] = ACTIONS(618), + [anon_sym_i32] = ACTIONS(618), + [anon_sym_u64] = ACTIONS(618), + [anon_sym_i64] = ACTIONS(618), + [anon_sym_u128] = ACTIONS(618), + [anon_sym_i128] = ACTIONS(618), + [anon_sym_isize] = ACTIONS(618), + [anon_sym_usize] = ACTIONS(618), + [anon_sym_f32] = ACTIONS(618), + [anon_sym_f64] = ACTIONS(618), + [anon_sym_bool] = ACTIONS(618), + [anon_sym_str] = ACTIONS(618), + [anon_sym_char] = ACTIONS(618), + [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_as] = ACTIONS(618), + [anon_sym_async] = ACTIONS(618), + [anon_sym_break] = ACTIONS(618), + [anon_sym_const] = ACTIONS(618), + [anon_sym_continue] = ACTIONS(618), + [anon_sym_default] = ACTIONS(618), + [anon_sym_enum] = ACTIONS(618), + [anon_sym_fn] = ACTIONS(618), + [anon_sym_for] = ACTIONS(618), + [anon_sym_if] = ACTIONS(618), + [anon_sym_impl] = ACTIONS(618), + [anon_sym_let] = ACTIONS(618), + [anon_sym_loop] = ACTIONS(618), + [anon_sym_match] = ACTIONS(618), + [anon_sym_mod] = ACTIONS(618), + [anon_sym_pub] = ACTIONS(618), + [anon_sym_return] = ACTIONS(618), + [anon_sym_static] = ACTIONS(618), + [anon_sym_struct] = ACTIONS(618), + [anon_sym_trait] = ACTIONS(618), + [anon_sym_type] = ACTIONS(618), + [anon_sym_union] = ACTIONS(618), + [anon_sym_unsafe] = ACTIONS(618), + [anon_sym_use] = ACTIONS(618), + [anon_sym_while] = ACTIONS(618), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_BANG] = ACTIONS(618), + [anon_sym_EQ] = ACTIONS(618), + [anon_sym_extern] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_GT] = ACTIONS(618), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_AMP] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(618), + [anon_sym_CARET] = ACTIONS(618), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_GT_GT] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(618), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_yield] = ACTIONS(618), + [anon_sym_move] = ACTIONS(618), + [anon_sym_DOT] = ACTIONS(618), + [sym_integer_literal] = ACTIONS(616), + [aux_sym_string_literal_token1] = ACTIONS(616), + [sym_char_literal] = ACTIONS(616), + [anon_sym_true] = ACTIONS(618), + [anon_sym_false] = ACTIONS(618), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(618), + [sym_super] = ACTIONS(618), + [sym_crate] = ACTIONS(618), + [sym_metavariable] = ACTIONS(616), + [sym_raw_string_literal] = ACTIONS(616), + [sym_float_literal] = ACTIONS(616), + [sym_block_comment] = ACTIONS(3), + }, + [116] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1146), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28704,7 +28003,7 @@ static 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(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28723,159 +28022,159 @@ static 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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1270), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), + [117] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1154), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [125] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1159), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [118] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1158), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28916,7 +28215,7 @@ static 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(506), + [anon_sym_DOT_DOT] = ACTIONS(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28935,53 +28234,53 @@ static 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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1082), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [119] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1165), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29022,7 +28321,7 @@ static 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(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29041,53 +28340,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [127] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1158), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [120] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1167), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29128,7 +28427,7 @@ static 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(506), + [anon_sym_DOT_DOT] = ACTIONS(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29147,159 +28446,159 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [128] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), + [121] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1296), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(508), + [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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1309), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [122] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1166), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29340,7 +28639,7 @@ static 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(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29359,159 +28658,265 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [130] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1247), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), + [123] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [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(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), }, - [131] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1155), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [124] = { + [ts_builtin_sym_end] = ACTIONS(620), + [sym_identifier] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(620), + [anon_sym_macro_rules_BANG] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_u8] = ACTIONS(622), + [anon_sym_i8] = ACTIONS(622), + [anon_sym_u16] = ACTIONS(622), + [anon_sym_i16] = ACTIONS(622), + [anon_sym_u32] = ACTIONS(622), + [anon_sym_i32] = ACTIONS(622), + [anon_sym_u64] = ACTIONS(622), + [anon_sym_i64] = ACTIONS(622), + [anon_sym_u128] = ACTIONS(622), + [anon_sym_i128] = ACTIONS(622), + [anon_sym_isize] = ACTIONS(622), + [anon_sym_usize] = ACTIONS(622), + [anon_sym_f32] = ACTIONS(622), + [anon_sym_f64] = ACTIONS(622), + [anon_sym_bool] = ACTIONS(622), + [anon_sym_str] = ACTIONS(622), + [anon_sym_char] = ACTIONS(622), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_async] = ACTIONS(622), + [anon_sym_break] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_continue] = ACTIONS(622), + [anon_sym_default] = ACTIONS(622), + [anon_sym_enum] = ACTIONS(622), + [anon_sym_fn] = ACTIONS(622), + [anon_sym_for] = ACTIONS(622), + [anon_sym_if] = ACTIONS(622), + [anon_sym_impl] = ACTIONS(622), + [anon_sym_let] = ACTIONS(622), + [anon_sym_loop] = ACTIONS(622), + [anon_sym_match] = ACTIONS(622), + [anon_sym_mod] = ACTIONS(622), + [anon_sym_pub] = ACTIONS(622), + [anon_sym_return] = ACTIONS(622), + [anon_sym_static] = ACTIONS(622), + [anon_sym_struct] = ACTIONS(622), + [anon_sym_trait] = ACTIONS(622), + [anon_sym_type] = ACTIONS(622), + [anon_sym_union] = ACTIONS(622), + [anon_sym_unsafe] = ACTIONS(622), + [anon_sym_use] = ACTIONS(622), + [anon_sym_while] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(620), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_extern] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_COLON_COLON] = ACTIONS(620), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT_EQ] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(620), + [anon_sym_PIPE_PIPE] = ACTIONS(620), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(620), + [anon_sym_BANG_EQ] = ACTIONS(620), + [anon_sym_LT_EQ] = ACTIONS(620), + [anon_sym_GT_EQ] = ACTIONS(620), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_PLUS_EQ] = ACTIONS(620), + [anon_sym_DASH_EQ] = ACTIONS(620), + [anon_sym_STAR_EQ] = ACTIONS(620), + [anon_sym_SLASH_EQ] = ACTIONS(620), + [anon_sym_PERCENT_EQ] = ACTIONS(620), + [anon_sym_AMP_EQ] = ACTIONS(620), + [anon_sym_PIPE_EQ] = ACTIONS(620), + [anon_sym_CARET_EQ] = ACTIONS(620), + [anon_sym_LT_LT_EQ] = ACTIONS(620), + [anon_sym_GT_GT_EQ] = ACTIONS(620), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_move] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(622), + [sym_integer_literal] = ACTIONS(620), + [aux_sym_string_literal_token1] = ACTIONS(620), + [sym_char_literal] = ACTIONS(620), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(622), + [sym_super] = ACTIONS(622), + [sym_crate] = ACTIONS(622), + [sym_metavariable] = ACTIONS(620), + [sym_raw_string_literal] = ACTIONS(620), + [sym_float_literal] = ACTIONS(620), + [sym_block_comment] = ACTIONS(3), + }, + [125] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1287), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29552,7 +28957,7 @@ static 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(506), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29571,53 +28976,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [132] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1151), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [126] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29658,7 +29063,7 @@ static 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(506), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29677,53 +29082,53 @@ static 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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1208), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [127] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1295), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29783,58 +29188,58 @@ static 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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1236), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [128] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1252), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -29866,12 +29271,12 @@ static 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(508), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -29889,159 +29294,371 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1213), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), + [129] = { + [ts_builtin_sym_end] = ACTIONS(624), + [sym_identifier] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(624), + [anon_sym_macro_rules_BANG] = ACTIONS(624), + [anon_sym_LPAREN] = ACTIONS(624), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(624), + [anon_sym_u8] = ACTIONS(626), + [anon_sym_i8] = ACTIONS(626), + [anon_sym_u16] = ACTIONS(626), + [anon_sym_i16] = ACTIONS(626), + [anon_sym_u32] = ACTIONS(626), + [anon_sym_i32] = ACTIONS(626), + [anon_sym_u64] = ACTIONS(626), + [anon_sym_i64] = ACTIONS(626), + [anon_sym_u128] = ACTIONS(626), + [anon_sym_i128] = ACTIONS(626), + [anon_sym_isize] = ACTIONS(626), + [anon_sym_usize] = ACTIONS(626), + [anon_sym_f32] = ACTIONS(626), + [anon_sym_f64] = ACTIONS(626), + [anon_sym_bool] = ACTIONS(626), + [anon_sym_str] = ACTIONS(626), + [anon_sym_char] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(626), + [anon_sym_as] = ACTIONS(626), + [anon_sym_async] = ACTIONS(626), + [anon_sym_break] = ACTIONS(626), + [anon_sym_const] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [anon_sym_enum] = ACTIONS(626), + [anon_sym_fn] = ACTIONS(626), + [anon_sym_for] = ACTIONS(626), + [anon_sym_if] = ACTIONS(626), + [anon_sym_impl] = ACTIONS(626), + [anon_sym_let] = ACTIONS(626), + [anon_sym_loop] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_mod] = ACTIONS(626), + [anon_sym_pub] = ACTIONS(626), + [anon_sym_return] = ACTIONS(626), + [anon_sym_static] = ACTIONS(626), + [anon_sym_struct] = ACTIONS(626), + [anon_sym_trait] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_union] = ACTIONS(626), + [anon_sym_unsafe] = ACTIONS(626), + [anon_sym_use] = ACTIONS(626), + [anon_sym_while] = ACTIONS(626), + [anon_sym_POUND] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_extern] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_COLON_COLON] = ACTIONS(624), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(624), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(624), + [anon_sym_BANG_EQ] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(624), + [anon_sym_DASH_EQ] = ACTIONS(624), + [anon_sym_STAR_EQ] = ACTIONS(624), + [anon_sym_SLASH_EQ] = ACTIONS(624), + [anon_sym_PERCENT_EQ] = ACTIONS(624), + [anon_sym_AMP_EQ] = ACTIONS(624), + [anon_sym_PIPE_EQ] = ACTIONS(624), + [anon_sym_CARET_EQ] = ACTIONS(624), + [anon_sym_LT_LT_EQ] = ACTIONS(624), + [anon_sym_GT_GT_EQ] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(626), + [anon_sym_move] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [sym_integer_literal] = ACTIONS(624), + [aux_sym_string_literal_token1] = ACTIONS(624), + [sym_char_literal] = ACTIONS(624), + [anon_sym_true] = ACTIONS(626), + [anon_sym_false] = ACTIONS(626), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_crate] = ACTIONS(626), + [sym_metavariable] = ACTIONS(624), + [sym_raw_string_literal] = ACTIONS(624), + [sym_float_literal] = ACTIONS(624), + [sym_block_comment] = ACTIONS(3), + }, + [130] = { + [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), + }, + [131] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1281), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [132] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1309), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30101,53 +29718,53 @@ static 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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1150), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [133] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1163), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30188,7 +29805,7 @@ static 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(506), + [anon_sym_DOT_DOT] = ACTIONS(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30207,56 +29824,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [138] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1310), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(234), - [sym_if_let_expression] = STATE(234), - [sym_match_expression] = STATE(234), - [sym_while_expression] = STATE(234), - [sym_while_let_expression] = STATE(234), - [sym_loop_expression] = STATE(234), - [sym_for_expression] = STATE(234), - [sym_const_block] = STATE(234), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2533), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(234), - [sym_async_block] = STATE(234), - [sym_block] = STATE(234), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [134] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1278), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -30277,19 +29894,19 @@ static 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(584), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(586), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(592), - [anon_sym_match] = ACTIONS(594), + [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(596), - [anon_sym_while] = ACTIONS(598), + [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), @@ -30313,56 +29930,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [139] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1216), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(234), - [sym_if_let_expression] = STATE(234), - [sym_match_expression] = STATE(234), - [sym_while_expression] = STATE(234), - [sym_while_let_expression] = STATE(234), - [sym_loop_expression] = STATE(234), - [sym_for_expression] = STATE(234), - [sym_const_block] = STATE(234), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2533), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(234), - [sym_async_block] = STATE(234), - [sym_block] = STATE(234), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [135] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1162), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -30383,24 +30000,24 @@ static 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(584), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(586), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(592), - [anon_sym_match] = ACTIONS(594), + [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(596), - [anon_sym_while] = ACTIONS(598), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30419,219 +30036,113 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [140] = { - [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), - }, - [141] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1312), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(280), + [136] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1264), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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(508), + [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), }, - [142] = { + [137] = { [ts_builtin_sym_end] = ACTIONS(632), [sym_identifier] = ACTIONS(634), [anon_sym_SEMI] = ACTIONS(632), @@ -30737,159 +30248,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(632), [sym_block_comment] = ACTIONS(3), }, - [143] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(508), - [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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1302), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [138] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1315), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30949,159 +30354,53 @@ static 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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1147), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [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(506), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [146] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1301), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [139] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1161), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31142,7 +30441,7 @@ static 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(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31161,159 +30460,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1207), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), - [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] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [140] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1312), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31373,7 +30566,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [149] = { + [141] = { [ts_builtin_sym_end] = ACTIONS(636), [sym_identifier] = ACTIONS(638), [anon_sym_SEMI] = ACTIONS(636), @@ -31479,164 +30672,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(636), [sym_block_comment] = ACTIONS(3), }, - [150] = { - [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), - }, - [151] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1240), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [142] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1276), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -31668,12 +30755,12 @@ static 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(508), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -31691,287 +30778,75 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1288), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(280), + [143] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1250), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [153] = { - [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), - }, - [154] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1264), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(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), @@ -31986,12 +30861,12 @@ static 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(508), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -32009,371 +30884,265 @@ static 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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), + [144] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1313), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [156] = { - [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), - }, - [157] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1246), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), + [145] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1160), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(540), + [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), }, - [158] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1210), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [146] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1159), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32414,7 +31183,7 @@ static 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(540), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32433,53 +31202,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [159] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1306), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [147] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1301), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32539,164 +31308,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [160] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), - [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), - }, - [161] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1245), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [148] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1209), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -32728,12 +31391,12 @@ static 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(508), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -32751,477 +31414,371 @@ static 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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1260), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), - [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), + [149] = { + [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(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(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), }, - [163] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1305), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(280), + [150] = { + [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), + }, + [151] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1208), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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(508), + [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), }, - [164] = { - [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), - }, - [165] = { - [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), - }, - [166] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1295), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [152] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1231), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33281,53 +31838,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [167] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1237), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [153] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1298), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33387,97 +31944,203 @@ static 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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1209), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), + [154] = { + [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), + }, + [155] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), @@ -33493,56 +32156,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [169] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1206), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(236), - [sym_if_let_expression] = STATE(236), - [sym_match_expression] = STATE(236), - [sym_while_expression] = STATE(236), - [sym_while_let_expression] = STATE(236), - [sym_loop_expression] = STATE(236), - [sym_for_expression] = STATE(236), - [sym_const_block] = STATE(236), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2533), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(236), - [sym_async_block] = STATE(236), - [sym_block] = STATE(236), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [156] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1285), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(234), + [sym_if_let_expression] = STATE(234), + [sym_match_expression] = STATE(234), + [sym_while_expression] = STATE(234), + [sym_while_let_expression] = STATE(234), + [sym_loop_expression] = STATE(234), + [sym_for_expression] = STATE(234), + [sym_const_block] = STATE(234), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2539), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(234), + [sym_async_block] = STATE(234), + [sym_block] = STATE(234), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(586), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -33563,19 +32226,19 @@ static 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(584), + [anon_sym_async] = ACTIONS(588), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(586), + [anon_sym_const] = ACTIONS(590), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(592), - [anon_sym_match] = ACTIONS(594), + [anon_sym_for] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_loop] = ACTIONS(596), + [anon_sym_match] = ACTIONS(598), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(596), - [anon_sym_while] = ACTIONS(598), + [anon_sym_unsafe] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -33599,159 +32262,371 @@ static 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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1303), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(280), + [157] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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(508), + [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), }, - [171] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1285), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [158] = { + [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), + }, + [159] = { + [ts_builtin_sym_end] = ACTIONS(656), + [sym_identifier] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(564), + [anon_sym_macro_rules_BANG] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_QMARK] = ACTIONS(564), + [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(562), + [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(562), + [anon_sym_extern] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_COLON_COLON] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(562), + [anon_sym_AMP_AMP] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(564), + [anon_sym_BANG_EQ] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_PLUS_EQ] = ACTIONS(564), + [anon_sym_DASH_EQ] = ACTIONS(564), + [anon_sym_STAR_EQ] = ACTIONS(564), + [anon_sym_SLASH_EQ] = ACTIONS(564), + [anon_sym_PERCENT_EQ] = ACTIONS(564), + [anon_sym_AMP_EQ] = ACTIONS(564), + [anon_sym_PIPE_EQ] = ACTIONS(564), + [anon_sym_CARET_EQ] = ACTIONS(564), + [anon_sym_LT_LT_EQ] = ACTIONS(564), + [anon_sym_GT_GT_EQ] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(658), + [anon_sym_move] = ACTIONS(658), + [anon_sym_DOT] = ACTIONS(562), + [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), + }, + [160] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1306), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33811,58 +32686,58 @@ static 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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1223), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [161] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1257), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -33894,12 +32769,12 @@ static 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(508), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -33917,113 +32792,113 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [173] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1243), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), + [162] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(234), + [sym_if_let_expression] = STATE(234), + [sym_match_expression] = STATE(234), + [sym_while_expression] = STATE(234), + [sym_while_let_expression] = STATE(234), + [sym_loop_expression] = STATE(234), + [sym_for_expression] = STATE(234), + [sym_const_block] = STATE(234), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2539), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(234), + [sym_async_block] = STATE(234), + [sym_block] = STATE(234), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(586), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), + [anon_sym_async] = ACTIONS(588), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(590), [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(508), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(592), + [anon_sym_if] = ACTIONS(594), + [anon_sym_loop] = ACTIONS(596), + [anon_sym_match] = ACTIONS(598), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(600), + [anon_sym_while] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(508), + [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), }, - [174] = { + [163] = { [ts_builtin_sym_end] = ACTIONS(660), [sym_identifier] = ACTIONS(662), [anon_sym_SEMI] = ACTIONS(660), @@ -34129,325 +33004,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(660), [sym_block_comment] = ACTIONS(3), }, - [175] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1297), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1914), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1142), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(51), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [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(506), - [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(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1082), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), - [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(508), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [178] = { + [164] = { [ts_builtin_sym_end] = ACTIONS(664), [sym_identifier] = ACTIONS(666), [anon_sym_SEMI] = ACTIONS(664), @@ -34553,7 +33110,219 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(664), [sym_block_comment] = ACTIONS(3), }, - [179] = { + [165] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1253), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [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), + }, + [166] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1258), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [167] = { [ts_builtin_sym_end] = ACTIONS(668), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(668), @@ -34659,7 +33428,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(668), [sym_block_comment] = ACTIONS(3), }, - [180] = { + [168] = { [ts_builtin_sym_end] = ACTIONS(672), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(672), @@ -34765,58 +33534,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(672), [sym_block_comment] = ACTIONS(3), }, - [181] = { - [sym_bracketed_type] = STATE(2470), - [sym_generic_function] = STATE(798), - [sym_generic_type_with_turbofish] = STATE(1971), - [sym__expression_except_range] = STATE(798), - [sym__expression] = STATE(1218), - [sym_macro_invocation] = STATE(798), - [sym_scoped_identifier] = STATE(1194), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1060), - [sym_unary_expression] = STATE(798), - [sym_try_expression] = STATE(798), - [sym_reference_expression] = STATE(798), - [sym_binary_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_compound_assignment_expr] = STATE(798), - [sym_type_cast_expression] = STATE(798), - [sym_return_expression] = STATE(798), - [sym_yield_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_array_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_tuple_expression] = STATE(798), - [sym_unit_expression] = STATE(798), - [sym_struct_expression] = STATE(798), - [sym_if_expression] = STATE(798), - [sym_if_let_expression] = STATE(798), - [sym_match_expression] = STATE(798), - [sym_while_expression] = STATE(798), - [sym_while_let_expression] = STATE(798), - [sym_loop_expression] = STATE(798), - [sym_for_expression] = STATE(798), - [sym_const_block] = STATE(798), - [sym_closure_expression] = STATE(798), - [sym_closure_parameters] = STATE(62), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(798), - [sym_continue_expression] = STATE(798), - [sym_index_expression] = STATE(798), - [sym_await_expression] = STATE(798), - [sym_field_expression] = STATE(801), - [sym_unsafe_block] = STATE(798), - [sym_async_block] = STATE(798), - [sym_block] = STATE(798), - [sym__literal] = STATE(798), - [sym_string_literal] = STATE(1075), - [sym_boolean_literal] = STATE(1075), + [169] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1244), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(504), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -34848,12 +33617,12 @@ static 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(508), + [anon_sym_BANG] = ACTIONS(504), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -34871,1085 +33640,1639 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [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), + [170] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1303), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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(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_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), }, - [183] = { - [sym_identifier] = ACTIONS(568), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_macro_rules_BANG] = ACTIONS(566), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(570), - [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(572), - [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(572), - [anon_sym_extern] = ACTIONS(568), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_COLON_COLON] = ACTIONS(566), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(570), - [anon_sym_DOT_DOT] = ACTIONS(572), - [anon_sym_DOT_DOT_EQ] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_AMP_AMP] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_CARET] = ACTIONS(572), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(572), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_yield] = ACTIONS(568), - [anon_sym_move] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(572), - [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), - }, - [184] = { - [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2405), - [sym_self_parameter] = STATE(2074), - [sym_variadic_parameter] = STATE(2074), - [sym_parameter] = STATE(2074), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1836), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(2075), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1527), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1738), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [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), + [171] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1220), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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(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), + [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(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_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [185] = { - [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2405), - [sym_self_parameter] = STATE(2074), - [sym_variadic_parameter] = STATE(2074), - [sym_parameter] = STATE(2074), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1836), - [sym_bracketed_type] = STATE(2489), - [sym_lifetime] = STATE(2075), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2490), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1609), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2231), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(758), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [172] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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(760), - [anon_sym__] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [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), }, - [186] = { - [sym_attribute_item] = STATE(196), - [sym_function_modifiers] = STATE(2405), - [sym_self_parameter] = STATE(2069), - [sym_variadic_parameter] = STATE(2069), - [sym_parameter] = STATE(2069), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1837), - [sym_bracketed_type] = STATE(2489), - [sym_lifetime] = STATE(2075), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2490), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1609), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2231), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(774), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [173] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1211), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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(760), - [anon_sym__] = ACTIONS(776), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [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(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [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), }, - [187] = { - [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2405), - [sym_self_parameter] = STATE(2074), - [sym_variadic_parameter] = STATE(2074), - [sym_parameter] = STATE(2074), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1836), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(2075), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1527), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1738), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [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), + [174] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1239), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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(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), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(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_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), }, - [188] = { - [sym_attribute_item] = STATE(198), - [sym_function_modifiers] = STATE(2405), - [sym_self_parameter] = STATE(2074), - [sym_variadic_parameter] = STATE(2074), - [sym_parameter] = STATE(2074), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1836), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(2075), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1527), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1738), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [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), + [175] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1261), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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(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), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [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(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_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), }, - [189] = { - [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2405), - [sym_self_parameter] = STATE(2240), - [sym_variadic_parameter] = STATE(2240), - [sym_parameter] = STATE(2240), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(2055), - [sym_bracketed_type] = STATE(2489), - [sym_lifetime] = STATE(2075), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2490), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1609), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2231), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [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), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [176] = { + [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), + }, + [177] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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(760), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [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), }, - [190] = { - [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2405), - [sym_self_parameter] = STATE(2240), - [sym_variadic_parameter] = STATE(2240), - [sym_parameter] = STATE(2240), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(2055), - [sym_bracketed_type] = STATE(2489), - [sym_lifetime] = STATE(2075), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2490), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1609), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2231), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [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), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [178] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1249), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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(760), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [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), }, - [191] = { - [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2405), - [sym_self_parameter] = STATE(2240), - [sym_variadic_parameter] = STATE(2240), - [sym_parameter] = STATE(2240), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(2055), - [sym_bracketed_type] = STATE(2489), - [sym_lifetime] = STATE(2075), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2490), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1609), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2231), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [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), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [179] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1096), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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(760), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [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(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [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), }, - [192] = { - [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2405), - [sym_self_parameter] = STATE(2240), - [sym_variadic_parameter] = STATE(2240), - [sym_parameter] = STATE(2240), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(2055), - [sym_bracketed_type] = STATE(2489), - [sym_lifetime] = STATE(2075), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2490), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1609), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2231), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(794), + [180] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1214), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [181] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(2072), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1218), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1187), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(68), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(516), + [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), + }, + [182] = { + [sym_bracketed_type] = STATE(2476), + [sym_generic_function] = STATE(1019), + [sym_generic_type_with_turbofish] = STATE(1929), + [sym__expression_except_range] = STATE(1019), + [sym__expression] = STATE(1151), + [sym_macro_invocation] = STATE(1019), + [sym_scoped_identifier] = STATE(1018), + [sym_scoped_type_identifier_in_expression_position] = STATE(2239), + [sym_range_expression] = STATE(1064), + [sym_unary_expression] = STATE(1019), + [sym_try_expression] = STATE(1019), + [sym_reference_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_assignment_expression] = STATE(1019), + [sym_compound_assignment_expr] = STATE(1019), + [sym_type_cast_expression] = STATE(1019), + [sym_return_expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_call_expression] = STATE(1019), + [sym_array_expression] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_tuple_expression] = STATE(1019), + [sym_unit_expression] = STATE(1019), + [sym_struct_expression] = STATE(1019), + [sym_if_expression] = STATE(1019), + [sym_if_let_expression] = STATE(1019), + [sym_match_expression] = STATE(1019), + [sym_while_expression] = STATE(1019), + [sym_while_let_expression] = STATE(1019), + [sym_loop_expression] = STATE(1019), + [sym_for_expression] = STATE(1019), + [sym_const_block] = STATE(1019), + [sym_closure_expression] = STATE(1019), + [sym_closure_parameters] = STATE(63), + [sym_loop_label] = STATE(2507), + [sym_break_expression] = STATE(1019), + [sym_continue_expression] = STATE(1019), + [sym_index_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_field_expression] = STATE(933), + [sym_unsafe_block] = STATE(1019), + [sym_async_block] = STATE(1019), + [sym_block] = STATE(1019), + [sym__literal] = STATE(1019), + [sym_string_literal] = STATE(1074), + [sym_boolean_literal] = STATE(1074), + [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(540), + [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), + }, + [183] = { + [sym_identifier] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(564), + [anon_sym_macro_rules_BANG] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_QMARK] = ACTIONS(564), + [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(562), + [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(562), + [anon_sym_extern] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_COLON_COLON] = ACTIONS(656), + [anon_sym_AMP] = ACTIONS(562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(562), + [anon_sym_DOT_DOT_EQ] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(562), + [anon_sym_AMP_AMP] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(564), + [anon_sym_BANG_EQ] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_PLUS_EQ] = ACTIONS(564), + [anon_sym_DASH_EQ] = ACTIONS(564), + [anon_sym_STAR_EQ] = ACTIONS(564), + [anon_sym_SLASH_EQ] = ACTIONS(564), + [anon_sym_PERCENT_EQ] = ACTIONS(564), + [anon_sym_AMP_EQ] = ACTIONS(564), + [anon_sym_PIPE_EQ] = ACTIONS(564), + [anon_sym_CARET_EQ] = ACTIONS(564), + [anon_sym_LT_LT_EQ] = ACTIONS(564), + [anon_sym_GT_GT_EQ] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(658), + [anon_sym_move] = ACTIONS(658), + [anon_sym_DOT] = ACTIONS(562), + [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), + }, + [184] = { + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(1940), + [sym_variadic_parameter] = STATE(1940), + [sym_parameter] = STATE(1940), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1840), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1759), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [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(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), + }, + [185] = { + [sym_attribute_item] = STATE(196), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2073), + [sym_variadic_parameter] = STATE(2073), + [sym_parameter] = STATE(2073), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1808), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(750), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -35980,11 +35303,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(758), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(788), + [anon_sym__] = ACTIONS(762), [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), @@ -36005,53 +35329,259 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [193] = { + [186] = { + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(1940), + [sym_variadic_parameter] = STATE(1940), + [sym_parameter] = STATE(1940), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1840), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1759), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(772), + [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(774), + [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), + }, + [187] = { + [sym_attribute_item] = STATE(197), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(1940), + [sym_variadic_parameter] = STATE(1940), + [sym_parameter] = STATE(1940), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1840), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1759), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(776), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_u8] = ACTIONS(690), + [anon_sym_i8] = ACTIONS(690), + [anon_sym_u16] = ACTIONS(690), + [anon_sym_i16] = ACTIONS(690), + [anon_sym_u32] = ACTIONS(690), + [anon_sym_i32] = ACTIONS(690), + [anon_sym_u64] = ACTIONS(690), + [anon_sym_i64] = ACTIONS(690), + [anon_sym_u128] = ACTIONS(690), + [anon_sym_i128] = ACTIONS(690), + [anon_sym_isize] = ACTIONS(690), + [anon_sym_usize] = ACTIONS(690), + [anon_sym_f32] = ACTIONS(690), + [anon_sym_f64] = ACTIONS(690), + [anon_sym_bool] = ACTIONS(690), + [anon_sym_str] = ACTIONS(690), + [anon_sym_char] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(706), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [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(197), - [sym_function_modifiers] = STATE(2405), - [sym_self_parameter] = STATE(2240), - [sym_variadic_parameter] = STATE(2240), - [sym_parameter] = STATE(2240), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(2055), - [sym_bracketed_type] = STATE(2489), - [sym_lifetime] = STATE(2075), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2490), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1609), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2231), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(1940), + [sym_variadic_parameter] = STATE(1940), + [sym_parameter] = STATE(1940), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1840), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(780), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -36082,11 +35612,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(782), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(788), + [anon_sym__] = ACTIONS(784), [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), @@ -36107,53 +35638,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [194] = { - [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2405), - [sym_self_parameter] = STATE(2240), - [sym_variadic_parameter] = STATE(2240), - [sym_parameter] = STATE(2240), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(2055), - [sym_bracketed_type] = STATE(2489), - [sym_lifetime] = STATE(2075), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2490), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1609), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2231), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [189] = { + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2217), + [sym_variadic_parameter] = STATE(2217), + [sym_parameter] = STATE(2217), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(798), + [anon_sym_RPAREN] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -36209,52 +35740,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [195] = { - [sym_attribute_item] = STATE(197), - [sym_function_modifiers] = STATE(2405), - [sym_self_parameter] = STATE(2240), - [sym_variadic_parameter] = STATE(2240), - [sym_parameter] = STATE(2240), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(2055), - [sym_bracketed_type] = STATE(2489), - [sym_lifetime] = STATE(2075), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2490), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1609), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2231), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [190] = { + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2217), + [sym_variadic_parameter] = STATE(2217), + [sym_parameter] = STATE(2217), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(790), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -36310,51 +35842,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [196] = { - [sym_function_modifiers] = STATE(2405), - [sym_self_parameter] = STATE(2137), - [sym_variadic_parameter] = STATE(2137), - [sym_parameter] = STATE(2137), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1821), - [sym_bracketed_type] = STATE(2489), - [sym_lifetime] = STATE(2075), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2490), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1609), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2231), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [191] = { + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2217), + [sym_variadic_parameter] = STATE(2217), + [sym_parameter] = STATE(2217), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(792), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -36383,12 +35917,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_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(788), [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), @@ -36409,51 +35944,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [197] = { - [sym_function_modifiers] = STATE(2405), - [sym_self_parameter] = STATE(2266), - [sym_variadic_parameter] = STATE(2266), - [sym_parameter] = STATE(2266), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1930), - [sym_bracketed_type] = STATE(2489), - [sym_lifetime] = STATE(2075), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2490), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1609), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2231), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [192] = { + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2217), + [sym_variadic_parameter] = STATE(2217), + [sym_parameter] = STATE(2217), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -36482,12 +36019,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(802), + [anon_sym__] = ACTIONS(788), [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), @@ -36508,51 +36046,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [198] = { - [sym_function_modifiers] = STATE(2405), - [sym_self_parameter] = STATE(1967), - [sym_variadic_parameter] = STATE(1967), - [sym_parameter] = STATE(1967), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1857), - [sym_bracketed_type] = STATE(2489), - [sym_lifetime] = STATE(2075), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2490), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1609), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2231), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [193] = { + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2217), + [sym_variadic_parameter] = STATE(2217), + [sym_parameter] = STATE(2217), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(796), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(752), @@ -36581,12 +36121,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(756), [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(804), + [anon_sym__] = ACTIONS(788), [anon_sym_AMP] = ACTIONS(764), [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), @@ -36607,88 +36148,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [199] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1815), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1527), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1808), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(806), + [194] = { + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2217), + [sym_variadic_parameter] = STATE(2217), + [sym_parameter] = STATE(2217), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(798), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), - [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(692), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(696), + [anon_sym_default] = ACTIONS(754), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(756), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(812), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [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), @@ -36696,57 +36242,552 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [195] = { + [sym_attribute_item] = STATE(198), + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2217), + [sym_variadic_parameter] = STATE(2217), + [sym_parameter] = STATE(2217), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [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(754), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(756), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [196] = { + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2147), + [sym_variadic_parameter] = STATE(2147), + [sym_parameter] = STATE(2147), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1780), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [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(754), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(756), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_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_AMP] = ACTIONS(764), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [197] = { + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(1987), + [sym_variadic_parameter] = STATE(1987), + [sym_parameter] = STATE(1987), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1813), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [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(754), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(756), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_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(802), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [198] = { + [sym_function_modifiers] = STATE(2411), + [sym_self_parameter] = STATE(2172), + [sym_variadic_parameter] = STATE(2172), + [sym_parameter] = STATE(2172), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(2063), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(1941), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2333), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [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(754), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_union] = ACTIONS(756), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_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(804), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_DOT_DOT_DOT] = ACTIONS(724), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(728), + [anon_sym_DOT_DOT] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(732), + [sym_integer_literal] = ACTIONS(734), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(734), + [anon_sym_true] = ACTIONS(738), + [anon_sym_false] = ACTIONS(738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(766), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [199] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(2501), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2502), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1834), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [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(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(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1815), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1527), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1808), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1784), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1843), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(834), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(690), @@ -36769,23 +36810,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), + [anon_sym_union] = ACTIONS(838), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(812), + [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(718), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [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), @@ -36802,87 +36843,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [201] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(2104), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1555), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1811), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(826), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1784), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1843), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(844), [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(830), - [anon_sym_i8] = ACTIONS(830), - [anon_sym_u16] = ACTIONS(830), - [anon_sym_i16] = ACTIONS(830), - [anon_sym_u32] = ACTIONS(830), - [anon_sym_i32] = ACTIONS(830), - [anon_sym_u64] = ACTIONS(830), - [anon_sym_i64] = ACTIONS(830), - [anon_sym_u128] = ACTIONS(830), - [anon_sym_i128] = ACTIONS(830), - [anon_sym_isize] = ACTIONS(830), - [anon_sym_usize] = ACTIONS(830), - [anon_sym_f32] = ACTIONS(830), - [anon_sym_f64] = ACTIONS(830), - [anon_sym_bool] = ACTIONS(830), - [anon_sym_str] = ACTIONS(830), - [anon_sym_char] = ACTIONS(830), + [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(832), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(834), + [anon_sym_union] = ACTIONS(838), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(836), + [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(838), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(840), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [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), @@ -36890,54 +36931,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(842), - [sym_super] = ACTIONS(842), - [sym_crate] = ACTIONS(842), - [sym_metavariable] = ACTIONS(844), + [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), }, [202] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1815), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1527), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1808), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1784), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1843), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_RPAREN] = ACTIONS(846), @@ -36963,23 +37004,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), + [anon_sym_union] = ACTIONS(838), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(812), + [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(718), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [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), @@ -37092,45 +37133,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [204] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1415), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(607), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1527), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1456), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1397), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(599), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1488), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -37155,22 +37196,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), + [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(718), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37187,85 +37228,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [205] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1390), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1555), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1458), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(826), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1394), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(830), - [anon_sym_i8] = ACTIONS(830), - [anon_sym_u16] = ACTIONS(830), - [anon_sym_i16] = ACTIONS(830), - [anon_sym_u32] = ACTIONS(830), - [anon_sym_i32] = ACTIONS(830), - [anon_sym_u64] = ACTIONS(830), - [anon_sym_i64] = ACTIONS(830), - [anon_sym_u128] = ACTIONS(830), - [anon_sym_i128] = ACTIONS(830), - [anon_sym_isize] = ACTIONS(830), - [anon_sym_usize] = ACTIONS(830), - [anon_sym_f32] = ACTIONS(830), - [anon_sym_f64] = ACTIONS(830), - [anon_sym_bool] = ACTIONS(830), - [anon_sym_str] = ACTIONS(830), - [anon_sym_char] = ACTIONS(830), + [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(832), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(834), + [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(838), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(840), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [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), @@ -37273,94 +37314,94 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(842), - [sym_super] = ACTIONS(842), - [sym_crate] = ACTIONS(842), - [sym_metavariable] = ACTIONS(844), + [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), }, [206] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1415), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(607), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1555), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1456), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(826), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1397), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(605), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1488), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(830), - [anon_sym_i8] = ACTIONS(830), - [anon_sym_u16] = ACTIONS(830), - [anon_sym_i16] = ACTIONS(830), - [anon_sym_u32] = ACTIONS(830), - [anon_sym_i32] = ACTIONS(830), - [anon_sym_u64] = ACTIONS(830), - [anon_sym_i64] = ACTIONS(830), - [anon_sym_u128] = ACTIONS(830), - [anon_sym_i128] = ACTIONS(830), - [anon_sym_isize] = ACTIONS(830), - [anon_sym_usize] = ACTIONS(830), - [anon_sym_f32] = ACTIONS(830), - [anon_sym_f64] = ACTIONS(830), - [anon_sym_bool] = ACTIONS(830), - [anon_sym_str] = ACTIONS(830), - [anon_sym_char] = ACTIONS(830), + [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(832), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(834), + [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(838), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(840), + [anon_sym_COLON_COLON] = ACTIONS(718), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), [sym_mutable_specifier] = ACTIONS(856), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37368,149 +37409,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(842), - [sym_super] = ACTIONS(842), - [sym_crate] = ACTIONS(842), - [sym_metavariable] = ACTIONS(844), + [sym_self] = ACTIONS(858), + [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), }, [207] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1415), - [sym_bracketed_type] = STATE(2489), - [sym_lifetime] = STATE(614), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2490), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1609), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1456), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(852), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(858), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(860), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(862), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(864), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(866), - [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), - }, - [208] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1415), - [sym_bracketed_type] = STATE(2489), - [sym_lifetime] = STATE(607), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2490), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1609), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1456), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1397), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(599), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1488), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -37535,22 +37481,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(858), + [anon_sym_default] = ACTIONS(860), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(860), + [anon_sym_union] = ACTIONS(862), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(862), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(868), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(866), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37566,46 +37512,46 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [209] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1390), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1527), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1458), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [208] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1394), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2499), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(680), [anon_sym_LPAREN] = ACTIONS(682), [anon_sym_LBRACK] = ACTIONS(686), @@ -37630,22 +37576,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), + [anon_sym_default] = ACTIONS(836), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), + [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(718), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(842), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [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), @@ -37653,7 +37599,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(742), + [sym_self] = ACTIONS(868), [sym_super] = ACTIONS(742), [sym_crate] = ACTIONS(742), [sym_metavariable] = ACTIONS(744), @@ -37661,86 +37607,86 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [210] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1390), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1527), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1458), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [209] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1394), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), [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_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), + [anon_sym_default] = ACTIONS(860), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), + [anon_sym_union] = ACTIONS(862), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [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), @@ -37749,93 +37695,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(870), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_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), }, - [211] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1415), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(614), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1527), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1456), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), + [210] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1394), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(748), [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_u8] = ACTIONS(752), + [anon_sym_i8] = ACTIONS(752), + [anon_sym_u16] = ACTIONS(752), + [anon_sym_i16] = ACTIONS(752), + [anon_sym_u32] = ACTIONS(752), + [anon_sym_i32] = ACTIONS(752), + [anon_sym_u64] = ACTIONS(752), + [anon_sym_i64] = ACTIONS(752), + [anon_sym_u128] = ACTIONS(752), + [anon_sym_i128] = ACTIONS(752), + [anon_sym_isize] = ACTIONS(752), + [anon_sym_usize] = ACTIONS(752), + [anon_sym_f32] = ACTIONS(752), + [anon_sym_f64] = ACTIONS(752), + [anon_sym_bool] = ACTIONS(752), + [anon_sym_str] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(692), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), + [anon_sym_default] = ACTIONS(860), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), + [anon_sym_union] = ACTIONS(862), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(872), - [anon_sym_DOT_DOT] = ACTIONS(820), + [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), @@ -37843,54 +37789,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), + [sym_self] = ACTIONS(768), + [sym_super] = ACTIONS(768), + [sym_crate] = ACTIONS(768), + [sym_metavariable] = ACTIONS(770), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [212] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1390), - [sym_bracketed_type] = STATE(2489), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2490), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1609), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1458), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [211] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1397), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(605), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1488), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(686), @@ -37912,25 +37858,25 @@ static 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(692), + [anon_sym_SQUOTE] = ACTIONS(852), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(858), + [anon_sym_default] = ACTIONS(860), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(860), + [anon_sym_union] = ACTIONS(862), [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(862), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [sym_mutable_specifier] = ACTIONS(872), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -37938,7 +37884,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), + [sym_self] = ACTIONS(874), [sym_super] = ACTIONS(768), [sym_crate] = ACTIONS(768), [sym_metavariable] = ACTIONS(770), @@ -37946,86 +37892,86 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [213] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1390), - [sym_bracketed_type] = STATE(2489), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2490), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(1609), - [sym_scoped_type_identifier] = STATE(1501), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1458), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), + [212] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1394), + [sym_bracketed_type] = STATE(2501), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2502), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(808), [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_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(858), + [anon_sym_default] = ACTIONS(814), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(860), + [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(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(862), + [anon_sym_COLON_COLON] = ACTIONS(820), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(824), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [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), @@ -38033,37 +37979,132 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), + [sym_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), + }, + [213] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1397), + [sym_bracketed_type] = STATE(2501), + [sym_lifetime] = STATE(599), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2502), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier] = STATE(1500), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1488), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [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(820), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(876), + [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), }, [214] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1476), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1471), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(878), [anon_sym_LPAREN] = ACTIONS(880), [anon_sym_LBRACE] = ACTIONS(880), @@ -38105,9 +38146,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(880), [anon_sym_LT] = ACTIONS(880), [anon_sym_COLON_COLON] = ACTIONS(880), - [anon_sym__] = ACTIONS(814), + [anon_sym__] = ACTIONS(822), [anon_sym_AMP] = ACTIONS(880), - [sym_mutable_specifier] = ACTIONS(818), + [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(880), [anon_sym_DASH] = ACTIONS(878), [anon_sym_PIPE] = ACTIONS(880), @@ -38129,999 +38170,679 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [215] = { [sym_else_clause] = STATE(235), - [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), + [sym_identifier] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(502), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u8] = ACTIONS(502), + [anon_sym_i8] = ACTIONS(502), + [anon_sym_u16] = ACTIONS(502), + [anon_sym_i16] = ACTIONS(502), + [anon_sym_u32] = ACTIONS(502), + [anon_sym_i32] = ACTIONS(502), + [anon_sym_u64] = ACTIONS(502), + [anon_sym_i64] = ACTIONS(502), + [anon_sym_u128] = ACTIONS(502), + [anon_sym_i128] = ACTIONS(502), + [anon_sym_isize] = ACTIONS(502), + [anon_sym_usize] = ACTIONS(502), + [anon_sym_f32] = ACTIONS(502), + [anon_sym_f64] = ACTIONS(502), + [anon_sym_bool] = ACTIONS(502), + [anon_sym_str] = ACTIONS(502), + [anon_sym_char] = ACTIONS(502), + [anon_sym_as] = ACTIONS(502), + [anon_sym_const] = ACTIONS(502), + [anon_sym_default] = ACTIONS(502), + [anon_sym_union] = ACTIONS(502), + [anon_sym_POUND] = ACTIONS(500), + [anon_sym_EQ] = ACTIONS(502), + [anon_sym_COMMA] = ACTIONS(500), + [anon_sym_ref] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(502), + [anon_sym_COLON_COLON] = ACTIONS(500), + [anon_sym__] = ACTIONS(502), + [anon_sym_AMP] = ACTIONS(502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(500), + [sym_mutable_specifier] = ACTIONS(502), + [anon_sym_DOT_DOT] = ACTIONS(502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_AMP_AMP] = ACTIONS(500), + [anon_sym_PIPE_PIPE] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(500), + [anon_sym_BANG_EQ] = ACTIONS(500), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_LT_LT] = ACTIONS(502), + [anon_sym_GT_GT] = ACTIONS(502), + [anon_sym_SLASH] = ACTIONS(502), + [anon_sym_PERCENT] = ACTIONS(502), + [anon_sym_PLUS_EQ] = ACTIONS(500), + [anon_sym_DASH_EQ] = ACTIONS(500), + [anon_sym_STAR_EQ] = ACTIONS(500), + [anon_sym_SLASH_EQ] = ACTIONS(500), + [anon_sym_PERCENT_EQ] = ACTIONS(500), + [anon_sym_AMP_EQ] = ACTIONS(500), + [anon_sym_PIPE_EQ] = ACTIONS(500), + [anon_sym_CARET_EQ] = ACTIONS(500), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_GT_GT_EQ] = ACTIONS(500), [anon_sym_else] = ACTIONS(882), - [anon_sym_DOT] = ACTIONS(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), + [anon_sym_DOT] = ACTIONS(502), + [sym_integer_literal] = ACTIONS(500), + [aux_sym_string_literal_token1] = ACTIONS(500), + [sym_char_literal] = ACTIONS(500), + [anon_sym_true] = ACTIONS(502), + [anon_sym_false] = ACTIONS(502), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(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_self] = ACTIONS(502), + [sym_super] = ACTIONS(502), + [sym_crate] = ACTIONS(502), + [sym_metavariable] = ACTIONS(500), + [sym_raw_string_literal] = ACTIONS(500), + [sym_float_literal] = ACTIONS(500), [sym_block_comment] = ACTIONS(3), }, [216] = { - [sym_else_clause] = STATE(231), - [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), + [sym_else_clause] = STATE(241), + [sym_identifier] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(394), + [anon_sym_RBRACE] = ACTIONS(394), + [anon_sym_LBRACK] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_QMARK] = ACTIONS(394), + [anon_sym_u8] = ACTIONS(396), + [anon_sym_i8] = ACTIONS(396), + [anon_sym_u16] = ACTIONS(396), + [anon_sym_i16] = ACTIONS(396), + [anon_sym_u32] = ACTIONS(396), + [anon_sym_i32] = ACTIONS(396), + [anon_sym_u64] = ACTIONS(396), + [anon_sym_i64] = ACTIONS(396), + [anon_sym_u128] = ACTIONS(396), + [anon_sym_i128] = ACTIONS(396), + [anon_sym_isize] = ACTIONS(396), + [anon_sym_usize] = ACTIONS(396), + [anon_sym_f32] = ACTIONS(396), + [anon_sym_f64] = ACTIONS(396), + [anon_sym_bool] = ACTIONS(396), + [anon_sym_str] = ACTIONS(396), + [anon_sym_char] = ACTIONS(396), + [anon_sym_as] = ACTIONS(396), + [anon_sym_const] = ACTIONS(396), + [anon_sym_default] = ACTIONS(396), + [anon_sym_union] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(394), + [anon_sym_EQ] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(394), + [anon_sym_ref] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(396), + [anon_sym_COLON_COLON] = ACTIONS(394), + [anon_sym__] = ACTIONS(396), + [anon_sym_AMP] = ACTIONS(396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(394), + [sym_mutable_specifier] = ACTIONS(396), + [anon_sym_DOT_DOT] = ACTIONS(396), + [anon_sym_DOT_DOT_EQ] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_AMP_AMP] = ACTIONS(394), + [anon_sym_PIPE_PIPE] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(396), + [anon_sym_CARET] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(394), + [anon_sym_BANG_EQ] = ACTIONS(394), + [anon_sym_LT_EQ] = ACTIONS(394), + [anon_sym_GT_EQ] = ACTIONS(394), + [anon_sym_LT_LT] = ACTIONS(396), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_PLUS_EQ] = ACTIONS(394), + [anon_sym_DASH_EQ] = ACTIONS(394), + [anon_sym_STAR_EQ] = ACTIONS(394), + [anon_sym_SLASH_EQ] = ACTIONS(394), + [anon_sym_PERCENT_EQ] = ACTIONS(394), + [anon_sym_AMP_EQ] = ACTIONS(394), + [anon_sym_PIPE_EQ] = ACTIONS(394), + [anon_sym_CARET_EQ] = ACTIONS(394), + [anon_sym_LT_LT_EQ] = ACTIONS(394), + [anon_sym_GT_GT_EQ] = ACTIONS(394), [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), + [anon_sym_DOT] = ACTIONS(396), + [sym_integer_literal] = ACTIONS(394), + [aux_sym_string_literal_token1] = ACTIONS(394), + [sym_char_literal] = ACTIONS(394), + [anon_sym_true] = ACTIONS(396), + [anon_sym_false] = ACTIONS(396), [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_self] = ACTIONS(396), + [sym_super] = ACTIONS(396), + [sym_crate] = ACTIONS(396), + [sym_metavariable] = ACTIONS(394), + [sym_raw_string_literal] = ACTIONS(394), + [sym_float_literal] = ACTIONS(394), [sym_block_comment] = ACTIONS(3), }, [217] = { - [sym_identifier] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RBRACE] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(546), - [anon_sym_PLUS] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(546), - [anon_sym_u8] = ACTIONS(548), - [anon_sym_i8] = ACTIONS(548), - [anon_sym_u16] = ACTIONS(548), - [anon_sym_i16] = ACTIONS(548), - [anon_sym_u32] = ACTIONS(548), - [anon_sym_i32] = ACTIONS(548), - [anon_sym_u64] = ACTIONS(548), - [anon_sym_i64] = ACTIONS(548), - [anon_sym_u128] = ACTIONS(548), - [anon_sym_i128] = ACTIONS(548), - [anon_sym_isize] = ACTIONS(548), - [anon_sym_usize] = ACTIONS(548), - [anon_sym_f32] = ACTIONS(548), - [anon_sym_f64] = ACTIONS(548), - [anon_sym_bool] = ACTIONS(548), - [anon_sym_str] = ACTIONS(548), - [anon_sym_char] = ACTIONS(548), - [anon_sym_as] = ACTIONS(548), - [anon_sym_const] = ACTIONS(548), - [anon_sym_default] = ACTIONS(548), - [anon_sym_union] = ACTIONS(548), - [anon_sym_POUND] = ACTIONS(546), - [anon_sym_EQ] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(546), - [anon_sym_ref] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_COLON_COLON] = ACTIONS(546), - [anon_sym__] = ACTIONS(548), - [anon_sym_AMP] = ACTIONS(548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(546), - [sym_mutable_specifier] = ACTIONS(548), - [anon_sym_DOT_DOT] = ACTIONS(548), - [anon_sym_DOT_DOT_EQ] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(546), - [anon_sym_PIPE_PIPE] = ACTIONS(546), - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_CARET] = ACTIONS(548), - [anon_sym_EQ_EQ] = ACTIONS(546), - [anon_sym_BANG_EQ] = ACTIONS(546), - [anon_sym_LT_EQ] = ACTIONS(546), - [anon_sym_GT_EQ] = ACTIONS(546), - [anon_sym_LT_LT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(548), - [anon_sym_PERCENT] = ACTIONS(548), - [anon_sym_PLUS_EQ] = ACTIONS(546), - [anon_sym_DASH_EQ] = ACTIONS(546), - [anon_sym_STAR_EQ] = ACTIONS(546), - [anon_sym_SLASH_EQ] = ACTIONS(546), - [anon_sym_PERCENT_EQ] = ACTIONS(546), - [anon_sym_AMP_EQ] = ACTIONS(546), - [anon_sym_PIPE_EQ] = ACTIONS(546), - [anon_sym_CARET_EQ] = ACTIONS(546), - [anon_sym_LT_LT_EQ] = ACTIONS(546), - [anon_sym_GT_GT_EQ] = ACTIONS(546), - [anon_sym_else] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(548), - [sym_integer_literal] = ACTIONS(546), - [aux_sym_string_literal_token1] = ACTIONS(546), - [sym_char_literal] = ACTIONS(546), - [anon_sym_true] = ACTIONS(548), - [anon_sym_false] = ACTIONS(548), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(548), - [sym_super] = ACTIONS(548), - [sym_crate] = ACTIONS(548), - [sym_metavariable] = ACTIONS(546), - [sym_raw_string_literal] = ACTIONS(546), - [sym_float_literal] = ACTIONS(546), + [sym_identifier] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(550), + [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_as] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_POUND] = ACTIONS(550), + [anon_sym_EQ] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(550), + [anon_sym_ref] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(552), + [anon_sym_GT] = ACTIONS(552), + [anon_sym_COLON_COLON] = ACTIONS(550), + [anon_sym__] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(550), + [sym_mutable_specifier] = ACTIONS(552), + [anon_sym_DOT_DOT] = ACTIONS(552), + [anon_sym_DOT_DOT_EQ] = ACTIONS(550), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_AMP_AMP] = ACTIONS(550), + [anon_sym_PIPE_PIPE] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(552), + [anon_sym_CARET] = ACTIONS(552), + [anon_sym_EQ_EQ] = ACTIONS(550), + [anon_sym_BANG_EQ] = ACTIONS(550), + [anon_sym_LT_EQ] = ACTIONS(550), + [anon_sym_GT_EQ] = ACTIONS(550), + [anon_sym_LT_LT] = ACTIONS(552), + [anon_sym_GT_GT] = ACTIONS(552), + [anon_sym_SLASH] = ACTIONS(552), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_PLUS_EQ] = ACTIONS(550), + [anon_sym_DASH_EQ] = ACTIONS(550), + [anon_sym_STAR_EQ] = ACTIONS(550), + [anon_sym_SLASH_EQ] = ACTIONS(550), + [anon_sym_PERCENT_EQ] = ACTIONS(550), + [anon_sym_AMP_EQ] = ACTIONS(550), + [anon_sym_PIPE_EQ] = ACTIONS(550), + [anon_sym_CARET_EQ] = ACTIONS(550), + [anon_sym_LT_LT_EQ] = ACTIONS(550), + [anon_sym_GT_GT_EQ] = ACTIONS(550), + [anon_sym_else] = ACTIONS(552), + [anon_sym_DOT] = ACTIONS(552), + [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), }, [218] = { - [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_else] = 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), + [sym_identifier] = ACTIONS(526), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_u8] = ACTIONS(526), + [anon_sym_i8] = ACTIONS(526), + [anon_sym_u16] = ACTIONS(526), + [anon_sym_i16] = ACTIONS(526), + [anon_sym_u32] = ACTIONS(526), + [anon_sym_i32] = ACTIONS(526), + [anon_sym_u64] = ACTIONS(526), + [anon_sym_i64] = ACTIONS(526), + [anon_sym_u128] = ACTIONS(526), + [anon_sym_i128] = ACTIONS(526), + [anon_sym_isize] = ACTIONS(526), + [anon_sym_usize] = ACTIONS(526), + [anon_sym_f32] = ACTIONS(526), + [anon_sym_f64] = ACTIONS(526), + [anon_sym_bool] = ACTIONS(526), + [anon_sym_str] = ACTIONS(526), + [anon_sym_char] = ACTIONS(526), + [anon_sym_as] = ACTIONS(526), + [anon_sym_const] = ACTIONS(526), + [anon_sym_default] = ACTIONS(526), + [anon_sym_union] = ACTIONS(526), + [anon_sym_POUND] = ACTIONS(524), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(524), + [anon_sym_ref] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(524), + [anon_sym__] = ACTIONS(526), + [anon_sym_AMP] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(524), + [sym_mutable_specifier] = ACTIONS(526), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_AMP_AMP] = ACTIONS(524), + [anon_sym_PIPE_PIPE] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(526), + [anon_sym_EQ_EQ] = ACTIONS(524), + [anon_sym_BANG_EQ] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(524), + [anon_sym_LT_LT] = ACTIONS(526), + [anon_sym_GT_GT] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_PLUS_EQ] = ACTIONS(524), + [anon_sym_DASH_EQ] = ACTIONS(524), + [anon_sym_STAR_EQ] = ACTIONS(524), + [anon_sym_SLASH_EQ] = ACTIONS(524), + [anon_sym_PERCENT_EQ] = ACTIONS(524), + [anon_sym_AMP_EQ] = ACTIONS(524), + [anon_sym_PIPE_EQ] = ACTIONS(524), + [anon_sym_CARET_EQ] = ACTIONS(524), + [anon_sym_LT_LT_EQ] = ACTIONS(524), + [anon_sym_GT_GT_EQ] = ACTIONS(524), + [anon_sym_else] = ACTIONS(526), + [anon_sym_DOT] = ACTIONS(526), + [sym_integer_literal] = ACTIONS(524), + [aux_sym_string_literal_token1] = ACTIONS(524), + [sym_char_literal] = ACTIONS(524), + [anon_sym_true] = ACTIONS(526), + [anon_sym_false] = ACTIONS(526), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(526), + [sym_super] = ACTIONS(526), + [sym_crate] = ACTIONS(526), + [sym_metavariable] = ACTIONS(524), + [sym_raw_string_literal] = ACTIONS(524), + [sym_float_literal] = ACTIONS(524), [sym_block_comment] = ACTIONS(3), }, [219] = { - [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_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_else] = 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), }, [220] = { - [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_identifier] = ACTIONS(614), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_u8] = ACTIONS(614), + [anon_sym_i8] = ACTIONS(614), + [anon_sym_u16] = ACTIONS(614), + [anon_sym_i16] = ACTIONS(614), + [anon_sym_u32] = ACTIONS(614), + [anon_sym_i32] = ACTIONS(614), + [anon_sym_u64] = ACTIONS(614), + [anon_sym_i64] = ACTIONS(614), + [anon_sym_u128] = ACTIONS(614), + [anon_sym_i128] = ACTIONS(614), + [anon_sym_isize] = ACTIONS(614), + [anon_sym_usize] = ACTIONS(614), + [anon_sym_f32] = ACTIONS(614), + [anon_sym_f64] = ACTIONS(614), + [anon_sym_bool] = ACTIONS(614), + [anon_sym_str] = ACTIONS(614), + [anon_sym_char] = ACTIONS(614), + [anon_sym_as] = ACTIONS(614), + [anon_sym_const] = ACTIONS(614), + [anon_sym_default] = ACTIONS(614), + [anon_sym_union] = ACTIONS(614), + [anon_sym_POUND] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(612), + [anon_sym_ref] = ACTIONS(614), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_COLON_COLON] = ACTIONS(612), + [anon_sym__] = ACTIONS(614), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(612), + [sym_mutable_specifier] = ACTIONS(614), + [anon_sym_DOT_DOT] = ACTIONS(614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_AMP_AMP] = ACTIONS(612), + [anon_sym_PIPE_PIPE] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_LT_EQ] = ACTIONS(612), + [anon_sym_GT_EQ] = ACTIONS(612), + [anon_sym_LT_LT] = ACTIONS(614), + [anon_sym_GT_GT] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(614), + [anon_sym_PERCENT] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(612), + [anon_sym_DASH_EQ] = ACTIONS(612), + [anon_sym_STAR_EQ] = ACTIONS(612), + [anon_sym_SLASH_EQ] = ACTIONS(612), + [anon_sym_PERCENT_EQ] = ACTIONS(612), + [anon_sym_AMP_EQ] = ACTIONS(612), + [anon_sym_PIPE_EQ] = ACTIONS(612), + [anon_sym_CARET_EQ] = ACTIONS(612), + [anon_sym_LT_LT_EQ] = ACTIONS(612), + [anon_sym_GT_GT_EQ] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(614), + [sym_integer_literal] = ACTIONS(612), + [aux_sym_string_literal_token1] = ACTIONS(612), + [sym_char_literal] = ACTIONS(612), + [anon_sym_true] = ACTIONS(614), + [anon_sym_false] = ACTIONS(614), [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_self] = ACTIONS(614), + [sym_super] = ACTIONS(614), + [sym_crate] = ACTIONS(614), + [sym_metavariable] = ACTIONS(612), + [sym_raw_string_literal] = ACTIONS(612), + [sym_float_literal] = ACTIONS(612), [sym_block_comment] = ACTIONS(3), }, [221] = { - [sym_identifier] = ACTIONS(618), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RBRACE] = ACTIONS(616), - [anon_sym_LBRACK] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(618), - [anon_sym_QMARK] = ACTIONS(616), - [anon_sym_u8] = ACTIONS(618), - [anon_sym_i8] = ACTIONS(618), - [anon_sym_u16] = ACTIONS(618), - [anon_sym_i16] = ACTIONS(618), - [anon_sym_u32] = ACTIONS(618), - [anon_sym_i32] = ACTIONS(618), - [anon_sym_u64] = ACTIONS(618), - [anon_sym_i64] = ACTIONS(618), - [anon_sym_u128] = ACTIONS(618), - [anon_sym_i128] = ACTIONS(618), - [anon_sym_isize] = ACTIONS(618), - [anon_sym_usize] = ACTIONS(618), - [anon_sym_f32] = ACTIONS(618), - [anon_sym_f64] = ACTIONS(618), - [anon_sym_bool] = ACTIONS(618), - [anon_sym_str] = ACTIONS(618), - [anon_sym_char] = ACTIONS(618), - [anon_sym_as] = ACTIONS(618), - [anon_sym_const] = ACTIONS(618), - [anon_sym_default] = ACTIONS(618), - [anon_sym_union] = ACTIONS(618), - [anon_sym_POUND] = ACTIONS(616), - [anon_sym_EQ] = ACTIONS(618), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_ref] = ACTIONS(618), - [anon_sym_LT] = ACTIONS(618), - [anon_sym_GT] = ACTIONS(618), - [anon_sym_COLON_COLON] = ACTIONS(616), - [anon_sym__] = ACTIONS(618), - [anon_sym_AMP] = ACTIONS(618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(616), - [sym_mutable_specifier] = ACTIONS(618), - [anon_sym_DOT_DOT] = ACTIONS(618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(616), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_AMP_AMP] = ACTIONS(616), - [anon_sym_PIPE_PIPE] = ACTIONS(616), - [anon_sym_PIPE] = ACTIONS(618), - [anon_sym_CARET] = ACTIONS(618), - [anon_sym_EQ_EQ] = ACTIONS(616), - [anon_sym_BANG_EQ] = ACTIONS(616), - [anon_sym_LT_EQ] = ACTIONS(616), - [anon_sym_GT_EQ] = ACTIONS(616), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_GT_GT] = ACTIONS(618), - [anon_sym_SLASH] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(618), - [anon_sym_PLUS_EQ] = ACTIONS(616), - [anon_sym_DASH_EQ] = ACTIONS(616), - [anon_sym_STAR_EQ] = ACTIONS(616), - [anon_sym_SLASH_EQ] = ACTIONS(616), - [anon_sym_PERCENT_EQ] = ACTIONS(616), - [anon_sym_AMP_EQ] = ACTIONS(616), - [anon_sym_PIPE_EQ] = ACTIONS(616), - [anon_sym_CARET_EQ] = ACTIONS(616), - [anon_sym_LT_LT_EQ] = ACTIONS(616), - [anon_sym_GT_GT_EQ] = ACTIONS(616), - [anon_sym_DOT] = ACTIONS(618), - [sym_integer_literal] = ACTIONS(616), - [aux_sym_string_literal_token1] = ACTIONS(616), - [sym_char_literal] = ACTIONS(616), - [anon_sym_true] = ACTIONS(618), - [anon_sym_false] = ACTIONS(618), + [sym_identifier] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(566), + [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(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_as] = ACTIONS(568), + [anon_sym_const] = ACTIONS(568), + [anon_sym_default] = ACTIONS(568), + [anon_sym_union] = ACTIONS(568), + [anon_sym_POUND] = ACTIONS(566), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_ref] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(566), + [anon_sym__] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [sym_mutable_specifier] = ACTIONS(568), + [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_DOT] = ACTIONS(568), + [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(618), - [sym_super] = ACTIONS(618), - [sym_crate] = ACTIONS(618), - [sym_metavariable] = ACTIONS(616), - [sym_raw_string_literal] = ACTIONS(616), - [sym_float_literal] = ACTIONS(616), + [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), }, [222] = { - [sym_identifier] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(578), - [anon_sym_ref] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym__] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [sym_mutable_specifier] = ACTIONS(580), - [anon_sym_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(580), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_PLUS_EQ] = ACTIONS(578), - [anon_sym_DASH_EQ] = ACTIONS(578), - [anon_sym_STAR_EQ] = ACTIONS(578), - [anon_sym_SLASH_EQ] = ACTIONS(578), - [anon_sym_PERCENT_EQ] = ACTIONS(578), - [anon_sym_AMP_EQ] = ACTIONS(578), - [anon_sym_PIPE_EQ] = ACTIONS(578), - [anon_sym_CARET_EQ] = ACTIONS(578), - [anon_sym_LT_LT_EQ] = ACTIONS(578), - [anon_sym_GT_GT_EQ] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1982), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1984), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_type_binding] = STATE(2208), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [sym_block] = STATE(2208), + [sym__literal] = STATE(2208), + [sym_string_literal] = STATE(2319), + [sym_boolean_literal] = STATE(2319), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [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(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_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), }, [223] = { - [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), - }, - [224] = { - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(648), - [anon_sym_u8] = ACTIONS(650), - [anon_sym_i8] = ACTIONS(650), - [anon_sym_u16] = ACTIONS(650), - [anon_sym_i16] = ACTIONS(650), - [anon_sym_u32] = ACTIONS(650), - [anon_sym_i32] = ACTIONS(650), - [anon_sym_u64] = ACTIONS(650), - [anon_sym_i64] = ACTIONS(650), - [anon_sym_u128] = ACTIONS(650), - [anon_sym_i128] = ACTIONS(650), - [anon_sym_isize] = ACTIONS(650), - [anon_sym_usize] = ACTIONS(650), - [anon_sym_f32] = ACTIONS(650), - [anon_sym_f64] = ACTIONS(650), - [anon_sym_bool] = ACTIONS(650), - [anon_sym_str] = ACTIONS(650), - [anon_sym_char] = ACTIONS(650), - [anon_sym_as] = ACTIONS(650), - [anon_sym_const] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), - [anon_sym_union] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(648), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(648), - [anon_sym_ref] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_COLON_COLON] = ACTIONS(648), - [anon_sym__] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(648), - [sym_mutable_specifier] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_EQ] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(648), - [anon_sym_PIPE_PIPE] = ACTIONS(648), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(648), - [anon_sym_BANG_EQ] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(648), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_DOT] = ACTIONS(650), - [sym_integer_literal] = ACTIONS(648), - [aux_sym_string_literal_token1] = ACTIONS(648), - [sym_char_literal] = ACTIONS(648), - [anon_sym_true] = ACTIONS(650), - [anon_sym_false] = ACTIONS(650), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(650), - [sym_super] = ACTIONS(650), - [sym_crate] = ACTIONS(650), - [sym_metavariable] = ACTIONS(648), - [sym_raw_string_literal] = ACTIONS(648), - [sym_float_literal] = ACTIONS(648), - [sym_block_comment] = ACTIONS(3), - }, - [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(602), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(602), - [anon_sym_i8] = ACTIONS(602), - [anon_sym_u16] = ACTIONS(602), - [anon_sym_i16] = ACTIONS(602), - [anon_sym_u32] = ACTIONS(602), - [anon_sym_i32] = ACTIONS(602), - [anon_sym_u64] = ACTIONS(602), - [anon_sym_i64] = ACTIONS(602), - [anon_sym_u128] = ACTIONS(602), - [anon_sym_i128] = ACTIONS(602), - [anon_sym_isize] = ACTIONS(602), - [anon_sym_usize] = ACTIONS(602), - [anon_sym_f32] = ACTIONS(602), - [anon_sym_f64] = ACTIONS(602), - [anon_sym_bool] = ACTIONS(602), - [anon_sym_str] = ACTIONS(602), - [anon_sym_char] = ACTIONS(602), - [anon_sym_as] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_default] = ACTIONS(602), - [anon_sym_union] = ACTIONS(602), - [anon_sym_POUND] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_COMMA] = ACTIONS(600), - [anon_sym_ref] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_COLON_COLON] = ACTIONS(600), - [anon_sym__] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(600), - [sym_mutable_specifier] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_EQ] = ACTIONS(600), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(600), - [anon_sym_BANG_EQ] = ACTIONS(600), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(600), - [anon_sym_DASH_EQ] = ACTIONS(600), - [anon_sym_STAR_EQ] = ACTIONS(600), - [anon_sym_SLASH_EQ] = ACTIONS(600), - [anon_sym_PERCENT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(600), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(602), - [sym_integer_literal] = ACTIONS(600), - [aux_sym_string_literal_token1] = ACTIONS(600), - [sym_char_literal] = ACTIONS(600), - [anon_sym_true] = ACTIONS(602), - [anon_sym_false] = ACTIONS(602), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(602), - [sym_super] = ACTIONS(602), - [sym_crate] = ACTIONS(602), - [sym_metavariable] = ACTIONS(600), - [sym_raw_string_literal] = ACTIONS(600), - [sym_float_literal] = ACTIONS(600), - [sym_block_comment] = ACTIONS(3), - }, - [227] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(2026), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2023), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_type_binding] = STATE(2287), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [sym_block] = STATE(2287), - [sym__literal] = STATE(2287), - [sym_string_literal] = STATE(2315), - [sym_boolean_literal] = STATE(2315), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1982), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1984), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_type_binding] = STATE(2208), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [sym_block] = STATE(2208), + [sym__literal] = STATE(2208), + [sym_string_literal] = STATE(2319), + [sym_boolean_literal] = STATE(2319), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(884), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACE] = ACTIONS(888), @@ -39156,7 +38877,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -39174,34 +38895,354 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, + [224] = { + [sym_identifier] = ACTIONS(630), + [anon_sym_LPAREN] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_u8] = ACTIONS(630), + [anon_sym_i8] = ACTIONS(630), + [anon_sym_u16] = ACTIONS(630), + [anon_sym_i16] = ACTIONS(630), + [anon_sym_u32] = ACTIONS(630), + [anon_sym_i32] = ACTIONS(630), + [anon_sym_u64] = ACTIONS(630), + [anon_sym_i64] = ACTIONS(630), + [anon_sym_u128] = ACTIONS(630), + [anon_sym_i128] = ACTIONS(630), + [anon_sym_isize] = ACTIONS(630), + [anon_sym_usize] = ACTIONS(630), + [anon_sym_f32] = ACTIONS(630), + [anon_sym_f64] = ACTIONS(630), + [anon_sym_bool] = ACTIONS(630), + [anon_sym_str] = ACTIONS(630), + [anon_sym_char] = ACTIONS(630), + [anon_sym_as] = ACTIONS(630), + [anon_sym_const] = ACTIONS(630), + [anon_sym_default] = ACTIONS(630), + [anon_sym_union] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(628), + [anon_sym_EQ] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(628), + [anon_sym_ref] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_COLON_COLON] = ACTIONS(628), + [anon_sym__] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(630), + [anon_sym_DOT_DOT_DOT] = ACTIONS(628), + [sym_mutable_specifier] = ACTIONS(630), + [anon_sym_DOT_DOT] = ACTIONS(630), + [anon_sym_DOT_DOT_EQ] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_PIPE_PIPE] = ACTIONS(628), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_CARET] = ACTIONS(630), + [anon_sym_EQ_EQ] = ACTIONS(628), + [anon_sym_BANG_EQ] = ACTIONS(628), + [anon_sym_LT_EQ] = ACTIONS(628), + [anon_sym_GT_EQ] = ACTIONS(628), + [anon_sym_LT_LT] = ACTIONS(630), + [anon_sym_GT_GT] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_PLUS_EQ] = ACTIONS(628), + [anon_sym_DASH_EQ] = ACTIONS(628), + [anon_sym_STAR_EQ] = ACTIONS(628), + [anon_sym_SLASH_EQ] = ACTIONS(628), + [anon_sym_PERCENT_EQ] = ACTIONS(628), + [anon_sym_AMP_EQ] = ACTIONS(628), + [anon_sym_PIPE_EQ] = ACTIONS(628), + [anon_sym_CARET_EQ] = ACTIONS(628), + [anon_sym_LT_LT_EQ] = ACTIONS(628), + [anon_sym_GT_GT_EQ] = ACTIONS(628), + [anon_sym_DOT] = ACTIONS(630), + [sym_integer_literal] = ACTIONS(628), + [aux_sym_string_literal_token1] = ACTIONS(628), + [sym_char_literal] = ACTIONS(628), + [anon_sym_true] = ACTIONS(630), + [anon_sym_false] = ACTIONS(630), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(630), + [sym_super] = ACTIONS(630), + [sym_crate] = ACTIONS(630), + [sym_metavariable] = ACTIONS(628), + [sym_raw_string_literal] = ACTIONS(628), + [sym_float_literal] = ACTIONS(628), + [sym_block_comment] = ACTIONS(3), + }, + [225] = { + [sym_identifier] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [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_as] = ACTIONS(572), + [anon_sym_const] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_union] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_ref] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(570), + [anon_sym__] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_DOT] = ACTIONS(572), + [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), + }, + [226] = { + [sym_identifier] = ACTIONS(626), + [anon_sym_LPAREN] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_PLUS] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(624), + [anon_sym_u8] = ACTIONS(626), + [anon_sym_i8] = ACTIONS(626), + [anon_sym_u16] = ACTIONS(626), + [anon_sym_i16] = ACTIONS(626), + [anon_sym_u32] = ACTIONS(626), + [anon_sym_i32] = ACTIONS(626), + [anon_sym_u64] = ACTIONS(626), + [anon_sym_i64] = ACTIONS(626), + [anon_sym_u128] = ACTIONS(626), + [anon_sym_i128] = ACTIONS(626), + [anon_sym_isize] = ACTIONS(626), + [anon_sym_usize] = ACTIONS(626), + [anon_sym_f32] = ACTIONS(626), + [anon_sym_f64] = ACTIONS(626), + [anon_sym_bool] = ACTIONS(626), + [anon_sym_str] = ACTIONS(626), + [anon_sym_char] = ACTIONS(626), + [anon_sym_as] = ACTIONS(626), + [anon_sym_const] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [anon_sym_union] = ACTIONS(626), + [anon_sym_POUND] = ACTIONS(624), + [anon_sym_EQ] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(624), + [anon_sym_ref] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_COLON_COLON] = ACTIONS(624), + [anon_sym__] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(624), + [sym_mutable_specifier] = ACTIONS(626), + [anon_sym_DOT_DOT] = ACTIONS(626), + [anon_sym_DOT_DOT_EQ] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(624), + [anon_sym_BANG_EQ] = ACTIONS(624), + [anon_sym_LT_EQ] = ACTIONS(624), + [anon_sym_GT_EQ] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(626), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_PLUS_EQ] = ACTIONS(624), + [anon_sym_DASH_EQ] = ACTIONS(624), + [anon_sym_STAR_EQ] = ACTIONS(624), + [anon_sym_SLASH_EQ] = ACTIONS(624), + [anon_sym_PERCENT_EQ] = ACTIONS(624), + [anon_sym_AMP_EQ] = ACTIONS(624), + [anon_sym_PIPE_EQ] = ACTIONS(624), + [anon_sym_CARET_EQ] = ACTIONS(624), + [anon_sym_LT_LT_EQ] = ACTIONS(624), + [anon_sym_GT_GT_EQ] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(626), + [sym_integer_literal] = ACTIONS(624), + [aux_sym_string_literal_token1] = ACTIONS(624), + [sym_char_literal] = ACTIONS(624), + [anon_sym_true] = ACTIONS(626), + [anon_sym_false] = ACTIONS(626), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_crate] = ACTIONS(626), + [sym_metavariable] = ACTIONS(624), + [sym_raw_string_literal] = ACTIONS(624), + [sym_float_literal] = ACTIONS(624), + [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(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(2026), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2023), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_type_binding] = STATE(2287), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [sym_block] = STATE(2287), - [sym__literal] = STATE(2287), - [sym_string_literal] = STATE(2315), - [sym_boolean_literal] = STATE(2315), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1982), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1984), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_type_binding] = STATE(2208), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [sym_block] = STATE(2208), + [sym__literal] = STATE(2208), + [sym_string_literal] = STATE(2319), + [sym_boolean_literal] = STATE(2319), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(884), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACE] = ACTIONS(888), @@ -39236,7 +39277,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(910), + [anon_sym_GT] = ACTIONS(912), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -39335,646 +39376,806 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [230] = { - [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_identifier] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_RBRACE] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(916), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_QMARK] = ACTIONS(564), + [anon_sym_u8] = ACTIONS(914), + [anon_sym_i8] = ACTIONS(914), + [anon_sym_u16] = ACTIONS(914), + [anon_sym_i16] = ACTIONS(914), + [anon_sym_u32] = ACTIONS(914), + [anon_sym_i32] = ACTIONS(914), + [anon_sym_u64] = ACTIONS(914), + [anon_sym_i64] = ACTIONS(914), + [anon_sym_u128] = ACTIONS(914), + [anon_sym_i128] = ACTIONS(914), + [anon_sym_isize] = ACTIONS(914), + [anon_sym_usize] = ACTIONS(914), + [anon_sym_f32] = ACTIONS(914), + [anon_sym_f64] = ACTIONS(914), + [anon_sym_bool] = ACTIONS(914), + [anon_sym_str] = ACTIONS(914), + [anon_sym_char] = ACTIONS(914), + [anon_sym_as] = ACTIONS(562), + [anon_sym_const] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_POUND] = ACTIONS(916), + [anon_sym_EQ] = ACTIONS(562), + [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LT] = ACTIONS(914), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym__] = ACTIONS(914), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_DOT_DOT_DOT] = ACTIONS(564), + [sym_mutable_specifier] = ACTIONS(914), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_DOT_DOT_EQ] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_AMP_AMP] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(564), + [anon_sym_BANG_EQ] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_PLUS_EQ] = ACTIONS(564), + [anon_sym_DASH_EQ] = ACTIONS(564), + [anon_sym_STAR_EQ] = ACTIONS(564), + [anon_sym_SLASH_EQ] = ACTIONS(564), + [anon_sym_PERCENT_EQ] = ACTIONS(564), + [anon_sym_AMP_EQ] = ACTIONS(564), + [anon_sym_PIPE_EQ] = ACTIONS(564), + [anon_sym_CARET_EQ] = ACTIONS(564), + [anon_sym_LT_LT_EQ] = ACTIONS(564), + [anon_sym_GT_GT_EQ] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(562), + [sym_integer_literal] = ACTIONS(916), + [aux_sym_string_literal_token1] = ACTIONS(916), + [sym_char_literal] = ACTIONS(916), + [anon_sym_true] = ACTIONS(914), + [anon_sym_false] = ACTIONS(914), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(914), + [sym_super] = ACTIONS(914), + [sym_crate] = ACTIONS(914), + [sym_metavariable] = ACTIONS(916), + [sym_raw_string_literal] = ACTIONS(916), + [sym_float_literal] = ACTIONS(916), [sym_block_comment] = ACTIONS(3), }, [231] = { - [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), + [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), }, [232] = { - [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_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(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_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), }, [233] = { - [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_identifier] = ACTIONS(610), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_RBRACE] = ACTIONS(608), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(608), + [anon_sym_u8] = ACTIONS(610), + [anon_sym_i8] = ACTIONS(610), + [anon_sym_u16] = ACTIONS(610), + [anon_sym_i16] = ACTIONS(610), + [anon_sym_u32] = ACTIONS(610), + [anon_sym_i32] = ACTIONS(610), + [anon_sym_u64] = ACTIONS(610), + [anon_sym_i64] = ACTIONS(610), + [anon_sym_u128] = ACTIONS(610), + [anon_sym_i128] = ACTIONS(610), + [anon_sym_isize] = ACTIONS(610), + [anon_sym_usize] = ACTIONS(610), + [anon_sym_f32] = ACTIONS(610), + [anon_sym_f64] = ACTIONS(610), + [anon_sym_bool] = ACTIONS(610), + [anon_sym_str] = ACTIONS(610), + [anon_sym_char] = ACTIONS(610), + [anon_sym_as] = ACTIONS(610), + [anon_sym_const] = ACTIONS(610), + [anon_sym_default] = ACTIONS(610), + [anon_sym_union] = ACTIONS(610), + [anon_sym_POUND] = ACTIONS(608), + [anon_sym_EQ] = ACTIONS(610), + [anon_sym_COMMA] = ACTIONS(608), + [anon_sym_ref] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_COLON_COLON] = ACTIONS(608), + [anon_sym__] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(608), + [sym_mutable_specifier] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_CARET] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(608), + [anon_sym_BANG_EQ] = ACTIONS(608), + [anon_sym_LT_EQ] = ACTIONS(608), + [anon_sym_GT_EQ] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_PERCENT] = ACTIONS(610), + [anon_sym_PLUS_EQ] = ACTIONS(608), + [anon_sym_DASH_EQ] = ACTIONS(608), + [anon_sym_STAR_EQ] = ACTIONS(608), + [anon_sym_SLASH_EQ] = ACTIONS(608), + [anon_sym_PERCENT_EQ] = ACTIONS(608), + [anon_sym_AMP_EQ] = ACTIONS(608), + [anon_sym_PIPE_EQ] = ACTIONS(608), + [anon_sym_CARET_EQ] = ACTIONS(608), + [anon_sym_LT_LT_EQ] = ACTIONS(608), + [anon_sym_GT_GT_EQ] = ACTIONS(608), + [anon_sym_DOT] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(608), + [aux_sym_string_literal_token1] = ACTIONS(608), + [sym_char_literal] = ACTIONS(608), + [anon_sym_true] = ACTIONS(610), + [anon_sym_false] = ACTIONS(610), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(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_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), }, [234] = { - [sym_identifier] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(570), - [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(572), - [anon_sym_const] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), - [anon_sym_union] = ACTIONS(912), - [anon_sym_POUND] = ACTIONS(914), - [anon_sym_EQ] = ACTIONS(572), - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_ref] = ACTIONS(912), - [anon_sym_LT] = ACTIONS(912), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_COLON_COLON] = ACTIONS(914), - [anon_sym__] = ACTIONS(912), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_DOT_DOT_DOT] = ACTIONS(570), - [sym_mutable_specifier] = ACTIONS(912), - [anon_sym_DOT_DOT] = ACTIONS(912), - [anon_sym_DOT_DOT_EQ] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_AMP_AMP] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_CARET] = ACTIONS(572), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(572), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_DOT] = ACTIONS(572), - [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), - [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_identifier] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_QMARK] = ACTIONS(564), + [anon_sym_u8] = ACTIONS(918), + [anon_sym_i8] = ACTIONS(918), + [anon_sym_u16] = ACTIONS(918), + [anon_sym_i16] = ACTIONS(918), + [anon_sym_u32] = ACTIONS(918), + [anon_sym_i32] = ACTIONS(918), + [anon_sym_u64] = ACTIONS(918), + [anon_sym_i64] = ACTIONS(918), + [anon_sym_u128] = ACTIONS(918), + [anon_sym_i128] = ACTIONS(918), + [anon_sym_isize] = ACTIONS(918), + [anon_sym_usize] = ACTIONS(918), + [anon_sym_f32] = ACTIONS(918), + [anon_sym_f64] = ACTIONS(918), + [anon_sym_bool] = ACTIONS(918), + [anon_sym_str] = ACTIONS(918), + [anon_sym_char] = ACTIONS(918), + [anon_sym_as] = ACTIONS(562), + [anon_sym_const] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_union] = ACTIONS(918), + [anon_sym_POUND] = ACTIONS(920), + [anon_sym_EQ] = ACTIONS(562), + [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_ref] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(918), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_COLON_COLON] = ACTIONS(920), + [anon_sym__] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_DOT_DOT_DOT] = ACTIONS(564), + [sym_mutable_specifier] = ACTIONS(918), + [anon_sym_DOT_DOT] = ACTIONS(918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_AMP_AMP] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(564), + [anon_sym_BANG_EQ] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_PLUS_EQ] = ACTIONS(564), + [anon_sym_DASH_EQ] = ACTIONS(564), + [anon_sym_STAR_EQ] = ACTIONS(564), + [anon_sym_SLASH_EQ] = ACTIONS(564), + [anon_sym_PERCENT_EQ] = ACTIONS(564), + [anon_sym_AMP_EQ] = ACTIONS(564), + [anon_sym_PIPE_EQ] = ACTIONS(564), + [anon_sym_CARET_EQ] = ACTIONS(564), + [anon_sym_LT_LT_EQ] = ACTIONS(564), + [anon_sym_GT_GT_EQ] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(562), + [sym_integer_literal] = ACTIONS(920), + [aux_sym_string_literal_token1] = ACTIONS(920), + [sym_char_literal] = ACTIONS(920), + [anon_sym_true] = ACTIONS(918), + [anon_sym_false] = ACTIONS(918), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(920), + [sym_raw_string_literal] = ACTIONS(920), + [sym_float_literal] = ACTIONS(920), [sym_block_comment] = ACTIONS(3), }, [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_identifier] = ACTIONS(618), + [anon_sym_LPAREN] = ACTIONS(616), + [anon_sym_RBRACE] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(618), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(618), + [anon_sym_i8] = ACTIONS(618), + [anon_sym_u16] = ACTIONS(618), + [anon_sym_i16] = ACTIONS(618), + [anon_sym_u32] = ACTIONS(618), + [anon_sym_i32] = ACTIONS(618), + [anon_sym_u64] = ACTIONS(618), + [anon_sym_i64] = ACTIONS(618), + [anon_sym_u128] = ACTIONS(618), + [anon_sym_i128] = ACTIONS(618), + [anon_sym_isize] = ACTIONS(618), + [anon_sym_usize] = ACTIONS(618), + [anon_sym_f32] = ACTIONS(618), + [anon_sym_f64] = ACTIONS(618), + [anon_sym_bool] = ACTIONS(618), + [anon_sym_str] = ACTIONS(618), + [anon_sym_char] = ACTIONS(618), + [anon_sym_as] = ACTIONS(618), + [anon_sym_const] = ACTIONS(618), + [anon_sym_default] = ACTIONS(618), + [anon_sym_union] = ACTIONS(618), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(618), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_ref] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_GT] = ACTIONS(618), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym__] = ACTIONS(618), + [anon_sym_AMP] = ACTIONS(618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [sym_mutable_specifier] = ACTIONS(618), + [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(618), + [anon_sym_CARET] = ACTIONS(618), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_GT_GT] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(618), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [sym_integer_literal] = ACTIONS(616), + [aux_sym_string_literal_token1] = ACTIONS(616), + [sym_char_literal] = ACTIONS(616), + [anon_sym_true] = ACTIONS(618), + [anon_sym_false] = ACTIONS(618), [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_self] = ACTIONS(618), + [sym_super] = ACTIONS(618), + [sym_crate] = ACTIONS(618), + [sym_metavariable] = ACTIONS(616), + [sym_raw_string_literal] = ACTIONS(616), + [sym_float_literal] = ACTIONS(616), [sym_block_comment] = ACTIONS(3), }, [236] = { - [sym_identifier] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(918), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_u8] = ACTIONS(916), - [anon_sym_i8] = ACTIONS(916), - [anon_sym_u16] = ACTIONS(916), - [anon_sym_i16] = ACTIONS(916), - [anon_sym_u32] = ACTIONS(916), - [anon_sym_i32] = ACTIONS(916), - [anon_sym_u64] = ACTIONS(916), - [anon_sym_i64] = ACTIONS(916), - [anon_sym_u128] = ACTIONS(916), - [anon_sym_i128] = ACTIONS(916), - [anon_sym_isize] = ACTIONS(916), - [anon_sym_usize] = ACTIONS(916), - [anon_sym_f32] = ACTIONS(916), - [anon_sym_f64] = ACTIONS(916), - [anon_sym_bool] = ACTIONS(916), - [anon_sym_str] = ACTIONS(916), - [anon_sym_char] = ACTIONS(916), - [anon_sym_as] = ACTIONS(572), - [anon_sym_const] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), - [anon_sym_union] = ACTIONS(916), - [anon_sym_POUND] = ACTIONS(918), - [anon_sym_EQ] = ACTIONS(572), - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_ref] = ACTIONS(916), - [anon_sym_LT] = ACTIONS(916), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_COLON_COLON] = ACTIONS(918), - [anon_sym__] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_DOT_DOT_DOT] = ACTIONS(570), - [sym_mutable_specifier] = ACTIONS(916), - [anon_sym_DOT_DOT] = ACTIONS(916), - [anon_sym_DOT_DOT_EQ] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(916), - [anon_sym_AMP_AMP] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_CARET] = ACTIONS(572), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(572), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_DOT] = ACTIONS(572), - [sym_integer_literal] = ACTIONS(918), - [aux_sym_string_literal_token1] = ACTIONS(918), - [sym_char_literal] = ACTIONS(918), - [anon_sym_true] = ACTIONS(916), - [anon_sym_false] = ACTIONS(916), + [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(916), - [sym_super] = ACTIONS(916), - [sym_crate] = ACTIONS(916), - [sym_metavariable] = ACTIONS(918), - [sym_raw_string_literal] = ACTIONS(918), - [sym_float_literal] = ACTIONS(918), + [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), }, [237] = { - [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_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(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_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), }, [238] = { + [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), + }, + [239] = { + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(648), + [anon_sym_u8] = ACTIONS(650), + [anon_sym_i8] = ACTIONS(650), + [anon_sym_u16] = ACTIONS(650), + [anon_sym_i16] = ACTIONS(650), + [anon_sym_u32] = ACTIONS(650), + [anon_sym_i32] = ACTIONS(650), + [anon_sym_u64] = ACTIONS(650), + [anon_sym_i64] = ACTIONS(650), + [anon_sym_u128] = ACTIONS(650), + [anon_sym_i128] = ACTIONS(650), + [anon_sym_isize] = ACTIONS(650), + [anon_sym_usize] = ACTIONS(650), + [anon_sym_f32] = ACTIONS(650), + [anon_sym_f64] = ACTIONS(650), + [anon_sym_bool] = ACTIONS(650), + [anon_sym_str] = ACTIONS(650), + [anon_sym_char] = ACTIONS(650), + [anon_sym_as] = ACTIONS(650), + [anon_sym_const] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_union] = ACTIONS(650), + [anon_sym_POUND] = ACTIONS(648), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_COMMA] = ACTIONS(648), + [anon_sym_ref] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_COLON_COLON] = ACTIONS(648), + [anon_sym__] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(648), + [sym_mutable_specifier] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(648), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(648), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(648), + [anon_sym_DASH_EQ] = ACTIONS(648), + [anon_sym_STAR_EQ] = ACTIONS(648), + [anon_sym_SLASH_EQ] = ACTIONS(648), + [anon_sym_PERCENT_EQ] = ACTIONS(648), + [anon_sym_AMP_EQ] = ACTIONS(648), + [anon_sym_PIPE_EQ] = ACTIONS(648), + [anon_sym_CARET_EQ] = ACTIONS(648), + [anon_sym_LT_LT_EQ] = ACTIONS(648), + [anon_sym_GT_GT_EQ] = ACTIONS(648), + [anon_sym_DOT] = ACTIONS(650), + [sym_integer_literal] = ACTIONS(648), + [aux_sym_string_literal_token1] = ACTIONS(648), + [sym_char_literal] = ACTIONS(648), + [anon_sym_true] = ACTIONS(650), + [anon_sym_false] = ACTIONS(650), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(650), + [sym_super] = ACTIONS(650), + [sym_crate] = ACTIONS(650), + [sym_metavariable] = ACTIONS(648), + [sym_raw_string_literal] = ACTIONS(648), + [sym_float_literal] = ACTIONS(648), + [sym_block_comment] = ACTIONS(3), + }, + [240] = { [sym_identifier] = ACTIONS(666), [anon_sym_LPAREN] = ACTIONS(664), [anon_sym_RBRACE] = ACTIONS(664), @@ -40054,514 +40255,194 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(664), [sym_block_comment] = ACTIONS(3), }, - [239] = { - [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), - }, - [240] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(2026), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2023), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_type_binding] = STATE(2287), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [sym_block] = STATE(2287), - [sym__literal] = STATE(2287), - [sym_string_literal] = STATE(2315), - [sym_boolean_literal] = STATE(2315), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [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(920), - [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(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(2026), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2023), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_type_binding] = STATE(2287), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [sym_block] = STATE(2287), - [sym__literal] = STATE(2287), - [sym_string_literal] = STATE(2315), - [sym_boolean_literal] = STATE(2315), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [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(922), - [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_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(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_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), }, [242] = { - [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_identifier] = ACTIONS(580), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(580), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(580), + [anon_sym_i8] = ACTIONS(580), + [anon_sym_u16] = ACTIONS(580), + [anon_sym_i16] = ACTIONS(580), + [anon_sym_u32] = ACTIONS(580), + [anon_sym_i32] = ACTIONS(580), + [anon_sym_u64] = ACTIONS(580), + [anon_sym_i64] = ACTIONS(580), + [anon_sym_u128] = ACTIONS(580), + [anon_sym_i128] = ACTIONS(580), + [anon_sym_isize] = ACTIONS(580), + [anon_sym_usize] = ACTIONS(580), + [anon_sym_f32] = ACTIONS(580), + [anon_sym_f64] = ACTIONS(580), + [anon_sym_bool] = ACTIONS(580), + [anon_sym_str] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [anon_sym_as] = ACTIONS(580), + [anon_sym_const] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_union] = ACTIONS(580), + [anon_sym_POUND] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(580), + [anon_sym_COMMA] = ACTIONS(578), + [anon_sym_ref] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_COLON_COLON] = ACTIONS(578), + [anon_sym__] = ACTIONS(580), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [sym_mutable_specifier] = ACTIONS(580), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_EQ_EQ] = ACTIONS(578), + [anon_sym_BANG_EQ] = ACTIONS(578), + [anon_sym_LT_EQ] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(580), + [anon_sym_GT_GT] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(580), + [anon_sym_PLUS_EQ] = ACTIONS(578), + [anon_sym_DASH_EQ] = ACTIONS(578), + [anon_sym_STAR_EQ] = ACTIONS(578), + [anon_sym_SLASH_EQ] = ACTIONS(578), + [anon_sym_PERCENT_EQ] = ACTIONS(578), + [anon_sym_AMP_EQ] = ACTIONS(578), + [anon_sym_PIPE_EQ] = ACTIONS(578), + [anon_sym_CARET_EQ] = ACTIONS(578), + [anon_sym_LT_LT_EQ] = ACTIONS(578), + [anon_sym_GT_GT_EQ] = ACTIONS(578), + [anon_sym_DOT] = ACTIONS(580), + [sym_integer_literal] = ACTIONS(578), + [aux_sym_string_literal_token1] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(580), + [anon_sym_false] = ACTIONS(580), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(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_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), }, [243] = { - [sym_identifier] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(622), - [anon_sym_QMARK] = ACTIONS(620), - [anon_sym_u8] = ACTIONS(622), - [anon_sym_i8] = ACTIONS(622), - [anon_sym_u16] = ACTIONS(622), - [anon_sym_i16] = ACTIONS(622), - [anon_sym_u32] = ACTIONS(622), - [anon_sym_i32] = ACTIONS(622), - [anon_sym_u64] = ACTIONS(622), - [anon_sym_i64] = ACTIONS(622), - [anon_sym_u128] = ACTIONS(622), - [anon_sym_i128] = ACTIONS(622), - [anon_sym_isize] = ACTIONS(622), - [anon_sym_usize] = ACTIONS(622), - [anon_sym_f32] = ACTIONS(622), - [anon_sym_f64] = ACTIONS(622), - [anon_sym_bool] = ACTIONS(622), - [anon_sym_str] = ACTIONS(622), - [anon_sym_char] = ACTIONS(622), - [anon_sym_as] = ACTIONS(622), - [anon_sym_const] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_union] = ACTIONS(622), - [anon_sym_POUND] = ACTIONS(620), - [anon_sym_EQ] = ACTIONS(622), - [anon_sym_COMMA] = ACTIONS(620), - [anon_sym_ref] = ACTIONS(622), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_COLON_COLON] = ACTIONS(620), - [anon_sym__] = ACTIONS(622), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_DOT_DOT_DOT] = ACTIONS(620), - [sym_mutable_specifier] = ACTIONS(622), - [anon_sym_DOT_DOT] = ACTIONS(622), - [anon_sym_DOT_DOT_EQ] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(622), - [anon_sym_AMP_AMP] = ACTIONS(620), - [anon_sym_PIPE_PIPE] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(622), - [anon_sym_CARET] = ACTIONS(622), - [anon_sym_EQ_EQ] = ACTIONS(620), - [anon_sym_BANG_EQ] = ACTIONS(620), - [anon_sym_LT_EQ] = ACTIONS(620), - [anon_sym_GT_EQ] = ACTIONS(620), - [anon_sym_LT_LT] = ACTIONS(622), - [anon_sym_GT_GT] = ACTIONS(622), - [anon_sym_SLASH] = ACTIONS(622), - [anon_sym_PERCENT] = ACTIONS(622), - [anon_sym_PLUS_EQ] = ACTIONS(620), - [anon_sym_DASH_EQ] = ACTIONS(620), - [anon_sym_STAR_EQ] = ACTIONS(620), - [anon_sym_SLASH_EQ] = ACTIONS(620), - [anon_sym_PERCENT_EQ] = ACTIONS(620), - [anon_sym_AMP_EQ] = ACTIONS(620), - [anon_sym_PIPE_EQ] = ACTIONS(620), - [anon_sym_CARET_EQ] = ACTIONS(620), - [anon_sym_LT_LT_EQ] = ACTIONS(620), - [anon_sym_GT_GT_EQ] = ACTIONS(620), - [anon_sym_DOT] = ACTIONS(622), - [sym_integer_literal] = ACTIONS(620), - [aux_sym_string_literal_token1] = ACTIONS(620), - [sym_char_literal] = ACTIONS(620), - [anon_sym_true] = ACTIONS(622), - [anon_sym_false] = ACTIONS(622), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(622), - [sym_super] = ACTIONS(622), - [sym_crate] = ACTIONS(622), - [sym_metavariable] = ACTIONS(620), - [sym_raw_string_literal] = ACTIONS(620), - [sym_float_literal] = ACTIONS(620), - [sym_block_comment] = ACTIONS(3), - }, - [244] = { - [sym_identifier] = ACTIONS(614), - [anon_sym_LPAREN] = ACTIONS(612), - [anon_sym_RBRACE] = ACTIONS(612), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(614), - [anon_sym_QMARK] = ACTIONS(612), - [anon_sym_u8] = ACTIONS(614), - [anon_sym_i8] = ACTIONS(614), - [anon_sym_u16] = ACTIONS(614), - [anon_sym_i16] = ACTIONS(614), - [anon_sym_u32] = ACTIONS(614), - [anon_sym_i32] = ACTIONS(614), - [anon_sym_u64] = ACTIONS(614), - [anon_sym_i64] = ACTIONS(614), - [anon_sym_u128] = ACTIONS(614), - [anon_sym_i128] = ACTIONS(614), - [anon_sym_isize] = ACTIONS(614), - [anon_sym_usize] = ACTIONS(614), - [anon_sym_f32] = ACTIONS(614), - [anon_sym_f64] = ACTIONS(614), - [anon_sym_bool] = ACTIONS(614), - [anon_sym_str] = ACTIONS(614), - [anon_sym_char] = ACTIONS(614), - [anon_sym_as] = ACTIONS(614), - [anon_sym_const] = ACTIONS(614), - [anon_sym_default] = ACTIONS(614), - [anon_sym_union] = ACTIONS(614), - [anon_sym_POUND] = ACTIONS(612), - [anon_sym_EQ] = ACTIONS(614), - [anon_sym_COMMA] = ACTIONS(612), - [anon_sym_ref] = ACTIONS(614), - [anon_sym_LT] = ACTIONS(614), - [anon_sym_GT] = ACTIONS(614), - [anon_sym_COLON_COLON] = ACTIONS(612), - [anon_sym__] = ACTIONS(614), - [anon_sym_AMP] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(612), - [sym_mutable_specifier] = ACTIONS(614), - [anon_sym_DOT_DOT] = ACTIONS(614), - [anon_sym_DOT_DOT_EQ] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_AMP_AMP] = ACTIONS(612), - [anon_sym_PIPE_PIPE] = ACTIONS(612), - [anon_sym_PIPE] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_EQ_EQ] = ACTIONS(612), - [anon_sym_BANG_EQ] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(612), - [anon_sym_GT_EQ] = ACTIONS(612), - [anon_sym_LT_LT] = ACTIONS(614), - [anon_sym_GT_GT] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(614), - [anon_sym_PERCENT] = ACTIONS(614), - [anon_sym_PLUS_EQ] = ACTIONS(612), - [anon_sym_DASH_EQ] = ACTIONS(612), - [anon_sym_STAR_EQ] = ACTIONS(612), - [anon_sym_SLASH_EQ] = ACTIONS(612), - [anon_sym_PERCENT_EQ] = ACTIONS(612), - [anon_sym_AMP_EQ] = ACTIONS(612), - [anon_sym_PIPE_EQ] = ACTIONS(612), - [anon_sym_CARET_EQ] = ACTIONS(612), - [anon_sym_LT_LT_EQ] = ACTIONS(612), - [anon_sym_GT_GT_EQ] = ACTIONS(612), - [anon_sym_DOT] = ACTIONS(614), - [sym_integer_literal] = ACTIONS(612), - [aux_sym_string_literal_token1] = ACTIONS(612), - [sym_char_literal] = ACTIONS(612), - [anon_sym_true] = ACTIONS(614), - [anon_sym_false] = ACTIONS(614), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(614), - [sym_super] = ACTIONS(614), - [sym_crate] = ACTIONS(614), - [sym_metavariable] = ACTIONS(612), - [sym_raw_string_literal] = ACTIONS(612), - [sym_float_literal] = ACTIONS(612), - [sym_block_comment] = ACTIONS(3), - }, - [245] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1803), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(1802), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_type_binding] = STATE(2006), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [sym_block] = STATE(2006), - [sym__literal] = STATE(2006), - [sym_string_literal] = STATE(2315), - [sym_boolean_literal] = STATE(2315), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1982), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1984), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_type_binding] = STATE(2208), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [sym_block] = STATE(2208), + [sym__literal] = STATE(2208), + [sym_string_literal] = STATE(2319), + [sym_boolean_literal] = STATE(2319), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(884), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACE] = ACTIONS(888), @@ -40596,6 +40477,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(922), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -40613,34 +40495,193 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, + [244] = { + [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), + }, + [245] = { + [sym__token_pattern] = STATE(245), + [sym_token_tree_pattern] = STATE(245), + [sym_token_binding_pattern] = STATE(245), + [sym_token_repetition_pattern] = STATE(245), + [sym__never_special_token] = STATE(245), + [sym__literal] = STATE(245), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(245), + [sym_identifier] = ACTIONS(924), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_RPAREN] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(932), + [anon_sym_RBRACE] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_RBRACK] = ACTIONS(930), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_u8] = ACTIONS(924), + [anon_sym_i8] = ACTIONS(924), + [anon_sym_u16] = ACTIONS(924), + [anon_sym_i16] = ACTIONS(924), + [anon_sym_u32] = ACTIONS(924), + [anon_sym_i32] = ACTIONS(924), + [anon_sym_u64] = ACTIONS(924), + [anon_sym_i64] = ACTIONS(924), + [anon_sym_u128] = ACTIONS(924), + [anon_sym_i128] = ACTIONS(924), + [anon_sym_isize] = ACTIONS(924), + [anon_sym_usize] = ACTIONS(924), + [anon_sym_f32] = ACTIONS(924), + [anon_sym_f64] = ACTIONS(924), + [anon_sym_bool] = ACTIONS(924), + [anon_sym_str] = ACTIONS(924), + [anon_sym_char] = ACTIONS(924), + [aux_sym__never_special_token_token1] = ACTIONS(924), + [anon_sym_SQUOTE] = ACTIONS(924), + [anon_sym_as] = ACTIONS(924), + [anon_sym_async] = ACTIONS(924), + [anon_sym_await] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_fn] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_impl] = ACTIONS(924), + [anon_sym_let] = ACTIONS(924), + [anon_sym_loop] = ACTIONS(924), + [anon_sym_match] = ACTIONS(924), + [anon_sym_mod] = ACTIONS(924), + [anon_sym_pub] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_static] = ACTIONS(924), + [anon_sym_struct] = ACTIONS(924), + [anon_sym_trait] = ACTIONS(924), + [anon_sym_type] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_unsafe] = ACTIONS(924), + [anon_sym_use] = ACTIONS(924), + [anon_sym_where] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [sym_mutable_specifier] = ACTIONS(924), + [sym_integer_literal] = ACTIONS(941), + [aux_sym_string_literal_token1] = ACTIONS(944), + [sym_char_literal] = ACTIONS(941), + [anon_sym_true] = ACTIONS(947), + [anon_sym_false] = ACTIONS(947), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(924), + [sym_super] = ACTIONS(924), + [sym_crate] = ACTIONS(924), + [sym_metavariable] = ACTIONS(952), + [sym_raw_string_literal] = ACTIONS(941), + [sym_float_literal] = ACTIONS(941), + [sym_block_comment] = ACTIONS(3), + }, [246] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(2026), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2023), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_type_binding] = STATE(2287), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [sym_block] = STATE(2287), - [sym__literal] = STATE(2287), - [sym_string_literal] = STATE(2315), - [sym_boolean_literal] = STATE(2315), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1807), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1806), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_type_binding] = STATE(2004), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [sym_block] = STATE(2004), + [sym__literal] = STATE(2004), + [sym_string_literal] = STATE(2319), + [sym_boolean_literal] = STATE(2319), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(884), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACE] = ACTIONS(888), @@ -40693,33 +40734,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [247] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1835), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(1834), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_type_binding] = STATE(2076), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [sym_block] = STATE(2076), - [sym__literal] = STATE(2076), - [sym_string_literal] = STATE(2315), - [sym_boolean_literal] = STATE(2315), - [aux_sym_function_modifiers_repeat1] = STATE(1557), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1982), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1984), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_type_binding] = STATE(2208), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [sym_block] = STATE(2208), + [sym__literal] = STATE(2208), + [sym_string_literal] = STATE(2319), + [sym_boolean_literal] = STATE(2319), + [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(884), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACE] = ACTIONS(888), @@ -40772,6 +40813,163 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [248] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1820), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1823), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_type_binding] = STATE(2080), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [sym_block] = STATE(2080), + [sym__literal] = STATE(2080), + [sym_string_literal] = STATE(2319), + [sym_boolean_literal] = STATE(2319), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [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(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), + }, + [249] = { + [sym_empty_statement] = STATE(252), + [sym_macro_definition] = STATE(252), + [sym_attribute_item] = STATE(252), + [sym_inner_attribute_item] = STATE(252), + [sym_mod_item] = STATE(252), + [sym_foreign_mod_item] = STATE(252), + [sym_struct_item] = STATE(252), + [sym_union_item] = STATE(252), + [sym_enum_item] = STATE(252), + [sym_extern_crate_declaration] = STATE(252), + [sym_const_item] = STATE(252), + [sym_static_item] = STATE(252), + [sym_type_item] = STATE(252), + [sym_function_item] = STATE(252), + [sym_function_signature_item] = STATE(252), + [sym_function_modifiers] = STATE(2548), + [sym_impl_item] = STATE(252), + [sym_trait_item] = STATE(252), + [sym_associated_type] = STATE(252), + [sym_let_declaration] = STATE(252), + [sym_use_declaration] = STATE(252), + [sym_extern_modifier] = STATE(1533), + [sym_visibility_modifier] = STATE(1351), + [sym_bracketed_type] = STATE(2362), + [sym_generic_type_with_turbofish] = STATE(2357), + [sym_macro_invocation] = STATE(252), + [sym_scoped_identifier] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(252), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_macro_rules_BANG] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_u8] = ACTIONS(963), + [anon_sym_i8] = ACTIONS(963), + [anon_sym_u16] = ACTIONS(963), + [anon_sym_i16] = ACTIONS(963), + [anon_sym_u32] = ACTIONS(963), + [anon_sym_i32] = ACTIONS(963), + [anon_sym_u64] = ACTIONS(963), + [anon_sym_i64] = ACTIONS(963), + [anon_sym_u128] = ACTIONS(963), + [anon_sym_i128] = ACTIONS(963), + [anon_sym_isize] = ACTIONS(963), + [anon_sym_usize] = ACTIONS(963), + [anon_sym_f32] = ACTIONS(963), + [anon_sym_f64] = ACTIONS(963), + [anon_sym_bool] = ACTIONS(963), + [anon_sym_str] = ACTIONS(963), + [anon_sym_char] = ACTIONS(963), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(965), + [anon_sym_default] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_fn] = ACTIONS(971), + [anon_sym_impl] = ACTIONS(973), + [anon_sym_let] = ACTIONS(975), + [anon_sym_mod] = ACTIONS(977), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(979), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_trait] = ACTIONS(983), + [anon_sym_type] = ACTIONS(985), + [anon_sym_union] = ACTIONS(987), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_use] = ACTIONS(991), + [anon_sym_POUND] = ACTIONS(993), + [anon_sym_extern] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(997), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(999), + [sym_super] = ACTIONS(999), + [sym_crate] = ACTIONS(1001), + [sym_metavariable] = ACTIONS(1003), + [sym_block_comment] = ACTIONS(3), + }, + [250] = { [sym_empty_statement] = STATE(249), [sym_macro_definition] = STATE(249), [sym_attribute_item] = STATE(249), @@ -40787,456 +40985,300 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(249), [sym_function_item] = STATE(249), [sym_function_signature_item] = STATE(249), - [sym_function_modifiers] = STATE(2542), + [sym_function_modifiers] = STATE(2548), [sym_impl_item] = STATE(249), [sym_trait_item] = STATE(249), [sym_associated_type] = STATE(249), [sym_let_declaration] = STATE(249), [sym_use_declaration] = STATE(249), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1345), - [sym_bracketed_type] = STATE(2375), - [sym_generic_type_with_turbofish] = STATE(2372), + [sym_extern_modifier] = STATE(1533), + [sym_visibility_modifier] = STATE(1351), + [sym_bracketed_type] = STATE(2362), + [sym_generic_type_with_turbofish] = STATE(2357), [sym_macro_invocation] = STATE(249), - [sym_scoped_identifier] = STATE(2236), + [sym_scoped_identifier] = STATE(2273), [aux_sym_declaration_list_repeat1] = STATE(249), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [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(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(966), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(968), - [sym_super] = ACTIONS(968), - [sym_crate] = ACTIONS(970), - [sym_metavariable] = ACTIONS(972), - [sym_block_comment] = ACTIONS(3), - }, - [249] = { - [sym_empty_statement] = STATE(251), - [sym_macro_definition] = STATE(251), - [sym_attribute_item] = STATE(251), - [sym_inner_attribute_item] = STATE(251), - [sym_mod_item] = STATE(251), - [sym_foreign_mod_item] = STATE(251), - [sym_struct_item] = STATE(251), - [sym_union_item] = STATE(251), - [sym_enum_item] = STATE(251), - [sym_extern_crate_declaration] = STATE(251), - [sym_const_item] = STATE(251), - [sym_static_item] = STATE(251), - [sym_type_item] = STATE(251), - [sym_function_item] = STATE(251), - [sym_function_signature_item] = STATE(251), - [sym_function_modifiers] = STATE(2542), - [sym_impl_item] = STATE(251), - [sym_trait_item] = STATE(251), - [sym_associated_type] = STATE(251), - [sym_let_declaration] = STATE(251), - [sym_use_declaration] = STATE(251), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1345), - [sym_bracketed_type] = STATE(2375), - [sym_generic_type_with_turbofish] = STATE(2372), - [sym_macro_invocation] = STATE(251), - [sym_scoped_identifier] = STATE(2236), - [aux_sym_declaration_list_repeat1] = STATE(251), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_macro_rules_BANG] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(1005), + [anon_sym_u8] = ACTIONS(963), + [anon_sym_i8] = ACTIONS(963), + [anon_sym_u16] = ACTIONS(963), + [anon_sym_i16] = ACTIONS(963), + [anon_sym_u32] = ACTIONS(963), + [anon_sym_i32] = ACTIONS(963), + [anon_sym_u64] = ACTIONS(963), + [anon_sym_i64] = ACTIONS(963), + [anon_sym_u128] = ACTIONS(963), + [anon_sym_i128] = ACTIONS(963), + [anon_sym_isize] = ACTIONS(963), + [anon_sym_usize] = ACTIONS(963), + [anon_sym_f32] = ACTIONS(963), + [anon_sym_f64] = ACTIONS(963), + [anon_sym_bool] = ACTIONS(963), + [anon_sym_str] = ACTIONS(963), + [anon_sym_char] = ACTIONS(963), [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_const] = ACTIONS(965), + [anon_sym_default] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_fn] = ACTIONS(971), + [anon_sym_impl] = ACTIONS(973), + [anon_sym_let] = ACTIONS(975), + [anon_sym_mod] = ACTIONS(977), [anon_sym_pub] = ACTIONS(53), - [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_static] = ACTIONS(979), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_trait] = ACTIONS(983), + [anon_sym_type] = ACTIONS(985), + [anon_sym_union] = ACTIONS(987), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_use] = ACTIONS(991), + [anon_sym_POUND] = ACTIONS(993), + [anon_sym_extern] = ACTIONS(995), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(997), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(968), - [sym_super] = ACTIONS(968), - [sym_crate] = ACTIONS(970), - [sym_metavariable] = ACTIONS(972), + [sym_self] = ACTIONS(999), + [sym_super] = ACTIONS(999), + [sym_crate] = ACTIONS(1001), + [sym_metavariable] = ACTIONS(1003), [sym_block_comment] = ACTIONS(3), }, - [250] = { - [sym_empty_statement] = STATE(251), - [sym_macro_definition] = STATE(251), - [sym_attribute_item] = STATE(251), - [sym_inner_attribute_item] = STATE(251), - [sym_mod_item] = STATE(251), - [sym_foreign_mod_item] = STATE(251), - [sym_struct_item] = STATE(251), - [sym_union_item] = STATE(251), - [sym_enum_item] = STATE(251), - [sym_extern_crate_declaration] = STATE(251), - [sym_const_item] = STATE(251), - [sym_static_item] = STATE(251), - [sym_type_item] = STATE(251), - [sym_function_item] = STATE(251), - [sym_function_signature_item] = STATE(251), - [sym_function_modifiers] = STATE(2542), - [sym_impl_item] = STATE(251), - [sym_trait_item] = STATE(251), - [sym_associated_type] = STATE(251), - [sym_let_declaration] = STATE(251), - [sym_use_declaration] = STATE(251), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1345), - [sym_bracketed_type] = STATE(2375), - [sym_generic_type_with_turbofish] = STATE(2372), - [sym_macro_invocation] = STATE(251), - [sym_scoped_identifier] = STATE(2236), - [aux_sym_declaration_list_repeat1] = STATE(251), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [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), + [251] = { + [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(2548), + [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(1533), + [sym_visibility_modifier] = STATE(1351), + [sym_bracketed_type] = STATE(2362), + [sym_generic_type_with_turbofish] = STATE(2357), + [sym_macro_invocation] = STATE(253), + [sym_scoped_identifier] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(253), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_macro_rules_BANG] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_u8] = ACTIONS(963), + [anon_sym_i8] = ACTIONS(963), + [anon_sym_u16] = ACTIONS(963), + [anon_sym_i16] = ACTIONS(963), + [anon_sym_u32] = ACTIONS(963), + [anon_sym_i32] = ACTIONS(963), + [anon_sym_u64] = ACTIONS(963), + [anon_sym_i64] = ACTIONS(963), + [anon_sym_u128] = ACTIONS(963), + [anon_sym_i128] = ACTIONS(963), + [anon_sym_isize] = ACTIONS(963), + [anon_sym_usize] = ACTIONS(963), + [anon_sym_f32] = ACTIONS(963), + [anon_sym_f64] = ACTIONS(963), + [anon_sym_bool] = ACTIONS(963), + [anon_sym_str] = ACTIONS(963), + [anon_sym_char] = ACTIONS(963), [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_const] = ACTIONS(965), + [anon_sym_default] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_fn] = ACTIONS(971), + [anon_sym_impl] = ACTIONS(973), + [anon_sym_let] = ACTIONS(975), + [anon_sym_mod] = ACTIONS(977), [anon_sym_pub] = ACTIONS(53), - [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_static] = ACTIONS(979), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_trait] = ACTIONS(983), + [anon_sym_type] = ACTIONS(985), + [anon_sym_union] = ACTIONS(987), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_use] = ACTIONS(991), + [anon_sym_POUND] = ACTIONS(993), + [anon_sym_extern] = ACTIONS(995), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(997), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(968), - [sym_super] = ACTIONS(968), - [sym_crate] = ACTIONS(970), - [sym_metavariable] = ACTIONS(972), + [sym_self] = ACTIONS(999), + [sym_super] = ACTIONS(999), + [sym_crate] = ACTIONS(1001), + [sym_metavariable] = ACTIONS(1003), [sym_block_comment] = ACTIONS(3), }, - [251] = { - [sym_empty_statement] = STATE(251), - [sym_macro_definition] = STATE(251), - [sym_attribute_item] = STATE(251), - [sym_inner_attribute_item] = STATE(251), - [sym_mod_item] = STATE(251), - [sym_foreign_mod_item] = STATE(251), - [sym_struct_item] = STATE(251), - [sym_union_item] = STATE(251), - [sym_enum_item] = STATE(251), - [sym_extern_crate_declaration] = STATE(251), - [sym_const_item] = STATE(251), - [sym_static_item] = STATE(251), - [sym_type_item] = STATE(251), - [sym_function_item] = STATE(251), - [sym_function_signature_item] = STATE(251), - [sym_function_modifiers] = STATE(2542), - [sym_impl_item] = STATE(251), - [sym_trait_item] = STATE(251), - [sym_associated_type] = STATE(251), - [sym_let_declaration] = STATE(251), - [sym_use_declaration] = STATE(251), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1345), - [sym_bracketed_type] = STATE(2375), - [sym_generic_type_with_turbofish] = STATE(2372), - [sym_macro_invocation] = STATE(251), - [sym_scoped_identifier] = STATE(2236), - [aux_sym_declaration_list_repeat1] = STATE(251), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_macro_rules_BANG] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_u8] = ACTIONS(989), - [anon_sym_i8] = ACTIONS(989), - [anon_sym_u16] = ACTIONS(989), - [anon_sym_i16] = ACTIONS(989), - [anon_sym_u32] = ACTIONS(989), - [anon_sym_i32] = ACTIONS(989), - [anon_sym_u64] = ACTIONS(989), - [anon_sym_i64] = ACTIONS(989), - [anon_sym_u128] = ACTIONS(989), - [anon_sym_i128] = ACTIONS(989), - [anon_sym_isize] = ACTIONS(989), - [anon_sym_usize] = ACTIONS(989), - [anon_sym_f32] = ACTIONS(989), - [anon_sym_f64] = ACTIONS(989), - [anon_sym_bool] = ACTIONS(989), - [anon_sym_str] = ACTIONS(989), - [anon_sym_char] = ACTIONS(989), - [anon_sym_async] = ACTIONS(992), - [anon_sym_const] = ACTIONS(995), - [anon_sym_default] = ACTIONS(998), - [anon_sym_enum] = ACTIONS(1001), - [anon_sym_fn] = ACTIONS(1004), - [anon_sym_impl] = ACTIONS(1007), - [anon_sym_let] = ACTIONS(1010), - [anon_sym_mod] = ACTIONS(1013), - [anon_sym_pub] = ACTIONS(1016), - [anon_sym_static] = ACTIONS(1019), - [anon_sym_struct] = ACTIONS(1022), - [anon_sym_trait] = ACTIONS(1025), - [anon_sym_type] = ACTIONS(1028), - [anon_sym_union] = ACTIONS(1031), - [anon_sym_unsafe] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1037), - [anon_sym_POUND] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1043), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_COLON_COLON] = ACTIONS(1049), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1052), - [sym_super] = ACTIONS(1052), - [sym_crate] = ACTIONS(1055), - [sym_metavariable] = ACTIONS(1058), + [252] = { + [sym_empty_statement] = STATE(252), + [sym_macro_definition] = STATE(252), + [sym_attribute_item] = STATE(252), + [sym_inner_attribute_item] = STATE(252), + [sym_mod_item] = STATE(252), + [sym_foreign_mod_item] = STATE(252), + [sym_struct_item] = STATE(252), + [sym_union_item] = STATE(252), + [sym_enum_item] = STATE(252), + [sym_extern_crate_declaration] = STATE(252), + [sym_const_item] = STATE(252), + [sym_static_item] = STATE(252), + [sym_type_item] = STATE(252), + [sym_function_item] = STATE(252), + [sym_function_signature_item] = STATE(252), + [sym_function_modifiers] = STATE(2548), + [sym_impl_item] = STATE(252), + [sym_trait_item] = STATE(252), + [sym_associated_type] = STATE(252), + [sym_let_declaration] = STATE(252), + [sym_use_declaration] = STATE(252), + [sym_extern_modifier] = STATE(1533), + [sym_visibility_modifier] = STATE(1351), + [sym_bracketed_type] = STATE(2362), + [sym_generic_type_with_turbofish] = STATE(2357), + [sym_macro_invocation] = STATE(252), + [sym_scoped_identifier] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(252), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_macro_rules_BANG] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_u8] = ACTIONS(1020), + [anon_sym_i8] = ACTIONS(1020), + [anon_sym_u16] = ACTIONS(1020), + [anon_sym_i16] = ACTIONS(1020), + [anon_sym_u32] = ACTIONS(1020), + [anon_sym_i32] = ACTIONS(1020), + [anon_sym_u64] = ACTIONS(1020), + [anon_sym_i64] = ACTIONS(1020), + [anon_sym_u128] = ACTIONS(1020), + [anon_sym_i128] = ACTIONS(1020), + [anon_sym_isize] = ACTIONS(1020), + [anon_sym_usize] = ACTIONS(1020), + [anon_sym_f32] = ACTIONS(1020), + [anon_sym_f64] = ACTIONS(1020), + [anon_sym_bool] = ACTIONS(1020), + [anon_sym_str] = ACTIONS(1020), + [anon_sym_char] = ACTIONS(1020), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1029), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(1035), + [anon_sym_impl] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1044), + [anon_sym_pub] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1050), + [anon_sym_struct] = ACTIONS(1053), + [anon_sym_trait] = ACTIONS(1056), + [anon_sym_type] = ACTIONS(1059), + [anon_sym_union] = ACTIONS(1062), + [anon_sym_unsafe] = ACTIONS(1065), + [anon_sym_use] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(1071), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1077), + [anon_sym_COLON_COLON] = ACTIONS(1080), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1083), + [sym_super] = ACTIONS(1083), + [sym_crate] = ACTIONS(1086), + [sym_metavariable] = ACTIONS(1089), [sym_block_comment] = ACTIONS(3), }, - [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(2542), - [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(1516), - [sym_visibility_modifier] = STATE(1345), - [sym_bracketed_type] = STATE(2375), - [sym_generic_type_with_turbofish] = STATE(2372), - [sym_macro_invocation] = STATE(250), - [sym_scoped_identifier] = STATE(2236), - [aux_sym_declaration_list_repeat1] = STATE(250), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_macro_rules_BANG] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(1061), - [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), + [253] = { + [sym_empty_statement] = STATE(252), + [sym_macro_definition] = STATE(252), + [sym_attribute_item] = STATE(252), + [sym_inner_attribute_item] = STATE(252), + [sym_mod_item] = STATE(252), + [sym_foreign_mod_item] = STATE(252), + [sym_struct_item] = STATE(252), + [sym_union_item] = STATE(252), + [sym_enum_item] = STATE(252), + [sym_extern_crate_declaration] = STATE(252), + [sym_const_item] = STATE(252), + [sym_static_item] = STATE(252), + [sym_type_item] = STATE(252), + [sym_function_item] = STATE(252), + [sym_function_signature_item] = STATE(252), + [sym_function_modifiers] = STATE(2548), + [sym_impl_item] = STATE(252), + [sym_trait_item] = STATE(252), + [sym_associated_type] = STATE(252), + [sym_let_declaration] = STATE(252), + [sym_use_declaration] = STATE(252), + [sym_extern_modifier] = STATE(1533), + [sym_visibility_modifier] = STATE(1351), + [sym_bracketed_type] = STATE(2362), + [sym_generic_type_with_turbofish] = STATE(2357), + [sym_macro_invocation] = STATE(252), + [sym_scoped_identifier] = STATE(2273), + [aux_sym_declaration_list_repeat1] = STATE(252), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_macro_rules_BANG] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_u8] = ACTIONS(963), + [anon_sym_i8] = ACTIONS(963), + [anon_sym_u16] = ACTIONS(963), + [anon_sym_i16] = ACTIONS(963), + [anon_sym_u32] = ACTIONS(963), + [anon_sym_i32] = ACTIONS(963), + [anon_sym_u64] = ACTIONS(963), + [anon_sym_i64] = ACTIONS(963), + [anon_sym_u128] = ACTIONS(963), + [anon_sym_i128] = ACTIONS(963), + [anon_sym_isize] = ACTIONS(963), + [anon_sym_usize] = ACTIONS(963), + [anon_sym_f32] = ACTIONS(963), + [anon_sym_f64] = ACTIONS(963), + [anon_sym_bool] = ACTIONS(963), + [anon_sym_str] = ACTIONS(963), + [anon_sym_char] = ACTIONS(963), [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_const] = ACTIONS(965), + [anon_sym_default] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_fn] = ACTIONS(971), + [anon_sym_impl] = ACTIONS(973), + [anon_sym_let] = ACTIONS(975), + [anon_sym_mod] = ACTIONS(977), [anon_sym_pub] = ACTIONS(53), - [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_static] = ACTIONS(979), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_trait] = ACTIONS(983), + [anon_sym_type] = ACTIONS(985), + [anon_sym_union] = ACTIONS(987), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_use] = ACTIONS(991), + [anon_sym_POUND] = ACTIONS(993), + [anon_sym_extern] = ACTIONS(995), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(997), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(968), - [sym_super] = ACTIONS(968), - [sym_crate] = ACTIONS(970), - [sym_metavariable] = ACTIONS(972), - [sym_block_comment] = ACTIONS(3), - }, - [253] = { - [sym__token_pattern] = STATE(253), - [sym_token_tree_pattern] = STATE(253), - [sym_token_binding_pattern] = STATE(253), - [sym_token_repetition_pattern] = STATE(253), - [sym__literal] = STATE(253), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_pattern_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(1063), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_RPAREN] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_RBRACE] = ACTIONS(1069), - [anon_sym_LBRACK] = ACTIONS(1074), - [anon_sym_RBRACK] = ACTIONS(1069), - [anon_sym_DOLLAR] = ACTIONS(1077), - [anon_sym_u8] = ACTIONS(1063), - [anon_sym_i8] = ACTIONS(1063), - [anon_sym_u16] = ACTIONS(1063), - [anon_sym_i16] = ACTIONS(1063), - [anon_sym_u32] = ACTIONS(1063), - [anon_sym_i32] = ACTIONS(1063), - [anon_sym_u64] = ACTIONS(1063), - [anon_sym_i64] = ACTIONS(1063), - [anon_sym_u128] = ACTIONS(1063), - [anon_sym_i128] = ACTIONS(1063), - [anon_sym_isize] = ACTIONS(1063), - [anon_sym_usize] = ACTIONS(1063), - [anon_sym_f32] = ACTIONS(1063), - [anon_sym_f64] = ACTIONS(1063), - [anon_sym_bool] = ACTIONS(1063), - [anon_sym_str] = ACTIONS(1063), - [anon_sym_char] = ACTIONS(1063), - [aux_sym__non_special_token_token1] = ACTIONS(1063), - [anon_sym_SQUOTE] = ACTIONS(1063), - [anon_sym_as] = ACTIONS(1063), - [anon_sym_async] = ACTIONS(1063), - [anon_sym_await] = ACTIONS(1063), - [anon_sym_break] = ACTIONS(1063), - [anon_sym_const] = ACTIONS(1063), - [anon_sym_continue] = ACTIONS(1063), - [anon_sym_default] = ACTIONS(1063), - [anon_sym_enum] = ACTIONS(1063), - [anon_sym_fn] = ACTIONS(1063), - [anon_sym_for] = ACTIONS(1063), - [anon_sym_if] = ACTIONS(1063), - [anon_sym_impl] = ACTIONS(1063), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_loop] = ACTIONS(1063), - [anon_sym_match] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_pub] = ACTIONS(1063), - [anon_sym_return] = ACTIONS(1063), - [anon_sym_static] = ACTIONS(1063), - [anon_sym_struct] = ACTIONS(1063), - [anon_sym_trait] = ACTIONS(1063), - [anon_sym_type] = ACTIONS(1063), - [anon_sym_union] = ACTIONS(1063), - [anon_sym_unsafe] = ACTIONS(1063), - [anon_sym_use] = ACTIONS(1063), - [anon_sym_where] = ACTIONS(1063), - [anon_sym_while] = ACTIONS(1063), - [sym_mutable_specifier] = ACTIONS(1063), - [sym_integer_literal] = ACTIONS(1080), - [aux_sym_string_literal_token1] = ACTIONS(1083), - [sym_char_literal] = ACTIONS(1080), - [anon_sym_true] = ACTIONS(1086), - [anon_sym_false] = ACTIONS(1086), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(1063), - [sym_super] = ACTIONS(1063), - [sym_crate] = ACTIONS(1063), - [sym_metavariable] = ACTIONS(1091), - [sym_raw_string_literal] = ACTIONS(1080), - [sym_float_literal] = ACTIONS(1080), + [sym_self] = ACTIONS(999), + [sym_super] = ACTIONS(999), + [sym_crate] = ACTIONS(1001), + [sym_metavariable] = ACTIONS(1003), [sym_block_comment] = ACTIONS(3), }, [254] = { @@ -42318,400 +42360,424 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [268] = { - [ts_builtin_sym_end] = ACTIONS(1150), - [sym_identifier] = ACTIONS(1152), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_macro_rules_BANG] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_RBRACE] = ACTIONS(1150), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_u8] = ACTIONS(1152), - [anon_sym_i8] = ACTIONS(1152), - [anon_sym_u16] = ACTIONS(1152), - [anon_sym_i16] = ACTIONS(1152), - [anon_sym_u32] = ACTIONS(1152), - [anon_sym_i32] = ACTIONS(1152), - [anon_sym_u64] = ACTIONS(1152), - [anon_sym_i64] = ACTIONS(1152), - [anon_sym_u128] = ACTIONS(1152), - [anon_sym_i128] = ACTIONS(1152), - [anon_sym_isize] = ACTIONS(1152), - [anon_sym_usize] = ACTIONS(1152), - [anon_sym_f32] = ACTIONS(1152), - [anon_sym_f64] = ACTIONS(1152), - [anon_sym_bool] = ACTIONS(1152), - [anon_sym_str] = ACTIONS(1152), - [anon_sym_char] = ACTIONS(1152), - [anon_sym_SQUOTE] = ACTIONS(1152), - [anon_sym_async] = ACTIONS(1152), - [anon_sym_break] = ACTIONS(1152), - [anon_sym_const] = ACTIONS(1152), - [anon_sym_continue] = ACTIONS(1152), - [anon_sym_default] = ACTIONS(1152), - [anon_sym_enum] = ACTIONS(1152), - [anon_sym_fn] = ACTIONS(1152), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_impl] = ACTIONS(1152), - [anon_sym_let] = ACTIONS(1152), - [anon_sym_loop] = ACTIONS(1152), - [anon_sym_match] = ACTIONS(1152), - [anon_sym_mod] = ACTIONS(1152), - [anon_sym_pub] = ACTIONS(1152), - [anon_sym_return] = ACTIONS(1152), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_struct] = ACTIONS(1152), - [anon_sym_trait] = ACTIONS(1152), - [anon_sym_type] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(1152), - [anon_sym_unsafe] = ACTIONS(1152), - [anon_sym_use] = ACTIONS(1152), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_POUND] = ACTIONS(1150), - [anon_sym_BANG] = ACTIONS(1150), - [anon_sym_extern] = ACTIONS(1152), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_COLON_COLON] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - [anon_sym_DOT_DOT] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_yield] = ACTIONS(1152), - [anon_sym_move] = ACTIONS(1152), - [sym_integer_literal] = ACTIONS(1150), - [aux_sym_string_literal_token1] = ACTIONS(1150), - [sym_char_literal] = ACTIONS(1150), - [anon_sym_true] = ACTIONS(1152), - [anon_sym_false] = ACTIONS(1152), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1152), - [sym_super] = ACTIONS(1152), - [sym_crate] = ACTIONS(1152), - [sym_metavariable] = ACTIONS(1150), - [sym_raw_string_literal] = ACTIONS(1150), - [sym_float_literal] = ACTIONS(1150), + [sym__token_pattern] = STATE(245), + [sym_token_tree_pattern] = STATE(245), + [sym_token_binding_pattern] = STATE(245), + [sym_token_repetition_pattern] = STATE(245), + [sym__never_special_token] = STATE(245), + [sym__literal] = STATE(245), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(245), + [sym_identifier] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_RPAREN] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_u8] = ACTIONS(1150), + [anon_sym_i8] = ACTIONS(1150), + [anon_sym_u16] = ACTIONS(1150), + [anon_sym_i16] = ACTIONS(1150), + [anon_sym_u32] = ACTIONS(1150), + [anon_sym_i32] = ACTIONS(1150), + [anon_sym_u64] = ACTIONS(1150), + [anon_sym_i64] = ACTIONS(1150), + [anon_sym_u128] = ACTIONS(1150), + [anon_sym_i128] = ACTIONS(1150), + [anon_sym_isize] = ACTIONS(1150), + [anon_sym_usize] = ACTIONS(1150), + [anon_sym_f32] = ACTIONS(1150), + [anon_sym_f64] = ACTIONS(1150), + [anon_sym_bool] = ACTIONS(1150), + [anon_sym_str] = ACTIONS(1150), + [anon_sym_char] = ACTIONS(1150), + [aux_sym__never_special_token_token1] = ACTIONS(1150), + [anon_sym_SQUOTE] = ACTIONS(1150), + [anon_sym_as] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_fn] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_impl] = ACTIONS(1150), + [anon_sym_let] = ACTIONS(1150), + [anon_sym_loop] = ACTIONS(1150), + [anon_sym_match] = ACTIONS(1150), + [anon_sym_mod] = ACTIONS(1150), + [anon_sym_pub] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_trait] = ACTIONS(1150), + [anon_sym_type] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_unsafe] = ACTIONS(1150), + [anon_sym_use] = ACTIONS(1150), + [anon_sym_where] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [sym_mutable_specifier] = ACTIONS(1150), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1168), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, [269] = { - [ts_builtin_sym_end] = ACTIONS(1154), - [sym_identifier] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1154), - [anon_sym_macro_rules_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_RBRACE] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_u8] = ACTIONS(1156), - [anon_sym_i8] = ACTIONS(1156), - [anon_sym_u16] = ACTIONS(1156), - [anon_sym_i16] = ACTIONS(1156), - [anon_sym_u32] = ACTIONS(1156), - [anon_sym_i32] = ACTIONS(1156), - [anon_sym_u64] = ACTIONS(1156), - [anon_sym_i64] = ACTIONS(1156), - [anon_sym_u128] = ACTIONS(1156), - [anon_sym_i128] = ACTIONS(1156), - [anon_sym_isize] = ACTIONS(1156), - [anon_sym_usize] = ACTIONS(1156), - [anon_sym_f32] = ACTIONS(1156), - [anon_sym_f64] = ACTIONS(1156), - [anon_sym_bool] = ACTIONS(1156), - [anon_sym_str] = ACTIONS(1156), - [anon_sym_char] = ACTIONS(1156), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_async] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_const] = ACTIONS(1156), - [anon_sym_continue] = ACTIONS(1156), - [anon_sym_default] = ACTIONS(1156), - [anon_sym_enum] = ACTIONS(1156), - [anon_sym_fn] = ACTIONS(1156), - [anon_sym_for] = ACTIONS(1156), - [anon_sym_if] = ACTIONS(1156), - [anon_sym_impl] = ACTIONS(1156), - [anon_sym_let] = ACTIONS(1156), - [anon_sym_loop] = ACTIONS(1156), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_mod] = ACTIONS(1156), - [anon_sym_pub] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1156), - [anon_sym_static] = ACTIONS(1156), - [anon_sym_struct] = ACTIONS(1156), - [anon_sym_trait] = ACTIONS(1156), - [anon_sym_type] = ACTIONS(1156), - [anon_sym_union] = ACTIONS(1156), - [anon_sym_unsafe] = ACTIONS(1156), - [anon_sym_use] = ACTIONS(1156), - [anon_sym_while] = ACTIONS(1156), - [anon_sym_POUND] = ACTIONS(1154), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(1156), - [anon_sym_LT] = ACTIONS(1154), - [anon_sym_COLON_COLON] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1154), - [anon_sym_DOT_DOT] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1154), - [anon_sym_PIPE] = ACTIONS(1154), - [anon_sym_yield] = ACTIONS(1156), - [anon_sym_move] = ACTIONS(1156), - [sym_integer_literal] = ACTIONS(1154), - [aux_sym_string_literal_token1] = ACTIONS(1154), - [sym_char_literal] = ACTIONS(1154), - [anon_sym_true] = ACTIONS(1156), - [anon_sym_false] = ACTIONS(1156), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1156), - [sym_super] = ACTIONS(1156), - [sym_crate] = ACTIONS(1156), - [sym_metavariable] = ACTIONS(1154), - [sym_raw_string_literal] = ACTIONS(1154), - [sym_float_literal] = ACTIONS(1154), + [ts_builtin_sym_end] = ACTIONS(1170), + [sym_identifier] = ACTIONS(1172), + [anon_sym_SEMI] = ACTIONS(1170), + [anon_sym_macro_rules_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1170), + [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1170), + [anon_sym_STAR] = ACTIONS(1170), + [anon_sym_u8] = ACTIONS(1172), + [anon_sym_i8] = ACTIONS(1172), + [anon_sym_u16] = ACTIONS(1172), + [anon_sym_i16] = ACTIONS(1172), + [anon_sym_u32] = ACTIONS(1172), + [anon_sym_i32] = ACTIONS(1172), + [anon_sym_u64] = ACTIONS(1172), + [anon_sym_i64] = ACTIONS(1172), + [anon_sym_u128] = ACTIONS(1172), + [anon_sym_i128] = ACTIONS(1172), + [anon_sym_isize] = ACTIONS(1172), + [anon_sym_usize] = ACTIONS(1172), + [anon_sym_f32] = ACTIONS(1172), + [anon_sym_f64] = ACTIONS(1172), + [anon_sym_bool] = ACTIONS(1172), + [anon_sym_str] = ACTIONS(1172), + [anon_sym_char] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_async] = ACTIONS(1172), + [anon_sym_break] = ACTIONS(1172), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_continue] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1172), + [anon_sym_enum] = ACTIONS(1172), + [anon_sym_fn] = ACTIONS(1172), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_if] = ACTIONS(1172), + [anon_sym_impl] = ACTIONS(1172), + [anon_sym_let] = ACTIONS(1172), + [anon_sym_loop] = ACTIONS(1172), + [anon_sym_match] = ACTIONS(1172), + [anon_sym_mod] = ACTIONS(1172), + [anon_sym_pub] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1172), + [anon_sym_struct] = ACTIONS(1172), + [anon_sym_trait] = ACTIONS(1172), + [anon_sym_type] = ACTIONS(1172), + [anon_sym_union] = ACTIONS(1172), + [anon_sym_unsafe] = ACTIONS(1172), + [anon_sym_use] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1172), + [anon_sym_POUND] = ACTIONS(1170), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(1172), + [anon_sym_LT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(1170), + [anon_sym_AMP] = ACTIONS(1170), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_PIPE] = ACTIONS(1170), + [anon_sym_yield] = ACTIONS(1172), + [anon_sym_move] = ACTIONS(1172), + [sym_integer_literal] = ACTIONS(1170), + [aux_sym_string_literal_token1] = ACTIONS(1170), + [sym_char_literal] = ACTIONS(1170), + [anon_sym_true] = ACTIONS(1172), + [anon_sym_false] = ACTIONS(1172), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1172), + [sym_super] = ACTIONS(1172), + [sym_crate] = ACTIONS(1172), + [sym_metavariable] = ACTIONS(1170), + [sym_raw_string_literal] = ACTIONS(1170), + [sym_float_literal] = ACTIONS(1170), [sym_block_comment] = ACTIONS(3), }, [270] = { - [ts_builtin_sym_end] = ACTIONS(1158), - [sym_identifier] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym_macro_rules_BANG] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1158), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u128] = ACTIONS(1160), - [anon_sym_i128] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_str] = ACTIONS(1160), - [anon_sym_char] = ACTIONS(1160), - [anon_sym_SQUOTE] = ACTIONS(1160), - [anon_sym_async] = ACTIONS(1160), - [anon_sym_break] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1160), - [anon_sym_continue] = ACTIONS(1160), - [anon_sym_default] = ACTIONS(1160), - [anon_sym_enum] = ACTIONS(1160), - [anon_sym_fn] = ACTIONS(1160), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_if] = ACTIONS(1160), - [anon_sym_impl] = ACTIONS(1160), - [anon_sym_let] = ACTIONS(1160), - [anon_sym_loop] = ACTIONS(1160), - [anon_sym_match] = ACTIONS(1160), - [anon_sym_mod] = ACTIONS(1160), - [anon_sym_pub] = ACTIONS(1160), - [anon_sym_return] = ACTIONS(1160), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_struct] = ACTIONS(1160), - [anon_sym_trait] = ACTIONS(1160), - [anon_sym_type] = ACTIONS(1160), - [anon_sym_union] = ACTIONS(1160), - [anon_sym_unsafe] = ACTIONS(1160), - [anon_sym_use] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1160), - [anon_sym_POUND] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(1158), - [anon_sym_extern] = ACTIONS(1160), - [anon_sym_LT] = ACTIONS(1158), - [anon_sym_COLON_COLON] = ACTIONS(1158), - [anon_sym_AMP] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1158), - [anon_sym_PIPE] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_move] = ACTIONS(1160), - [sym_integer_literal] = ACTIONS(1158), - [aux_sym_string_literal_token1] = ACTIONS(1158), - [sym_char_literal] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1160), - [anon_sym_false] = ACTIONS(1160), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1160), - [sym_super] = ACTIONS(1160), - [sym_crate] = ACTIONS(1160), - [sym_metavariable] = ACTIONS(1158), - [sym_raw_string_literal] = ACTIONS(1158), - [sym_float_literal] = ACTIONS(1158), + [ts_builtin_sym_end] = ACTIONS(1174), + [sym_identifier] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1174), + [anon_sym_macro_rules_BANG] = ACTIONS(1174), + [anon_sym_LPAREN] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1174), + [anon_sym_RBRACE] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1174), + [anon_sym_u8] = ACTIONS(1176), + [anon_sym_i8] = ACTIONS(1176), + [anon_sym_u16] = ACTIONS(1176), + [anon_sym_i16] = ACTIONS(1176), + [anon_sym_u32] = ACTIONS(1176), + [anon_sym_i32] = ACTIONS(1176), + [anon_sym_u64] = ACTIONS(1176), + [anon_sym_i64] = ACTIONS(1176), + [anon_sym_u128] = ACTIONS(1176), + [anon_sym_i128] = ACTIONS(1176), + [anon_sym_isize] = ACTIONS(1176), + [anon_sym_usize] = ACTIONS(1176), + [anon_sym_f32] = ACTIONS(1176), + [anon_sym_f64] = ACTIONS(1176), + [anon_sym_bool] = ACTIONS(1176), + [anon_sym_str] = ACTIONS(1176), + [anon_sym_char] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1176), + [anon_sym_break] = ACTIONS(1176), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_continue] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1176), + [anon_sym_enum] = ACTIONS(1176), + [anon_sym_fn] = ACTIONS(1176), + [anon_sym_for] = ACTIONS(1176), + [anon_sym_if] = ACTIONS(1176), + [anon_sym_impl] = ACTIONS(1176), + [anon_sym_let] = ACTIONS(1176), + [anon_sym_loop] = ACTIONS(1176), + [anon_sym_match] = ACTIONS(1176), + [anon_sym_mod] = ACTIONS(1176), + [anon_sym_pub] = ACTIONS(1176), + [anon_sym_return] = ACTIONS(1176), + [anon_sym_static] = ACTIONS(1176), + [anon_sym_struct] = ACTIONS(1176), + [anon_sym_trait] = ACTIONS(1176), + [anon_sym_type] = ACTIONS(1176), + [anon_sym_union] = ACTIONS(1176), + [anon_sym_unsafe] = ACTIONS(1176), + [anon_sym_use] = ACTIONS(1176), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_POUND] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1176), + [anon_sym_LT] = ACTIONS(1174), + [anon_sym_COLON_COLON] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_DOT_DOT] = ACTIONS(1174), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_PIPE] = ACTIONS(1174), + [anon_sym_yield] = ACTIONS(1176), + [anon_sym_move] = ACTIONS(1176), + [sym_integer_literal] = ACTIONS(1174), + [aux_sym_string_literal_token1] = ACTIONS(1174), + [sym_char_literal] = ACTIONS(1174), + [anon_sym_true] = ACTIONS(1176), + [anon_sym_false] = ACTIONS(1176), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1176), + [sym_super] = ACTIONS(1176), + [sym_crate] = ACTIONS(1176), + [sym_metavariable] = ACTIONS(1174), + [sym_raw_string_literal] = ACTIONS(1174), + [sym_float_literal] = ACTIONS(1174), [sym_block_comment] = ACTIONS(3), }, [271] = { - [ts_builtin_sym_end] = ACTIONS(1162), - [sym_identifier] = ACTIONS(1164), - [anon_sym_SEMI] = ACTIONS(1162), - [anon_sym_macro_rules_BANG] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_RBRACE] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1162), - [anon_sym_STAR] = ACTIONS(1162), - [anon_sym_u8] = ACTIONS(1164), - [anon_sym_i8] = ACTIONS(1164), - [anon_sym_u16] = ACTIONS(1164), - [anon_sym_i16] = ACTIONS(1164), - [anon_sym_u32] = ACTIONS(1164), - [anon_sym_i32] = ACTIONS(1164), - [anon_sym_u64] = ACTIONS(1164), - [anon_sym_i64] = ACTIONS(1164), - [anon_sym_u128] = ACTIONS(1164), - [anon_sym_i128] = ACTIONS(1164), - [anon_sym_isize] = ACTIONS(1164), - [anon_sym_usize] = ACTIONS(1164), - [anon_sym_f32] = ACTIONS(1164), - [anon_sym_f64] = ACTIONS(1164), - [anon_sym_bool] = ACTIONS(1164), - [anon_sym_str] = ACTIONS(1164), - [anon_sym_char] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(1164), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_const] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_default] = ACTIONS(1164), - [anon_sym_enum] = ACTIONS(1164), - [anon_sym_fn] = ACTIONS(1164), - [anon_sym_for] = ACTIONS(1164), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_impl] = ACTIONS(1164), - [anon_sym_let] = ACTIONS(1164), - [anon_sym_loop] = ACTIONS(1164), - [anon_sym_match] = ACTIONS(1164), - [anon_sym_mod] = ACTIONS(1164), - [anon_sym_pub] = ACTIONS(1164), - [anon_sym_return] = ACTIONS(1164), - [anon_sym_static] = ACTIONS(1164), - [anon_sym_struct] = ACTIONS(1164), - [anon_sym_trait] = ACTIONS(1164), - [anon_sym_type] = ACTIONS(1164), - [anon_sym_union] = ACTIONS(1164), - [anon_sym_unsafe] = ACTIONS(1164), - [anon_sym_use] = ACTIONS(1164), - [anon_sym_while] = ACTIONS(1164), - [anon_sym_POUND] = ACTIONS(1162), - [anon_sym_BANG] = ACTIONS(1162), - [anon_sym_extern] = ACTIONS(1164), - [anon_sym_LT] = ACTIONS(1162), - [anon_sym_COLON_COLON] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(1162), - [anon_sym_DOT_DOT] = ACTIONS(1162), - [anon_sym_DASH] = ACTIONS(1162), - [anon_sym_PIPE] = ACTIONS(1162), - [anon_sym_yield] = ACTIONS(1164), - [anon_sym_move] = ACTIONS(1164), + [sym__token_pattern] = STATE(245), + [sym_token_tree_pattern] = STATE(245), + [sym_token_binding_pattern] = STATE(245), + [sym_token_repetition_pattern] = STATE(245), + [sym__never_special_token] = STATE(245), + [sym__literal] = STATE(245), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(245), + [sym_identifier] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_u8] = ACTIONS(1150), + [anon_sym_i8] = ACTIONS(1150), + [anon_sym_u16] = ACTIONS(1150), + [anon_sym_i16] = ACTIONS(1150), + [anon_sym_u32] = ACTIONS(1150), + [anon_sym_i32] = ACTIONS(1150), + [anon_sym_u64] = ACTIONS(1150), + [anon_sym_i64] = ACTIONS(1150), + [anon_sym_u128] = ACTIONS(1150), + [anon_sym_i128] = ACTIONS(1150), + [anon_sym_isize] = ACTIONS(1150), + [anon_sym_usize] = ACTIONS(1150), + [anon_sym_f32] = ACTIONS(1150), + [anon_sym_f64] = ACTIONS(1150), + [anon_sym_bool] = ACTIONS(1150), + [anon_sym_str] = ACTIONS(1150), + [anon_sym_char] = ACTIONS(1150), + [aux_sym__never_special_token_token1] = ACTIONS(1150), + [anon_sym_SQUOTE] = ACTIONS(1150), + [anon_sym_as] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_fn] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_impl] = ACTIONS(1150), + [anon_sym_let] = ACTIONS(1150), + [anon_sym_loop] = ACTIONS(1150), + [anon_sym_match] = ACTIONS(1150), + [anon_sym_mod] = ACTIONS(1150), + [anon_sym_pub] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_trait] = ACTIONS(1150), + [anon_sym_type] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_unsafe] = ACTIONS(1150), + [anon_sym_use] = ACTIONS(1150), + [anon_sym_where] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [sym_mutable_specifier] = ACTIONS(1150), [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1164), - [anon_sym_false] = ACTIONS(1164), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1164), - [sym_super] = ACTIONS(1164), - [sym_crate] = ACTIONS(1164), - [sym_metavariable] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1168), [sym_raw_string_literal] = ACTIONS(1162), [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, [272] = { - [sym_attribute_item] = STATE(548), - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_macro_invocation] = STATE(2506), - [sym_scoped_identifier] = STATE(1571), - [sym_scoped_type_identifier] = STATE(1936), - [sym_match_arm] = STATE(490), - [sym_last_match_arm] = STATE(2427), - [sym_match_pattern] = STATE(2451), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1924), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_enum_variant_list_repeat1] = STATE(548), - [aux_sym_match_block_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(1166), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [ts_builtin_sym_end] = ACTIONS(1178), + [sym_identifier] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1178), + [anon_sym_macro_rules_BANG] = ACTIONS(1178), + [anon_sym_LPAREN] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_RBRACE] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1178), + [anon_sym_u8] = ACTIONS(1180), + [anon_sym_i8] = ACTIONS(1180), + [anon_sym_u16] = ACTIONS(1180), + [anon_sym_i16] = ACTIONS(1180), + [anon_sym_u32] = ACTIONS(1180), + [anon_sym_i32] = ACTIONS(1180), + [anon_sym_u64] = ACTIONS(1180), + [anon_sym_i64] = ACTIONS(1180), + [anon_sym_u128] = ACTIONS(1180), + [anon_sym_i128] = ACTIONS(1180), + [anon_sym_isize] = ACTIONS(1180), + [anon_sym_usize] = ACTIONS(1180), + [anon_sym_f32] = ACTIONS(1180), + [anon_sym_f64] = ACTIONS(1180), + [anon_sym_bool] = ACTIONS(1180), + [anon_sym_str] = ACTIONS(1180), + [anon_sym_char] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_async] = ACTIONS(1180), + [anon_sym_break] = ACTIONS(1180), + [anon_sym_const] = ACTIONS(1180), + [anon_sym_continue] = ACTIONS(1180), + [anon_sym_default] = ACTIONS(1180), + [anon_sym_enum] = ACTIONS(1180), + [anon_sym_fn] = ACTIONS(1180), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_if] = ACTIONS(1180), + [anon_sym_impl] = ACTIONS(1180), + [anon_sym_let] = ACTIONS(1180), + [anon_sym_loop] = ACTIONS(1180), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_mod] = ACTIONS(1180), + [anon_sym_pub] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1180), + [anon_sym_static] = ACTIONS(1180), + [anon_sym_struct] = ACTIONS(1180), + [anon_sym_trait] = ACTIONS(1180), + [anon_sym_type] = ACTIONS(1180), + [anon_sym_union] = ACTIONS(1180), + [anon_sym_unsafe] = ACTIONS(1180), + [anon_sym_use] = ACTIONS(1180), + [anon_sym_while] = ACTIONS(1180), + [anon_sym_POUND] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1180), + [anon_sym_LT] = ACTIONS(1178), + [anon_sym_COLON_COLON] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_DOT_DOT] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1178), + [anon_sym_yield] = ACTIONS(1180), + [anon_sym_move] = ACTIONS(1180), + [sym_integer_literal] = ACTIONS(1178), + [aux_sym_string_literal_token1] = ACTIONS(1178), + [sym_char_literal] = ACTIONS(1178), + [anon_sym_true] = ACTIONS(1180), + [anon_sym_false] = ACTIONS(1180), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1178), + [sym_raw_string_literal] = ACTIONS(1178), + [sym_float_literal] = ACTIONS(1178), [sym_block_comment] = ACTIONS(3), }, [273] = { - [ts_builtin_sym_end] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_macro_rules_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_arm] = STATE(499), + [sym_last_match_arm] = STATE(2418), + [sym_match_pattern] = STATE(2359), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(499), + [sym_identifier] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1186), [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(1188), [anon_sym_u8] = ACTIONS(1190), [anon_sym_i8] = ACTIONS(1190), [anon_sym_u16] = ACTIONS(1190), @@ -42729,288 +42795,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1190), [anon_sym_str] = ACTIONS(1190), [anon_sym_char] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_fn] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_impl] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_pub] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_trait] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_unsafe] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_DOT_DOT] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_move] = ACTIONS(1190), - [sym_integer_literal] = ACTIONS(1188), - [aux_sym_string_literal_token1] = ACTIONS(1188), - [sym_char_literal] = ACTIONS(1188), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1190), - [sym_super] = ACTIONS(1190), - [sym_crate] = ACTIONS(1190), - [sym_metavariable] = ACTIONS(1188), - [sym_raw_string_literal] = ACTIONS(1188), - [sym_float_literal] = ACTIONS(1188), - [sym_block_comment] = ACTIONS(3), - }, - [274] = { - [ts_builtin_sym_end] = ACTIONS(1192), - [sym_identifier] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym_macro_rules_BANG] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_RBRACE] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1192), - [anon_sym_u8] = ACTIONS(1194), - [anon_sym_i8] = ACTIONS(1194), - [anon_sym_u16] = ACTIONS(1194), - [anon_sym_i16] = ACTIONS(1194), - [anon_sym_u32] = ACTIONS(1194), - [anon_sym_i32] = ACTIONS(1194), - [anon_sym_u64] = ACTIONS(1194), - [anon_sym_i64] = ACTIONS(1194), - [anon_sym_u128] = ACTIONS(1194), - [anon_sym_i128] = ACTIONS(1194), - [anon_sym_isize] = ACTIONS(1194), - [anon_sym_usize] = ACTIONS(1194), - [anon_sym_f32] = ACTIONS(1194), - [anon_sym_f64] = ACTIONS(1194), - [anon_sym_bool] = ACTIONS(1194), - [anon_sym_str] = ACTIONS(1194), - [anon_sym_char] = ACTIONS(1194), - [anon_sym_SQUOTE] = ACTIONS(1194), - [anon_sym_async] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1192), [anon_sym_default] = ACTIONS(1194), - [anon_sym_enum] = ACTIONS(1194), - [anon_sym_fn] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_impl] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_mod] = ACTIONS(1194), - [anon_sym_pub] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_static] = ACTIONS(1194), - [anon_sym_struct] = ACTIONS(1194), - [anon_sym_trait] = ACTIONS(1194), - [anon_sym_type] = ACTIONS(1194), [anon_sym_union] = ACTIONS(1194), - [anon_sym_unsafe] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_COLON_COLON] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_DOT_DOT] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_yield] = ACTIONS(1194), - [anon_sym_move] = ACTIONS(1194), - [sym_integer_literal] = ACTIONS(1192), - [aux_sym_string_literal_token1] = ACTIONS(1192), - [sym_char_literal] = ACTIONS(1192), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1194), - [sym_super] = ACTIONS(1194), - [sym_crate] = ACTIONS(1194), - [sym_metavariable] = ACTIONS(1192), - [sym_raw_string_literal] = ACTIONS(1192), - [sym_float_literal] = ACTIONS(1192), - [sym_block_comment] = ACTIONS(3), - }, - [275] = { - [ts_builtin_sym_end] = ACTIONS(1196), - [sym_identifier] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym_macro_rules_BANG] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_u8] = ACTIONS(1198), - [anon_sym_i8] = ACTIONS(1198), - [anon_sym_u16] = ACTIONS(1198), - [anon_sym_i16] = ACTIONS(1198), - [anon_sym_u32] = ACTIONS(1198), - [anon_sym_i32] = ACTIONS(1198), - [anon_sym_u64] = ACTIONS(1198), - [anon_sym_i64] = ACTIONS(1198), - [anon_sym_u128] = ACTIONS(1198), - [anon_sym_i128] = ACTIONS(1198), - [anon_sym_isize] = ACTIONS(1198), - [anon_sym_usize] = ACTIONS(1198), - [anon_sym_f32] = ACTIONS(1198), - [anon_sym_f64] = ACTIONS(1198), - [anon_sym_bool] = ACTIONS(1198), - [anon_sym_str] = ACTIONS(1198), - [anon_sym_char] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_async] = ACTIONS(1198), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_default] = ACTIONS(1198), - [anon_sym_enum] = ACTIONS(1198), - [anon_sym_fn] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_impl] = ACTIONS(1198), - [anon_sym_let] = ACTIONS(1198), - [anon_sym_loop] = ACTIONS(1198), - [anon_sym_match] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_pub] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_static] = ACTIONS(1198), - [anon_sym_struct] = ACTIONS(1198), - [anon_sym_trait] = ACTIONS(1198), - [anon_sym_type] = ACTIONS(1198), - [anon_sym_union] = ACTIONS(1198), - [anon_sym_unsafe] = ACTIONS(1198), - [anon_sym_use] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_POUND] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1198), - [anon_sym_LT] = ACTIONS(1196), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_DOT_DOT] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_yield] = ACTIONS(1198), - [anon_sym_move] = ACTIONS(1198), - [sym_integer_literal] = ACTIONS(1196), - [aux_sym_string_literal_token1] = ACTIONS(1196), - [sym_char_literal] = ACTIONS(1196), - [anon_sym_true] = ACTIONS(1198), - [anon_sym_false] = ACTIONS(1198), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1198), - [sym_super] = ACTIONS(1198), - [sym_crate] = ACTIONS(1198), - [sym_metavariable] = ACTIONS(1196), - [sym_raw_string_literal] = ACTIONS(1196), - [sym_float_literal] = ACTIONS(1196), - [sym_block_comment] = ACTIONS(3), - }, - [276] = { - [ts_builtin_sym_end] = ACTIONS(1200), - [sym_identifier] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1200), - [anon_sym_macro_rules_BANG] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1200), - [anon_sym_RBRACE] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1200), - [anon_sym_u8] = ACTIONS(1202), - [anon_sym_i8] = ACTIONS(1202), - [anon_sym_u16] = ACTIONS(1202), - [anon_sym_i16] = ACTIONS(1202), - [anon_sym_u32] = ACTIONS(1202), - [anon_sym_i32] = ACTIONS(1202), - [anon_sym_u64] = ACTIONS(1202), - [anon_sym_i64] = ACTIONS(1202), - [anon_sym_u128] = ACTIONS(1202), - [anon_sym_i128] = ACTIONS(1202), - [anon_sym_isize] = ACTIONS(1202), - [anon_sym_usize] = ACTIONS(1202), - [anon_sym_f32] = ACTIONS(1202), - [anon_sym_f64] = ACTIONS(1202), - [anon_sym_bool] = ACTIONS(1202), - [anon_sym_str] = ACTIONS(1202), - [anon_sym_char] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_async] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_const] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), - [anon_sym_default] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1202), - [anon_sym_fn] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1202), - [anon_sym_impl] = ACTIONS(1202), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_loop] = ACTIONS(1202), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_mod] = ACTIONS(1202), - [anon_sym_pub] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_struct] = ACTIONS(1202), - [anon_sym_trait] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_union] = ACTIONS(1202), - [anon_sym_unsafe] = ACTIONS(1202), - [anon_sym_use] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1202), - [anon_sym_POUND] = ACTIONS(1200), - [anon_sym_BANG] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1202), - [anon_sym_LT] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(1200), - [anon_sym_AMP] = ACTIONS(1200), - [anon_sym_DOT_DOT] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PIPE] = ACTIONS(1200), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_move] = ACTIONS(1202), - [sym_integer_literal] = ACTIONS(1200), - [aux_sym_string_literal_token1] = ACTIONS(1200), - [sym_char_literal] = ACTIONS(1200), - [anon_sym_true] = ACTIONS(1202), - [anon_sym_false] = ACTIONS(1202), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1202), - [sym_super] = ACTIONS(1202), - [sym_crate] = ACTIONS(1202), - [sym_metavariable] = ACTIONS(1200), - [sym_raw_string_literal] = ACTIONS(1200), - [sym_float_literal] = ACTIONS(1200), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [277] = { + [274] = { [ts_builtin_sym_end] = ACTIONS(1204), [sym_identifier] = ACTIONS(1206), [anon_sym_SEMI] = ACTIONS(1204), @@ -43087,7 +42898,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1204), [sym_block_comment] = ACTIONS(3), }, - [278] = { + [275] = { + [sym__token_pattern] = STATE(245), + [sym_token_tree_pattern] = STATE(245), + [sym_token_binding_pattern] = STATE(245), + [sym_token_repetition_pattern] = STATE(245), + [sym__never_special_token] = STATE(245), + [sym__literal] = STATE(245), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(245), + [sym_identifier] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_RBRACK] = ACTIONS(1154), + [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_u8] = ACTIONS(1150), + [anon_sym_i8] = ACTIONS(1150), + [anon_sym_u16] = ACTIONS(1150), + [anon_sym_i16] = ACTIONS(1150), + [anon_sym_u32] = ACTIONS(1150), + [anon_sym_i32] = ACTIONS(1150), + [anon_sym_u64] = ACTIONS(1150), + [anon_sym_i64] = ACTIONS(1150), + [anon_sym_u128] = ACTIONS(1150), + [anon_sym_i128] = ACTIONS(1150), + [anon_sym_isize] = ACTIONS(1150), + [anon_sym_usize] = ACTIONS(1150), + [anon_sym_f32] = ACTIONS(1150), + [anon_sym_f64] = ACTIONS(1150), + [anon_sym_bool] = ACTIONS(1150), + [anon_sym_str] = ACTIONS(1150), + [anon_sym_char] = ACTIONS(1150), + [aux_sym__never_special_token_token1] = ACTIONS(1150), + [anon_sym_SQUOTE] = ACTIONS(1150), + [anon_sym_as] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_fn] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_impl] = ACTIONS(1150), + [anon_sym_let] = ACTIONS(1150), + [anon_sym_loop] = ACTIONS(1150), + [anon_sym_match] = ACTIONS(1150), + [anon_sym_mod] = ACTIONS(1150), + [anon_sym_pub] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_trait] = ACTIONS(1150), + [anon_sym_type] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_unsafe] = ACTIONS(1150), + [anon_sym_use] = ACTIONS(1150), + [anon_sym_where] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [sym_mutable_specifier] = ACTIONS(1150), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1168), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), + [sym_block_comment] = ACTIONS(3), + }, + [276] = { [ts_builtin_sym_end] = ACTIONS(1208), [sym_identifier] = ACTIONS(1210), [anon_sym_SEMI] = ACTIONS(1208), @@ -43164,7 +43052,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1208), [sym_block_comment] = ACTIONS(3), }, - [279] = { + [277] = { [ts_builtin_sym_end] = ACTIONS(1212), [sym_identifier] = ACTIONS(1214), [anon_sym_SEMI] = ACTIONS(1212), @@ -43241,7 +43129,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1212), [sym_block_comment] = ACTIONS(3), }, - [280] = { + [278] = { [ts_builtin_sym_end] = ACTIONS(1216), [sym_identifier] = ACTIONS(1218), [anon_sym_SEMI] = ACTIONS(1216), @@ -43318,1325 +43206,1793 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1216), [sym_block_comment] = ACTIONS(3), }, + [279] = { + [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), + }, + [280] = { + [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), + }, [281] = { - [sym_delim_token_tree] = STATE(281), - [sym__delim_tokens] = STATE(281), - [sym__non_delim_token] = STATE(281), - [sym__literal] = STATE(281), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(281), - [sym_identifier] = ACTIONS(1220), - [anon_sym_LPAREN] = ACTIONS(1223), - [anon_sym_RPAREN] = ACTIONS(1226), + [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(1226), - [anon_sym_LBRACK] = ACTIONS(1231), - [anon_sym_RBRACK] = ACTIONS(1226), - [anon_sym_DOLLAR] = ACTIONS(1220), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(1220), - [anon_sym_SQUOTE] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(1220), - [anon_sym_async] = ACTIONS(1220), - [anon_sym_await] = 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_where] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [sym_mutable_specifier] = ACTIONS(1220), - [sym_integer_literal] = ACTIONS(1234), - [aux_sym_string_literal_token1] = ACTIONS(1237), - [sym_char_literal] = ACTIONS(1234), - [anon_sym_true] = ACTIONS(1240), - [anon_sym_false] = ACTIONS(1240), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(1220), - [sym_super] = ACTIONS(1220), - [sym_crate] = ACTIONS(1220), - [sym_metavariable] = ACTIONS(1243), - [sym_raw_string_literal] = ACTIONS(1234), - [sym_float_literal] = ACTIONS(1234), + [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), }, [282] = { - [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(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), }, [283] = { - [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(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), }, [284] = { - [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(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), }, [285] = { - [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(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), }, [286] = { - [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(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), }, [287] = { - [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(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), }, [288] = { - [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(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), }, [289] = { - [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(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), }, [290] = { - [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(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), }, [291] = { - [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(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), }, [292] = { - [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(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), }, [293] = { - [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(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), }, [294] = { - [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(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), }, [295] = { - [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(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), }, [296] = { - [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(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), }, [297] = { - [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(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), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(1310), + [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), + }, + [299] = { + [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), + }, + [300] = { + [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), + }, + [301] = { + [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), + }, + [302] = { + [sym_token_tree] = STATE(302), + [sym_token_repetition] = STATE(302), + [sym__never_special_token] = STATE(302), + [sym__literal] = STATE(302), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_repeat1] = STATE(302), [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_LPAREN] = ACTIONS(1315), + [anon_sym_RPAREN] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1323), + [anon_sym_RBRACK] = ACTIONS(1318), + [anon_sym_DOLLAR] = ACTIONS(1326), [anon_sym_u8] = ACTIONS(1312), [anon_sym_i8] = ACTIONS(1312), [anon_sym_u16] = ACTIONS(1312), @@ -44654,8 +45010,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1312), [anon_sym_str] = ACTIONS(1312), [anon_sym_char] = ACTIONS(1312), + [aux_sym__never_special_token_token1] = ACTIONS(1312), [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_as] = ACTIONS(1312), [anon_sym_async] = ACTIONS(1312), + [anon_sym_await] = ACTIONS(1312), [anon_sym_break] = ACTIONS(1312), [anon_sym_const] = ACTIONS(1312), [anon_sym_continue] = ACTIONS(1312), @@ -44678,4868 +45037,4474 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1312), [anon_sym_unsafe] = ACTIONS(1312), [anon_sym_use] = ACTIONS(1312), + [anon_sym_where] = 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_mutable_specifier] = ACTIONS(1312), + [sym_integer_literal] = ACTIONS(1329), + [aux_sym_string_literal_token1] = ACTIONS(1332), + [sym_char_literal] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1335), + [anon_sym_false] = ACTIONS(1335), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(1312), [sym_super] = ACTIONS(1312), [sym_crate] = ACTIONS(1312), - [sym_metavariable] = ACTIONS(1310), - [sym_raw_string_literal] = ACTIONS(1310), - [sym_float_literal] = ACTIONS(1310), - [sym_block_comment] = ACTIONS(3), - }, - [299] = { - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_identifier] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_macro_rules_BANG] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_LBRACK] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_u8] = ACTIONS(1316), - [anon_sym_i8] = ACTIONS(1316), - [anon_sym_u16] = ACTIONS(1316), - [anon_sym_i16] = ACTIONS(1316), - [anon_sym_u32] = ACTIONS(1316), - [anon_sym_i32] = ACTIONS(1316), - [anon_sym_u64] = ACTIONS(1316), - [anon_sym_i64] = ACTIONS(1316), - [anon_sym_u128] = ACTIONS(1316), - [anon_sym_i128] = ACTIONS(1316), - [anon_sym_isize] = ACTIONS(1316), - [anon_sym_usize] = ACTIONS(1316), - [anon_sym_f32] = ACTIONS(1316), - [anon_sym_f64] = ACTIONS(1316), - [anon_sym_bool] = ACTIONS(1316), - [anon_sym_str] = ACTIONS(1316), - [anon_sym_char] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_async] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_fn] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_impl] = ACTIONS(1316), - [anon_sym_let] = ACTIONS(1316), - [anon_sym_loop] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1316), - [anon_sym_mod] = ACTIONS(1316), - [anon_sym_pub] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_trait] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_unsafe] = ACTIONS(1316), - [anon_sym_use] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_COLON_COLON] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_DOT_DOT] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_yield] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1314), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1316), - [sym_super] = ACTIONS(1316), - [sym_crate] = ACTIONS(1316), - [sym_metavariable] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), - [sym_block_comment] = ACTIONS(3), - }, - [300] = { - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_macro_rules_BANG] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_fn] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_impl] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_loop] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_mod] = ACTIONS(1320), - [anon_sym_pub] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_trait] = ACTIONS(1320), - [anon_sym_type] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_unsafe] = ACTIONS(1320), - [anon_sym_use] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_COLON_COLON] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1318), - [anon_sym_yield] = ACTIONS(1320), - [anon_sym_move] = ACTIONS(1320), - [sym_integer_literal] = ACTIONS(1318), - [aux_sym_string_literal_token1] = ACTIONS(1318), - [sym_char_literal] = ACTIONS(1318), - [anon_sym_true] = ACTIONS(1320), - [anon_sym_false] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1320), - [sym_super] = ACTIONS(1320), - [sym_crate] = ACTIONS(1320), - [sym_metavariable] = ACTIONS(1318), - [sym_raw_string_literal] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1318), - [sym_block_comment] = ACTIONS(3), - }, - [301] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_macro_rules_BANG] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_u8] = ACTIONS(1324), - [anon_sym_i8] = ACTIONS(1324), - [anon_sym_u16] = ACTIONS(1324), - [anon_sym_i16] = ACTIONS(1324), - [anon_sym_u32] = ACTIONS(1324), - [anon_sym_i32] = ACTIONS(1324), - [anon_sym_u64] = ACTIONS(1324), - [anon_sym_i64] = ACTIONS(1324), - [anon_sym_u128] = ACTIONS(1324), - [anon_sym_i128] = ACTIONS(1324), - [anon_sym_isize] = ACTIONS(1324), - [anon_sym_usize] = ACTIONS(1324), - [anon_sym_f32] = ACTIONS(1324), - [anon_sym_f64] = ACTIONS(1324), - [anon_sym_bool] = ACTIONS(1324), - [anon_sym_str] = ACTIONS(1324), - [anon_sym_char] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_async] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_fn] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_impl] = ACTIONS(1324), - [anon_sym_let] = ACTIONS(1324), - [anon_sym_loop] = ACTIONS(1324), - [anon_sym_match] = ACTIONS(1324), - [anon_sym_mod] = ACTIONS(1324), - [anon_sym_pub] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_trait] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_unsafe] = ACTIONS(1324), - [anon_sym_use] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_COLON_COLON] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_yield] = ACTIONS(1324), - [anon_sym_move] = ACTIONS(1324), - [sym_integer_literal] = ACTIONS(1322), - [aux_sym_string_literal_token1] = ACTIONS(1322), - [sym_char_literal] = ACTIONS(1322), - [anon_sym_true] = ACTIONS(1324), - [anon_sym_false] = ACTIONS(1324), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1324), - [sym_super] = ACTIONS(1324), - [sym_crate] = ACTIONS(1324), - [sym_metavariable] = ACTIONS(1322), - [sym_raw_string_literal] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1322), - [sym_block_comment] = ACTIONS(3), - }, - [302] = { - [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), + [sym_metavariable] = ACTIONS(1338), + [sym_raw_string_literal] = ACTIONS(1329), + [sym_float_literal] = ACTIONS(1329), [sym_block_comment] = ACTIONS(3), }, [303] = { - [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), + [sym__never_special_token] = STATE(303), + [sym_delim_token_tree] = STATE(303), + [sym__delim_tokens] = STATE(303), + [sym__non_delim_token] = STATE(303), + [sym__literal] = STATE(303), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1344), + [anon_sym_RPAREN] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1352), + [anon_sym_RBRACK] = ACTIONS(1347), + [anon_sym_DOLLAR] = ACTIONS(1355), + [anon_sym_u8] = ACTIONS(1341), + [anon_sym_i8] = ACTIONS(1341), + [anon_sym_u16] = ACTIONS(1341), + [anon_sym_i16] = ACTIONS(1341), + [anon_sym_u32] = ACTIONS(1341), + [anon_sym_i32] = ACTIONS(1341), + [anon_sym_u64] = ACTIONS(1341), + [anon_sym_i64] = ACTIONS(1341), + [anon_sym_u128] = ACTIONS(1341), + [anon_sym_i128] = ACTIONS(1341), + [anon_sym_isize] = ACTIONS(1341), + [anon_sym_usize] = ACTIONS(1341), + [anon_sym_f32] = ACTIONS(1341), + [anon_sym_f64] = ACTIONS(1341), + [anon_sym_bool] = ACTIONS(1341), + [anon_sym_str] = ACTIONS(1341), + [anon_sym_char] = ACTIONS(1341), + [aux_sym__never_special_token_token1] = ACTIONS(1341), + [anon_sym_SQUOTE] = ACTIONS(1341), + [anon_sym_as] = ACTIONS(1341), + [anon_sym_async] = ACTIONS(1341), + [anon_sym_await] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_default] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_fn] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_let] = ACTIONS(1341), + [anon_sym_loop] = ACTIONS(1341), + [anon_sym_match] = ACTIONS(1341), + [anon_sym_mod] = ACTIONS(1341), + [anon_sym_pub] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_static] = ACTIONS(1341), + [anon_sym_struct] = ACTIONS(1341), + [anon_sym_trait] = ACTIONS(1341), + [anon_sym_type] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1341), + [anon_sym_use] = ACTIONS(1341), + [anon_sym_where] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1341), + [sym_integer_literal] = ACTIONS(1358), + [aux_sym_string_literal_token1] = ACTIONS(1361), + [sym_char_literal] = ACTIONS(1358), + [anon_sym_true] = ACTIONS(1364), + [anon_sym_false] = ACTIONS(1364), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(1341), + [sym_super] = ACTIONS(1341), + [sym_crate] = ACTIONS(1341), + [sym_raw_string_literal] = ACTIONS(1358), + [sym_float_literal] = ACTIONS(1358), [sym_block_comment] = ACTIONS(3), }, [304] = { - [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(1367), + [sym_identifier] = ACTIONS(1369), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_macro_rules_BANG] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_u8] = ACTIONS(1369), + [anon_sym_i8] = ACTIONS(1369), + [anon_sym_u16] = ACTIONS(1369), + [anon_sym_i16] = ACTIONS(1369), + [anon_sym_u32] = ACTIONS(1369), + [anon_sym_i32] = ACTIONS(1369), + [anon_sym_u64] = ACTIONS(1369), + [anon_sym_i64] = ACTIONS(1369), + [anon_sym_u128] = ACTIONS(1369), + [anon_sym_i128] = ACTIONS(1369), + [anon_sym_isize] = ACTIONS(1369), + [anon_sym_usize] = ACTIONS(1369), + [anon_sym_f32] = ACTIONS(1369), + [anon_sym_f64] = ACTIONS(1369), + [anon_sym_bool] = ACTIONS(1369), + [anon_sym_str] = ACTIONS(1369), + [anon_sym_char] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_async] = ACTIONS(1369), + [anon_sym_break] = ACTIONS(1369), + [anon_sym_const] = ACTIONS(1369), + [anon_sym_continue] = ACTIONS(1369), + [anon_sym_default] = ACTIONS(1369), + [anon_sym_enum] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1369), + [anon_sym_for] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1369), + [anon_sym_impl] = ACTIONS(1369), + [anon_sym_let] = ACTIONS(1369), + [anon_sym_loop] = ACTIONS(1369), + [anon_sym_match] = ACTIONS(1369), + [anon_sym_mod] = ACTIONS(1369), + [anon_sym_pub] = ACTIONS(1369), + [anon_sym_return] = ACTIONS(1369), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_struct] = ACTIONS(1369), + [anon_sym_trait] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1369), + [anon_sym_union] = ACTIONS(1369), + [anon_sym_unsafe] = ACTIONS(1369), + [anon_sym_use] = ACTIONS(1369), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_POUND] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_extern] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1367), + [anon_sym_COLON_COLON] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_yield] = ACTIONS(1369), + [anon_sym_move] = ACTIONS(1369), + [sym_integer_literal] = ACTIONS(1367), + [aux_sym_string_literal_token1] = ACTIONS(1367), + [sym_char_literal] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1369), + [anon_sym_false] = ACTIONS(1369), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1369), + [sym_super] = ACTIONS(1369), + [sym_crate] = ACTIONS(1369), + [sym_metavariable] = ACTIONS(1367), + [sym_raw_string_literal] = ACTIONS(1367), + [sym_float_literal] = ACTIONS(1367), [sym_block_comment] = ACTIONS(3), }, [305] = { - [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(1371), + [sym_identifier] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_macro_rules_BANG] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_RBRACE] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_u8] = ACTIONS(1373), + [anon_sym_i8] = ACTIONS(1373), + [anon_sym_u16] = ACTIONS(1373), + [anon_sym_i16] = ACTIONS(1373), + [anon_sym_u32] = ACTIONS(1373), + [anon_sym_i32] = ACTIONS(1373), + [anon_sym_u64] = ACTIONS(1373), + [anon_sym_i64] = ACTIONS(1373), + [anon_sym_u128] = ACTIONS(1373), + [anon_sym_i128] = ACTIONS(1373), + [anon_sym_isize] = ACTIONS(1373), + [anon_sym_usize] = ACTIONS(1373), + [anon_sym_f32] = ACTIONS(1373), + [anon_sym_f64] = ACTIONS(1373), + [anon_sym_bool] = ACTIONS(1373), + [anon_sym_str] = ACTIONS(1373), + [anon_sym_char] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [anon_sym_async] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_default] = ACTIONS(1373), + [anon_sym_enum] = ACTIONS(1373), + [anon_sym_fn] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_impl] = ACTIONS(1373), + [anon_sym_let] = ACTIONS(1373), + [anon_sym_loop] = ACTIONS(1373), + [anon_sym_match] = ACTIONS(1373), + [anon_sym_mod] = ACTIONS(1373), + [anon_sym_pub] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_struct] = ACTIONS(1373), + [anon_sym_trait] = ACTIONS(1373), + [anon_sym_type] = ACTIONS(1373), + [anon_sym_union] = ACTIONS(1373), + [anon_sym_unsafe] = ACTIONS(1373), + [anon_sym_use] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_POUND] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_extern] = ACTIONS(1373), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_COLON_COLON] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_PIPE] = ACTIONS(1371), + [anon_sym_yield] = ACTIONS(1373), + [anon_sym_move] = ACTIONS(1373), + [sym_integer_literal] = ACTIONS(1371), + [aux_sym_string_literal_token1] = ACTIONS(1371), + [sym_char_literal] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1373), + [anon_sym_false] = ACTIONS(1373), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1373), + [sym_super] = ACTIONS(1373), + [sym_crate] = ACTIONS(1373), + [sym_metavariable] = ACTIONS(1371), + [sym_raw_string_literal] = ACTIONS(1371), + [sym_float_literal] = ACTIONS(1371), [sym_block_comment] = ACTIONS(3), }, [306] = { - [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(1375), + [sym_identifier] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_macro_rules_BANG] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_u8] = ACTIONS(1377), + [anon_sym_i8] = ACTIONS(1377), + [anon_sym_u16] = ACTIONS(1377), + [anon_sym_i16] = ACTIONS(1377), + [anon_sym_u32] = ACTIONS(1377), + [anon_sym_i32] = ACTIONS(1377), + [anon_sym_u64] = ACTIONS(1377), + [anon_sym_i64] = ACTIONS(1377), + [anon_sym_u128] = ACTIONS(1377), + [anon_sym_i128] = ACTIONS(1377), + [anon_sym_isize] = ACTIONS(1377), + [anon_sym_usize] = ACTIONS(1377), + [anon_sym_f32] = ACTIONS(1377), + [anon_sym_f64] = ACTIONS(1377), + [anon_sym_bool] = ACTIONS(1377), + [anon_sym_str] = ACTIONS(1377), + [anon_sym_char] = ACTIONS(1377), + [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_async] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1377), + [anon_sym_enum] = ACTIONS(1377), + [anon_sym_fn] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_impl] = ACTIONS(1377), + [anon_sym_let] = ACTIONS(1377), + [anon_sym_loop] = ACTIONS(1377), + [anon_sym_match] = ACTIONS(1377), + [anon_sym_mod] = ACTIONS(1377), + [anon_sym_pub] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_struct] = ACTIONS(1377), + [anon_sym_trait] = ACTIONS(1377), + [anon_sym_type] = ACTIONS(1377), + [anon_sym_union] = ACTIONS(1377), + [anon_sym_unsafe] = ACTIONS(1377), + [anon_sym_use] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_POUND] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_COLON_COLON] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_DOT_DOT] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(1377), + [anon_sym_move] = ACTIONS(1377), + [sym_integer_literal] = ACTIONS(1375), + [aux_sym_string_literal_token1] = ACTIONS(1375), + [sym_char_literal] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1377), + [anon_sym_false] = ACTIONS(1377), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1377), + [sym_super] = ACTIONS(1377), + [sym_crate] = ACTIONS(1377), + [sym_metavariable] = ACTIONS(1375), + [sym_raw_string_literal] = ACTIONS(1375), + [sym_float_literal] = ACTIONS(1375), [sym_block_comment] = ACTIONS(3), }, [307] = { - [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(1379), + [sym_identifier] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_macro_rules_BANG] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_RBRACE] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1381), + [anon_sym_i8] = ACTIONS(1381), + [anon_sym_u16] = ACTIONS(1381), + [anon_sym_i16] = ACTIONS(1381), + [anon_sym_u32] = ACTIONS(1381), + [anon_sym_i32] = ACTIONS(1381), + [anon_sym_u64] = ACTIONS(1381), + [anon_sym_i64] = ACTIONS(1381), + [anon_sym_u128] = ACTIONS(1381), + [anon_sym_i128] = ACTIONS(1381), + [anon_sym_isize] = ACTIONS(1381), + [anon_sym_usize] = ACTIONS(1381), + [anon_sym_f32] = ACTIONS(1381), + [anon_sym_f64] = ACTIONS(1381), + [anon_sym_bool] = ACTIONS(1381), + [anon_sym_str] = ACTIONS(1381), + [anon_sym_char] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1381), + [anon_sym_async] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1381), + [anon_sym_enum] = ACTIONS(1381), + [anon_sym_fn] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_impl] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_mod] = ACTIONS(1381), + [anon_sym_pub] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_struct] = ACTIONS(1381), + [anon_sym_trait] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_union] = ACTIONS(1381), + [anon_sym_unsafe] = ACTIONS(1381), + [anon_sym_use] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_COLON_COLON] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_DOT_DOT] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1379), + [anon_sym_yield] = ACTIONS(1381), + [anon_sym_move] = ACTIONS(1381), + [sym_integer_literal] = ACTIONS(1379), + [aux_sym_string_literal_token1] = ACTIONS(1379), + [sym_char_literal] = ACTIONS(1379), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1381), + [sym_super] = ACTIONS(1381), + [sym_crate] = ACTIONS(1381), + [sym_metavariable] = ACTIONS(1379), + [sym_raw_string_literal] = ACTIONS(1379), + [sym_float_literal] = ACTIONS(1379), [sym_block_comment] = ACTIONS(3), }, [308] = { - [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(1383), + [sym_identifier] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_macro_rules_BANG] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_u8] = ACTIONS(1385), + [anon_sym_i8] = ACTIONS(1385), + [anon_sym_u16] = ACTIONS(1385), + [anon_sym_i16] = ACTIONS(1385), + [anon_sym_u32] = ACTIONS(1385), + [anon_sym_i32] = ACTIONS(1385), + [anon_sym_u64] = ACTIONS(1385), + [anon_sym_i64] = ACTIONS(1385), + [anon_sym_u128] = ACTIONS(1385), + [anon_sym_i128] = ACTIONS(1385), + [anon_sym_isize] = ACTIONS(1385), + [anon_sym_usize] = ACTIONS(1385), + [anon_sym_f32] = ACTIONS(1385), + [anon_sym_f64] = ACTIONS(1385), + [anon_sym_bool] = ACTIONS(1385), + [anon_sym_str] = ACTIONS(1385), + [anon_sym_char] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1385), + [anon_sym_async] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1385), + [anon_sym_enum] = ACTIONS(1385), + [anon_sym_fn] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_impl] = ACTIONS(1385), + [anon_sym_let] = ACTIONS(1385), + [anon_sym_loop] = ACTIONS(1385), + [anon_sym_match] = ACTIONS(1385), + [anon_sym_mod] = ACTIONS(1385), + [anon_sym_pub] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_struct] = ACTIONS(1385), + [anon_sym_trait] = ACTIONS(1385), + [anon_sym_type] = ACTIONS(1385), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_unsafe] = ACTIONS(1385), + [anon_sym_use] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_POUND] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_extern] = ACTIONS(1385), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_COLON_COLON] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_yield] = ACTIONS(1385), + [anon_sym_move] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1383), + [aux_sym_string_literal_token1] = ACTIONS(1383), + [sym_char_literal] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1385), + [anon_sym_false] = ACTIONS(1385), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1385), + [sym_super] = ACTIONS(1385), + [sym_crate] = ACTIONS(1385), + [sym_metavariable] = ACTIONS(1383), + [sym_raw_string_literal] = ACTIONS(1383), + [sym_float_literal] = ACTIONS(1383), [sym_block_comment] = ACTIONS(3), }, [309] = { - [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(1387), + [sym_identifier] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_macro_rules_BANG] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_u8] = ACTIONS(1389), + [anon_sym_i8] = ACTIONS(1389), + [anon_sym_u16] = ACTIONS(1389), + [anon_sym_i16] = ACTIONS(1389), + [anon_sym_u32] = ACTIONS(1389), + [anon_sym_i32] = ACTIONS(1389), + [anon_sym_u64] = ACTIONS(1389), + [anon_sym_i64] = ACTIONS(1389), + [anon_sym_u128] = ACTIONS(1389), + [anon_sym_i128] = ACTIONS(1389), + [anon_sym_isize] = ACTIONS(1389), + [anon_sym_usize] = ACTIONS(1389), + [anon_sym_f32] = ACTIONS(1389), + [anon_sym_f64] = ACTIONS(1389), + [anon_sym_bool] = ACTIONS(1389), + [anon_sym_str] = ACTIONS(1389), + [anon_sym_char] = ACTIONS(1389), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_async] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_enum] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_impl] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_loop] = ACTIONS(1389), + [anon_sym_match] = ACTIONS(1389), + [anon_sym_mod] = ACTIONS(1389), + [anon_sym_pub] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_struct] = ACTIONS(1389), + [anon_sym_trait] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_union] = ACTIONS(1389), + [anon_sym_unsafe] = ACTIONS(1389), + [anon_sym_use] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_POUND] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(1387), + [anon_sym_COLON_COLON] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_yield] = ACTIONS(1389), + [anon_sym_move] = ACTIONS(1389), + [sym_integer_literal] = ACTIONS(1387), + [aux_sym_string_literal_token1] = ACTIONS(1387), + [sym_char_literal] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1389), + [anon_sym_false] = ACTIONS(1389), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1389), + [sym_super] = ACTIONS(1389), + [sym_crate] = ACTIONS(1389), + [sym_metavariable] = ACTIONS(1387), + [sym_raw_string_literal] = ACTIONS(1387), + [sym_float_literal] = ACTIONS(1387), [sym_block_comment] = ACTIONS(3), }, [310] = { - [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(1391), + [sym_identifier] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_macro_rules_BANG] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_u8] = ACTIONS(1393), + [anon_sym_i8] = ACTIONS(1393), + [anon_sym_u16] = ACTIONS(1393), + [anon_sym_i16] = ACTIONS(1393), + [anon_sym_u32] = ACTIONS(1393), + [anon_sym_i32] = ACTIONS(1393), + [anon_sym_u64] = ACTIONS(1393), + [anon_sym_i64] = ACTIONS(1393), + [anon_sym_u128] = ACTIONS(1393), + [anon_sym_i128] = ACTIONS(1393), + [anon_sym_isize] = ACTIONS(1393), + [anon_sym_usize] = ACTIONS(1393), + [anon_sym_f32] = ACTIONS(1393), + [anon_sym_f64] = ACTIONS(1393), + [anon_sym_bool] = ACTIONS(1393), + [anon_sym_str] = ACTIONS(1393), + [anon_sym_char] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1393), + [anon_sym_async] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_impl] = ACTIONS(1393), + [anon_sym_let] = ACTIONS(1393), + [anon_sym_loop] = ACTIONS(1393), + [anon_sym_match] = ACTIONS(1393), + [anon_sym_mod] = ACTIONS(1393), + [anon_sym_pub] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_trait] = ACTIONS(1393), + [anon_sym_type] = ACTIONS(1393), + [anon_sym_union] = ACTIONS(1393), + [anon_sym_unsafe] = ACTIONS(1393), + [anon_sym_use] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_POUND] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_extern] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1391), + [anon_sym_COLON_COLON] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_DOT_DOT] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_yield] = ACTIONS(1393), + [anon_sym_move] = ACTIONS(1393), + [sym_integer_literal] = ACTIONS(1391), + [aux_sym_string_literal_token1] = ACTIONS(1391), + [sym_char_literal] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1393), + [anon_sym_false] = ACTIONS(1393), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1393), + [sym_super] = ACTIONS(1393), + [sym_crate] = ACTIONS(1393), + [sym_metavariable] = ACTIONS(1391), + [sym_raw_string_literal] = ACTIONS(1391), + [sym_float_literal] = ACTIONS(1391), [sym_block_comment] = ACTIONS(3), }, [311] = { - [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(1395), + [sym_identifier] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_macro_rules_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_RBRACE] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_u8] = ACTIONS(1397), + [anon_sym_i8] = ACTIONS(1397), + [anon_sym_u16] = ACTIONS(1397), + [anon_sym_i16] = ACTIONS(1397), + [anon_sym_u32] = ACTIONS(1397), + [anon_sym_i32] = ACTIONS(1397), + [anon_sym_u64] = ACTIONS(1397), + [anon_sym_i64] = ACTIONS(1397), + [anon_sym_u128] = ACTIONS(1397), + [anon_sym_i128] = ACTIONS(1397), + [anon_sym_isize] = ACTIONS(1397), + [anon_sym_usize] = ACTIONS(1397), + [anon_sym_f32] = ACTIONS(1397), + [anon_sym_f64] = ACTIONS(1397), + [anon_sym_bool] = ACTIONS(1397), + [anon_sym_str] = ACTIONS(1397), + [anon_sym_char] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [anon_sym_async] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1397), + [anon_sym_fn] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_impl] = ACTIONS(1397), + [anon_sym_let] = ACTIONS(1397), + [anon_sym_loop] = ACTIONS(1397), + [anon_sym_match] = ACTIONS(1397), + [anon_sym_mod] = ACTIONS(1397), + [anon_sym_pub] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_struct] = ACTIONS(1397), + [anon_sym_trait] = ACTIONS(1397), + [anon_sym_type] = ACTIONS(1397), + [anon_sym_union] = ACTIONS(1397), + [anon_sym_unsafe] = ACTIONS(1397), + [anon_sym_use] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_POUND] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_extern] = ACTIONS(1397), + [anon_sym_LT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_DOT_DOT] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_yield] = ACTIONS(1397), + [anon_sym_move] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1395), + [aux_sym_string_literal_token1] = ACTIONS(1395), + [sym_char_literal] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1397), + [sym_super] = ACTIONS(1397), + [sym_crate] = ACTIONS(1397), + [sym_metavariable] = ACTIONS(1395), + [sym_raw_string_literal] = ACTIONS(1395), + [sym_float_literal] = ACTIONS(1395), [sym_block_comment] = ACTIONS(3), }, [312] = { - [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(1399), + [sym_identifier] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_macro_rules_BANG] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_u8] = ACTIONS(1401), + [anon_sym_i8] = ACTIONS(1401), + [anon_sym_u16] = ACTIONS(1401), + [anon_sym_i16] = ACTIONS(1401), + [anon_sym_u32] = ACTIONS(1401), + [anon_sym_i32] = ACTIONS(1401), + [anon_sym_u64] = ACTIONS(1401), + [anon_sym_i64] = ACTIONS(1401), + [anon_sym_u128] = ACTIONS(1401), + [anon_sym_i128] = ACTIONS(1401), + [anon_sym_isize] = ACTIONS(1401), + [anon_sym_usize] = ACTIONS(1401), + [anon_sym_f32] = ACTIONS(1401), + [anon_sym_f64] = ACTIONS(1401), + [anon_sym_bool] = ACTIONS(1401), + [anon_sym_str] = ACTIONS(1401), + [anon_sym_char] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_enum] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_impl] = ACTIONS(1401), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_loop] = ACTIONS(1401), + [anon_sym_match] = ACTIONS(1401), + [anon_sym_mod] = ACTIONS(1401), + [anon_sym_pub] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_struct] = ACTIONS(1401), + [anon_sym_trait] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_unsafe] = ACTIONS(1401), + [anon_sym_use] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_POUND] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_extern] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_COLON_COLON] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1401), + [anon_sym_move] = ACTIONS(1401), + [sym_integer_literal] = ACTIONS(1399), + [aux_sym_string_literal_token1] = ACTIONS(1399), + [sym_char_literal] = ACTIONS(1399), + [anon_sym_true] = ACTIONS(1401), + [anon_sym_false] = ACTIONS(1401), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1401), + [sym_super] = ACTIONS(1401), + [sym_crate] = ACTIONS(1401), + [sym_metavariable] = ACTIONS(1399), + [sym_raw_string_literal] = ACTIONS(1399), + [sym_float_literal] = ACTIONS(1399), [sym_block_comment] = ACTIONS(3), }, [313] = { - [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(1403), + [sym_identifier] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_macro_rules_BANG] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_u8] = ACTIONS(1405), + [anon_sym_i8] = ACTIONS(1405), + [anon_sym_u16] = ACTIONS(1405), + [anon_sym_i16] = ACTIONS(1405), + [anon_sym_u32] = ACTIONS(1405), + [anon_sym_i32] = ACTIONS(1405), + [anon_sym_u64] = ACTIONS(1405), + [anon_sym_i64] = ACTIONS(1405), + [anon_sym_u128] = ACTIONS(1405), + [anon_sym_i128] = ACTIONS(1405), + [anon_sym_isize] = ACTIONS(1405), + [anon_sym_usize] = ACTIONS(1405), + [anon_sym_f32] = ACTIONS(1405), + [anon_sym_f64] = ACTIONS(1405), + [anon_sym_bool] = ACTIONS(1405), + [anon_sym_str] = ACTIONS(1405), + [anon_sym_char] = ACTIONS(1405), + [anon_sym_SQUOTE] = ACTIONS(1405), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_break] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_continue] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1405), + [anon_sym_enum] = ACTIONS(1405), + [anon_sym_fn] = ACTIONS(1405), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_impl] = ACTIONS(1405), + [anon_sym_let] = ACTIONS(1405), + [anon_sym_loop] = ACTIONS(1405), + [anon_sym_match] = ACTIONS(1405), + [anon_sym_mod] = ACTIONS(1405), + [anon_sym_pub] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1405), + [anon_sym_static] = ACTIONS(1405), + [anon_sym_struct] = ACTIONS(1405), + [anon_sym_trait] = ACTIONS(1405), + [anon_sym_type] = ACTIONS(1405), + [anon_sym_union] = ACTIONS(1405), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_use] = ACTIONS(1405), + [anon_sym_while] = ACTIONS(1405), + [anon_sym_POUND] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_extern] = ACTIONS(1405), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_COLON_COLON] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_move] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1403), + [aux_sym_string_literal_token1] = ACTIONS(1403), + [sym_char_literal] = ACTIONS(1403), + [anon_sym_true] = ACTIONS(1405), + [anon_sym_false] = ACTIONS(1405), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1405), + [sym_super] = ACTIONS(1405), + [sym_crate] = ACTIONS(1405), + [sym_metavariable] = ACTIONS(1403), + [sym_raw_string_literal] = ACTIONS(1403), + [sym_float_literal] = ACTIONS(1403), [sym_block_comment] = ACTIONS(3), }, [314] = { - [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(1407), + [sym_identifier] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_macro_rules_BANG] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_u8] = ACTIONS(1409), + [anon_sym_i8] = ACTIONS(1409), + [anon_sym_u16] = ACTIONS(1409), + [anon_sym_i16] = ACTIONS(1409), + [anon_sym_u32] = ACTIONS(1409), + [anon_sym_i32] = ACTIONS(1409), + [anon_sym_u64] = ACTIONS(1409), + [anon_sym_i64] = ACTIONS(1409), + [anon_sym_u128] = ACTIONS(1409), + [anon_sym_i128] = ACTIONS(1409), + [anon_sym_isize] = ACTIONS(1409), + [anon_sym_usize] = ACTIONS(1409), + [anon_sym_f32] = ACTIONS(1409), + [anon_sym_f64] = ACTIONS(1409), + [anon_sym_bool] = ACTIONS(1409), + [anon_sym_str] = ACTIONS(1409), + [anon_sym_char] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [anon_sym_default] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1409), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_impl] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1409), + [anon_sym_loop] = ACTIONS(1409), + [anon_sym_match] = ACTIONS(1409), + [anon_sym_mod] = ACTIONS(1409), + [anon_sym_pub] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_struct] = ACTIONS(1409), + [anon_sym_trait] = ACTIONS(1409), + [anon_sym_type] = ACTIONS(1409), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_unsafe] = ACTIONS(1409), + [anon_sym_use] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_POUND] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1409), + [anon_sym_LT] = ACTIONS(1407), + [anon_sym_COLON_COLON] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1407), + [anon_sym_DOT_DOT] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_PIPE] = ACTIONS(1407), + [anon_sym_yield] = ACTIONS(1409), + [anon_sym_move] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1407), + [aux_sym_string_literal_token1] = ACTIONS(1407), + [sym_char_literal] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1409), + [anon_sym_false] = ACTIONS(1409), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1409), + [sym_super] = ACTIONS(1409), + [sym_crate] = ACTIONS(1409), + [sym_metavariable] = ACTIONS(1407), + [sym_raw_string_literal] = ACTIONS(1407), + [sym_float_literal] = ACTIONS(1407), [sym_block_comment] = ACTIONS(3), }, [315] = { - [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(1411), + [sym_identifier] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_macro_rules_BANG] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1411), + [anon_sym_RBRACE] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_u8] = ACTIONS(1413), + [anon_sym_i8] = ACTIONS(1413), + [anon_sym_u16] = ACTIONS(1413), + [anon_sym_i16] = ACTIONS(1413), + [anon_sym_u32] = ACTIONS(1413), + [anon_sym_i32] = ACTIONS(1413), + [anon_sym_u64] = ACTIONS(1413), + [anon_sym_i64] = ACTIONS(1413), + [anon_sym_u128] = ACTIONS(1413), + [anon_sym_i128] = ACTIONS(1413), + [anon_sym_isize] = ACTIONS(1413), + [anon_sym_usize] = ACTIONS(1413), + [anon_sym_f32] = ACTIONS(1413), + [anon_sym_f64] = ACTIONS(1413), + [anon_sym_bool] = ACTIONS(1413), + [anon_sym_str] = ACTIONS(1413), + [anon_sym_char] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_async] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_default] = ACTIONS(1413), + [anon_sym_enum] = ACTIONS(1413), + [anon_sym_fn] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1413), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_loop] = ACTIONS(1413), + [anon_sym_match] = ACTIONS(1413), + [anon_sym_mod] = ACTIONS(1413), + [anon_sym_pub] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_struct] = ACTIONS(1413), + [anon_sym_trait] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_union] = ACTIONS(1413), + [anon_sym_unsafe] = ACTIONS(1413), + [anon_sym_use] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_POUND] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_extern] = ACTIONS(1413), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_COLON_COLON] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_DOT_DOT] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_move] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1411), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1413), + [sym_super] = ACTIONS(1413), + [sym_crate] = ACTIONS(1413), + [sym_metavariable] = ACTIONS(1411), + [sym_raw_string_literal] = ACTIONS(1411), + [sym_float_literal] = ACTIONS(1411), [sym_block_comment] = ACTIONS(3), }, [316] = { - [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(1415), + [sym_identifier] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_macro_rules_BANG] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_u8] = ACTIONS(1417), + [anon_sym_i8] = ACTIONS(1417), + [anon_sym_u16] = ACTIONS(1417), + [anon_sym_i16] = ACTIONS(1417), + [anon_sym_u32] = ACTIONS(1417), + [anon_sym_i32] = ACTIONS(1417), + [anon_sym_u64] = ACTIONS(1417), + [anon_sym_i64] = ACTIONS(1417), + [anon_sym_u128] = ACTIONS(1417), + [anon_sym_i128] = ACTIONS(1417), + [anon_sym_isize] = ACTIONS(1417), + [anon_sym_usize] = ACTIONS(1417), + [anon_sym_f32] = ACTIONS(1417), + [anon_sym_f64] = ACTIONS(1417), + [anon_sym_bool] = ACTIONS(1417), + [anon_sym_str] = ACTIONS(1417), + [anon_sym_char] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_default] = ACTIONS(1417), + [anon_sym_enum] = ACTIONS(1417), + [anon_sym_fn] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_impl] = ACTIONS(1417), + [anon_sym_let] = ACTIONS(1417), + [anon_sym_loop] = ACTIONS(1417), + [anon_sym_match] = ACTIONS(1417), + [anon_sym_mod] = ACTIONS(1417), + [anon_sym_pub] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_struct] = ACTIONS(1417), + [anon_sym_trait] = ACTIONS(1417), + [anon_sym_type] = ACTIONS(1417), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_unsafe] = ACTIONS(1417), + [anon_sym_use] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_POUND] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_extern] = ACTIONS(1417), + [anon_sym_LT] = ACTIONS(1415), + [anon_sym_COLON_COLON] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_yield] = ACTIONS(1417), + [anon_sym_move] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1415), + [aux_sym_string_literal_token1] = ACTIONS(1415), + [sym_char_literal] = ACTIONS(1415), + [anon_sym_true] = ACTIONS(1417), + [anon_sym_false] = ACTIONS(1417), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1417), + [sym_crate] = ACTIONS(1417), + [sym_metavariable] = ACTIONS(1415), + [sym_raw_string_literal] = ACTIONS(1415), + [sym_float_literal] = ACTIONS(1415), [sym_block_comment] = ACTIONS(3), }, [317] = { - [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(1419), + [sym_identifier] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_macro_rules_BANG] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_u8] = ACTIONS(1421), + [anon_sym_i8] = ACTIONS(1421), + [anon_sym_u16] = ACTIONS(1421), + [anon_sym_i16] = ACTIONS(1421), + [anon_sym_u32] = ACTIONS(1421), + [anon_sym_i32] = ACTIONS(1421), + [anon_sym_u64] = ACTIONS(1421), + [anon_sym_i64] = ACTIONS(1421), + [anon_sym_u128] = ACTIONS(1421), + [anon_sym_i128] = ACTIONS(1421), + [anon_sym_isize] = ACTIONS(1421), + [anon_sym_usize] = ACTIONS(1421), + [anon_sym_f32] = ACTIONS(1421), + [anon_sym_f64] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_str] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [anon_sym_fn] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_impl] = ACTIONS(1421), + [anon_sym_let] = ACTIONS(1421), + [anon_sym_loop] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_mod] = ACTIONS(1421), + [anon_sym_pub] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_struct] = ACTIONS(1421), + [anon_sym_trait] = ACTIONS(1421), + [anon_sym_type] = ACTIONS(1421), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_unsafe] = ACTIONS(1421), + [anon_sym_use] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_COLON_COLON] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_yield] = ACTIONS(1421), + [anon_sym_move] = ACTIONS(1421), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1419), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1421), + [sym_super] = ACTIONS(1421), + [sym_crate] = ACTIONS(1421), + [sym_metavariable] = ACTIONS(1419), + [sym_raw_string_literal] = ACTIONS(1419), + [sym_float_literal] = ACTIONS(1419), [sym_block_comment] = ACTIONS(3), }, [318] = { - [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(1423), + [sym_identifier] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_macro_rules_BANG] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_u8] = ACTIONS(1425), + [anon_sym_i8] = ACTIONS(1425), + [anon_sym_u16] = ACTIONS(1425), + [anon_sym_i16] = ACTIONS(1425), + [anon_sym_u32] = ACTIONS(1425), + [anon_sym_i32] = ACTIONS(1425), + [anon_sym_u64] = ACTIONS(1425), + [anon_sym_i64] = ACTIONS(1425), + [anon_sym_u128] = ACTIONS(1425), + [anon_sym_i128] = ACTIONS(1425), + [anon_sym_isize] = ACTIONS(1425), + [anon_sym_usize] = ACTIONS(1425), + [anon_sym_f32] = ACTIONS(1425), + [anon_sym_f64] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_str] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_SQUOTE] = ACTIONS(1425), + [anon_sym_async] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_default] = ACTIONS(1425), + [anon_sym_enum] = ACTIONS(1425), + [anon_sym_fn] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_impl] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_loop] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_mod] = ACTIONS(1425), + [anon_sym_pub] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_struct] = ACTIONS(1425), + [anon_sym_trait] = ACTIONS(1425), + [anon_sym_type] = ACTIONS(1425), + [anon_sym_union] = ACTIONS(1425), + [anon_sym_unsafe] = ACTIONS(1425), + [anon_sym_use] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_POUND] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym_LT] = ACTIONS(1423), + [anon_sym_COLON_COLON] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PIPE] = ACTIONS(1423), + [anon_sym_yield] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1423), + [aux_sym_string_literal_token1] = ACTIONS(1423), + [sym_char_literal] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1425), + [sym_super] = ACTIONS(1425), + [sym_crate] = ACTIONS(1425), + [sym_metavariable] = ACTIONS(1423), + [sym_raw_string_literal] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1423), [sym_block_comment] = ACTIONS(3), }, [319] = { - [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(1427), + [sym_identifier] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_macro_rules_BANG] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_u8] = ACTIONS(1429), + [anon_sym_i8] = ACTIONS(1429), + [anon_sym_u16] = ACTIONS(1429), + [anon_sym_i16] = ACTIONS(1429), + [anon_sym_u32] = ACTIONS(1429), + [anon_sym_i32] = ACTIONS(1429), + [anon_sym_u64] = ACTIONS(1429), + [anon_sym_i64] = ACTIONS(1429), + [anon_sym_u128] = ACTIONS(1429), + [anon_sym_i128] = ACTIONS(1429), + [anon_sym_isize] = ACTIONS(1429), + [anon_sym_usize] = ACTIONS(1429), + [anon_sym_f32] = ACTIONS(1429), + [anon_sym_f64] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_str] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_SQUOTE] = ACTIONS(1429), + [anon_sym_async] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_impl] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_loop] = ACTIONS(1429), + [anon_sym_match] = ACTIONS(1429), + [anon_sym_mod] = ACTIONS(1429), + [anon_sym_pub] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_struct] = ACTIONS(1429), + [anon_sym_trait] = ACTIONS(1429), + [anon_sym_type] = ACTIONS(1429), + [anon_sym_union] = ACTIONS(1429), + [anon_sym_unsafe] = ACTIONS(1429), + [anon_sym_use] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1429), + [anon_sym_move] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1427), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1429), + [sym_super] = ACTIONS(1429), + [sym_crate] = ACTIONS(1429), + [sym_metavariable] = ACTIONS(1427), + [sym_raw_string_literal] = ACTIONS(1427), + [sym_float_literal] = ACTIONS(1427), [sym_block_comment] = ACTIONS(3), }, [320] = { - [ts_builtin_sym_end] = ACTIONS(1398), - [sym_identifier] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_macro_rules_BANG] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_u8] = ACTIONS(1400), - [anon_sym_i8] = ACTIONS(1400), - [anon_sym_u16] = ACTIONS(1400), - [anon_sym_i16] = ACTIONS(1400), - [anon_sym_u32] = ACTIONS(1400), - [anon_sym_i32] = ACTIONS(1400), - [anon_sym_u64] = ACTIONS(1400), - [anon_sym_i64] = ACTIONS(1400), - [anon_sym_u128] = ACTIONS(1400), - [anon_sym_i128] = ACTIONS(1400), - [anon_sym_isize] = ACTIONS(1400), - [anon_sym_usize] = ACTIONS(1400), - [anon_sym_f32] = ACTIONS(1400), - [anon_sym_f64] = ACTIONS(1400), - [anon_sym_bool] = ACTIONS(1400), - [anon_sym_str] = ACTIONS(1400), - [anon_sym_char] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_impl] = ACTIONS(1400), - [anon_sym_let] = ACTIONS(1400), - [anon_sym_loop] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1400), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_pub] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_struct] = ACTIONS(1400), - [anon_sym_trait] = ACTIONS(1400), - [anon_sym_type] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_unsafe] = ACTIONS(1400), - [anon_sym_use] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [anon_sym_POUND] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_COLON_COLON] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(1400), - [anon_sym_move] = ACTIONS(1400), - [sym_integer_literal] = ACTIONS(1398), - [aux_sym_string_literal_token1] = ACTIONS(1398), - [sym_char_literal] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1400), - [sym_super] = ACTIONS(1400), - [sym_crate] = ACTIONS(1400), - [sym_metavariable] = ACTIONS(1398), - [sym_raw_string_literal] = ACTIONS(1398), - [sym_float_literal] = ACTIONS(1398), + [ts_builtin_sym_end] = ACTIONS(1431), + [sym_identifier] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_macro_rules_BANG] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_default] = ACTIONS(1433), + [anon_sym_enum] = ACTIONS(1433), + [anon_sym_fn] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_impl] = ACTIONS(1433), + [anon_sym_let] = ACTIONS(1433), + [anon_sym_loop] = ACTIONS(1433), + [anon_sym_match] = ACTIONS(1433), + [anon_sym_mod] = ACTIONS(1433), + [anon_sym_pub] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1433), + [anon_sym_trait] = ACTIONS(1433), + [anon_sym_type] = ACTIONS(1433), + [anon_sym_union] = ACTIONS(1433), + [anon_sym_unsafe] = ACTIONS(1433), + [anon_sym_use] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_extern] = ACTIONS(1433), + [anon_sym_LT] = ACTIONS(1431), + [anon_sym_COLON_COLON] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_yield] = ACTIONS(1433), + [anon_sym_move] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1431), + [aux_sym_string_literal_token1] = ACTIONS(1431), + [sym_char_literal] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1433), + [sym_super] = ACTIONS(1433), + [sym_crate] = ACTIONS(1433), + [sym_metavariable] = ACTIONS(1431), + [sym_raw_string_literal] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1431), [sym_block_comment] = ACTIONS(3), }, [321] = { - [ts_builtin_sym_end] = ACTIONS(1402), - [sym_identifier] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1402), - [anon_sym_macro_rules_BANG] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_u8] = ACTIONS(1404), - [anon_sym_i8] = ACTIONS(1404), - [anon_sym_u16] = ACTIONS(1404), - [anon_sym_i16] = ACTIONS(1404), - [anon_sym_u32] = ACTIONS(1404), - [anon_sym_i32] = ACTIONS(1404), - [anon_sym_u64] = ACTIONS(1404), - [anon_sym_i64] = ACTIONS(1404), - [anon_sym_u128] = ACTIONS(1404), - [anon_sym_i128] = ACTIONS(1404), - [anon_sym_isize] = ACTIONS(1404), - [anon_sym_usize] = ACTIONS(1404), - [anon_sym_f32] = ACTIONS(1404), - [anon_sym_f64] = ACTIONS(1404), - [anon_sym_bool] = ACTIONS(1404), - [anon_sym_str] = ACTIONS(1404), - [anon_sym_char] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_async] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [anon_sym_continue] = ACTIONS(1404), - [anon_sym_default] = ACTIONS(1404), - [anon_sym_enum] = ACTIONS(1404), - [anon_sym_fn] = ACTIONS(1404), - [anon_sym_for] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1404), - [anon_sym_impl] = ACTIONS(1404), - [anon_sym_let] = ACTIONS(1404), - [anon_sym_loop] = ACTIONS(1404), - [anon_sym_match] = ACTIONS(1404), - [anon_sym_mod] = ACTIONS(1404), - [anon_sym_pub] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1404), - [anon_sym_static] = ACTIONS(1404), - [anon_sym_struct] = ACTIONS(1404), - [anon_sym_trait] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(1404), - [anon_sym_union] = ACTIONS(1404), - [anon_sym_unsafe] = ACTIONS(1404), - [anon_sym_use] = ACTIONS(1404), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_POUND] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_COLON_COLON] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_DOT_DOT] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_move] = ACTIONS(1404), - [sym_integer_literal] = ACTIONS(1402), - [aux_sym_string_literal_token1] = ACTIONS(1402), - [sym_char_literal] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1404), - [anon_sym_false] = ACTIONS(1404), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1404), - [sym_super] = ACTIONS(1404), - [sym_crate] = ACTIONS(1404), - [sym_metavariable] = ACTIONS(1402), - [sym_raw_string_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1402), + [ts_builtin_sym_end] = ACTIONS(1435), + [sym_identifier] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_macro_rules_BANG] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1435), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_u8] = ACTIONS(1437), + [anon_sym_i8] = ACTIONS(1437), + [anon_sym_u16] = ACTIONS(1437), + [anon_sym_i16] = ACTIONS(1437), + [anon_sym_u32] = ACTIONS(1437), + [anon_sym_i32] = ACTIONS(1437), + [anon_sym_u64] = ACTIONS(1437), + [anon_sym_i64] = ACTIONS(1437), + [anon_sym_u128] = ACTIONS(1437), + [anon_sym_i128] = ACTIONS(1437), + [anon_sym_isize] = ACTIONS(1437), + [anon_sym_usize] = ACTIONS(1437), + [anon_sym_f32] = ACTIONS(1437), + [anon_sym_f64] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_str] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_SQUOTE] = ACTIONS(1437), + [anon_sym_async] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1437), + [anon_sym_enum] = ACTIONS(1437), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_impl] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_pub] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_struct] = ACTIONS(1437), + [anon_sym_trait] = ACTIONS(1437), + [anon_sym_type] = ACTIONS(1437), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_unsafe] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_move] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1435), + [aux_sym_string_literal_token1] = ACTIONS(1435), + [sym_char_literal] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1437), + [sym_super] = ACTIONS(1437), + [sym_crate] = ACTIONS(1437), + [sym_metavariable] = ACTIONS(1435), + [sym_raw_string_literal] = ACTIONS(1435), + [sym_float_literal] = ACTIONS(1435), [sym_block_comment] = ACTIONS(3), }, [322] = { - [ts_builtin_sym_end] = ACTIONS(1406), - [sym_identifier] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym_macro_rules_BANG] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_u8] = ACTIONS(1408), - [anon_sym_i8] = ACTIONS(1408), - [anon_sym_u16] = ACTIONS(1408), - [anon_sym_i16] = ACTIONS(1408), - [anon_sym_u32] = ACTIONS(1408), - [anon_sym_i32] = ACTIONS(1408), - [anon_sym_u64] = ACTIONS(1408), - [anon_sym_i64] = ACTIONS(1408), - [anon_sym_u128] = ACTIONS(1408), - [anon_sym_i128] = ACTIONS(1408), - [anon_sym_isize] = ACTIONS(1408), - [anon_sym_usize] = ACTIONS(1408), - [anon_sym_f32] = ACTIONS(1408), - [anon_sym_f64] = ACTIONS(1408), - [anon_sym_bool] = ACTIONS(1408), - [anon_sym_str] = ACTIONS(1408), - [anon_sym_char] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_break] = ACTIONS(1408), - [anon_sym_const] = ACTIONS(1408), - [anon_sym_continue] = ACTIONS(1408), - [anon_sym_default] = ACTIONS(1408), - [anon_sym_enum] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1408), - [anon_sym_for] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1408), - [anon_sym_impl] = ACTIONS(1408), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_loop] = ACTIONS(1408), - [anon_sym_match] = ACTIONS(1408), - [anon_sym_mod] = ACTIONS(1408), - [anon_sym_pub] = ACTIONS(1408), - [anon_sym_return] = ACTIONS(1408), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_struct] = ACTIONS(1408), - [anon_sym_trait] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_union] = ACTIONS(1408), - [anon_sym_unsafe] = ACTIONS(1408), - [anon_sym_use] = ACTIONS(1408), - [anon_sym_while] = ACTIONS(1408), - [anon_sym_POUND] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1408), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_COLON_COLON] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PIPE] = ACTIONS(1406), - [anon_sym_yield] = ACTIONS(1408), - [anon_sym_move] = ACTIONS(1408), - [sym_integer_literal] = ACTIONS(1406), - [aux_sym_string_literal_token1] = ACTIONS(1406), - [sym_char_literal] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1408), - [anon_sym_false] = ACTIONS(1408), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1408), - [sym_super] = ACTIONS(1408), - [sym_crate] = ACTIONS(1408), - [sym_metavariable] = ACTIONS(1406), - [sym_raw_string_literal] = ACTIONS(1406), - [sym_float_literal] = ACTIONS(1406), + [ts_builtin_sym_end] = ACTIONS(1439), + [sym_identifier] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_macro_rules_BANG] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_u8] = ACTIONS(1441), + [anon_sym_i8] = ACTIONS(1441), + [anon_sym_u16] = ACTIONS(1441), + [anon_sym_i16] = ACTIONS(1441), + [anon_sym_u32] = ACTIONS(1441), + [anon_sym_i32] = ACTIONS(1441), + [anon_sym_u64] = ACTIONS(1441), + [anon_sym_i64] = ACTIONS(1441), + [anon_sym_u128] = ACTIONS(1441), + [anon_sym_i128] = ACTIONS(1441), + [anon_sym_isize] = ACTIONS(1441), + [anon_sym_usize] = ACTIONS(1441), + [anon_sym_f32] = ACTIONS(1441), + [anon_sym_f64] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_str] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_SQUOTE] = ACTIONS(1441), + [anon_sym_async] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_enum] = ACTIONS(1441), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_impl] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_loop] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_mod] = ACTIONS(1441), + [anon_sym_pub] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_struct] = ACTIONS(1441), + [anon_sym_trait] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_union] = ACTIONS(1441), + [anon_sym_unsafe] = ACTIONS(1441), + [anon_sym_use] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_COLON_COLON] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_DOT_DOT] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1439), + [anon_sym_yield] = ACTIONS(1441), + [anon_sym_move] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1439), + [aux_sym_string_literal_token1] = ACTIONS(1439), + [sym_char_literal] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1441), + [sym_super] = ACTIONS(1441), + [sym_crate] = ACTIONS(1441), + [sym_metavariable] = ACTIONS(1439), + [sym_raw_string_literal] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1439), [sym_block_comment] = ACTIONS(3), }, [323] = { - [ts_builtin_sym_end] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_macro_rules_BANG] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_u8] = ACTIONS(1412), - [anon_sym_i8] = ACTIONS(1412), - [anon_sym_u16] = ACTIONS(1412), - [anon_sym_i16] = ACTIONS(1412), - [anon_sym_u32] = ACTIONS(1412), - [anon_sym_i32] = ACTIONS(1412), - [anon_sym_u64] = ACTIONS(1412), - [anon_sym_i64] = ACTIONS(1412), - [anon_sym_u128] = ACTIONS(1412), - [anon_sym_i128] = ACTIONS(1412), - [anon_sym_isize] = ACTIONS(1412), - [anon_sym_usize] = ACTIONS(1412), - [anon_sym_f32] = ACTIONS(1412), - [anon_sym_f64] = ACTIONS(1412), - [anon_sym_bool] = ACTIONS(1412), - [anon_sym_str] = ACTIONS(1412), - [anon_sym_char] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_async] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_impl] = ACTIONS(1412), - [anon_sym_let] = ACTIONS(1412), - [anon_sym_loop] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1412), - [anon_sym_mod] = ACTIONS(1412), - [anon_sym_pub] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_trait] = ACTIONS(1412), - [anon_sym_type] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_unsafe] = ACTIONS(1412), - [anon_sym_use] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [anon_sym_POUND] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_DOT_DOT] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_yield] = ACTIONS(1412), - [anon_sym_move] = ACTIONS(1412), - [sym_integer_literal] = ACTIONS(1410), - [aux_sym_string_literal_token1] = ACTIONS(1410), - [sym_char_literal] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1412), - [anon_sym_false] = ACTIONS(1412), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1412), - [sym_super] = ACTIONS(1412), - [sym_crate] = ACTIONS(1412), - [sym_metavariable] = ACTIONS(1410), - [sym_raw_string_literal] = ACTIONS(1410), - [sym_float_literal] = ACTIONS(1410), + [ts_builtin_sym_end] = ACTIONS(1443), + [sym_identifier] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_macro_rules_BANG] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_u8] = ACTIONS(1445), + [anon_sym_i8] = ACTIONS(1445), + [anon_sym_u16] = ACTIONS(1445), + [anon_sym_i16] = ACTIONS(1445), + [anon_sym_u32] = ACTIONS(1445), + [anon_sym_i32] = ACTIONS(1445), + [anon_sym_u64] = ACTIONS(1445), + [anon_sym_i64] = ACTIONS(1445), + [anon_sym_u128] = ACTIONS(1445), + [anon_sym_i128] = ACTIONS(1445), + [anon_sym_isize] = ACTIONS(1445), + [anon_sym_usize] = ACTIONS(1445), + [anon_sym_f32] = ACTIONS(1445), + [anon_sym_f64] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_str] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_async] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), + [anon_sym_enum] = ACTIONS(1445), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_impl] = ACTIONS(1445), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_loop] = ACTIONS(1445), + [anon_sym_match] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_pub] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_struct] = ACTIONS(1445), + [anon_sym_trait] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_union] = ACTIONS(1445), + [anon_sym_unsafe] = ACTIONS(1445), + [anon_sym_use] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_extern] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_COLON_COLON] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1443), + [anon_sym_yield] = ACTIONS(1445), + [anon_sym_move] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [aux_sym_string_literal_token1] = ACTIONS(1443), + [sym_char_literal] = ACTIONS(1443), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1445), + [sym_super] = ACTIONS(1445), + [sym_crate] = ACTIONS(1445), + [sym_metavariable] = ACTIONS(1443), + [sym_raw_string_literal] = ACTIONS(1443), + [sym_float_literal] = ACTIONS(1443), [sym_block_comment] = ACTIONS(3), }, [324] = { - [ts_builtin_sym_end] = ACTIONS(1414), - [sym_identifier] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_macro_rules_BANG] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_u8] = ACTIONS(1416), - [anon_sym_i8] = ACTIONS(1416), - [anon_sym_u16] = ACTIONS(1416), - [anon_sym_i16] = ACTIONS(1416), - [anon_sym_u32] = ACTIONS(1416), - [anon_sym_i32] = ACTIONS(1416), - [anon_sym_u64] = ACTIONS(1416), - [anon_sym_i64] = ACTIONS(1416), - [anon_sym_u128] = ACTIONS(1416), - [anon_sym_i128] = ACTIONS(1416), - [anon_sym_isize] = ACTIONS(1416), - [anon_sym_usize] = ACTIONS(1416), - [anon_sym_f32] = ACTIONS(1416), - [anon_sym_f64] = ACTIONS(1416), - [anon_sym_bool] = ACTIONS(1416), - [anon_sym_str] = ACTIONS(1416), - [anon_sym_char] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_async] = ACTIONS(1416), - [anon_sym_break] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1416), - [anon_sym_continue] = ACTIONS(1416), - [anon_sym_default] = ACTIONS(1416), - [anon_sym_enum] = ACTIONS(1416), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_for] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1416), - [anon_sym_impl] = ACTIONS(1416), - [anon_sym_let] = ACTIONS(1416), - [anon_sym_loop] = ACTIONS(1416), - [anon_sym_match] = ACTIONS(1416), - [anon_sym_mod] = ACTIONS(1416), - [anon_sym_pub] = ACTIONS(1416), - [anon_sym_return] = ACTIONS(1416), - [anon_sym_static] = ACTIONS(1416), - [anon_sym_struct] = ACTIONS(1416), - [anon_sym_trait] = ACTIONS(1416), - [anon_sym_type] = ACTIONS(1416), - [anon_sym_union] = ACTIONS(1416), - [anon_sym_unsafe] = ACTIONS(1416), - [anon_sym_use] = ACTIONS(1416), - [anon_sym_while] = ACTIONS(1416), - [anon_sym_POUND] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1414), - [anon_sym_COLON_COLON] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_yield] = ACTIONS(1416), - [anon_sym_move] = ACTIONS(1416), - [sym_integer_literal] = ACTIONS(1414), - [aux_sym_string_literal_token1] = ACTIONS(1414), - [sym_char_literal] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1416), - [anon_sym_false] = ACTIONS(1416), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1416), - [sym_super] = ACTIONS(1416), - [sym_crate] = ACTIONS(1416), - [sym_metavariable] = ACTIONS(1414), - [sym_raw_string_literal] = ACTIONS(1414), - [sym_float_literal] = ACTIONS(1414), + [ts_builtin_sym_end] = ACTIONS(1447), + [sym_identifier] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_macro_rules_BANG] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_u8] = ACTIONS(1449), + [anon_sym_i8] = ACTIONS(1449), + [anon_sym_u16] = ACTIONS(1449), + [anon_sym_i16] = ACTIONS(1449), + [anon_sym_u32] = ACTIONS(1449), + [anon_sym_i32] = ACTIONS(1449), + [anon_sym_u64] = ACTIONS(1449), + [anon_sym_i64] = ACTIONS(1449), + [anon_sym_u128] = ACTIONS(1449), + [anon_sym_i128] = ACTIONS(1449), + [anon_sym_isize] = ACTIONS(1449), + [anon_sym_usize] = ACTIONS(1449), + [anon_sym_f32] = ACTIONS(1449), + [anon_sym_f64] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_str] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1449), + [anon_sym_async] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_default] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1449), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_impl] = ACTIONS(1449), + [anon_sym_let] = ACTIONS(1449), + [anon_sym_loop] = ACTIONS(1449), + [anon_sym_match] = ACTIONS(1449), + [anon_sym_mod] = ACTIONS(1449), + [anon_sym_pub] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_struct] = ACTIONS(1449), + [anon_sym_trait] = ACTIONS(1449), + [anon_sym_type] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1449), + [anon_sym_unsafe] = ACTIONS(1449), + [anon_sym_use] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_POUND] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_extern] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_COLON_COLON] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_DOT_DOT] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_PIPE] = ACTIONS(1447), + [anon_sym_yield] = ACTIONS(1449), + [anon_sym_move] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1447), + [aux_sym_string_literal_token1] = ACTIONS(1447), + [sym_char_literal] = ACTIONS(1447), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1449), + [sym_super] = ACTIONS(1449), + [sym_crate] = ACTIONS(1449), + [sym_metavariable] = ACTIONS(1447), + [sym_raw_string_literal] = ACTIONS(1447), + [sym_float_literal] = ACTIONS(1447), [sym_block_comment] = ACTIONS(3), }, [325] = { - [ts_builtin_sym_end] = ACTIONS(1418), - [sym_identifier] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_macro_rules_BANG] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1420), - [anon_sym_i8] = ACTIONS(1420), - [anon_sym_u16] = ACTIONS(1420), - [anon_sym_i16] = ACTIONS(1420), - [anon_sym_u32] = ACTIONS(1420), - [anon_sym_i32] = ACTIONS(1420), - [anon_sym_u64] = ACTIONS(1420), - [anon_sym_i64] = ACTIONS(1420), - [anon_sym_u128] = ACTIONS(1420), - [anon_sym_i128] = ACTIONS(1420), - [anon_sym_isize] = ACTIONS(1420), - [anon_sym_usize] = ACTIONS(1420), - [anon_sym_f32] = ACTIONS(1420), - [anon_sym_f64] = ACTIONS(1420), - [anon_sym_bool] = ACTIONS(1420), - [anon_sym_str] = ACTIONS(1420), - [anon_sym_char] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_async] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - [anon_sym_fn] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_impl] = ACTIONS(1420), - [anon_sym_let] = ACTIONS(1420), - [anon_sym_loop] = ACTIONS(1420), - [anon_sym_match] = ACTIONS(1420), - [anon_sym_mod] = ACTIONS(1420), - [anon_sym_pub] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_static] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1420), - [anon_sym_trait] = ACTIONS(1420), - [anon_sym_type] = ACTIONS(1420), - [anon_sym_union] = ACTIONS(1420), - [anon_sym_unsafe] = ACTIONS(1420), - [anon_sym_use] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_POUND] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_move] = ACTIONS(1420), - [sym_integer_literal] = ACTIONS(1418), - [aux_sym_string_literal_token1] = ACTIONS(1418), - [sym_char_literal] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1420), - [anon_sym_false] = ACTIONS(1420), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1418), - [sym_raw_string_literal] = ACTIONS(1418), - [sym_float_literal] = ACTIONS(1418), + [ts_builtin_sym_end] = ACTIONS(1451), + [sym_identifier] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_macro_rules_BANG] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_LBRACE] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_u8] = ACTIONS(1453), + [anon_sym_i8] = ACTIONS(1453), + [anon_sym_u16] = ACTIONS(1453), + [anon_sym_i16] = ACTIONS(1453), + [anon_sym_u32] = ACTIONS(1453), + [anon_sym_i32] = ACTIONS(1453), + [anon_sym_u64] = ACTIONS(1453), + [anon_sym_i64] = ACTIONS(1453), + [anon_sym_u128] = ACTIONS(1453), + [anon_sym_i128] = ACTIONS(1453), + [anon_sym_isize] = ACTIONS(1453), + [anon_sym_usize] = ACTIONS(1453), + [anon_sym_f32] = ACTIONS(1453), + [anon_sym_f64] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_str] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_SQUOTE] = ACTIONS(1453), + [anon_sym_async] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_default] = ACTIONS(1453), + [anon_sym_enum] = ACTIONS(1453), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_impl] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1453), + [anon_sym_loop] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_mod] = ACTIONS(1453), + [anon_sym_pub] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_struct] = ACTIONS(1453), + [anon_sym_trait] = ACTIONS(1453), + [anon_sym_type] = ACTIONS(1453), + [anon_sym_union] = ACTIONS(1453), + [anon_sym_unsafe] = ACTIONS(1453), + [anon_sym_use] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_POUND] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_extern] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_COLON_COLON] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_yield] = ACTIONS(1453), + [anon_sym_move] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1451), + [aux_sym_string_literal_token1] = ACTIONS(1451), + [sym_char_literal] = ACTIONS(1451), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1453), + [sym_super] = ACTIONS(1453), + [sym_crate] = ACTIONS(1453), + [sym_metavariable] = ACTIONS(1451), + [sym_raw_string_literal] = ACTIONS(1451), + [sym_float_literal] = ACTIONS(1451), [sym_block_comment] = ACTIONS(3), }, [326] = { - [ts_builtin_sym_end] = ACTIONS(1422), - [sym_identifier] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym_macro_rules_BANG] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_u8] = ACTIONS(1424), - [anon_sym_i8] = ACTIONS(1424), - [anon_sym_u16] = ACTIONS(1424), - [anon_sym_i16] = ACTIONS(1424), - [anon_sym_u32] = ACTIONS(1424), - [anon_sym_i32] = ACTIONS(1424), - [anon_sym_u64] = ACTIONS(1424), - [anon_sym_i64] = ACTIONS(1424), - [anon_sym_u128] = ACTIONS(1424), - [anon_sym_i128] = ACTIONS(1424), - [anon_sym_isize] = ACTIONS(1424), - [anon_sym_usize] = ACTIONS(1424), - [anon_sym_f32] = ACTIONS(1424), - [anon_sym_f64] = ACTIONS(1424), - [anon_sym_bool] = ACTIONS(1424), - [anon_sym_str] = ACTIONS(1424), - [anon_sym_char] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_fn] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_impl] = ACTIONS(1424), - [anon_sym_let] = ACTIONS(1424), - [anon_sym_loop] = ACTIONS(1424), - [anon_sym_match] = ACTIONS(1424), - [anon_sym_mod] = ACTIONS(1424), - [anon_sym_pub] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_trait] = ACTIONS(1424), - [anon_sym_type] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_unsafe] = ACTIONS(1424), - [anon_sym_use] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_COLON_COLON] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_yield] = ACTIONS(1424), - [anon_sym_move] = ACTIONS(1424), - [sym_integer_literal] = ACTIONS(1422), - [aux_sym_string_literal_token1] = ACTIONS(1422), - [sym_char_literal] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1424), - [anon_sym_false] = ACTIONS(1424), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1424), - [sym_super] = ACTIONS(1424), - [sym_crate] = ACTIONS(1424), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(1422), - [sym_float_literal] = ACTIONS(1422), + [ts_builtin_sym_end] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_macro_rules_BANG] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_u8] = ACTIONS(1457), + [anon_sym_i8] = ACTIONS(1457), + [anon_sym_u16] = ACTIONS(1457), + [anon_sym_i16] = ACTIONS(1457), + [anon_sym_u32] = ACTIONS(1457), + [anon_sym_i32] = ACTIONS(1457), + [anon_sym_u64] = ACTIONS(1457), + [anon_sym_i64] = ACTIONS(1457), + [anon_sym_u128] = ACTIONS(1457), + [anon_sym_i128] = ACTIONS(1457), + [anon_sym_isize] = ACTIONS(1457), + [anon_sym_usize] = ACTIONS(1457), + [anon_sym_f32] = ACTIONS(1457), + [anon_sym_f64] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_str] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_SQUOTE] = ACTIONS(1457), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_impl] = ACTIONS(1457), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_loop] = ACTIONS(1457), + [anon_sym_match] = ACTIONS(1457), + [anon_sym_mod] = ACTIONS(1457), + [anon_sym_pub] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_struct] = ACTIONS(1457), + [anon_sym_trait] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_union] = ACTIONS(1457), + [anon_sym_unsafe] = ACTIONS(1457), + [anon_sym_use] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(1455), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_extern] = ACTIONS(1457), + [anon_sym_LT] = ACTIONS(1455), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_yield] = ACTIONS(1457), + [anon_sym_move] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1455), + [aux_sym_string_literal_token1] = ACTIONS(1455), + [sym_char_literal] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1457), + [sym_super] = ACTIONS(1457), + [sym_crate] = ACTIONS(1457), + [sym_metavariable] = ACTIONS(1455), + [sym_raw_string_literal] = ACTIONS(1455), + [sym_float_literal] = ACTIONS(1455), [sym_block_comment] = ACTIONS(3), }, [327] = { - [ts_builtin_sym_end] = ACTIONS(1426), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_macro_rules_BANG] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_u8] = ACTIONS(1428), - [anon_sym_i8] = ACTIONS(1428), - [anon_sym_u16] = ACTIONS(1428), - [anon_sym_i16] = ACTIONS(1428), - [anon_sym_u32] = ACTIONS(1428), - [anon_sym_i32] = ACTIONS(1428), - [anon_sym_u64] = ACTIONS(1428), - [anon_sym_i64] = ACTIONS(1428), - [anon_sym_u128] = ACTIONS(1428), - [anon_sym_i128] = ACTIONS(1428), - [anon_sym_isize] = ACTIONS(1428), - [anon_sym_usize] = ACTIONS(1428), - [anon_sym_f32] = ACTIONS(1428), - [anon_sym_f64] = ACTIONS(1428), - [anon_sym_bool] = ACTIONS(1428), - [anon_sym_str] = ACTIONS(1428), - [anon_sym_char] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_async] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_fn] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_impl] = ACTIONS(1428), - [anon_sym_let] = ACTIONS(1428), - [anon_sym_loop] = ACTIONS(1428), - [anon_sym_match] = ACTIONS(1428), - [anon_sym_mod] = ACTIONS(1428), - [anon_sym_pub] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_trait] = ACTIONS(1428), - [anon_sym_type] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_unsafe] = ACTIONS(1428), - [anon_sym_use] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_POUND] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_COLON_COLON] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_DOT_DOT] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_yield] = ACTIONS(1428), - [anon_sym_move] = ACTIONS(1428), - [sym_integer_literal] = ACTIONS(1426), - [aux_sym_string_literal_token1] = ACTIONS(1426), - [sym_char_literal] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1428), - [anon_sym_false] = ACTIONS(1428), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1428), - [sym_super] = ACTIONS(1428), - [sym_crate] = ACTIONS(1428), - [sym_metavariable] = ACTIONS(1426), - [sym_raw_string_literal] = ACTIONS(1426), - [sym_float_literal] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1459), + [sym_identifier] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_macro_rules_BANG] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_u8] = ACTIONS(1461), + [anon_sym_i8] = ACTIONS(1461), + [anon_sym_u16] = ACTIONS(1461), + [anon_sym_i16] = ACTIONS(1461), + [anon_sym_u32] = ACTIONS(1461), + [anon_sym_i32] = ACTIONS(1461), + [anon_sym_u64] = ACTIONS(1461), + [anon_sym_i64] = ACTIONS(1461), + [anon_sym_u128] = ACTIONS(1461), + [anon_sym_i128] = ACTIONS(1461), + [anon_sym_isize] = ACTIONS(1461), + [anon_sym_usize] = ACTIONS(1461), + [anon_sym_f32] = ACTIONS(1461), + [anon_sym_f64] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_str] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_SQUOTE] = ACTIONS(1461), + [anon_sym_async] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_enum] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_impl] = ACTIONS(1461), + [anon_sym_let] = ACTIONS(1461), + [anon_sym_loop] = ACTIONS(1461), + [anon_sym_match] = ACTIONS(1461), + [anon_sym_mod] = ACTIONS(1461), + [anon_sym_pub] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_struct] = ACTIONS(1461), + [anon_sym_trait] = ACTIONS(1461), + [anon_sym_type] = ACTIONS(1461), + [anon_sym_union] = ACTIONS(1461), + [anon_sym_unsafe] = ACTIONS(1461), + [anon_sym_use] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_POUND] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_extern] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_yield] = ACTIONS(1461), + [anon_sym_move] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1459), + [aux_sym_string_literal_token1] = ACTIONS(1459), + [sym_char_literal] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1461), + [sym_super] = ACTIONS(1461), + [sym_crate] = ACTIONS(1461), + [sym_metavariable] = ACTIONS(1459), + [sym_raw_string_literal] = ACTIONS(1459), + [sym_float_literal] = ACTIONS(1459), [sym_block_comment] = ACTIONS(3), }, [328] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [sym_identifier] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_macro_rules_BANG] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_u8] = ACTIONS(1432), - [anon_sym_i8] = ACTIONS(1432), - [anon_sym_u16] = ACTIONS(1432), - [anon_sym_i16] = ACTIONS(1432), - [anon_sym_u32] = ACTIONS(1432), - [anon_sym_i32] = ACTIONS(1432), - [anon_sym_u64] = ACTIONS(1432), - [anon_sym_i64] = ACTIONS(1432), - [anon_sym_u128] = ACTIONS(1432), - [anon_sym_i128] = ACTIONS(1432), - [anon_sym_isize] = ACTIONS(1432), - [anon_sym_usize] = ACTIONS(1432), - [anon_sym_f32] = ACTIONS(1432), - [anon_sym_f64] = ACTIONS(1432), - [anon_sym_bool] = ACTIONS(1432), - [anon_sym_str] = ACTIONS(1432), - [anon_sym_char] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_async] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_impl] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(1432), - [anon_sym_loop] = ACTIONS(1432), - [anon_sym_match] = ACTIONS(1432), - [anon_sym_mod] = ACTIONS(1432), - [anon_sym_pub] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_trait] = ACTIONS(1432), - [anon_sym_type] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_unsafe] = ACTIONS(1432), - [anon_sym_use] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_COLON_COLON] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_DOT_DOT] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1430), - [aux_sym_string_literal_token1] = ACTIONS(1430), - [sym_char_literal] = ACTIONS(1430), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1432), - [sym_super] = ACTIONS(1432), - [sym_crate] = ACTIONS(1432), - [sym_metavariable] = ACTIONS(1430), - [sym_raw_string_literal] = ACTIONS(1430), - [sym_float_literal] = ACTIONS(1430), + [ts_builtin_sym_end] = ACTIONS(1463), + [sym_identifier] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_macro_rules_BANG] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_u8] = ACTIONS(1465), + [anon_sym_i8] = ACTIONS(1465), + [anon_sym_u16] = ACTIONS(1465), + [anon_sym_i16] = ACTIONS(1465), + [anon_sym_u32] = ACTIONS(1465), + [anon_sym_i32] = ACTIONS(1465), + [anon_sym_u64] = ACTIONS(1465), + [anon_sym_i64] = ACTIONS(1465), + [anon_sym_u128] = ACTIONS(1465), + [anon_sym_i128] = ACTIONS(1465), + [anon_sym_isize] = ACTIONS(1465), + [anon_sym_usize] = ACTIONS(1465), + [anon_sym_f32] = ACTIONS(1465), + [anon_sym_f64] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_str] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_SQUOTE] = ACTIONS(1465), + [anon_sym_async] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_default] = ACTIONS(1465), + [anon_sym_enum] = ACTIONS(1465), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_impl] = ACTIONS(1465), + [anon_sym_let] = ACTIONS(1465), + [anon_sym_loop] = ACTIONS(1465), + [anon_sym_match] = ACTIONS(1465), + [anon_sym_mod] = ACTIONS(1465), + [anon_sym_pub] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_struct] = ACTIONS(1465), + [anon_sym_trait] = ACTIONS(1465), + [anon_sym_type] = ACTIONS(1465), + [anon_sym_union] = ACTIONS(1465), + [anon_sym_unsafe] = ACTIONS(1465), + [anon_sym_use] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_POUND] = ACTIONS(1463), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_extern] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_COLON_COLON] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1463), + [anon_sym_DOT_DOT] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_PIPE] = ACTIONS(1463), + [anon_sym_yield] = ACTIONS(1465), + [anon_sym_move] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1463), + [aux_sym_string_literal_token1] = ACTIONS(1463), + [sym_char_literal] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1465), + [sym_crate] = ACTIONS(1465), + [sym_metavariable] = ACTIONS(1463), + [sym_raw_string_literal] = ACTIONS(1463), + [sym_float_literal] = ACTIONS(1463), [sym_block_comment] = ACTIONS(3), }, [329] = { - [ts_builtin_sym_end] = ACTIONS(1434), - [sym_identifier] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_macro_rules_BANG] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_u8] = ACTIONS(1436), - [anon_sym_i8] = ACTIONS(1436), - [anon_sym_u16] = ACTIONS(1436), - [anon_sym_i16] = ACTIONS(1436), - [anon_sym_u32] = ACTIONS(1436), - [anon_sym_i32] = ACTIONS(1436), - [anon_sym_u64] = ACTIONS(1436), - [anon_sym_i64] = ACTIONS(1436), - [anon_sym_u128] = ACTIONS(1436), - [anon_sym_i128] = ACTIONS(1436), - [anon_sym_isize] = ACTIONS(1436), - [anon_sym_usize] = ACTIONS(1436), - [anon_sym_f32] = ACTIONS(1436), - [anon_sym_f64] = ACTIONS(1436), - [anon_sym_bool] = ACTIONS(1436), - [anon_sym_str] = ACTIONS(1436), - [anon_sym_char] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_async] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_impl] = ACTIONS(1436), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_loop] = ACTIONS(1436), - [anon_sym_match] = ACTIONS(1436), - [anon_sym_mod] = ACTIONS(1436), - [anon_sym_pub] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_trait] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_unsafe] = ACTIONS(1436), - [anon_sym_use] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_POUND] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1434), - [anon_sym_COLON_COLON] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_DOT_DOT] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_move] = ACTIONS(1436), - [sym_integer_literal] = ACTIONS(1434), - [aux_sym_string_literal_token1] = ACTIONS(1434), - [sym_char_literal] = ACTIONS(1434), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1436), - [sym_super] = ACTIONS(1436), - [sym_crate] = ACTIONS(1436), - [sym_metavariable] = ACTIONS(1434), - [sym_raw_string_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1434), + [ts_builtin_sym_end] = ACTIONS(1467), + [sym_identifier] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_macro_rules_BANG] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_u8] = ACTIONS(1469), + [anon_sym_i8] = ACTIONS(1469), + [anon_sym_u16] = ACTIONS(1469), + [anon_sym_i16] = ACTIONS(1469), + [anon_sym_u32] = ACTIONS(1469), + [anon_sym_i32] = ACTIONS(1469), + [anon_sym_u64] = ACTIONS(1469), + [anon_sym_i64] = ACTIONS(1469), + [anon_sym_u128] = ACTIONS(1469), + [anon_sym_i128] = ACTIONS(1469), + [anon_sym_isize] = ACTIONS(1469), + [anon_sym_usize] = ACTIONS(1469), + [anon_sym_f32] = ACTIONS(1469), + [anon_sym_f64] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_str] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_SQUOTE] = ACTIONS(1469), + [anon_sym_async] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_default] = ACTIONS(1469), + [anon_sym_enum] = ACTIONS(1469), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_impl] = ACTIONS(1469), + [anon_sym_let] = ACTIONS(1469), + [anon_sym_loop] = ACTIONS(1469), + [anon_sym_match] = ACTIONS(1469), + [anon_sym_mod] = ACTIONS(1469), + [anon_sym_pub] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_struct] = ACTIONS(1469), + [anon_sym_trait] = ACTIONS(1469), + [anon_sym_type] = ACTIONS(1469), + [anon_sym_union] = ACTIONS(1469), + [anon_sym_unsafe] = ACTIONS(1469), + [anon_sym_use] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_POUND] = ACTIONS(1467), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_extern] = ACTIONS(1469), + [anon_sym_LT] = ACTIONS(1467), + [anon_sym_COLON_COLON] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1467), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_move] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1467), + [aux_sym_string_literal_token1] = ACTIONS(1467), + [sym_char_literal] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1469), + [sym_super] = ACTIONS(1469), + [sym_crate] = ACTIONS(1469), + [sym_metavariable] = ACTIONS(1467), + [sym_raw_string_literal] = ACTIONS(1467), + [sym_float_literal] = ACTIONS(1467), [sym_block_comment] = ACTIONS(3), }, [330] = { - [ts_builtin_sym_end] = ACTIONS(1438), - [sym_identifier] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_macro_rules_BANG] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_u8] = ACTIONS(1440), - [anon_sym_i8] = ACTIONS(1440), - [anon_sym_u16] = ACTIONS(1440), - [anon_sym_i16] = ACTIONS(1440), - [anon_sym_u32] = ACTIONS(1440), - [anon_sym_i32] = ACTIONS(1440), - [anon_sym_u64] = ACTIONS(1440), - [anon_sym_i64] = ACTIONS(1440), - [anon_sym_u128] = ACTIONS(1440), - [anon_sym_i128] = ACTIONS(1440), - [anon_sym_isize] = ACTIONS(1440), - [anon_sym_usize] = ACTIONS(1440), - [anon_sym_f32] = ACTIONS(1440), - [anon_sym_f64] = ACTIONS(1440), - [anon_sym_bool] = ACTIONS(1440), - [anon_sym_str] = ACTIONS(1440), - [anon_sym_char] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_async] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_fn] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_impl] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_loop] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_mod] = ACTIONS(1440), - [anon_sym_pub] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_trait] = ACTIONS(1440), - [anon_sym_type] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_unsafe] = ACTIONS(1440), - [anon_sym_use] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_COLON_COLON] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_yield] = ACTIONS(1440), - [anon_sym_move] = ACTIONS(1440), - [sym_integer_literal] = ACTIONS(1438), - [aux_sym_string_literal_token1] = ACTIONS(1438), - [sym_char_literal] = ACTIONS(1438), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1440), - [sym_super] = ACTIONS(1440), - [sym_crate] = ACTIONS(1440), - [sym_metavariable] = ACTIONS(1438), - [sym_raw_string_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1438), + [ts_builtin_sym_end] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_macro_rules_BANG] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_u8] = ACTIONS(1473), + [anon_sym_i8] = ACTIONS(1473), + [anon_sym_u16] = ACTIONS(1473), + [anon_sym_i16] = ACTIONS(1473), + [anon_sym_u32] = ACTIONS(1473), + [anon_sym_i32] = ACTIONS(1473), + [anon_sym_u64] = ACTIONS(1473), + [anon_sym_i64] = ACTIONS(1473), + [anon_sym_u128] = ACTIONS(1473), + [anon_sym_i128] = ACTIONS(1473), + [anon_sym_isize] = ACTIONS(1473), + [anon_sym_usize] = ACTIONS(1473), + [anon_sym_f32] = ACTIONS(1473), + [anon_sym_f64] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_str] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_SQUOTE] = ACTIONS(1473), + [anon_sym_async] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1473), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_impl] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_mod] = ACTIONS(1473), + [anon_sym_pub] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_struct] = ACTIONS(1473), + [anon_sym_trait] = ACTIONS(1473), + [anon_sym_type] = ACTIONS(1473), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_unsafe] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_COLON_COLON] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_DOT_DOT] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_PIPE] = ACTIONS(1471), + [anon_sym_yield] = ACTIONS(1473), + [anon_sym_move] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1471), + [aux_sym_string_literal_token1] = ACTIONS(1471), + [sym_char_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1473), + [sym_super] = ACTIONS(1473), + [sym_crate] = ACTIONS(1473), + [sym_metavariable] = ACTIONS(1471), + [sym_raw_string_literal] = ACTIONS(1471), + [sym_float_literal] = ACTIONS(1471), [sym_block_comment] = ACTIONS(3), }, [331] = { - [ts_builtin_sym_end] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_macro_rules_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_u8] = ACTIONS(1444), - [anon_sym_i8] = ACTIONS(1444), - [anon_sym_u16] = ACTIONS(1444), - [anon_sym_i16] = ACTIONS(1444), - [anon_sym_u32] = ACTIONS(1444), - [anon_sym_i32] = ACTIONS(1444), - [anon_sym_u64] = ACTIONS(1444), - [anon_sym_i64] = ACTIONS(1444), - [anon_sym_u128] = ACTIONS(1444), - [anon_sym_i128] = ACTIONS(1444), - [anon_sym_isize] = ACTIONS(1444), - [anon_sym_usize] = ACTIONS(1444), - [anon_sym_f32] = ACTIONS(1444), - [anon_sym_f64] = ACTIONS(1444), - [anon_sym_bool] = ACTIONS(1444), - [anon_sym_str] = ACTIONS(1444), - [anon_sym_char] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_async] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_fn] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_impl] = ACTIONS(1444), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_loop] = ACTIONS(1444), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_mod] = ACTIONS(1444), - [anon_sym_pub] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_trait] = ACTIONS(1444), - [anon_sym_type] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1444), - [anon_sym_use] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_POUND] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym_LT] = ACTIONS(1442), - [anon_sym_COLON_COLON] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_DOT_DOT] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PIPE] = ACTIONS(1442), - [anon_sym_yield] = ACTIONS(1444), - [anon_sym_move] = ACTIONS(1444), - [sym_integer_literal] = ACTIONS(1442), - [aux_sym_string_literal_token1] = ACTIONS(1442), - [sym_char_literal] = ACTIONS(1442), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1444), - [sym_super] = ACTIONS(1444), - [sym_crate] = ACTIONS(1444), - [sym_metavariable] = ACTIONS(1442), - [sym_raw_string_literal] = ACTIONS(1442), - [sym_float_literal] = ACTIONS(1442), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_macro_rules_BANG] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_u8] = ACTIONS(1477), + [anon_sym_i8] = ACTIONS(1477), + [anon_sym_u16] = ACTIONS(1477), + [anon_sym_i16] = ACTIONS(1477), + [anon_sym_u32] = ACTIONS(1477), + [anon_sym_i32] = ACTIONS(1477), + [anon_sym_u64] = ACTIONS(1477), + [anon_sym_i64] = ACTIONS(1477), + [anon_sym_u128] = ACTIONS(1477), + [anon_sym_i128] = ACTIONS(1477), + [anon_sym_isize] = ACTIONS(1477), + [anon_sym_usize] = ACTIONS(1477), + [anon_sym_f32] = ACTIONS(1477), + [anon_sym_f64] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_str] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_SQUOTE] = ACTIONS(1477), + [anon_sym_async] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_default] = ACTIONS(1477), + [anon_sym_enum] = ACTIONS(1477), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_impl] = ACTIONS(1477), + [anon_sym_let] = ACTIONS(1477), + [anon_sym_loop] = ACTIONS(1477), + [anon_sym_match] = ACTIONS(1477), + [anon_sym_mod] = ACTIONS(1477), + [anon_sym_pub] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_struct] = ACTIONS(1477), + [anon_sym_trait] = ACTIONS(1477), + [anon_sym_type] = ACTIONS(1477), + [anon_sym_union] = ACTIONS(1477), + [anon_sym_unsafe] = ACTIONS(1477), + [anon_sym_use] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_POUND] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_extern] = ACTIONS(1477), + [anon_sym_LT] = ACTIONS(1475), + [anon_sym_COLON_COLON] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_yield] = ACTIONS(1477), + [anon_sym_move] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1475), + [aux_sym_string_literal_token1] = ACTIONS(1475), + [sym_char_literal] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1477), + [sym_super] = ACTIONS(1477), + [sym_crate] = ACTIONS(1477), + [sym_metavariable] = ACTIONS(1475), + [sym_raw_string_literal] = ACTIONS(1475), + [sym_float_literal] = ACTIONS(1475), [sym_block_comment] = ACTIONS(3), }, [332] = { - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_identifier] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_macro_rules_BANG] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_u8] = ACTIONS(1448), - [anon_sym_i8] = ACTIONS(1448), - [anon_sym_u16] = ACTIONS(1448), - [anon_sym_i16] = ACTIONS(1448), - [anon_sym_u32] = ACTIONS(1448), - [anon_sym_i32] = ACTIONS(1448), - [anon_sym_u64] = ACTIONS(1448), - [anon_sym_i64] = ACTIONS(1448), - [anon_sym_u128] = ACTIONS(1448), - [anon_sym_i128] = ACTIONS(1448), - [anon_sym_isize] = ACTIONS(1448), - [anon_sym_usize] = ACTIONS(1448), - [anon_sym_f32] = ACTIONS(1448), - [anon_sym_f64] = ACTIONS(1448), - [anon_sym_bool] = ACTIONS(1448), - [anon_sym_str] = ACTIONS(1448), - [anon_sym_char] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_fn] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_impl] = ACTIONS(1448), - [anon_sym_let] = ACTIONS(1448), - [anon_sym_loop] = ACTIONS(1448), - [anon_sym_match] = ACTIONS(1448), - [anon_sym_mod] = ACTIONS(1448), - [anon_sym_pub] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_trait] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1448), - [anon_sym_use] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym_LT] = ACTIONS(1446), - [anon_sym_COLON_COLON] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_DOT_DOT] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PIPE] = ACTIONS(1446), - [anon_sym_yield] = ACTIONS(1448), - [anon_sym_move] = ACTIONS(1448), - [sym_integer_literal] = ACTIONS(1446), - [aux_sym_string_literal_token1] = ACTIONS(1446), - [sym_char_literal] = ACTIONS(1446), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1448), - [sym_super] = ACTIONS(1448), - [sym_crate] = ACTIONS(1448), - [sym_metavariable] = ACTIONS(1446), - [sym_raw_string_literal] = ACTIONS(1446), - [sym_float_literal] = ACTIONS(1446), + [ts_builtin_sym_end] = ACTIONS(1479), + [sym_identifier] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_macro_rules_BANG] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_u8] = ACTIONS(1481), + [anon_sym_i8] = ACTIONS(1481), + [anon_sym_u16] = ACTIONS(1481), + [anon_sym_i16] = ACTIONS(1481), + [anon_sym_u32] = ACTIONS(1481), + [anon_sym_i32] = ACTIONS(1481), + [anon_sym_u64] = ACTIONS(1481), + [anon_sym_i64] = ACTIONS(1481), + [anon_sym_u128] = ACTIONS(1481), + [anon_sym_i128] = ACTIONS(1481), + [anon_sym_isize] = ACTIONS(1481), + [anon_sym_usize] = ACTIONS(1481), + [anon_sym_f32] = ACTIONS(1481), + [anon_sym_f64] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_str] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_SQUOTE] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1481), + [anon_sym_enum] = ACTIONS(1481), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_impl] = ACTIONS(1481), + [anon_sym_let] = ACTIONS(1481), + [anon_sym_loop] = ACTIONS(1481), + [anon_sym_match] = ACTIONS(1481), + [anon_sym_mod] = ACTIONS(1481), + [anon_sym_pub] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_struct] = ACTIONS(1481), + [anon_sym_trait] = ACTIONS(1481), + [anon_sym_type] = ACTIONS(1481), + [anon_sym_union] = ACTIONS(1481), + [anon_sym_unsafe] = ACTIONS(1481), + [anon_sym_use] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1481), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_PIPE] = ACTIONS(1479), + [anon_sym_yield] = ACTIONS(1481), + [anon_sym_move] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1479), + [aux_sym_string_literal_token1] = ACTIONS(1479), + [sym_char_literal] = ACTIONS(1479), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1481), + [sym_super] = ACTIONS(1481), + [sym_crate] = ACTIONS(1481), + [sym_metavariable] = ACTIONS(1479), + [sym_raw_string_literal] = ACTIONS(1479), + [sym_float_literal] = ACTIONS(1479), [sym_block_comment] = ACTIONS(3), }, [333] = { - [ts_builtin_sym_end] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_macro_rules_BANG] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_u8] = ACTIONS(1452), - [anon_sym_i8] = ACTIONS(1452), - [anon_sym_u16] = ACTIONS(1452), - [anon_sym_i16] = ACTIONS(1452), - [anon_sym_u32] = ACTIONS(1452), - [anon_sym_i32] = ACTIONS(1452), - [anon_sym_u64] = ACTIONS(1452), - [anon_sym_i64] = ACTIONS(1452), - [anon_sym_u128] = ACTIONS(1452), - [anon_sym_i128] = ACTIONS(1452), - [anon_sym_isize] = ACTIONS(1452), - [anon_sym_usize] = ACTIONS(1452), - [anon_sym_f32] = ACTIONS(1452), - [anon_sym_f64] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_str] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_async] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_fn] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_impl] = ACTIONS(1452), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_loop] = ACTIONS(1452), - [anon_sym_match] = ACTIONS(1452), - [anon_sym_mod] = ACTIONS(1452), - [anon_sym_pub] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_trait] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_unsafe] = ACTIONS(1452), - [anon_sym_use] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1450), - [anon_sym_COLON_COLON] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_DOT_DOT] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_yield] = ACTIONS(1452), - [anon_sym_move] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1450), - [aux_sym_string_literal_token1] = ACTIONS(1450), - [sym_char_literal] = ACTIONS(1450), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1452), - [sym_super] = ACTIONS(1452), - [sym_crate] = ACTIONS(1452), - [sym_metavariable] = ACTIONS(1450), - [sym_raw_string_literal] = ACTIONS(1450), - [sym_float_literal] = ACTIONS(1450), + [ts_builtin_sym_end] = ACTIONS(1483), + [sym_identifier] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_macro_rules_BANG] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_u8] = ACTIONS(1485), + [anon_sym_i8] = ACTIONS(1485), + [anon_sym_u16] = ACTIONS(1485), + [anon_sym_i16] = ACTIONS(1485), + [anon_sym_u32] = ACTIONS(1485), + [anon_sym_i32] = ACTIONS(1485), + [anon_sym_u64] = ACTIONS(1485), + [anon_sym_i64] = ACTIONS(1485), + [anon_sym_u128] = ACTIONS(1485), + [anon_sym_i128] = ACTIONS(1485), + [anon_sym_isize] = ACTIONS(1485), + [anon_sym_usize] = ACTIONS(1485), + [anon_sym_f32] = ACTIONS(1485), + [anon_sym_f64] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_str] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_SQUOTE] = ACTIONS(1485), + [anon_sym_async] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1485), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_impl] = ACTIONS(1485), + [anon_sym_let] = ACTIONS(1485), + [anon_sym_loop] = ACTIONS(1485), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_mod] = ACTIONS(1485), + [anon_sym_pub] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_struct] = ACTIONS(1485), + [anon_sym_trait] = ACTIONS(1485), + [anon_sym_type] = ACTIONS(1485), + [anon_sym_union] = ACTIONS(1485), + [anon_sym_unsafe] = ACTIONS(1485), + [anon_sym_use] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_POUND] = ACTIONS(1483), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_extern] = ACTIONS(1485), + [anon_sym_LT] = ACTIONS(1483), + [anon_sym_COLON_COLON] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_move] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1483), + [aux_sym_string_literal_token1] = ACTIONS(1483), + [sym_char_literal] = ACTIONS(1483), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1485), + [sym_super] = ACTIONS(1485), + [sym_crate] = ACTIONS(1485), + [sym_metavariable] = ACTIONS(1483), + [sym_raw_string_literal] = ACTIONS(1483), + [sym_float_literal] = ACTIONS(1483), [sym_block_comment] = ACTIONS(3), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_macro_rules_BANG] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_u8] = ACTIONS(1456), - [anon_sym_i8] = ACTIONS(1456), - [anon_sym_u16] = ACTIONS(1456), - [anon_sym_i16] = ACTIONS(1456), - [anon_sym_u32] = ACTIONS(1456), - [anon_sym_i32] = ACTIONS(1456), - [anon_sym_u64] = ACTIONS(1456), - [anon_sym_i64] = ACTIONS(1456), - [anon_sym_u128] = ACTIONS(1456), - [anon_sym_i128] = ACTIONS(1456), - [anon_sym_isize] = ACTIONS(1456), - [anon_sym_usize] = ACTIONS(1456), - [anon_sym_f32] = ACTIONS(1456), - [anon_sym_f64] = ACTIONS(1456), - [anon_sym_bool] = ACTIONS(1456), - [anon_sym_str] = ACTIONS(1456), - [anon_sym_char] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_async] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_fn] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_impl] = ACTIONS(1456), - [anon_sym_let] = ACTIONS(1456), - [anon_sym_loop] = ACTIONS(1456), - [anon_sym_match] = ACTIONS(1456), - [anon_sym_mod] = ACTIONS(1456), - [anon_sym_pub] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_trait] = ACTIONS(1456), - [anon_sym_type] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_unsafe] = ACTIONS(1456), - [anon_sym_use] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_POUND] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_COLON_COLON] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_DOT_DOT] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_yield] = ACTIONS(1456), - [anon_sym_move] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1454), - [aux_sym_string_literal_token1] = ACTIONS(1454), - [sym_char_literal] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1456), - [sym_super] = ACTIONS(1456), - [sym_crate] = ACTIONS(1456), - [sym_metavariable] = ACTIONS(1454), - [sym_raw_string_literal] = ACTIONS(1454), - [sym_float_literal] = ACTIONS(1454), + [ts_builtin_sym_end] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_macro_rules_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_u8] = ACTIONS(1489), + [anon_sym_i8] = ACTIONS(1489), + [anon_sym_u16] = ACTIONS(1489), + [anon_sym_i16] = ACTIONS(1489), + [anon_sym_u32] = ACTIONS(1489), + [anon_sym_i32] = ACTIONS(1489), + [anon_sym_u64] = ACTIONS(1489), + [anon_sym_i64] = ACTIONS(1489), + [anon_sym_u128] = ACTIONS(1489), + [anon_sym_i128] = ACTIONS(1489), + [anon_sym_isize] = ACTIONS(1489), + [anon_sym_usize] = ACTIONS(1489), + [anon_sym_f32] = ACTIONS(1489), + [anon_sym_f64] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_str] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_SQUOTE] = ACTIONS(1489), + [anon_sym_async] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_default] = ACTIONS(1489), + [anon_sym_enum] = ACTIONS(1489), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_impl] = ACTIONS(1489), + [anon_sym_let] = ACTIONS(1489), + [anon_sym_loop] = ACTIONS(1489), + [anon_sym_match] = ACTIONS(1489), + [anon_sym_mod] = ACTIONS(1489), + [anon_sym_pub] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1489), + [anon_sym_trait] = ACTIONS(1489), + [anon_sym_type] = ACTIONS(1489), + [anon_sym_union] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1489), + [anon_sym_use] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_POUND] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_extern] = ACTIONS(1489), + [anon_sym_LT] = ACTIONS(1487), + [anon_sym_COLON_COLON] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1487), + [anon_sym_DOT_DOT] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1487), + [anon_sym_yield] = ACTIONS(1489), + [anon_sym_move] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1487), + [aux_sym_string_literal_token1] = ACTIONS(1487), + [sym_char_literal] = ACTIONS(1487), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1489), + [sym_super] = ACTIONS(1489), + [sym_crate] = ACTIONS(1489), + [sym_metavariable] = ACTIONS(1487), + [sym_raw_string_literal] = ACTIONS(1487), + [sym_float_literal] = ACTIONS(1487), [sym_block_comment] = ACTIONS(3), }, [335] = { - [ts_builtin_sym_end] = ACTIONS(1458), - [sym_identifier] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_macro_rules_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_u8] = ACTIONS(1460), - [anon_sym_i8] = ACTIONS(1460), - [anon_sym_u16] = ACTIONS(1460), - [anon_sym_i16] = ACTIONS(1460), - [anon_sym_u32] = ACTIONS(1460), - [anon_sym_i32] = ACTIONS(1460), - [anon_sym_u64] = ACTIONS(1460), - [anon_sym_i64] = ACTIONS(1460), - [anon_sym_u128] = ACTIONS(1460), - [anon_sym_i128] = ACTIONS(1460), - [anon_sym_isize] = ACTIONS(1460), - [anon_sym_usize] = ACTIONS(1460), - [anon_sym_f32] = ACTIONS(1460), - [anon_sym_f64] = ACTIONS(1460), - [anon_sym_bool] = ACTIONS(1460), - [anon_sym_str] = ACTIONS(1460), - [anon_sym_char] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_async] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_fn] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_impl] = ACTIONS(1460), - [anon_sym_let] = ACTIONS(1460), - [anon_sym_loop] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1460), - [anon_sym_mod] = ACTIONS(1460), - [anon_sym_pub] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_trait] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_unsafe] = ACTIONS(1460), - [anon_sym_use] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_COLON_COLON] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_yield] = ACTIONS(1460), - [anon_sym_move] = ACTIONS(1460), - [sym_integer_literal] = ACTIONS(1458), - [aux_sym_string_literal_token1] = ACTIONS(1458), - [sym_char_literal] = ACTIONS(1458), - [anon_sym_true] = ACTIONS(1460), - [anon_sym_false] = ACTIONS(1460), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1460), - [sym_super] = ACTIONS(1460), - [sym_crate] = ACTIONS(1460), - [sym_metavariable] = ACTIONS(1458), - [sym_raw_string_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1458), + [ts_builtin_sym_end] = ACTIONS(1491), + [sym_identifier] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_macro_rules_BANG] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_u8] = ACTIONS(1493), + [anon_sym_i8] = ACTIONS(1493), + [anon_sym_u16] = ACTIONS(1493), + [anon_sym_i16] = ACTIONS(1493), + [anon_sym_u32] = ACTIONS(1493), + [anon_sym_i32] = ACTIONS(1493), + [anon_sym_u64] = ACTIONS(1493), + [anon_sym_i64] = ACTIONS(1493), + [anon_sym_u128] = ACTIONS(1493), + [anon_sym_i128] = ACTIONS(1493), + [anon_sym_isize] = ACTIONS(1493), + [anon_sym_usize] = ACTIONS(1493), + [anon_sym_f32] = ACTIONS(1493), + [anon_sym_f64] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_str] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1493), + [anon_sym_async] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_default] = ACTIONS(1493), + [anon_sym_enum] = ACTIONS(1493), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_impl] = ACTIONS(1493), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_loop] = ACTIONS(1493), + [anon_sym_match] = ACTIONS(1493), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_pub] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_struct] = ACTIONS(1493), + [anon_sym_trait] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_unsafe] = ACTIONS(1493), + [anon_sym_use] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_POUND] = ACTIONS(1491), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_extern] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_COLON_COLON] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_yield] = ACTIONS(1493), + [anon_sym_move] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1491), + [aux_sym_string_literal_token1] = ACTIONS(1491), + [sym_char_literal] = ACTIONS(1491), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1493), + [sym_super] = ACTIONS(1493), + [sym_crate] = ACTIONS(1493), + [sym_metavariable] = ACTIONS(1491), + [sym_raw_string_literal] = ACTIONS(1491), + [sym_float_literal] = ACTIONS(1491), [sym_block_comment] = ACTIONS(3), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(1462), - [sym_identifier] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_macro_rules_BANG] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1462), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_u8] = ACTIONS(1464), - [anon_sym_i8] = ACTIONS(1464), - [anon_sym_u16] = ACTIONS(1464), - [anon_sym_i16] = ACTIONS(1464), - [anon_sym_u32] = ACTIONS(1464), - [anon_sym_i32] = ACTIONS(1464), - [anon_sym_u64] = ACTIONS(1464), - [anon_sym_i64] = ACTIONS(1464), - [anon_sym_u128] = ACTIONS(1464), - [anon_sym_i128] = ACTIONS(1464), - [anon_sym_isize] = ACTIONS(1464), - [anon_sym_usize] = ACTIONS(1464), - [anon_sym_f32] = ACTIONS(1464), - [anon_sym_f64] = ACTIONS(1464), - [anon_sym_bool] = ACTIONS(1464), - [anon_sym_str] = ACTIONS(1464), - [anon_sym_char] = ACTIONS(1464), - [anon_sym_SQUOTE] = ACTIONS(1464), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_fn] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_impl] = ACTIONS(1464), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_loop] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_mod] = ACTIONS(1464), - [anon_sym_pub] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_trait] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_unsafe] = ACTIONS(1464), - [anon_sym_use] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym_LT] = ACTIONS(1462), - [anon_sym_COLON_COLON] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_DOT_DOT] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_PIPE] = ACTIONS(1462), - [anon_sym_yield] = ACTIONS(1464), - [anon_sym_move] = ACTIONS(1464), - [sym_integer_literal] = ACTIONS(1462), - [aux_sym_string_literal_token1] = ACTIONS(1462), - [sym_char_literal] = ACTIONS(1462), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1464), - [sym_super] = ACTIONS(1464), - [sym_crate] = ACTIONS(1464), - [sym_metavariable] = ACTIONS(1462), - [sym_raw_string_literal] = ACTIONS(1462), - [sym_float_literal] = ACTIONS(1462), + [ts_builtin_sym_end] = ACTIONS(1495), + [sym_identifier] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_macro_rules_BANG] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_u8] = ACTIONS(1497), + [anon_sym_i8] = ACTIONS(1497), + [anon_sym_u16] = ACTIONS(1497), + [anon_sym_i16] = ACTIONS(1497), + [anon_sym_u32] = ACTIONS(1497), + [anon_sym_i32] = ACTIONS(1497), + [anon_sym_u64] = ACTIONS(1497), + [anon_sym_i64] = ACTIONS(1497), + [anon_sym_u128] = ACTIONS(1497), + [anon_sym_i128] = ACTIONS(1497), + [anon_sym_isize] = ACTIONS(1497), + [anon_sym_usize] = ACTIONS(1497), + [anon_sym_f32] = ACTIONS(1497), + [anon_sym_f64] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_str] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_async] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1497), + [anon_sym_enum] = ACTIONS(1497), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_impl] = ACTIONS(1497), + [anon_sym_let] = ACTIONS(1497), + [anon_sym_loop] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1497), + [anon_sym_mod] = ACTIONS(1497), + [anon_sym_pub] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_struct] = ACTIONS(1497), + [anon_sym_trait] = ACTIONS(1497), + [anon_sym_type] = ACTIONS(1497), + [anon_sym_union] = ACTIONS(1497), + [anon_sym_unsafe] = ACTIONS(1497), + [anon_sym_use] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(1495), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_extern] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_COLON_COLON] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_yield] = ACTIONS(1497), + [anon_sym_move] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1495), + [aux_sym_string_literal_token1] = ACTIONS(1495), + [sym_char_literal] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1497), + [sym_super] = ACTIONS(1497), + [sym_crate] = ACTIONS(1497), + [sym_metavariable] = ACTIONS(1495), + [sym_raw_string_literal] = ACTIONS(1495), + [sym_float_literal] = ACTIONS(1495), [sym_block_comment] = ACTIONS(3), }, [337] = { - [ts_builtin_sym_end] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_macro_rules_BANG] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_u8] = ACTIONS(1468), - [anon_sym_i8] = ACTIONS(1468), - [anon_sym_u16] = ACTIONS(1468), - [anon_sym_i16] = ACTIONS(1468), - [anon_sym_u32] = ACTIONS(1468), - [anon_sym_i32] = ACTIONS(1468), - [anon_sym_u64] = ACTIONS(1468), - [anon_sym_i64] = ACTIONS(1468), - [anon_sym_u128] = ACTIONS(1468), - [anon_sym_i128] = ACTIONS(1468), - [anon_sym_isize] = ACTIONS(1468), - [anon_sym_usize] = ACTIONS(1468), - [anon_sym_f32] = ACTIONS(1468), - [anon_sym_f64] = ACTIONS(1468), - [anon_sym_bool] = ACTIONS(1468), - [anon_sym_str] = ACTIONS(1468), - [anon_sym_char] = ACTIONS(1468), - [anon_sym_SQUOTE] = ACTIONS(1468), - [anon_sym_async] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_fn] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_impl] = ACTIONS(1468), - [anon_sym_let] = ACTIONS(1468), - [anon_sym_loop] = ACTIONS(1468), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_mod] = ACTIONS(1468), - [anon_sym_pub] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_trait] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1468), - [anon_sym_use] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_COLON_COLON] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_DOT_DOT] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_PIPE] = ACTIONS(1466), - [anon_sym_yield] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [sym_integer_literal] = ACTIONS(1466), - [aux_sym_string_literal_token1] = ACTIONS(1466), - [sym_char_literal] = ACTIONS(1466), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1468), - [sym_super] = ACTIONS(1468), - [sym_crate] = ACTIONS(1468), - [sym_metavariable] = ACTIONS(1466), - [sym_raw_string_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1466), + [ts_builtin_sym_end] = ACTIONS(1499), + [sym_identifier] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_macro_rules_BANG] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_u8] = ACTIONS(1501), + [anon_sym_i8] = ACTIONS(1501), + [anon_sym_u16] = ACTIONS(1501), + [anon_sym_i16] = ACTIONS(1501), + [anon_sym_u32] = ACTIONS(1501), + [anon_sym_i32] = ACTIONS(1501), + [anon_sym_u64] = ACTIONS(1501), + [anon_sym_i64] = ACTIONS(1501), + [anon_sym_u128] = ACTIONS(1501), + [anon_sym_i128] = ACTIONS(1501), + [anon_sym_isize] = ACTIONS(1501), + [anon_sym_usize] = ACTIONS(1501), + [anon_sym_f32] = ACTIONS(1501), + [anon_sym_f64] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_str] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_SQUOTE] = ACTIONS(1501), + [anon_sym_async] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_default] = ACTIONS(1501), + [anon_sym_enum] = ACTIONS(1501), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_impl] = ACTIONS(1501), + [anon_sym_let] = ACTIONS(1501), + [anon_sym_loop] = ACTIONS(1501), + [anon_sym_match] = ACTIONS(1501), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_pub] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_struct] = ACTIONS(1501), + [anon_sym_trait] = ACTIONS(1501), + [anon_sym_type] = ACTIONS(1501), + [anon_sym_union] = ACTIONS(1501), + [anon_sym_unsafe] = ACTIONS(1501), + [anon_sym_use] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(1499), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_extern] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_COLON_COLON] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_yield] = ACTIONS(1501), + [anon_sym_move] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1499), + [aux_sym_string_literal_token1] = ACTIONS(1499), + [sym_char_literal] = ACTIONS(1499), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1501), + [sym_super] = ACTIONS(1501), + [sym_crate] = ACTIONS(1501), + [sym_metavariable] = ACTIONS(1499), + [sym_raw_string_literal] = ACTIONS(1499), + [sym_float_literal] = ACTIONS(1499), [sym_block_comment] = ACTIONS(3), }, [338] = { - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_identifier] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_macro_rules_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_u8] = ACTIONS(1472), - [anon_sym_i8] = ACTIONS(1472), - [anon_sym_u16] = ACTIONS(1472), - [anon_sym_i16] = ACTIONS(1472), - [anon_sym_u32] = ACTIONS(1472), - [anon_sym_i32] = ACTIONS(1472), - [anon_sym_u64] = ACTIONS(1472), - [anon_sym_i64] = ACTIONS(1472), - [anon_sym_u128] = ACTIONS(1472), - [anon_sym_i128] = ACTIONS(1472), - [anon_sym_isize] = ACTIONS(1472), - [anon_sym_usize] = ACTIONS(1472), - [anon_sym_f32] = ACTIONS(1472), - [anon_sym_f64] = ACTIONS(1472), - [anon_sym_bool] = ACTIONS(1472), - [anon_sym_str] = ACTIONS(1472), - [anon_sym_char] = ACTIONS(1472), - [anon_sym_SQUOTE] = ACTIONS(1472), - [anon_sym_async] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_fn] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_impl] = ACTIONS(1472), - [anon_sym_let] = ACTIONS(1472), - [anon_sym_loop] = ACTIONS(1472), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_mod] = ACTIONS(1472), - [anon_sym_pub] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_trait] = ACTIONS(1472), - [anon_sym_type] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_use] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_COLON_COLON] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_move] = ACTIONS(1472), - [sym_integer_literal] = ACTIONS(1470), - [aux_sym_string_literal_token1] = ACTIONS(1470), - [sym_char_literal] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1472), - [sym_super] = ACTIONS(1472), - [sym_crate] = ACTIONS(1472), - [sym_metavariable] = ACTIONS(1470), - [sym_raw_string_literal] = ACTIONS(1470), - [sym_float_literal] = ACTIONS(1470), + [ts_builtin_sym_end] = ACTIONS(1503), + [sym_identifier] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_macro_rules_BANG] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_LBRACE] = ACTIONS(1503), + [anon_sym_RBRACE] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_u8] = ACTIONS(1505), + [anon_sym_i8] = ACTIONS(1505), + [anon_sym_u16] = ACTIONS(1505), + [anon_sym_i16] = ACTIONS(1505), + [anon_sym_u32] = ACTIONS(1505), + [anon_sym_i32] = ACTIONS(1505), + [anon_sym_u64] = ACTIONS(1505), + [anon_sym_i64] = ACTIONS(1505), + [anon_sym_u128] = ACTIONS(1505), + [anon_sym_i128] = ACTIONS(1505), + [anon_sym_isize] = ACTIONS(1505), + [anon_sym_usize] = ACTIONS(1505), + [anon_sym_f32] = ACTIONS(1505), + [anon_sym_f64] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_str] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1505), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_default] = ACTIONS(1505), + [anon_sym_enum] = ACTIONS(1505), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_impl] = ACTIONS(1505), + [anon_sym_let] = ACTIONS(1505), + [anon_sym_loop] = ACTIONS(1505), + [anon_sym_match] = ACTIONS(1505), + [anon_sym_mod] = ACTIONS(1505), + [anon_sym_pub] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_struct] = ACTIONS(1505), + [anon_sym_trait] = ACTIONS(1505), + [anon_sym_type] = ACTIONS(1505), + [anon_sym_union] = ACTIONS(1505), + [anon_sym_unsafe] = ACTIONS(1505), + [anon_sym_use] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(1503), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_extern] = ACTIONS(1505), + [anon_sym_LT] = ACTIONS(1503), + [anon_sym_COLON_COLON] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1503), + [anon_sym_DOT_DOT] = ACTIONS(1503), + [anon_sym_DASH] = ACTIONS(1503), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_yield] = ACTIONS(1505), + [anon_sym_move] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [aux_sym_string_literal_token1] = ACTIONS(1503), + [sym_char_literal] = ACTIONS(1503), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1505), + [sym_super] = ACTIONS(1505), + [sym_crate] = ACTIONS(1505), + [sym_metavariable] = ACTIONS(1503), + [sym_raw_string_literal] = ACTIONS(1503), + [sym_float_literal] = ACTIONS(1503), [sym_block_comment] = ACTIONS(3), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(1474), - [sym_identifier] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_macro_rules_BANG] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_u8] = ACTIONS(1476), - [anon_sym_i8] = ACTIONS(1476), - [anon_sym_u16] = ACTIONS(1476), - [anon_sym_i16] = ACTIONS(1476), - [anon_sym_u32] = ACTIONS(1476), - [anon_sym_i32] = ACTIONS(1476), - [anon_sym_u64] = ACTIONS(1476), - [anon_sym_i64] = ACTIONS(1476), - [anon_sym_u128] = ACTIONS(1476), - [anon_sym_i128] = ACTIONS(1476), - [anon_sym_isize] = ACTIONS(1476), - [anon_sym_usize] = ACTIONS(1476), - [anon_sym_f32] = ACTIONS(1476), - [anon_sym_f64] = ACTIONS(1476), - [anon_sym_bool] = ACTIONS(1476), - [anon_sym_str] = ACTIONS(1476), - [anon_sym_char] = ACTIONS(1476), - [anon_sym_SQUOTE] = ACTIONS(1476), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_fn] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_impl] = ACTIONS(1476), - [anon_sym_let] = ACTIONS(1476), - [anon_sym_loop] = ACTIONS(1476), - [anon_sym_match] = ACTIONS(1476), - [anon_sym_mod] = ACTIONS(1476), - [anon_sym_pub] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_trait] = ACTIONS(1476), - [anon_sym_type] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1476), - [anon_sym_use] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1474), - [anon_sym_COLON_COLON] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_yield] = ACTIONS(1476), - [anon_sym_move] = ACTIONS(1476), - [sym_integer_literal] = ACTIONS(1474), - [aux_sym_string_literal_token1] = ACTIONS(1474), - [sym_char_literal] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1476), - [sym_super] = ACTIONS(1476), - [sym_crate] = ACTIONS(1476), - [sym_metavariable] = ACTIONS(1474), - [sym_raw_string_literal] = ACTIONS(1474), - [sym_float_literal] = ACTIONS(1474), + [ts_builtin_sym_end] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_macro_rules_BANG] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_u8] = ACTIONS(1509), + [anon_sym_i8] = ACTIONS(1509), + [anon_sym_u16] = ACTIONS(1509), + [anon_sym_i16] = ACTIONS(1509), + [anon_sym_u32] = ACTIONS(1509), + [anon_sym_i32] = ACTIONS(1509), + [anon_sym_u64] = ACTIONS(1509), + [anon_sym_i64] = ACTIONS(1509), + [anon_sym_u128] = ACTIONS(1509), + [anon_sym_i128] = ACTIONS(1509), + [anon_sym_isize] = ACTIONS(1509), + [anon_sym_usize] = ACTIONS(1509), + [anon_sym_f32] = ACTIONS(1509), + [anon_sym_f64] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_str] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_SQUOTE] = ACTIONS(1509), + [anon_sym_async] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_impl] = ACTIONS(1509), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_loop] = ACTIONS(1509), + [anon_sym_match] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_pub] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_trait] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_unsafe] = ACTIONS(1509), + [anon_sym_use] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_extern] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_yield] = ACTIONS(1509), + [anon_sym_move] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1507), + [aux_sym_string_literal_token1] = ACTIONS(1507), + [sym_char_literal] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1509), + [sym_super] = ACTIONS(1509), + [sym_crate] = ACTIONS(1509), + [sym_metavariable] = ACTIONS(1507), + [sym_raw_string_literal] = ACTIONS(1507), + [sym_float_literal] = ACTIONS(1507), [sym_block_comment] = ACTIONS(3), }, [340] = { - [ts_builtin_sym_end] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_macro_rules_BANG] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_u8] = ACTIONS(1480), - [anon_sym_i8] = ACTIONS(1480), - [anon_sym_u16] = ACTIONS(1480), - [anon_sym_i16] = ACTIONS(1480), - [anon_sym_u32] = ACTIONS(1480), - [anon_sym_i32] = ACTIONS(1480), - [anon_sym_u64] = ACTIONS(1480), - [anon_sym_i64] = ACTIONS(1480), - [anon_sym_u128] = ACTIONS(1480), - [anon_sym_i128] = ACTIONS(1480), - [anon_sym_isize] = ACTIONS(1480), - [anon_sym_usize] = ACTIONS(1480), - [anon_sym_f32] = ACTIONS(1480), - [anon_sym_f64] = ACTIONS(1480), - [anon_sym_bool] = ACTIONS(1480), - [anon_sym_str] = ACTIONS(1480), - [anon_sym_char] = ACTIONS(1480), - [anon_sym_SQUOTE] = ACTIONS(1480), - [anon_sym_async] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_fn] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_impl] = ACTIONS(1480), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_loop] = ACTIONS(1480), - [anon_sym_match] = ACTIONS(1480), - [anon_sym_mod] = ACTIONS(1480), - [anon_sym_pub] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_trait] = ACTIONS(1480), - [anon_sym_type] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_unsafe] = ACTIONS(1480), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_COLON_COLON] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_yield] = ACTIONS(1480), - [anon_sym_move] = ACTIONS(1480), - [sym_integer_literal] = ACTIONS(1478), - [aux_sym_string_literal_token1] = ACTIONS(1478), - [sym_char_literal] = ACTIONS(1478), - [anon_sym_true] = ACTIONS(1480), - [anon_sym_false] = ACTIONS(1480), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1480), - [sym_super] = ACTIONS(1480), - [sym_crate] = ACTIONS(1480), - [sym_metavariable] = ACTIONS(1478), - [sym_raw_string_literal] = ACTIONS(1478), - [sym_float_literal] = ACTIONS(1478), + [ts_builtin_sym_end] = ACTIONS(1511), + [sym_identifier] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_macro_rules_BANG] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_RBRACE] = ACTIONS(1511), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_u8] = ACTIONS(1513), + [anon_sym_i8] = ACTIONS(1513), + [anon_sym_u16] = ACTIONS(1513), + [anon_sym_i16] = ACTIONS(1513), + [anon_sym_u32] = ACTIONS(1513), + [anon_sym_i32] = ACTIONS(1513), + [anon_sym_u64] = ACTIONS(1513), + [anon_sym_i64] = ACTIONS(1513), + [anon_sym_u128] = ACTIONS(1513), + [anon_sym_i128] = ACTIONS(1513), + [anon_sym_isize] = ACTIONS(1513), + [anon_sym_usize] = ACTIONS(1513), + [anon_sym_f32] = ACTIONS(1513), + [anon_sym_f64] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_str] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_SQUOTE] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_enum] = ACTIONS(1513), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_impl] = ACTIONS(1513), + [anon_sym_let] = ACTIONS(1513), + [anon_sym_loop] = ACTIONS(1513), + [anon_sym_match] = ACTIONS(1513), + [anon_sym_mod] = ACTIONS(1513), + [anon_sym_pub] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_struct] = ACTIONS(1513), + [anon_sym_trait] = ACTIONS(1513), + [anon_sym_type] = ACTIONS(1513), + [anon_sym_union] = ACTIONS(1513), + [anon_sym_unsafe] = ACTIONS(1513), + [anon_sym_use] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_POUND] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym_COLON_COLON] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_yield] = ACTIONS(1513), + [anon_sym_move] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1511), + [aux_sym_string_literal_token1] = ACTIONS(1511), + [sym_char_literal] = ACTIONS(1511), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1513), + [sym_super] = ACTIONS(1513), + [sym_crate] = ACTIONS(1513), + [sym_metavariable] = ACTIONS(1511), + [sym_raw_string_literal] = ACTIONS(1511), + [sym_float_literal] = ACTIONS(1511), [sym_block_comment] = ACTIONS(3), }, [341] = { - [ts_builtin_sym_end] = ACTIONS(1482), - [sym_identifier] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_macro_rules_BANG] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1482), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_u8] = ACTIONS(1484), - [anon_sym_i8] = ACTIONS(1484), - [anon_sym_u16] = ACTIONS(1484), - [anon_sym_i16] = ACTIONS(1484), - [anon_sym_u32] = ACTIONS(1484), - [anon_sym_i32] = ACTIONS(1484), - [anon_sym_u64] = ACTIONS(1484), - [anon_sym_i64] = ACTIONS(1484), - [anon_sym_u128] = ACTIONS(1484), - [anon_sym_i128] = ACTIONS(1484), - [anon_sym_isize] = ACTIONS(1484), - [anon_sym_usize] = ACTIONS(1484), - [anon_sym_f32] = ACTIONS(1484), - [anon_sym_f64] = ACTIONS(1484), - [anon_sym_bool] = ACTIONS(1484), - [anon_sym_str] = ACTIONS(1484), - [anon_sym_char] = ACTIONS(1484), - [anon_sym_SQUOTE] = ACTIONS(1484), - [anon_sym_async] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_fn] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_impl] = ACTIONS(1484), - [anon_sym_let] = ACTIONS(1484), - [anon_sym_loop] = ACTIONS(1484), - [anon_sym_match] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1484), - [anon_sym_pub] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_trait] = ACTIONS(1484), - [anon_sym_type] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_unsafe] = ACTIONS(1484), - [anon_sym_use] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_yield] = ACTIONS(1484), - [anon_sym_move] = ACTIONS(1484), - [sym_integer_literal] = ACTIONS(1482), - [aux_sym_string_literal_token1] = ACTIONS(1482), - [sym_char_literal] = ACTIONS(1482), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1484), - [sym_super] = ACTIONS(1484), - [sym_crate] = ACTIONS(1484), - [sym_metavariable] = ACTIONS(1482), - [sym_raw_string_literal] = ACTIONS(1482), - [sym_float_literal] = ACTIONS(1482), + [ts_builtin_sym_end] = ACTIONS(1515), + [sym_identifier] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_macro_rules_BANG] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_u8] = ACTIONS(1517), + [anon_sym_i8] = ACTIONS(1517), + [anon_sym_u16] = ACTIONS(1517), + [anon_sym_i16] = ACTIONS(1517), + [anon_sym_u32] = ACTIONS(1517), + [anon_sym_i32] = ACTIONS(1517), + [anon_sym_u64] = ACTIONS(1517), + [anon_sym_i64] = ACTIONS(1517), + [anon_sym_u128] = ACTIONS(1517), + [anon_sym_i128] = ACTIONS(1517), + [anon_sym_isize] = ACTIONS(1517), + [anon_sym_usize] = ACTIONS(1517), + [anon_sym_f32] = ACTIONS(1517), + [anon_sym_f64] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_str] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_SQUOTE] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_default] = ACTIONS(1517), + [anon_sym_enum] = ACTIONS(1517), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_impl] = ACTIONS(1517), + [anon_sym_let] = ACTIONS(1517), + [anon_sym_loop] = ACTIONS(1517), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_mod] = ACTIONS(1517), + [anon_sym_pub] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_struct] = ACTIONS(1517), + [anon_sym_trait] = ACTIONS(1517), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_union] = ACTIONS(1517), + [anon_sym_unsafe] = ACTIONS(1517), + [anon_sym_use] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_POUND] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_extern] = ACTIONS(1517), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_yield] = ACTIONS(1517), + [anon_sym_move] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1515), + [aux_sym_string_literal_token1] = ACTIONS(1515), + [sym_char_literal] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1517), + [sym_super] = ACTIONS(1517), + [sym_crate] = ACTIONS(1517), + [sym_metavariable] = ACTIONS(1515), + [sym_raw_string_literal] = ACTIONS(1515), + [sym_float_literal] = ACTIONS(1515), [sym_block_comment] = ACTIONS(3), }, [342] = { - [ts_builtin_sym_end] = ACTIONS(1486), - [sym_identifier] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_macro_rules_BANG] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_u8] = ACTIONS(1488), - [anon_sym_i8] = ACTIONS(1488), - [anon_sym_u16] = ACTIONS(1488), - [anon_sym_i16] = ACTIONS(1488), - [anon_sym_u32] = ACTIONS(1488), - [anon_sym_i32] = ACTIONS(1488), - [anon_sym_u64] = ACTIONS(1488), - [anon_sym_i64] = ACTIONS(1488), - [anon_sym_u128] = ACTIONS(1488), - [anon_sym_i128] = ACTIONS(1488), - [anon_sym_isize] = ACTIONS(1488), - [anon_sym_usize] = ACTIONS(1488), - [anon_sym_f32] = ACTIONS(1488), - [anon_sym_f64] = ACTIONS(1488), - [anon_sym_bool] = ACTIONS(1488), - [anon_sym_str] = ACTIONS(1488), - [anon_sym_char] = ACTIONS(1488), - [anon_sym_SQUOTE] = ACTIONS(1488), - [anon_sym_async] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_fn] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_impl] = ACTIONS(1488), - [anon_sym_let] = ACTIONS(1488), - [anon_sym_loop] = ACTIONS(1488), - [anon_sym_match] = ACTIONS(1488), - [anon_sym_mod] = ACTIONS(1488), - [anon_sym_pub] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_trait] = ACTIONS(1488), - [anon_sym_type] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_unsafe] = ACTIONS(1488), - [anon_sym_use] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_COLON_COLON] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_yield] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1486), - [aux_sym_string_literal_token1] = ACTIONS(1486), - [sym_char_literal] = ACTIONS(1486), - [anon_sym_true] = ACTIONS(1488), - [anon_sym_false] = ACTIONS(1488), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1488), - [sym_super] = ACTIONS(1488), - [sym_crate] = ACTIONS(1488), - [sym_metavariable] = ACTIONS(1486), - [sym_raw_string_literal] = ACTIONS(1486), - [sym_float_literal] = ACTIONS(1486), + [sym__token_pattern] = STATE(245), + [sym_token_tree_pattern] = STATE(245), + [sym_token_binding_pattern] = STATE(245), + [sym_token_repetition_pattern] = STATE(245), + [sym__never_special_token] = STATE(245), + [sym__literal] = STATE(245), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(245), + [sym_identifier] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_RBRACK] = ACTIONS(1519), + [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_u8] = ACTIONS(1150), + [anon_sym_i8] = ACTIONS(1150), + [anon_sym_u16] = ACTIONS(1150), + [anon_sym_i16] = ACTIONS(1150), + [anon_sym_u32] = ACTIONS(1150), + [anon_sym_i32] = ACTIONS(1150), + [anon_sym_u64] = ACTIONS(1150), + [anon_sym_i64] = ACTIONS(1150), + [anon_sym_u128] = ACTIONS(1150), + [anon_sym_i128] = ACTIONS(1150), + [anon_sym_isize] = ACTIONS(1150), + [anon_sym_usize] = ACTIONS(1150), + [anon_sym_f32] = ACTIONS(1150), + [anon_sym_f64] = ACTIONS(1150), + [anon_sym_bool] = ACTIONS(1150), + [anon_sym_str] = ACTIONS(1150), + [anon_sym_char] = ACTIONS(1150), + [aux_sym__never_special_token_token1] = ACTIONS(1150), + [anon_sym_SQUOTE] = ACTIONS(1150), + [anon_sym_as] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_fn] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_impl] = ACTIONS(1150), + [anon_sym_let] = ACTIONS(1150), + [anon_sym_loop] = ACTIONS(1150), + [anon_sym_match] = ACTIONS(1150), + [anon_sym_mod] = ACTIONS(1150), + [anon_sym_pub] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_trait] = ACTIONS(1150), + [anon_sym_type] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_unsafe] = ACTIONS(1150), + [anon_sym_use] = ACTIONS(1150), + [anon_sym_where] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [sym_mutable_specifier] = ACTIONS(1150), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1168), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, [343] = { - [ts_builtin_sym_end] = ACTIONS(1490), - [sym_identifier] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym_macro_rules_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_RBRACE] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_u8] = ACTIONS(1492), - [anon_sym_i8] = ACTIONS(1492), - [anon_sym_u16] = ACTIONS(1492), - [anon_sym_i16] = ACTIONS(1492), - [anon_sym_u32] = ACTIONS(1492), - [anon_sym_i32] = ACTIONS(1492), - [anon_sym_u64] = ACTIONS(1492), - [anon_sym_i64] = ACTIONS(1492), - [anon_sym_u128] = ACTIONS(1492), - [anon_sym_i128] = ACTIONS(1492), - [anon_sym_isize] = ACTIONS(1492), - [anon_sym_usize] = ACTIONS(1492), - [anon_sym_f32] = ACTIONS(1492), - [anon_sym_f64] = ACTIONS(1492), - [anon_sym_bool] = ACTIONS(1492), - [anon_sym_str] = ACTIONS(1492), - [anon_sym_char] = ACTIONS(1492), - [anon_sym_SQUOTE] = ACTIONS(1492), - [anon_sym_async] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_fn] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_impl] = ACTIONS(1492), - [anon_sym_let] = ACTIONS(1492), - [anon_sym_loop] = ACTIONS(1492), - [anon_sym_match] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1492), - [anon_sym_pub] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_trait] = ACTIONS(1492), - [anon_sym_type] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_unsafe] = ACTIONS(1492), - [anon_sym_use] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_COLON_COLON] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_yield] = ACTIONS(1492), - [anon_sym_move] = ACTIONS(1492), - [sym_integer_literal] = ACTIONS(1490), - [aux_sym_string_literal_token1] = ACTIONS(1490), - [sym_char_literal] = ACTIONS(1490), - [anon_sym_true] = ACTIONS(1492), - [anon_sym_false] = ACTIONS(1492), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1492), - [sym_super] = ACTIONS(1492), - [sym_crate] = ACTIONS(1492), - [sym_metavariable] = ACTIONS(1490), - [sym_raw_string_literal] = ACTIONS(1490), - [sym_float_literal] = ACTIONS(1490), + [sym__token_pattern] = STATE(245), + [sym_token_tree_pattern] = STATE(245), + [sym_token_binding_pattern] = STATE(245), + [sym_token_repetition_pattern] = STATE(245), + [sym__never_special_token] = STATE(245), + [sym__literal] = STATE(245), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(245), + [sym_identifier] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_u8] = ACTIONS(1150), + [anon_sym_i8] = ACTIONS(1150), + [anon_sym_u16] = ACTIONS(1150), + [anon_sym_i16] = ACTIONS(1150), + [anon_sym_u32] = ACTIONS(1150), + [anon_sym_i32] = ACTIONS(1150), + [anon_sym_u64] = ACTIONS(1150), + [anon_sym_i64] = ACTIONS(1150), + [anon_sym_u128] = ACTIONS(1150), + [anon_sym_i128] = ACTIONS(1150), + [anon_sym_isize] = ACTIONS(1150), + [anon_sym_usize] = ACTIONS(1150), + [anon_sym_f32] = ACTIONS(1150), + [anon_sym_f64] = ACTIONS(1150), + [anon_sym_bool] = ACTIONS(1150), + [anon_sym_str] = ACTIONS(1150), + [anon_sym_char] = ACTIONS(1150), + [aux_sym__never_special_token_token1] = ACTIONS(1150), + [anon_sym_SQUOTE] = ACTIONS(1150), + [anon_sym_as] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_fn] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_impl] = ACTIONS(1150), + [anon_sym_let] = ACTIONS(1150), + [anon_sym_loop] = ACTIONS(1150), + [anon_sym_match] = ACTIONS(1150), + [anon_sym_mod] = ACTIONS(1150), + [anon_sym_pub] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_trait] = ACTIONS(1150), + [anon_sym_type] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_unsafe] = ACTIONS(1150), + [anon_sym_use] = ACTIONS(1150), + [anon_sym_where] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [sym_mutable_specifier] = ACTIONS(1150), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1168), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, [344] = { - [ts_builtin_sym_end] = ACTIONS(1494), - [sym_identifier] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_macro_rules_BANG] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_u8] = ACTIONS(1496), - [anon_sym_i8] = ACTIONS(1496), - [anon_sym_u16] = ACTIONS(1496), - [anon_sym_i16] = ACTIONS(1496), - [anon_sym_u32] = ACTIONS(1496), - [anon_sym_i32] = ACTIONS(1496), - [anon_sym_u64] = ACTIONS(1496), - [anon_sym_i64] = ACTIONS(1496), - [anon_sym_u128] = ACTIONS(1496), - [anon_sym_i128] = ACTIONS(1496), - [anon_sym_isize] = ACTIONS(1496), - [anon_sym_usize] = ACTIONS(1496), - [anon_sym_f32] = ACTIONS(1496), - [anon_sym_f64] = ACTIONS(1496), - [anon_sym_bool] = ACTIONS(1496), - [anon_sym_str] = ACTIONS(1496), - [anon_sym_char] = ACTIONS(1496), - [anon_sym_SQUOTE] = ACTIONS(1496), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_fn] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_impl] = ACTIONS(1496), - [anon_sym_let] = ACTIONS(1496), - [anon_sym_loop] = ACTIONS(1496), - [anon_sym_match] = ACTIONS(1496), - [anon_sym_mod] = ACTIONS(1496), - [anon_sym_pub] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_trait] = ACTIONS(1496), - [anon_sym_type] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_unsafe] = ACTIONS(1496), - [anon_sym_use] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym_LT] = ACTIONS(1494), - [anon_sym_COLON_COLON] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_yield] = ACTIONS(1496), - [anon_sym_move] = ACTIONS(1496), - [sym_integer_literal] = ACTIONS(1494), - [aux_sym_string_literal_token1] = ACTIONS(1494), - [sym_char_literal] = ACTIONS(1494), - [anon_sym_true] = ACTIONS(1496), - [anon_sym_false] = ACTIONS(1496), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1496), - [sym_super] = ACTIONS(1496), - [sym_crate] = ACTIONS(1496), - [sym_metavariable] = ACTIONS(1494), - [sym_raw_string_literal] = ACTIONS(1494), - [sym_float_literal] = ACTIONS(1494), + [sym__token_pattern] = STATE(245), + [sym_token_tree_pattern] = STATE(245), + [sym_token_binding_pattern] = STATE(245), + [sym_token_repetition_pattern] = STATE(245), + [sym__never_special_token] = STATE(245), + [sym__literal] = STATE(245), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(245), + [sym_identifier] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_u8] = ACTIONS(1150), + [anon_sym_i8] = ACTIONS(1150), + [anon_sym_u16] = ACTIONS(1150), + [anon_sym_i16] = ACTIONS(1150), + [anon_sym_u32] = ACTIONS(1150), + [anon_sym_i32] = ACTIONS(1150), + [anon_sym_u64] = ACTIONS(1150), + [anon_sym_i64] = ACTIONS(1150), + [anon_sym_u128] = ACTIONS(1150), + [anon_sym_i128] = ACTIONS(1150), + [anon_sym_isize] = ACTIONS(1150), + [anon_sym_usize] = ACTIONS(1150), + [anon_sym_f32] = ACTIONS(1150), + [anon_sym_f64] = ACTIONS(1150), + [anon_sym_bool] = ACTIONS(1150), + [anon_sym_str] = ACTIONS(1150), + [anon_sym_char] = ACTIONS(1150), + [aux_sym__never_special_token_token1] = ACTIONS(1150), + [anon_sym_SQUOTE] = ACTIONS(1150), + [anon_sym_as] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_fn] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_impl] = ACTIONS(1150), + [anon_sym_let] = ACTIONS(1150), + [anon_sym_loop] = ACTIONS(1150), + [anon_sym_match] = ACTIONS(1150), + [anon_sym_mod] = ACTIONS(1150), + [anon_sym_pub] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_trait] = ACTIONS(1150), + [anon_sym_type] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_unsafe] = ACTIONS(1150), + [anon_sym_use] = ACTIONS(1150), + [anon_sym_where] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [sym_mutable_specifier] = ACTIONS(1150), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1168), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(1498), - [sym_identifier] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_macro_rules_BANG] = ACTIONS(1498), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_LBRACK] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_u8] = ACTIONS(1500), - [anon_sym_i8] = ACTIONS(1500), - [anon_sym_u16] = ACTIONS(1500), - [anon_sym_i16] = ACTIONS(1500), - [anon_sym_u32] = ACTIONS(1500), - [anon_sym_i32] = ACTIONS(1500), - [anon_sym_u64] = ACTIONS(1500), - [anon_sym_i64] = ACTIONS(1500), - [anon_sym_u128] = ACTIONS(1500), - [anon_sym_i128] = ACTIONS(1500), - [anon_sym_isize] = ACTIONS(1500), - [anon_sym_usize] = ACTIONS(1500), - [anon_sym_f32] = ACTIONS(1500), - [anon_sym_f64] = ACTIONS(1500), - [anon_sym_bool] = ACTIONS(1500), - [anon_sym_str] = ACTIONS(1500), - [anon_sym_char] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1500), - [anon_sym_async] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_fn] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_impl] = ACTIONS(1500), - [anon_sym_let] = ACTIONS(1500), - [anon_sym_loop] = ACTIONS(1500), - [anon_sym_match] = ACTIONS(1500), - [anon_sym_mod] = ACTIONS(1500), - [anon_sym_pub] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_trait] = ACTIONS(1500), - [anon_sym_type] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_unsafe] = ACTIONS(1500), - [anon_sym_use] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_COLON_COLON] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1498), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), - [anon_sym_move] = ACTIONS(1500), - [sym_integer_literal] = ACTIONS(1498), - [aux_sym_string_literal_token1] = ACTIONS(1498), - [sym_char_literal] = ACTIONS(1498), - [anon_sym_true] = ACTIONS(1500), - [anon_sym_false] = ACTIONS(1500), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1500), - [sym_super] = ACTIONS(1500), - [sym_crate] = ACTIONS(1500), - [sym_metavariable] = ACTIONS(1498), - [sym_raw_string_literal] = ACTIONS(1498), - [sym_float_literal] = ACTIONS(1498), + [ts_builtin_sym_end] = ACTIONS(1521), + [sym_identifier] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_macro_rules_BANG] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_u8] = ACTIONS(1523), + [anon_sym_i8] = ACTIONS(1523), + [anon_sym_u16] = ACTIONS(1523), + [anon_sym_i16] = ACTIONS(1523), + [anon_sym_u32] = ACTIONS(1523), + [anon_sym_i32] = ACTIONS(1523), + [anon_sym_u64] = ACTIONS(1523), + [anon_sym_i64] = ACTIONS(1523), + [anon_sym_u128] = ACTIONS(1523), + [anon_sym_i128] = ACTIONS(1523), + [anon_sym_isize] = ACTIONS(1523), + [anon_sym_usize] = ACTIONS(1523), + [anon_sym_f32] = ACTIONS(1523), + [anon_sym_f64] = ACTIONS(1523), + [anon_sym_bool] = ACTIONS(1523), + [anon_sym_str] = ACTIONS(1523), + [anon_sym_char] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_async] = ACTIONS(1523), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_const] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1523), + [anon_sym_default] = ACTIONS(1523), + [anon_sym_enum] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1523), + [anon_sym_for] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1523), + [anon_sym_impl] = ACTIONS(1523), + [anon_sym_let] = ACTIONS(1523), + [anon_sym_loop] = ACTIONS(1523), + [anon_sym_match] = ACTIONS(1523), + [anon_sym_mod] = ACTIONS(1523), + [anon_sym_pub] = ACTIONS(1523), + [anon_sym_return] = ACTIONS(1523), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_struct] = ACTIONS(1523), + [anon_sym_trait] = ACTIONS(1523), + [anon_sym_type] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(1523), + [anon_sym_unsafe] = ACTIONS(1523), + [anon_sym_use] = ACTIONS(1523), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_POUND] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_extern] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1521), + [anon_sym_COLON_COLON] = ACTIONS(1521), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_yield] = ACTIONS(1523), + [anon_sym_move] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1521), + [aux_sym_string_literal_token1] = ACTIONS(1521), + [sym_char_literal] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1523), + [anon_sym_false] = ACTIONS(1523), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1523), + [sym_super] = ACTIONS(1523), + [sym_crate] = ACTIONS(1523), + [sym_metavariable] = ACTIONS(1521), + [sym_raw_string_literal] = ACTIONS(1521), + [sym_float_literal] = ACTIONS(1521), [sym_block_comment] = ACTIONS(3), }, [346] = { - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_macro_rules_BANG] = ACTIONS(1502), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_u8] = ACTIONS(1504), - [anon_sym_i8] = ACTIONS(1504), - [anon_sym_u16] = ACTIONS(1504), - [anon_sym_i16] = ACTIONS(1504), - [anon_sym_u32] = ACTIONS(1504), - [anon_sym_i32] = ACTIONS(1504), - [anon_sym_u64] = ACTIONS(1504), - [anon_sym_i64] = ACTIONS(1504), - [anon_sym_u128] = ACTIONS(1504), - [anon_sym_i128] = ACTIONS(1504), - [anon_sym_isize] = ACTIONS(1504), - [anon_sym_usize] = ACTIONS(1504), - [anon_sym_f32] = ACTIONS(1504), - [anon_sym_f64] = ACTIONS(1504), - [anon_sym_bool] = ACTIONS(1504), - [anon_sym_str] = ACTIONS(1504), - [anon_sym_char] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1504), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_fn] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_impl] = ACTIONS(1504), - [anon_sym_let] = ACTIONS(1504), - [anon_sym_loop] = ACTIONS(1504), - [anon_sym_match] = ACTIONS(1504), - [anon_sym_mod] = ACTIONS(1504), - [anon_sym_pub] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_trait] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_unsafe] = ACTIONS(1504), - [anon_sym_use] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_COLON_COLON] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_DOT_DOT] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_yield] = ACTIONS(1504), - [anon_sym_move] = ACTIONS(1504), - [sym_integer_literal] = ACTIONS(1502), - [aux_sym_string_literal_token1] = ACTIONS(1502), - [sym_char_literal] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1504), - [sym_super] = ACTIONS(1504), - [sym_crate] = ACTIONS(1504), - [sym_metavariable] = ACTIONS(1502), - [sym_raw_string_literal] = ACTIONS(1502), - [sym_float_literal] = ACTIONS(1502), + [ts_builtin_sym_end] = ACTIONS(1525), + [sym_identifier] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1525), + [anon_sym_macro_rules_BANG] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_u8] = ACTIONS(1527), + [anon_sym_i8] = ACTIONS(1527), + [anon_sym_u16] = ACTIONS(1527), + [anon_sym_i16] = ACTIONS(1527), + [anon_sym_u32] = ACTIONS(1527), + [anon_sym_i32] = ACTIONS(1527), + [anon_sym_u64] = ACTIONS(1527), + [anon_sym_i64] = ACTIONS(1527), + [anon_sym_u128] = ACTIONS(1527), + [anon_sym_i128] = ACTIONS(1527), + [anon_sym_isize] = ACTIONS(1527), + [anon_sym_usize] = ACTIONS(1527), + [anon_sym_f32] = ACTIONS(1527), + [anon_sym_f64] = ACTIONS(1527), + [anon_sym_bool] = ACTIONS(1527), + [anon_sym_str] = ACTIONS(1527), + [anon_sym_char] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_async] = ACTIONS(1527), + [anon_sym_break] = ACTIONS(1527), + [anon_sym_const] = ACTIONS(1527), + [anon_sym_continue] = ACTIONS(1527), + [anon_sym_default] = ACTIONS(1527), + [anon_sym_enum] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1527), + [anon_sym_for] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1527), + [anon_sym_impl] = ACTIONS(1527), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_loop] = ACTIONS(1527), + [anon_sym_match] = ACTIONS(1527), + [anon_sym_mod] = ACTIONS(1527), + [anon_sym_pub] = ACTIONS(1527), + [anon_sym_return] = ACTIONS(1527), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_struct] = ACTIONS(1527), + [anon_sym_trait] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_union] = ACTIONS(1527), + [anon_sym_unsafe] = ACTIONS(1527), + [anon_sym_use] = ACTIONS(1527), + [anon_sym_while] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_COLON_COLON] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_yield] = ACTIONS(1527), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1525), + [aux_sym_string_literal_token1] = ACTIONS(1525), + [sym_char_literal] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1527), + [anon_sym_false] = ACTIONS(1527), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1527), + [sym_super] = ACTIONS(1527), + [sym_crate] = ACTIONS(1527), + [sym_metavariable] = ACTIONS(1525), + [sym_raw_string_literal] = ACTIONS(1525), + [sym_float_literal] = ACTIONS(1525), [sym_block_comment] = ACTIONS(3), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(1506), - [sym_identifier] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_macro_rules_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_u8] = ACTIONS(1508), - [anon_sym_i8] = ACTIONS(1508), - [anon_sym_u16] = ACTIONS(1508), - [anon_sym_i16] = ACTIONS(1508), - [anon_sym_u32] = ACTIONS(1508), - [anon_sym_i32] = ACTIONS(1508), - [anon_sym_u64] = ACTIONS(1508), - [anon_sym_i64] = ACTIONS(1508), - [anon_sym_u128] = ACTIONS(1508), - [anon_sym_i128] = ACTIONS(1508), - [anon_sym_isize] = ACTIONS(1508), - [anon_sym_usize] = ACTIONS(1508), - [anon_sym_f32] = ACTIONS(1508), - [anon_sym_f64] = ACTIONS(1508), - [anon_sym_bool] = ACTIONS(1508), - [anon_sym_str] = ACTIONS(1508), - [anon_sym_char] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_async] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_const] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_default] = ACTIONS(1508), - [anon_sym_enum] = ACTIONS(1508), - [anon_sym_fn] = ACTIONS(1508), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_impl] = ACTIONS(1508), - [anon_sym_let] = ACTIONS(1508), - [anon_sym_loop] = ACTIONS(1508), - [anon_sym_match] = ACTIONS(1508), - [anon_sym_mod] = ACTIONS(1508), - [anon_sym_pub] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_struct] = ACTIONS(1508), - [anon_sym_trait] = ACTIONS(1508), - [anon_sym_type] = ACTIONS(1508), - [anon_sym_union] = ACTIONS(1508), - [anon_sym_unsafe] = ACTIONS(1508), - [anon_sym_use] = ACTIONS(1508), - [anon_sym_while] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_extern] = ACTIONS(1508), - [anon_sym_LT] = ACTIONS(1506), - [anon_sym_COLON_COLON] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_yield] = ACTIONS(1508), - [anon_sym_move] = ACTIONS(1508), - [sym_integer_literal] = ACTIONS(1506), - [aux_sym_string_literal_token1] = ACTIONS(1506), - [sym_char_literal] = ACTIONS(1506), - [anon_sym_true] = ACTIONS(1508), - [anon_sym_false] = ACTIONS(1508), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1508), - [sym_super] = ACTIONS(1508), - [sym_crate] = ACTIONS(1508), - [sym_metavariable] = ACTIONS(1506), - [sym_raw_string_literal] = ACTIONS(1506), - [sym_float_literal] = ACTIONS(1506), + [ts_builtin_sym_end] = ACTIONS(1529), + [sym_identifier] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1529), + [anon_sym_macro_rules_BANG] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_u8] = ACTIONS(1531), + [anon_sym_i8] = ACTIONS(1531), + [anon_sym_u16] = ACTIONS(1531), + [anon_sym_i16] = ACTIONS(1531), + [anon_sym_u32] = ACTIONS(1531), + [anon_sym_i32] = ACTIONS(1531), + [anon_sym_u64] = ACTIONS(1531), + [anon_sym_i64] = ACTIONS(1531), + [anon_sym_u128] = ACTIONS(1531), + [anon_sym_i128] = ACTIONS(1531), + [anon_sym_isize] = ACTIONS(1531), + [anon_sym_usize] = ACTIONS(1531), + [anon_sym_f32] = ACTIONS(1531), + [anon_sym_f64] = ACTIONS(1531), + [anon_sym_bool] = ACTIONS(1531), + [anon_sym_str] = ACTIONS(1531), + [anon_sym_char] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_async] = ACTIONS(1531), + [anon_sym_break] = ACTIONS(1531), + [anon_sym_const] = ACTIONS(1531), + [anon_sym_continue] = ACTIONS(1531), + [anon_sym_default] = ACTIONS(1531), + [anon_sym_enum] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1531), + [anon_sym_for] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1531), + [anon_sym_impl] = ACTIONS(1531), + [anon_sym_let] = ACTIONS(1531), + [anon_sym_loop] = ACTIONS(1531), + [anon_sym_match] = ACTIONS(1531), + [anon_sym_mod] = ACTIONS(1531), + [anon_sym_pub] = ACTIONS(1531), + [anon_sym_return] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(1531), + [anon_sym_struct] = ACTIONS(1531), + [anon_sym_trait] = ACTIONS(1531), + [anon_sym_type] = ACTIONS(1531), + [anon_sym_union] = ACTIONS(1531), + [anon_sym_unsafe] = ACTIONS(1531), + [anon_sym_use] = ACTIONS(1531), + [anon_sym_while] = ACTIONS(1531), + [anon_sym_POUND] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1529), + [anon_sym_extern] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_yield] = ACTIONS(1531), + [anon_sym_move] = ACTIONS(1531), + [sym_integer_literal] = ACTIONS(1529), + [aux_sym_string_literal_token1] = ACTIONS(1529), + [sym_char_literal] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1531), + [anon_sym_false] = ACTIONS(1531), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1531), + [sym_super] = ACTIONS(1531), + [sym_crate] = ACTIONS(1531), + [sym_metavariable] = ACTIONS(1529), + [sym_raw_string_literal] = ACTIONS(1529), + [sym_float_literal] = ACTIONS(1529), [sym_block_comment] = ACTIONS(3), }, [348] = { - [ts_builtin_sym_end] = ACTIONS(1510), - [sym_identifier] = ACTIONS(1512), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_macro_rules_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_u8] = ACTIONS(1512), - [anon_sym_i8] = ACTIONS(1512), - [anon_sym_u16] = ACTIONS(1512), - [anon_sym_i16] = ACTIONS(1512), - [anon_sym_u32] = ACTIONS(1512), - [anon_sym_i32] = ACTIONS(1512), - [anon_sym_u64] = ACTIONS(1512), - [anon_sym_i64] = ACTIONS(1512), - [anon_sym_u128] = ACTIONS(1512), - [anon_sym_i128] = ACTIONS(1512), - [anon_sym_isize] = ACTIONS(1512), - [anon_sym_usize] = ACTIONS(1512), - [anon_sym_f32] = ACTIONS(1512), - [anon_sym_f64] = ACTIONS(1512), - [anon_sym_bool] = ACTIONS(1512), - [anon_sym_str] = ACTIONS(1512), - [anon_sym_char] = ACTIONS(1512), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_enum] = ACTIONS(1512), - [anon_sym_fn] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_impl] = ACTIONS(1512), - [anon_sym_let] = ACTIONS(1512), - [anon_sym_loop] = ACTIONS(1512), - [anon_sym_match] = ACTIONS(1512), - [anon_sym_mod] = ACTIONS(1512), - [anon_sym_pub] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1512), - [anon_sym_struct] = ACTIONS(1512), - [anon_sym_trait] = ACTIONS(1512), - [anon_sym_type] = ACTIONS(1512), - [anon_sym_union] = ACTIONS(1512), - [anon_sym_unsafe] = ACTIONS(1512), - [anon_sym_use] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1510), - [anon_sym_COLON_COLON] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_DOT_DOT] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_yield] = ACTIONS(1512), - [anon_sym_move] = ACTIONS(1512), - [sym_integer_literal] = ACTIONS(1510), - [aux_sym_string_literal_token1] = ACTIONS(1510), - [sym_char_literal] = ACTIONS(1510), - [anon_sym_true] = ACTIONS(1512), - [anon_sym_false] = ACTIONS(1512), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1512), - [sym_super] = ACTIONS(1512), - [sym_crate] = ACTIONS(1512), - [sym_metavariable] = ACTIONS(1510), - [sym_raw_string_literal] = ACTIONS(1510), - [sym_float_literal] = ACTIONS(1510), + [ts_builtin_sym_end] = ACTIONS(1533), + [sym_identifier] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_macro_rules_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1533), + [anon_sym_u8] = ACTIONS(1535), + [anon_sym_i8] = ACTIONS(1535), + [anon_sym_u16] = ACTIONS(1535), + [anon_sym_i16] = ACTIONS(1535), + [anon_sym_u32] = ACTIONS(1535), + [anon_sym_i32] = ACTIONS(1535), + [anon_sym_u64] = ACTIONS(1535), + [anon_sym_i64] = ACTIONS(1535), + [anon_sym_u128] = ACTIONS(1535), + [anon_sym_i128] = ACTIONS(1535), + [anon_sym_isize] = ACTIONS(1535), + [anon_sym_usize] = ACTIONS(1535), + [anon_sym_f32] = ACTIONS(1535), + [anon_sym_f64] = ACTIONS(1535), + [anon_sym_bool] = ACTIONS(1535), + [anon_sym_str] = ACTIONS(1535), + [anon_sym_char] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_async] = ACTIONS(1535), + [anon_sym_break] = ACTIONS(1535), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_continue] = ACTIONS(1535), + [anon_sym_default] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1535), + [anon_sym_for] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1535), + [anon_sym_impl] = ACTIONS(1535), + [anon_sym_let] = ACTIONS(1535), + [anon_sym_loop] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mod] = ACTIONS(1535), + [anon_sym_pub] = ACTIONS(1535), + [anon_sym_return] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1535), + [anon_sym_struct] = ACTIONS(1535), + [anon_sym_trait] = ACTIONS(1535), + [anon_sym_type] = ACTIONS(1535), + [anon_sym_union] = ACTIONS(1535), + [anon_sym_unsafe] = ACTIONS(1535), + [anon_sym_use] = ACTIONS(1535), + [anon_sym_while] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_extern] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_COLON_COLON] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_DOT_DOT] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_yield] = ACTIONS(1535), + [anon_sym_move] = ACTIONS(1535), + [sym_integer_literal] = ACTIONS(1533), + [aux_sym_string_literal_token1] = ACTIONS(1533), + [sym_char_literal] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1535), + [anon_sym_false] = ACTIONS(1535), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1535), + [sym_super] = ACTIONS(1535), + [sym_crate] = ACTIONS(1535), + [sym_metavariable] = ACTIONS(1533), + [sym_raw_string_literal] = ACTIONS(1533), + [sym_float_literal] = ACTIONS(1533), [sym_block_comment] = ACTIONS(3), }, [349] = { - [ts_builtin_sym_end] = ACTIONS(1514), - [sym_identifier] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_macro_rules_BANG] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_u8] = ACTIONS(1516), - [anon_sym_i8] = ACTIONS(1516), - [anon_sym_u16] = ACTIONS(1516), - [anon_sym_i16] = ACTIONS(1516), - [anon_sym_u32] = ACTIONS(1516), - [anon_sym_i32] = ACTIONS(1516), - [anon_sym_u64] = ACTIONS(1516), - [anon_sym_i64] = ACTIONS(1516), - [anon_sym_u128] = ACTIONS(1516), - [anon_sym_i128] = ACTIONS(1516), - [anon_sym_isize] = ACTIONS(1516), - [anon_sym_usize] = ACTIONS(1516), - [anon_sym_f32] = ACTIONS(1516), - [anon_sym_f64] = ACTIONS(1516), - [anon_sym_bool] = ACTIONS(1516), - [anon_sym_str] = ACTIONS(1516), - [anon_sym_char] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [anon_sym_async] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_default] = ACTIONS(1516), - [anon_sym_enum] = ACTIONS(1516), - [anon_sym_fn] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_impl] = ACTIONS(1516), - [anon_sym_let] = ACTIONS(1516), - [anon_sym_loop] = ACTIONS(1516), - [anon_sym_match] = ACTIONS(1516), - [anon_sym_mod] = ACTIONS(1516), - [anon_sym_pub] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_struct] = ACTIONS(1516), - [anon_sym_trait] = ACTIONS(1516), - [anon_sym_type] = ACTIONS(1516), - [anon_sym_union] = ACTIONS(1516), - [anon_sym_unsafe] = ACTIONS(1516), - [anon_sym_use] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_DOT_DOT] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_yield] = ACTIONS(1516), - [anon_sym_move] = ACTIONS(1516), - [sym_integer_literal] = ACTIONS(1514), - [aux_sym_string_literal_token1] = ACTIONS(1514), - [sym_char_literal] = ACTIONS(1514), - [anon_sym_true] = ACTIONS(1516), - [anon_sym_false] = ACTIONS(1516), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1516), - [sym_super] = ACTIONS(1516), - [sym_crate] = ACTIONS(1516), - [sym_metavariable] = ACTIONS(1514), - [sym_raw_string_literal] = ACTIONS(1514), - [sym_float_literal] = ACTIONS(1514), + [ts_builtin_sym_end] = ACTIONS(1537), + [sym_identifier] = ACTIONS(1539), + [anon_sym_SEMI] = ACTIONS(1537), + [anon_sym_macro_rules_BANG] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_u8] = ACTIONS(1539), + [anon_sym_i8] = ACTIONS(1539), + [anon_sym_u16] = ACTIONS(1539), + [anon_sym_i16] = ACTIONS(1539), + [anon_sym_u32] = ACTIONS(1539), + [anon_sym_i32] = ACTIONS(1539), + [anon_sym_u64] = ACTIONS(1539), + [anon_sym_i64] = ACTIONS(1539), + [anon_sym_u128] = ACTIONS(1539), + [anon_sym_i128] = ACTIONS(1539), + [anon_sym_isize] = ACTIONS(1539), + [anon_sym_usize] = ACTIONS(1539), + [anon_sym_f32] = ACTIONS(1539), + [anon_sym_f64] = ACTIONS(1539), + [anon_sym_bool] = ACTIONS(1539), + [anon_sym_str] = ACTIONS(1539), + [anon_sym_char] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_async] = ACTIONS(1539), + [anon_sym_break] = ACTIONS(1539), + [anon_sym_const] = ACTIONS(1539), + [anon_sym_continue] = ACTIONS(1539), + [anon_sym_default] = ACTIONS(1539), + [anon_sym_enum] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1539), + [anon_sym_for] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1539), + [anon_sym_impl] = ACTIONS(1539), + [anon_sym_let] = ACTIONS(1539), + [anon_sym_loop] = ACTIONS(1539), + [anon_sym_match] = ACTIONS(1539), + [anon_sym_mod] = ACTIONS(1539), + [anon_sym_pub] = ACTIONS(1539), + [anon_sym_return] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1539), + [anon_sym_trait] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1539), + [anon_sym_union] = ACTIONS(1539), + [anon_sym_unsafe] = ACTIONS(1539), + [anon_sym_use] = ACTIONS(1539), + [anon_sym_while] = ACTIONS(1539), + [anon_sym_POUND] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1537), + [anon_sym_extern] = ACTIONS(1539), + [anon_sym_LT] = ACTIONS(1537), + [anon_sym_COLON_COLON] = ACTIONS(1537), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_DOT_DOT] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_yield] = ACTIONS(1539), + [anon_sym_move] = ACTIONS(1539), + [sym_integer_literal] = ACTIONS(1537), + [aux_sym_string_literal_token1] = ACTIONS(1537), + [sym_char_literal] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1539), + [anon_sym_false] = ACTIONS(1539), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1539), + [sym_super] = ACTIONS(1539), + [sym_crate] = ACTIONS(1539), + [sym_metavariable] = ACTIONS(1537), + [sym_raw_string_literal] = ACTIONS(1537), + [sym_float_literal] = ACTIONS(1537), [sym_block_comment] = ACTIONS(3), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(1518), - [sym_identifier] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_macro_rules_BANG] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_u8] = ACTIONS(1520), - [anon_sym_i8] = ACTIONS(1520), - [anon_sym_u16] = ACTIONS(1520), - [anon_sym_i16] = ACTIONS(1520), - [anon_sym_u32] = ACTIONS(1520), - [anon_sym_i32] = ACTIONS(1520), - [anon_sym_u64] = ACTIONS(1520), - [anon_sym_i64] = ACTIONS(1520), - [anon_sym_u128] = ACTIONS(1520), - [anon_sym_i128] = ACTIONS(1520), - [anon_sym_isize] = ACTIONS(1520), - [anon_sym_usize] = ACTIONS(1520), - [anon_sym_f32] = ACTIONS(1520), - [anon_sym_f64] = ACTIONS(1520), - [anon_sym_bool] = ACTIONS(1520), - [anon_sym_str] = ACTIONS(1520), - [anon_sym_char] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1520), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1520), - [anon_sym_enum] = ACTIONS(1520), - [anon_sym_fn] = ACTIONS(1520), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_impl] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1520), - [anon_sym_loop] = ACTIONS(1520), - [anon_sym_match] = ACTIONS(1520), - [anon_sym_mod] = ACTIONS(1520), - [anon_sym_pub] = ACTIONS(1520), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_struct] = ACTIONS(1520), - [anon_sym_trait] = ACTIONS(1520), - [anon_sym_type] = ACTIONS(1520), - [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1520), - [anon_sym_use] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_COLON_COLON] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_yield] = ACTIONS(1520), - [anon_sym_move] = ACTIONS(1520), - [sym_integer_literal] = ACTIONS(1518), - [aux_sym_string_literal_token1] = ACTIONS(1518), - [sym_char_literal] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1520), - [sym_super] = ACTIONS(1520), - [sym_crate] = ACTIONS(1520), - [sym_metavariable] = ACTIONS(1518), - [sym_raw_string_literal] = ACTIONS(1518), - [sym_float_literal] = ACTIONS(1518), + [ts_builtin_sym_end] = ACTIONS(1541), + [sym_identifier] = ACTIONS(1543), + [anon_sym_SEMI] = ACTIONS(1541), + [anon_sym_macro_rules_BANG] = ACTIONS(1541), + [anon_sym_LPAREN] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_RBRACE] = ACTIONS(1541), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_u8] = ACTIONS(1543), + [anon_sym_i8] = ACTIONS(1543), + [anon_sym_u16] = ACTIONS(1543), + [anon_sym_i16] = ACTIONS(1543), + [anon_sym_u32] = ACTIONS(1543), + [anon_sym_i32] = ACTIONS(1543), + [anon_sym_u64] = ACTIONS(1543), + [anon_sym_i64] = ACTIONS(1543), + [anon_sym_u128] = ACTIONS(1543), + [anon_sym_i128] = ACTIONS(1543), + [anon_sym_isize] = ACTIONS(1543), + [anon_sym_usize] = ACTIONS(1543), + [anon_sym_f32] = ACTIONS(1543), + [anon_sym_f64] = ACTIONS(1543), + [anon_sym_bool] = ACTIONS(1543), + [anon_sym_str] = ACTIONS(1543), + [anon_sym_char] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_async] = ACTIONS(1543), + [anon_sym_break] = ACTIONS(1543), + [anon_sym_const] = ACTIONS(1543), + [anon_sym_continue] = ACTIONS(1543), + [anon_sym_default] = ACTIONS(1543), + [anon_sym_enum] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1543), + [anon_sym_for] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1543), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_loop] = ACTIONS(1543), + [anon_sym_match] = ACTIONS(1543), + [anon_sym_mod] = ACTIONS(1543), + [anon_sym_pub] = ACTIONS(1543), + [anon_sym_return] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1543), + [anon_sym_trait] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1543), + [anon_sym_use] = ACTIONS(1543), + [anon_sym_while] = ACTIONS(1543), + [anon_sym_POUND] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_extern] = ACTIONS(1543), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_COLON_COLON] = ACTIONS(1541), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_yield] = ACTIONS(1543), + [anon_sym_move] = ACTIONS(1543), + [sym_integer_literal] = ACTIONS(1541), + [aux_sym_string_literal_token1] = ACTIONS(1541), + [sym_char_literal] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1543), + [anon_sym_false] = ACTIONS(1543), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1543), + [sym_super] = ACTIONS(1543), + [sym_crate] = ACTIONS(1543), + [sym_metavariable] = ACTIONS(1541), + [sym_raw_string_literal] = ACTIONS(1541), + [sym_float_literal] = ACTIONS(1541), [sym_block_comment] = ACTIONS(3), }, [351] = { - [ts_builtin_sym_end] = ACTIONS(1522), - [sym_identifier] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_macro_rules_BANG] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_u8] = ACTIONS(1524), - [anon_sym_i8] = ACTIONS(1524), - [anon_sym_u16] = ACTIONS(1524), - [anon_sym_i16] = ACTIONS(1524), - [anon_sym_u32] = ACTIONS(1524), - [anon_sym_i32] = ACTIONS(1524), - [anon_sym_u64] = ACTIONS(1524), - [anon_sym_i64] = ACTIONS(1524), - [anon_sym_u128] = ACTIONS(1524), - [anon_sym_i128] = ACTIONS(1524), - [anon_sym_isize] = ACTIONS(1524), - [anon_sym_usize] = ACTIONS(1524), - [anon_sym_f32] = ACTIONS(1524), - [anon_sym_f64] = ACTIONS(1524), - [anon_sym_bool] = ACTIONS(1524), - [anon_sym_str] = ACTIONS(1524), - [anon_sym_char] = ACTIONS(1524), - [anon_sym_SQUOTE] = ACTIONS(1524), - [anon_sym_async] = ACTIONS(1524), - [anon_sym_break] = ACTIONS(1524), - [anon_sym_const] = ACTIONS(1524), - [anon_sym_continue] = ACTIONS(1524), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_enum] = ACTIONS(1524), - [anon_sym_fn] = ACTIONS(1524), - [anon_sym_for] = ACTIONS(1524), - [anon_sym_if] = ACTIONS(1524), - [anon_sym_impl] = ACTIONS(1524), - [anon_sym_let] = ACTIONS(1524), - [anon_sym_loop] = ACTIONS(1524), - [anon_sym_match] = ACTIONS(1524), - [anon_sym_mod] = ACTIONS(1524), - [anon_sym_pub] = ACTIONS(1524), - [anon_sym_return] = ACTIONS(1524), - [anon_sym_static] = ACTIONS(1524), - [anon_sym_struct] = ACTIONS(1524), - [anon_sym_trait] = ACTIONS(1524), - [anon_sym_type] = ACTIONS(1524), - [anon_sym_union] = ACTIONS(1524), - [anon_sym_unsafe] = ACTIONS(1524), - [anon_sym_use] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_POUND] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1522), - [anon_sym_extern] = ACTIONS(1524), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_COLON_COLON] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_DOT_DOT] = ACTIONS(1522), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_yield] = ACTIONS(1524), - [anon_sym_move] = ACTIONS(1524), - [sym_integer_literal] = ACTIONS(1522), - [aux_sym_string_literal_token1] = ACTIONS(1522), - [sym_char_literal] = ACTIONS(1522), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1524), - [sym_super] = ACTIONS(1524), - [sym_crate] = ACTIONS(1524), - [sym_metavariable] = ACTIONS(1522), - [sym_raw_string_literal] = ACTIONS(1522), - [sym_float_literal] = ACTIONS(1522), + [ts_builtin_sym_end] = ACTIONS(1545), + [sym_identifier] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_macro_rules_BANG] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_u8] = ACTIONS(1547), + [anon_sym_i8] = ACTIONS(1547), + [anon_sym_u16] = ACTIONS(1547), + [anon_sym_i16] = ACTIONS(1547), + [anon_sym_u32] = ACTIONS(1547), + [anon_sym_i32] = ACTIONS(1547), + [anon_sym_u64] = ACTIONS(1547), + [anon_sym_i64] = ACTIONS(1547), + [anon_sym_u128] = ACTIONS(1547), + [anon_sym_i128] = ACTIONS(1547), + [anon_sym_isize] = ACTIONS(1547), + [anon_sym_usize] = ACTIONS(1547), + [anon_sym_f32] = ACTIONS(1547), + [anon_sym_f64] = ACTIONS(1547), + [anon_sym_bool] = ACTIONS(1547), + [anon_sym_str] = ACTIONS(1547), + [anon_sym_char] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1547), + [anon_sym_break] = ACTIONS(1547), + [anon_sym_const] = ACTIONS(1547), + [anon_sym_continue] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1547), + [anon_sym_enum] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_impl] = ACTIONS(1547), + [anon_sym_let] = ACTIONS(1547), + [anon_sym_loop] = ACTIONS(1547), + [anon_sym_match] = ACTIONS(1547), + [anon_sym_mod] = ACTIONS(1547), + [anon_sym_pub] = ACTIONS(1547), + [anon_sym_return] = ACTIONS(1547), + [anon_sym_static] = ACTIONS(1547), + [anon_sym_struct] = ACTIONS(1547), + [anon_sym_trait] = ACTIONS(1547), + [anon_sym_type] = ACTIONS(1547), + [anon_sym_union] = ACTIONS(1547), + [anon_sym_unsafe] = ACTIONS(1547), + [anon_sym_use] = ACTIONS(1547), + [anon_sym_while] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1547), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_COLON_COLON] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_yield] = ACTIONS(1547), + [anon_sym_move] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1545), + [aux_sym_string_literal_token1] = ACTIONS(1545), + [sym_char_literal] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1547), + [anon_sym_false] = ACTIONS(1547), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1547), + [sym_super] = ACTIONS(1547), + [sym_crate] = ACTIONS(1547), + [sym_metavariable] = ACTIONS(1545), + [sym_raw_string_literal] = ACTIONS(1545), + [sym_float_literal] = ACTIONS(1545), [sym_block_comment] = ACTIONS(3), }, [352] = { - [ts_builtin_sym_end] = ACTIONS(1526), - [sym_identifier] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_macro_rules_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACE] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1526), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_u8] = ACTIONS(1528), - [anon_sym_i8] = ACTIONS(1528), - [anon_sym_u16] = ACTIONS(1528), - [anon_sym_i16] = ACTIONS(1528), - [anon_sym_u32] = ACTIONS(1528), - [anon_sym_i32] = ACTIONS(1528), - [anon_sym_u64] = ACTIONS(1528), - [anon_sym_i64] = ACTIONS(1528), - [anon_sym_u128] = ACTIONS(1528), - [anon_sym_i128] = ACTIONS(1528), - [anon_sym_isize] = ACTIONS(1528), - [anon_sym_usize] = ACTIONS(1528), - [anon_sym_f32] = ACTIONS(1528), - [anon_sym_f64] = ACTIONS(1528), - [anon_sym_bool] = ACTIONS(1528), - [anon_sym_str] = ACTIONS(1528), - [anon_sym_char] = ACTIONS(1528), - [anon_sym_SQUOTE] = ACTIONS(1528), - [anon_sym_async] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1528), - [anon_sym_enum] = ACTIONS(1528), - [anon_sym_fn] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_impl] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_mod] = ACTIONS(1528), - [anon_sym_pub] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_static] = ACTIONS(1528), - [anon_sym_struct] = ACTIONS(1528), - [anon_sym_trait] = ACTIONS(1528), - [anon_sym_type] = ACTIONS(1528), - [anon_sym_union] = ACTIONS(1528), - [anon_sym_unsafe] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1526), - [anon_sym_COLON_COLON] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_DOT_DOT] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_yield] = ACTIONS(1528), - [anon_sym_move] = ACTIONS(1528), - [sym_integer_literal] = ACTIONS(1526), - [aux_sym_string_literal_token1] = ACTIONS(1526), - [sym_char_literal] = ACTIONS(1526), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1526), - [sym_raw_string_literal] = ACTIONS(1526), - [sym_float_literal] = ACTIONS(1526), + [ts_builtin_sym_end] = ACTIONS(1549), + [sym_identifier] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_macro_rules_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_u8] = ACTIONS(1551), + [anon_sym_i8] = ACTIONS(1551), + [anon_sym_u16] = ACTIONS(1551), + [anon_sym_i16] = ACTIONS(1551), + [anon_sym_u32] = ACTIONS(1551), + [anon_sym_i32] = ACTIONS(1551), + [anon_sym_u64] = ACTIONS(1551), + [anon_sym_i64] = ACTIONS(1551), + [anon_sym_u128] = ACTIONS(1551), + [anon_sym_i128] = ACTIONS(1551), + [anon_sym_isize] = ACTIONS(1551), + [anon_sym_usize] = ACTIONS(1551), + [anon_sym_f32] = ACTIONS(1551), + [anon_sym_f64] = ACTIONS(1551), + [anon_sym_bool] = ACTIONS(1551), + [anon_sym_str] = ACTIONS(1551), + [anon_sym_char] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_async] = ACTIONS(1551), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_enum] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_impl] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_mod] = ACTIONS(1551), + [anon_sym_pub] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_static] = ACTIONS(1551), + [anon_sym_struct] = ACTIONS(1551), + [anon_sym_trait] = ACTIONS(1551), + [anon_sym_type] = ACTIONS(1551), + [anon_sym_union] = ACTIONS(1551), + [anon_sym_unsafe] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_COLON_COLON] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_yield] = ACTIONS(1551), + [anon_sym_move] = ACTIONS(1551), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1549), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1549), + [sym_raw_string_literal] = ACTIONS(1549), + [sym_float_literal] = ACTIONS(1549), [sym_block_comment] = ACTIONS(3), }, [353] = { - [ts_builtin_sym_end] = ACTIONS(1530), - [sym_identifier] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_macro_rules_BANG] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_SQUOTE] = ACTIONS(1532), - [anon_sym_async] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1532), - [anon_sym_continue] = ACTIONS(1532), - [anon_sym_default] = ACTIONS(1532), - [anon_sym_enum] = ACTIONS(1532), - [anon_sym_fn] = ACTIONS(1532), - [anon_sym_for] = ACTIONS(1532), - [anon_sym_if] = ACTIONS(1532), - [anon_sym_impl] = ACTIONS(1532), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_loop] = ACTIONS(1532), - [anon_sym_match] = ACTIONS(1532), - [anon_sym_mod] = ACTIONS(1532), - [anon_sym_pub] = ACTIONS(1532), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_struct] = ACTIONS(1532), - [anon_sym_trait] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_union] = ACTIONS(1532), - [anon_sym_unsafe] = ACTIONS(1532), - [anon_sym_use] = ACTIONS(1532), - [anon_sym_while] = ACTIONS(1532), - [anon_sym_POUND] = ACTIONS(1530), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_extern] = ACTIONS(1532), - [anon_sym_LT] = ACTIONS(1530), - [anon_sym_COLON_COLON] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1530), - [anon_sym_DOT_DOT] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_yield] = ACTIONS(1532), - [anon_sym_move] = ACTIONS(1532), - [sym_integer_literal] = ACTIONS(1530), - [aux_sym_string_literal_token1] = ACTIONS(1530), - [sym_char_literal] = ACTIONS(1530), - [anon_sym_true] = ACTIONS(1532), - [anon_sym_false] = ACTIONS(1532), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1532), - [sym_super] = ACTIONS(1532), - [sym_crate] = ACTIONS(1532), - [sym_metavariable] = ACTIONS(1530), - [sym_raw_string_literal] = ACTIONS(1530), - [sym_float_literal] = ACTIONS(1530), + [ts_builtin_sym_end] = ACTIONS(1553), + [sym_identifier] = ACTIONS(1555), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_macro_rules_BANG] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1553), + [anon_sym_u8] = ACTIONS(1555), + [anon_sym_i8] = ACTIONS(1555), + [anon_sym_u16] = ACTIONS(1555), + [anon_sym_i16] = ACTIONS(1555), + [anon_sym_u32] = ACTIONS(1555), + [anon_sym_i32] = ACTIONS(1555), + [anon_sym_u64] = ACTIONS(1555), + [anon_sym_i64] = ACTIONS(1555), + [anon_sym_u128] = ACTIONS(1555), + [anon_sym_i128] = ACTIONS(1555), + [anon_sym_isize] = ACTIONS(1555), + [anon_sym_usize] = ACTIONS(1555), + [anon_sym_f32] = ACTIONS(1555), + [anon_sym_f64] = ACTIONS(1555), + [anon_sym_bool] = ACTIONS(1555), + [anon_sym_str] = ACTIONS(1555), + [anon_sym_char] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_break] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(1555), + [anon_sym_continue] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1555), + [anon_sym_enum] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1555), + [anon_sym_for] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1555), + [anon_sym_impl] = ACTIONS(1555), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_loop] = ACTIONS(1555), + [anon_sym_match] = ACTIONS(1555), + [anon_sym_mod] = ACTIONS(1555), + [anon_sym_pub] = ACTIONS(1555), + [anon_sym_return] = ACTIONS(1555), + [anon_sym_static] = ACTIONS(1555), + [anon_sym_struct] = ACTIONS(1555), + [anon_sym_trait] = ACTIONS(1555), + [anon_sym_type] = ACTIONS(1555), + [anon_sym_union] = ACTIONS(1555), + [anon_sym_unsafe] = ACTIONS(1555), + [anon_sym_use] = ACTIONS(1555), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_POUND] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1553), + [anon_sym_extern] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1553), + [anon_sym_COLON_COLON] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_yield] = ACTIONS(1555), + [anon_sym_move] = ACTIONS(1555), + [sym_integer_literal] = ACTIONS(1553), + [aux_sym_string_literal_token1] = ACTIONS(1553), + [sym_char_literal] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1555), + [anon_sym_false] = ACTIONS(1555), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1555), + [sym_super] = ACTIONS(1555), + [sym_crate] = ACTIONS(1555), + [sym_metavariable] = ACTIONS(1553), + [sym_raw_string_literal] = ACTIONS(1553), + [sym_float_literal] = ACTIONS(1553), [sym_block_comment] = ACTIONS(3), }, [354] = { - [ts_builtin_sym_end] = ACTIONS(1534), - [sym_identifier] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_macro_rules_BANG] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_RBRACE] = ACTIONS(1534), - [anon_sym_LBRACK] = ACTIONS(1534), - [anon_sym_STAR] = ACTIONS(1534), - [anon_sym_u8] = ACTIONS(1536), - [anon_sym_i8] = ACTIONS(1536), - [anon_sym_u16] = ACTIONS(1536), - [anon_sym_i16] = ACTIONS(1536), - [anon_sym_u32] = ACTIONS(1536), - [anon_sym_i32] = ACTIONS(1536), - [anon_sym_u64] = ACTIONS(1536), - [anon_sym_i64] = ACTIONS(1536), - [anon_sym_u128] = ACTIONS(1536), - [anon_sym_i128] = ACTIONS(1536), - [anon_sym_isize] = ACTIONS(1536), - [anon_sym_usize] = ACTIONS(1536), - [anon_sym_f32] = ACTIONS(1536), - [anon_sym_f64] = ACTIONS(1536), - [anon_sym_bool] = ACTIONS(1536), - [anon_sym_str] = ACTIONS(1536), - [anon_sym_char] = ACTIONS(1536), - [anon_sym_SQUOTE] = ACTIONS(1536), - [anon_sym_async] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_enum] = ACTIONS(1536), - [anon_sym_fn] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_impl] = ACTIONS(1536), - [anon_sym_let] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1536), - [anon_sym_mod] = ACTIONS(1536), - [anon_sym_pub] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(1536), - [anon_sym_struct] = ACTIONS(1536), - [anon_sym_trait] = ACTIONS(1536), - [anon_sym_type] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_unsafe] = ACTIONS(1536), - [anon_sym_use] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_extern] = ACTIONS(1536), - [anon_sym_LT] = ACTIONS(1534), - [anon_sym_COLON_COLON] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1534), - [anon_sym_DOT_DOT] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_yield] = ACTIONS(1536), - [anon_sym_move] = ACTIONS(1536), - [sym_integer_literal] = ACTIONS(1534), - [aux_sym_string_literal_token1] = ACTIONS(1534), - [sym_char_literal] = ACTIONS(1534), - [anon_sym_true] = ACTIONS(1536), - [anon_sym_false] = ACTIONS(1536), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1534), - [sym_raw_string_literal] = ACTIONS(1534), - [sym_float_literal] = ACTIONS(1534), + [ts_builtin_sym_end] = ACTIONS(1557), + [sym_identifier] = ACTIONS(1559), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_macro_rules_BANG] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_u8] = ACTIONS(1559), + [anon_sym_i8] = ACTIONS(1559), + [anon_sym_u16] = ACTIONS(1559), + [anon_sym_i16] = ACTIONS(1559), + [anon_sym_u32] = ACTIONS(1559), + [anon_sym_i32] = ACTIONS(1559), + [anon_sym_u64] = ACTIONS(1559), + [anon_sym_i64] = ACTIONS(1559), + [anon_sym_u128] = ACTIONS(1559), + [anon_sym_i128] = ACTIONS(1559), + [anon_sym_isize] = ACTIONS(1559), + [anon_sym_usize] = ACTIONS(1559), + [anon_sym_f32] = ACTIONS(1559), + [anon_sym_f64] = ACTIONS(1559), + [anon_sym_bool] = ACTIONS(1559), + [anon_sym_str] = ACTIONS(1559), + [anon_sym_char] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_async] = ACTIONS(1559), + [anon_sym_break] = ACTIONS(1559), + [anon_sym_const] = ACTIONS(1559), + [anon_sym_continue] = ACTIONS(1559), + [anon_sym_default] = ACTIONS(1559), + [anon_sym_enum] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1559), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1559), + [anon_sym_impl] = ACTIONS(1559), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_loop] = ACTIONS(1559), + [anon_sym_match] = ACTIONS(1559), + [anon_sym_mod] = ACTIONS(1559), + [anon_sym_pub] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1559), + [anon_sym_struct] = ACTIONS(1559), + [anon_sym_trait] = ACTIONS(1559), + [anon_sym_type] = ACTIONS(1559), + [anon_sym_union] = ACTIONS(1559), + [anon_sym_unsafe] = ACTIONS(1559), + [anon_sym_use] = ACTIONS(1559), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1557), + [anon_sym_extern] = ACTIONS(1559), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_COLON_COLON] = ACTIONS(1557), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_yield] = ACTIONS(1559), + [anon_sym_move] = ACTIONS(1559), + [sym_integer_literal] = ACTIONS(1557), + [aux_sym_string_literal_token1] = ACTIONS(1557), + [sym_char_literal] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1559), + [anon_sym_false] = ACTIONS(1559), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1559), + [sym_super] = ACTIONS(1559), + [sym_crate] = ACTIONS(1559), + [sym_metavariable] = ACTIONS(1557), + [sym_raw_string_literal] = ACTIONS(1557), + [sym_float_literal] = ACTIONS(1557), [sym_block_comment] = ACTIONS(3), }, [355] = { - [ts_builtin_sym_end] = ACTIONS(1538), - [sym_identifier] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_macro_rules_BANG] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_u8] = ACTIONS(1540), - [anon_sym_i8] = ACTIONS(1540), - [anon_sym_u16] = ACTIONS(1540), - [anon_sym_i16] = ACTIONS(1540), - [anon_sym_u32] = ACTIONS(1540), - [anon_sym_i32] = ACTIONS(1540), - [anon_sym_u64] = ACTIONS(1540), - [anon_sym_i64] = ACTIONS(1540), - [anon_sym_u128] = ACTIONS(1540), - [anon_sym_i128] = ACTIONS(1540), - [anon_sym_isize] = ACTIONS(1540), - [anon_sym_usize] = ACTIONS(1540), - [anon_sym_f32] = ACTIONS(1540), - [anon_sym_f64] = ACTIONS(1540), - [anon_sym_bool] = ACTIONS(1540), - [anon_sym_str] = ACTIONS(1540), - [anon_sym_char] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(1540), - [anon_sym_async] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_enum] = ACTIONS(1540), - [anon_sym_fn] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_impl] = ACTIONS(1540), - [anon_sym_let] = ACTIONS(1540), - [anon_sym_loop] = ACTIONS(1540), - [anon_sym_match] = ACTIONS(1540), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_pub] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_static] = ACTIONS(1540), - [anon_sym_struct] = ACTIONS(1540), - [anon_sym_trait] = ACTIONS(1540), - [anon_sym_type] = ACTIONS(1540), - [anon_sym_union] = ACTIONS(1540), - [anon_sym_unsafe] = ACTIONS(1540), - [anon_sym_use] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(1538), - [anon_sym_BANG] = ACTIONS(1538), - [anon_sym_extern] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_yield] = ACTIONS(1540), - [anon_sym_move] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1538), - [aux_sym_string_literal_token1] = ACTIONS(1538), - [sym_char_literal] = ACTIONS(1538), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1540), - [sym_super] = ACTIONS(1540), - [sym_crate] = ACTIONS(1540), - [sym_metavariable] = ACTIONS(1538), - [sym_raw_string_literal] = ACTIONS(1538), - [sym_float_literal] = ACTIONS(1538), + [ts_builtin_sym_end] = ACTIONS(1561), + [sym_identifier] = ACTIONS(1563), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_macro_rules_BANG] = ACTIONS(1561), + [anon_sym_LPAREN] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_u8] = ACTIONS(1563), + [anon_sym_i8] = ACTIONS(1563), + [anon_sym_u16] = ACTIONS(1563), + [anon_sym_i16] = ACTIONS(1563), + [anon_sym_u32] = ACTIONS(1563), + [anon_sym_i32] = ACTIONS(1563), + [anon_sym_u64] = ACTIONS(1563), + [anon_sym_i64] = ACTIONS(1563), + [anon_sym_u128] = ACTIONS(1563), + [anon_sym_i128] = ACTIONS(1563), + [anon_sym_isize] = ACTIONS(1563), + [anon_sym_usize] = ACTIONS(1563), + [anon_sym_f32] = ACTIONS(1563), + [anon_sym_f64] = ACTIONS(1563), + [anon_sym_bool] = ACTIONS(1563), + [anon_sym_str] = ACTIONS(1563), + [anon_sym_char] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_async] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_impl] = ACTIONS(1563), + [anon_sym_let] = ACTIONS(1563), + [anon_sym_loop] = ACTIONS(1563), + [anon_sym_match] = ACTIONS(1563), + [anon_sym_mod] = ACTIONS(1563), + [anon_sym_pub] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_trait] = ACTIONS(1563), + [anon_sym_type] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_unsafe] = ACTIONS(1563), + [anon_sym_use] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_POUND] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_COLON_COLON] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_yield] = ACTIONS(1563), + [anon_sym_move] = ACTIONS(1563), + [sym_integer_literal] = ACTIONS(1561), + [aux_sym_string_literal_token1] = ACTIONS(1561), + [sym_char_literal] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1563), + [anon_sym_false] = ACTIONS(1563), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1563), + [sym_crate] = ACTIONS(1563), + [sym_metavariable] = ACTIONS(1561), + [sym_raw_string_literal] = ACTIONS(1561), + [sym_float_literal] = ACTIONS(1561), [sym_block_comment] = ACTIONS(3), }, [356] = { - [ts_builtin_sym_end] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_macro_rules_BANG] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_u8] = ACTIONS(1544), - [anon_sym_i8] = ACTIONS(1544), - [anon_sym_u16] = ACTIONS(1544), - [anon_sym_i16] = ACTIONS(1544), - [anon_sym_u32] = ACTIONS(1544), - [anon_sym_i32] = ACTIONS(1544), - [anon_sym_u64] = ACTIONS(1544), - [anon_sym_i64] = ACTIONS(1544), - [anon_sym_u128] = ACTIONS(1544), - [anon_sym_i128] = ACTIONS(1544), - [anon_sym_isize] = ACTIONS(1544), - [anon_sym_usize] = ACTIONS(1544), - [anon_sym_f32] = ACTIONS(1544), - [anon_sym_f64] = ACTIONS(1544), - [anon_sym_bool] = ACTIONS(1544), - [anon_sym_str] = ACTIONS(1544), - [anon_sym_char] = ACTIONS(1544), - [anon_sym_SQUOTE] = ACTIONS(1544), - [anon_sym_async] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_default] = ACTIONS(1544), - [anon_sym_enum] = ACTIONS(1544), - [anon_sym_fn] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_impl] = ACTIONS(1544), - [anon_sym_let] = ACTIONS(1544), - [anon_sym_loop] = ACTIONS(1544), - [anon_sym_match] = ACTIONS(1544), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_pub] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_static] = ACTIONS(1544), - [anon_sym_struct] = ACTIONS(1544), - [anon_sym_trait] = ACTIONS(1544), - [anon_sym_type] = ACTIONS(1544), - [anon_sym_union] = ACTIONS(1544), - [anon_sym_unsafe] = ACTIONS(1544), - [anon_sym_use] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_POUND] = ACTIONS(1542), - [anon_sym_BANG] = ACTIONS(1542), - [anon_sym_extern] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_COLON_COLON] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1542), - [anon_sym_DOT_DOT] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_move] = ACTIONS(1544), - [sym_integer_literal] = ACTIONS(1542), - [aux_sym_string_literal_token1] = ACTIONS(1542), - [sym_char_literal] = ACTIONS(1542), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1544), - [sym_super] = ACTIONS(1544), - [sym_crate] = ACTIONS(1544), - [sym_metavariable] = ACTIONS(1542), - [sym_raw_string_literal] = ACTIONS(1542), - [sym_float_literal] = ACTIONS(1542), + [ts_builtin_sym_end] = ACTIONS(1565), + [sym_identifier] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1565), + [anon_sym_macro_rules_BANG] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_RBRACE] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1565), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u128] = ACTIONS(1567), + [anon_sym_i128] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_str] = ACTIONS(1567), + [anon_sym_char] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_async] = ACTIONS(1567), + [anon_sym_break] = ACTIONS(1567), + [anon_sym_const] = ACTIONS(1567), + [anon_sym_continue] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(1567), + [anon_sym_enum] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1567), + [anon_sym_for] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1567), + [anon_sym_impl] = ACTIONS(1567), + [anon_sym_let] = ACTIONS(1567), + [anon_sym_loop] = ACTIONS(1567), + [anon_sym_match] = ACTIONS(1567), + [anon_sym_mod] = ACTIONS(1567), + [anon_sym_pub] = ACTIONS(1567), + [anon_sym_return] = ACTIONS(1567), + [anon_sym_static] = ACTIONS(1567), + [anon_sym_struct] = ACTIONS(1567), + [anon_sym_trait] = ACTIONS(1567), + [anon_sym_type] = ACTIONS(1567), + [anon_sym_union] = ACTIONS(1567), + [anon_sym_unsafe] = ACTIONS(1567), + [anon_sym_use] = ACTIONS(1567), + [anon_sym_while] = ACTIONS(1567), + [anon_sym_POUND] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_extern] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_COLON_COLON] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_move] = ACTIONS(1567), + [sym_integer_literal] = ACTIONS(1565), + [aux_sym_string_literal_token1] = ACTIONS(1565), + [sym_char_literal] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1567), + [anon_sym_false] = ACTIONS(1567), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1567), + [sym_super] = ACTIONS(1567), + [sym_crate] = ACTIONS(1567), + [sym_metavariable] = ACTIONS(1565), + [sym_raw_string_literal] = ACTIONS(1565), + [sym_float_literal] = ACTIONS(1565), [sym_block_comment] = ACTIONS(3), }, [357] = { - [ts_builtin_sym_end] = ACTIONS(1546), - [sym_identifier] = ACTIONS(1548), - [anon_sym_SEMI] = ACTIONS(1546), - [anon_sym_macro_rules_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1546), - [anon_sym_RBRACE] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_u8] = ACTIONS(1548), - [anon_sym_i8] = ACTIONS(1548), - [anon_sym_u16] = ACTIONS(1548), - [anon_sym_i16] = ACTIONS(1548), - [anon_sym_u32] = ACTIONS(1548), - [anon_sym_i32] = ACTIONS(1548), - [anon_sym_u64] = ACTIONS(1548), - [anon_sym_i64] = ACTIONS(1548), - [anon_sym_u128] = ACTIONS(1548), - [anon_sym_i128] = ACTIONS(1548), - [anon_sym_isize] = ACTIONS(1548), - [anon_sym_usize] = ACTIONS(1548), - [anon_sym_f32] = ACTIONS(1548), - [anon_sym_f64] = ACTIONS(1548), - [anon_sym_bool] = ACTIONS(1548), - [anon_sym_str] = ACTIONS(1548), - [anon_sym_char] = ACTIONS(1548), - [anon_sym_SQUOTE] = ACTIONS(1548), - [anon_sym_async] = ACTIONS(1548), - [anon_sym_break] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1548), - [anon_sym_continue] = ACTIONS(1548), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_enum] = ACTIONS(1548), - [anon_sym_fn] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_impl] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1548), - [anon_sym_loop] = ACTIONS(1548), - [anon_sym_match] = ACTIONS(1548), - [anon_sym_mod] = ACTIONS(1548), - [anon_sym_pub] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_static] = ACTIONS(1548), - [anon_sym_struct] = ACTIONS(1548), - [anon_sym_trait] = ACTIONS(1548), - [anon_sym_type] = ACTIONS(1548), - [anon_sym_union] = ACTIONS(1548), - [anon_sym_unsafe] = ACTIONS(1548), - [anon_sym_use] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_POUND] = ACTIONS(1546), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_extern] = ACTIONS(1548), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_COLON_COLON] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_DOT_DOT] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_yield] = ACTIONS(1548), - [anon_sym_move] = ACTIONS(1548), - [sym_integer_literal] = ACTIONS(1546), - [aux_sym_string_literal_token1] = ACTIONS(1546), - [sym_char_literal] = ACTIONS(1546), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1548), - [sym_super] = ACTIONS(1548), - [sym_crate] = ACTIONS(1548), - [sym_metavariable] = ACTIONS(1546), - [sym_raw_string_literal] = ACTIONS(1546), - [sym_float_literal] = ACTIONS(1546), + [ts_builtin_sym_end] = ACTIONS(1569), + [sym_identifier] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1569), + [anon_sym_macro_rules_BANG] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1569), + [anon_sym_u8] = ACTIONS(1571), + [anon_sym_i8] = ACTIONS(1571), + [anon_sym_u16] = ACTIONS(1571), + [anon_sym_i16] = ACTIONS(1571), + [anon_sym_u32] = ACTIONS(1571), + [anon_sym_i32] = ACTIONS(1571), + [anon_sym_u64] = ACTIONS(1571), + [anon_sym_i64] = ACTIONS(1571), + [anon_sym_u128] = ACTIONS(1571), + [anon_sym_i128] = ACTIONS(1571), + [anon_sym_isize] = ACTIONS(1571), + [anon_sym_usize] = ACTIONS(1571), + [anon_sym_f32] = ACTIONS(1571), + [anon_sym_f64] = ACTIONS(1571), + [anon_sym_bool] = ACTIONS(1571), + [anon_sym_str] = ACTIONS(1571), + [anon_sym_char] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_async] = ACTIONS(1571), + [anon_sym_break] = ACTIONS(1571), + [anon_sym_const] = ACTIONS(1571), + [anon_sym_continue] = ACTIONS(1571), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_enum] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1571), + [anon_sym_for] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1571), + [anon_sym_impl] = ACTIONS(1571), + [anon_sym_let] = ACTIONS(1571), + [anon_sym_loop] = ACTIONS(1571), + [anon_sym_match] = ACTIONS(1571), + [anon_sym_mod] = ACTIONS(1571), + [anon_sym_pub] = ACTIONS(1571), + [anon_sym_return] = ACTIONS(1571), + [anon_sym_static] = ACTIONS(1571), + [anon_sym_struct] = ACTIONS(1571), + [anon_sym_trait] = ACTIONS(1571), + [anon_sym_type] = ACTIONS(1571), + [anon_sym_union] = ACTIONS(1571), + [anon_sym_unsafe] = ACTIONS(1571), + [anon_sym_use] = ACTIONS(1571), + [anon_sym_while] = ACTIONS(1571), + [anon_sym_POUND] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1571), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_COLON_COLON] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1571), + [anon_sym_move] = ACTIONS(1571), + [sym_integer_literal] = ACTIONS(1569), + [aux_sym_string_literal_token1] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1571), + [anon_sym_false] = ACTIONS(1571), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1571), + [sym_super] = ACTIONS(1571), + [sym_crate] = ACTIONS(1571), + [sym_metavariable] = ACTIONS(1569), + [sym_raw_string_literal] = ACTIONS(1569), + [sym_float_literal] = ACTIONS(1569), [sym_block_comment] = ACTIONS(3), }, [358] = { - [ts_builtin_sym_end] = ACTIONS(1550), - [sym_identifier] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_macro_rules_BANG] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1552), - [anon_sym_async] = ACTIONS(1552), - [anon_sym_break] = ACTIONS(1552), - [anon_sym_const] = ACTIONS(1552), - [anon_sym_continue] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1552), - [anon_sym_enum] = ACTIONS(1552), - [anon_sym_fn] = ACTIONS(1552), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_if] = ACTIONS(1552), - [anon_sym_impl] = ACTIONS(1552), - [anon_sym_let] = ACTIONS(1552), - [anon_sym_loop] = ACTIONS(1552), - [anon_sym_match] = ACTIONS(1552), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_pub] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1552), - [anon_sym_static] = ACTIONS(1552), - [anon_sym_struct] = ACTIONS(1552), - [anon_sym_trait] = ACTIONS(1552), - [anon_sym_type] = ACTIONS(1552), - [anon_sym_union] = ACTIONS(1552), - [anon_sym_unsafe] = ACTIONS(1552), - [anon_sym_use] = ACTIONS(1552), - [anon_sym_while] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(1550), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_extern] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_COLON_COLON] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_DOT_DOT] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_yield] = ACTIONS(1552), - [anon_sym_move] = ACTIONS(1552), - [sym_integer_literal] = ACTIONS(1550), - [aux_sym_string_literal_token1] = ACTIONS(1550), - [sym_char_literal] = ACTIONS(1550), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1552), - [sym_super] = ACTIONS(1552), - [sym_crate] = ACTIONS(1552), - [sym_metavariable] = ACTIONS(1550), - [sym_raw_string_literal] = ACTIONS(1550), - [sym_float_literal] = ACTIONS(1550), + [ts_builtin_sym_end] = ACTIONS(1573), + [sym_identifier] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_macro_rules_BANG] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1573), + [anon_sym_LBRACK] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_u8] = ACTIONS(1575), + [anon_sym_i8] = ACTIONS(1575), + [anon_sym_u16] = ACTIONS(1575), + [anon_sym_i16] = ACTIONS(1575), + [anon_sym_u32] = ACTIONS(1575), + [anon_sym_i32] = ACTIONS(1575), + [anon_sym_u64] = ACTIONS(1575), + [anon_sym_i64] = ACTIONS(1575), + [anon_sym_u128] = ACTIONS(1575), + [anon_sym_i128] = ACTIONS(1575), + [anon_sym_isize] = ACTIONS(1575), + [anon_sym_usize] = ACTIONS(1575), + [anon_sym_f32] = ACTIONS(1575), + [anon_sym_f64] = ACTIONS(1575), + [anon_sym_bool] = ACTIONS(1575), + [anon_sym_str] = ACTIONS(1575), + [anon_sym_char] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_break] = ACTIONS(1575), + [anon_sym_const] = ACTIONS(1575), + [anon_sym_continue] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1575), + [anon_sym_enum] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(1575), + [anon_sym_for] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1575), + [anon_sym_impl] = ACTIONS(1575), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_loop] = ACTIONS(1575), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_pub] = ACTIONS(1575), + [anon_sym_return] = ACTIONS(1575), + [anon_sym_static] = ACTIONS(1575), + [anon_sym_struct] = ACTIONS(1575), + [anon_sym_trait] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(1575), + [anon_sym_union] = ACTIONS(1575), + [anon_sym_unsafe] = ACTIONS(1575), + [anon_sym_use] = ACTIONS(1575), + [anon_sym_while] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1573), + [anon_sym_extern] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_COLON_COLON] = ACTIONS(1573), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_yield] = ACTIONS(1575), + [anon_sym_move] = ACTIONS(1575), + [sym_integer_literal] = ACTIONS(1573), + [aux_sym_string_literal_token1] = ACTIONS(1573), + [sym_char_literal] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1575), + [sym_super] = ACTIONS(1575), + [sym_crate] = ACTIONS(1575), + [sym_metavariable] = ACTIONS(1573), + [sym_raw_string_literal] = ACTIONS(1573), + [sym_float_literal] = ACTIONS(1573), [sym_block_comment] = ACTIONS(3), }, [359] = { - [ts_builtin_sym_end] = ACTIONS(1554), - [sym_identifier] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_macro_rules_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_LBRACE] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_STAR] = ACTIONS(1554), - [anon_sym_u8] = ACTIONS(1556), - [anon_sym_i8] = ACTIONS(1556), - [anon_sym_u16] = ACTIONS(1556), - [anon_sym_i16] = ACTIONS(1556), - [anon_sym_u32] = ACTIONS(1556), - [anon_sym_i32] = ACTIONS(1556), - [anon_sym_u64] = ACTIONS(1556), - [anon_sym_i64] = ACTIONS(1556), - [anon_sym_u128] = ACTIONS(1556), - [anon_sym_i128] = ACTIONS(1556), - [anon_sym_isize] = ACTIONS(1556), - [anon_sym_usize] = ACTIONS(1556), - [anon_sym_f32] = ACTIONS(1556), - [anon_sym_f64] = ACTIONS(1556), - [anon_sym_bool] = ACTIONS(1556), - [anon_sym_str] = ACTIONS(1556), - [anon_sym_char] = ACTIONS(1556), - [anon_sym_SQUOTE] = ACTIONS(1556), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_default] = ACTIONS(1556), - [anon_sym_enum] = ACTIONS(1556), - [anon_sym_fn] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_impl] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_pub] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_static] = ACTIONS(1556), - [anon_sym_struct] = ACTIONS(1556), - [anon_sym_trait] = ACTIONS(1556), - [anon_sym_type] = ACTIONS(1556), - [anon_sym_union] = ACTIONS(1556), - [anon_sym_unsafe] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(1554), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1554), - [anon_sym_COLON_COLON] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1554), - [anon_sym_DOT_DOT] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_PIPE] = ACTIONS(1554), - [anon_sym_yield] = ACTIONS(1556), - [anon_sym_move] = ACTIONS(1556), - [sym_integer_literal] = ACTIONS(1554), - [aux_sym_string_literal_token1] = ACTIONS(1554), - [sym_char_literal] = ACTIONS(1554), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1556), - [sym_super] = ACTIONS(1556), - [sym_crate] = ACTIONS(1556), - [sym_metavariable] = ACTIONS(1554), - [sym_raw_string_literal] = ACTIONS(1554), - [sym_float_literal] = ACTIONS(1554), + [ts_builtin_sym_end] = ACTIONS(1577), + [sym_identifier] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1577), + [anon_sym_macro_rules_BANG] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_RBRACE] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1577), + [anon_sym_u8] = ACTIONS(1579), + [anon_sym_i8] = ACTIONS(1579), + [anon_sym_u16] = ACTIONS(1579), + [anon_sym_i16] = ACTIONS(1579), + [anon_sym_u32] = ACTIONS(1579), + [anon_sym_i32] = ACTIONS(1579), + [anon_sym_u64] = ACTIONS(1579), + [anon_sym_i64] = ACTIONS(1579), + [anon_sym_u128] = ACTIONS(1579), + [anon_sym_i128] = ACTIONS(1579), + [anon_sym_isize] = ACTIONS(1579), + [anon_sym_usize] = ACTIONS(1579), + [anon_sym_f32] = ACTIONS(1579), + [anon_sym_f64] = ACTIONS(1579), + [anon_sym_bool] = ACTIONS(1579), + [anon_sym_str] = ACTIONS(1579), + [anon_sym_char] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(1579), + [anon_sym_enum] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_impl] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1579), + [anon_sym_pub] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_static] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(1579), + [anon_sym_trait] = ACTIONS(1579), + [anon_sym_type] = ACTIONS(1579), + [anon_sym_union] = ACTIONS(1579), + [anon_sym_unsafe] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1577), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_COLON_COLON] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_DOT_DOT] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_yield] = ACTIONS(1579), + [anon_sym_move] = ACTIONS(1579), + [sym_integer_literal] = ACTIONS(1577), + [aux_sym_string_literal_token1] = ACTIONS(1577), + [sym_char_literal] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1579), + [sym_super] = ACTIONS(1579), + [sym_crate] = ACTIONS(1579), + [sym_metavariable] = ACTIONS(1577), + [sym_raw_string_literal] = ACTIONS(1577), + [sym_float_literal] = ACTIONS(1577), [sym_block_comment] = ACTIONS(3), }, [360] = { - [ts_builtin_sym_end] = ACTIONS(1558), - [sym_identifier] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_macro_rules_BANG] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1558), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_u8] = ACTIONS(1560), - [anon_sym_i8] = ACTIONS(1560), - [anon_sym_u16] = ACTIONS(1560), - [anon_sym_i16] = ACTIONS(1560), - [anon_sym_u32] = ACTIONS(1560), - [anon_sym_i32] = ACTIONS(1560), - [anon_sym_u64] = ACTIONS(1560), - [anon_sym_i64] = ACTIONS(1560), - [anon_sym_u128] = ACTIONS(1560), - [anon_sym_i128] = ACTIONS(1560), - [anon_sym_isize] = ACTIONS(1560), - [anon_sym_usize] = ACTIONS(1560), - [anon_sym_f32] = ACTIONS(1560), - [anon_sym_f64] = ACTIONS(1560), - [anon_sym_bool] = ACTIONS(1560), - [anon_sym_str] = ACTIONS(1560), - [anon_sym_char] = ACTIONS(1560), - [anon_sym_SQUOTE] = ACTIONS(1560), - [anon_sym_async] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_enum] = ACTIONS(1560), - [anon_sym_fn] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_impl] = ACTIONS(1560), - [anon_sym_let] = ACTIONS(1560), - [anon_sym_loop] = ACTIONS(1560), - [anon_sym_match] = ACTIONS(1560), - [anon_sym_mod] = ACTIONS(1560), - [anon_sym_pub] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_static] = ACTIONS(1560), - [anon_sym_struct] = ACTIONS(1560), - [anon_sym_trait] = ACTIONS(1560), - [anon_sym_type] = ACTIONS(1560), - [anon_sym_union] = ACTIONS(1560), - [anon_sym_unsafe] = ACTIONS(1560), - [anon_sym_use] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(1558), - [anon_sym_BANG] = ACTIONS(1558), - [anon_sym_extern] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(1558), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1558), - [anon_sym_DOT_DOT] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_yield] = ACTIONS(1560), - [anon_sym_move] = ACTIONS(1560), - [sym_integer_literal] = ACTIONS(1558), - [aux_sym_string_literal_token1] = ACTIONS(1558), - [sym_char_literal] = ACTIONS(1558), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1560), - [sym_super] = ACTIONS(1560), - [sym_crate] = ACTIONS(1560), - [sym_metavariable] = ACTIONS(1558), - [sym_raw_string_literal] = ACTIONS(1558), - [sym_float_literal] = ACTIONS(1558), - [sym_block_comment] = ACTIONS(3), - }, - [361] = { [sym_attribute_item] = STATE(548), - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_macro_invocation] = STATE(2506), - [sym_scoped_identifier] = STATE(1571), - [sym_scoped_type_identifier] = STATE(1936), - [sym_match_arm] = STATE(488), - [sym_last_match_arm] = STATE(2487), - [sym_match_pattern] = STATE(2451), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1924), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_arm] = STATE(500), + [sym_last_match_arm] = STATE(2356), + [sym_match_pattern] = STATE(2359), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), [aux_sym_enum_variant_list_repeat1] = STATE(548), - [aux_sym_match_block_repeat1] = STATE(488), - [sym_identifier] = ACTIONS(1166), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1562), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), + [aux_sym_match_block_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -49547,1539 +49512,1385 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, + [361] = { + [ts_builtin_sym_end] = ACTIONS(1583), + [sym_identifier] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_macro_rules_BANG] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_default] = ACTIONS(1585), + [anon_sym_enum] = ACTIONS(1585), + [anon_sym_fn] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_impl] = ACTIONS(1585), + [anon_sym_let] = ACTIONS(1585), + [anon_sym_loop] = ACTIONS(1585), + [anon_sym_match] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1585), + [anon_sym_pub] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_struct] = ACTIONS(1585), + [anon_sym_trait] = ACTIONS(1585), + [anon_sym_type] = ACTIONS(1585), + [anon_sym_union] = ACTIONS(1585), + [anon_sym_unsafe] = ACTIONS(1585), + [anon_sym_use] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_extern] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(1583), + [anon_sym_COLON_COLON] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1583), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_yield] = ACTIONS(1585), + [anon_sym_move] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1583), + [aux_sym_string_literal_token1] = ACTIONS(1583), + [sym_char_literal] = ACTIONS(1583), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1585), + [sym_super] = ACTIONS(1585), + [sym_crate] = ACTIONS(1585), + [sym_metavariable] = ACTIONS(1583), + [sym_raw_string_literal] = ACTIONS(1583), + [sym_float_literal] = ACTIONS(1583), + [sym_block_comment] = ACTIONS(3), + }, [362] = { - [ts_builtin_sym_end] = ACTIONS(1564), - [sym_identifier] = ACTIONS(1566), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_macro_rules_BANG] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_RBRACE] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1564), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_SQUOTE] = ACTIONS(1566), - [anon_sym_async] = ACTIONS(1566), - [anon_sym_break] = ACTIONS(1566), - [anon_sym_const] = ACTIONS(1566), - [anon_sym_continue] = ACTIONS(1566), - [anon_sym_default] = ACTIONS(1566), - [anon_sym_enum] = ACTIONS(1566), - [anon_sym_fn] = ACTIONS(1566), - [anon_sym_for] = ACTIONS(1566), - [anon_sym_if] = ACTIONS(1566), - [anon_sym_impl] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1566), - [anon_sym_loop] = ACTIONS(1566), - [anon_sym_match] = ACTIONS(1566), - [anon_sym_mod] = ACTIONS(1566), - [anon_sym_pub] = ACTIONS(1566), - [anon_sym_return] = ACTIONS(1566), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_struct] = ACTIONS(1566), - [anon_sym_trait] = ACTIONS(1566), - [anon_sym_type] = ACTIONS(1566), - [anon_sym_union] = ACTIONS(1566), - [anon_sym_unsafe] = ACTIONS(1566), - [anon_sym_use] = ACTIONS(1566), - [anon_sym_while] = ACTIONS(1566), - [anon_sym_POUND] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1564), - [anon_sym_extern] = ACTIONS(1566), - [anon_sym_LT] = ACTIONS(1564), - [anon_sym_COLON_COLON] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_DOT_DOT] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_yield] = ACTIONS(1566), - [anon_sym_move] = ACTIONS(1566), - [sym_integer_literal] = ACTIONS(1564), - [aux_sym_string_literal_token1] = ACTIONS(1564), - [sym_char_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1566), - [anon_sym_false] = ACTIONS(1566), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1566), - [sym_super] = ACTIONS(1566), - [sym_crate] = ACTIONS(1566), - [sym_metavariable] = ACTIONS(1564), - [sym_raw_string_literal] = ACTIONS(1564), - [sym_float_literal] = ACTIONS(1564), + [ts_builtin_sym_end] = ACTIONS(1587), + [sym_identifier] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_macro_rules_BANG] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_u8] = ACTIONS(1589), + [anon_sym_i8] = ACTIONS(1589), + [anon_sym_u16] = ACTIONS(1589), + [anon_sym_i16] = ACTIONS(1589), + [anon_sym_u32] = ACTIONS(1589), + [anon_sym_i32] = ACTIONS(1589), + [anon_sym_u64] = ACTIONS(1589), + [anon_sym_i64] = ACTIONS(1589), + [anon_sym_u128] = ACTIONS(1589), + [anon_sym_i128] = ACTIONS(1589), + [anon_sym_isize] = ACTIONS(1589), + [anon_sym_usize] = ACTIONS(1589), + [anon_sym_f32] = ACTIONS(1589), + [anon_sym_f64] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_str] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1589), + [anon_sym_async] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1589), + [anon_sym_enum] = ACTIONS(1589), + [anon_sym_fn] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_impl] = ACTIONS(1589), + [anon_sym_let] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_mod] = ACTIONS(1589), + [anon_sym_pub] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_struct] = ACTIONS(1589), + [anon_sym_trait] = ACTIONS(1589), + [anon_sym_type] = ACTIONS(1589), + [anon_sym_union] = ACTIONS(1589), + [anon_sym_unsafe] = ACTIONS(1589), + [anon_sym_use] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(1587), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym_LT] = ACTIONS(1587), + [anon_sym_COLON_COLON] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_yield] = ACTIONS(1589), + [anon_sym_move] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1587), + [aux_sym_string_literal_token1] = ACTIONS(1587), + [sym_char_literal] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1589), + [sym_super] = ACTIONS(1589), + [sym_crate] = ACTIONS(1589), + [sym_metavariable] = ACTIONS(1587), + [sym_raw_string_literal] = ACTIONS(1587), + [sym_float_literal] = ACTIONS(1587), [sym_block_comment] = ACTIONS(3), }, [363] = { - [ts_builtin_sym_end] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_macro_rules_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1568), - [anon_sym_u8] = ACTIONS(1570), - [anon_sym_i8] = ACTIONS(1570), - [anon_sym_u16] = ACTIONS(1570), - [anon_sym_i16] = ACTIONS(1570), - [anon_sym_u32] = ACTIONS(1570), - [anon_sym_i32] = ACTIONS(1570), - [anon_sym_u64] = ACTIONS(1570), - [anon_sym_i64] = ACTIONS(1570), - [anon_sym_u128] = ACTIONS(1570), - [anon_sym_i128] = ACTIONS(1570), - [anon_sym_isize] = ACTIONS(1570), - [anon_sym_usize] = ACTIONS(1570), - [anon_sym_f32] = ACTIONS(1570), - [anon_sym_f64] = ACTIONS(1570), - [anon_sym_bool] = ACTIONS(1570), - [anon_sym_str] = ACTIONS(1570), - [anon_sym_char] = ACTIONS(1570), - [anon_sym_SQUOTE] = ACTIONS(1570), - [anon_sym_async] = ACTIONS(1570), - [anon_sym_break] = ACTIONS(1570), - [anon_sym_const] = ACTIONS(1570), - [anon_sym_continue] = ACTIONS(1570), - [anon_sym_default] = ACTIONS(1570), - [anon_sym_enum] = ACTIONS(1570), - [anon_sym_fn] = ACTIONS(1570), - [anon_sym_for] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_impl] = ACTIONS(1570), - [anon_sym_let] = ACTIONS(1570), - [anon_sym_loop] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1570), - [anon_sym_mod] = ACTIONS(1570), - [anon_sym_pub] = ACTIONS(1570), - [anon_sym_return] = ACTIONS(1570), - [anon_sym_static] = ACTIONS(1570), - [anon_sym_struct] = ACTIONS(1570), - [anon_sym_trait] = ACTIONS(1570), - [anon_sym_type] = ACTIONS(1570), - [anon_sym_union] = ACTIONS(1570), - [anon_sym_unsafe] = ACTIONS(1570), - [anon_sym_use] = ACTIONS(1570), - [anon_sym_while] = ACTIONS(1570), - [anon_sym_POUND] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_extern] = ACTIONS(1570), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_DOT_DOT] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_yield] = ACTIONS(1570), - [anon_sym_move] = ACTIONS(1570), - [sym_integer_literal] = ACTIONS(1568), - [aux_sym_string_literal_token1] = ACTIONS(1568), - [sym_char_literal] = ACTIONS(1568), - [anon_sym_true] = ACTIONS(1570), - [anon_sym_false] = ACTIONS(1570), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1570), - [sym_super] = ACTIONS(1570), - [sym_crate] = ACTIONS(1570), - [sym_metavariable] = ACTIONS(1568), - [sym_raw_string_literal] = ACTIONS(1568), - [sym_float_literal] = ACTIONS(1568), + [ts_builtin_sym_end] = ACTIONS(1591), + [sym_identifier] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_macro_rules_BANG] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_u8] = ACTIONS(1593), + [anon_sym_i8] = ACTIONS(1593), + [anon_sym_u16] = ACTIONS(1593), + [anon_sym_i16] = ACTIONS(1593), + [anon_sym_u32] = ACTIONS(1593), + [anon_sym_i32] = ACTIONS(1593), + [anon_sym_u64] = ACTIONS(1593), + [anon_sym_i64] = ACTIONS(1593), + [anon_sym_u128] = ACTIONS(1593), + [anon_sym_i128] = ACTIONS(1593), + [anon_sym_isize] = ACTIONS(1593), + [anon_sym_usize] = ACTIONS(1593), + [anon_sym_f32] = ACTIONS(1593), + [anon_sym_f64] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_str] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1593), + [anon_sym_async] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_enum] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_impl] = ACTIONS(1593), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_loop] = ACTIONS(1593), + [anon_sym_match] = ACTIONS(1593), + [anon_sym_mod] = ACTIONS(1593), + [anon_sym_pub] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_struct] = ACTIONS(1593), + [anon_sym_trait] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_union] = ACTIONS(1593), + [anon_sym_unsafe] = ACTIONS(1593), + [anon_sym_use] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_POUND] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_extern] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(1591), + [anon_sym_COLON_COLON] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_yield] = ACTIONS(1593), + [anon_sym_move] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1591), + [aux_sym_string_literal_token1] = ACTIONS(1591), + [sym_char_literal] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1593), + [sym_super] = ACTIONS(1593), + [sym_crate] = ACTIONS(1593), + [sym_metavariable] = ACTIONS(1591), + [sym_raw_string_literal] = ACTIONS(1591), + [sym_float_literal] = ACTIONS(1591), [sym_block_comment] = ACTIONS(3), }, [364] = { - [ts_builtin_sym_end] = ACTIONS(1572), - [sym_identifier] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_macro_rules_BANG] = ACTIONS(1572), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_u8] = ACTIONS(1574), - [anon_sym_i8] = ACTIONS(1574), - [anon_sym_u16] = ACTIONS(1574), - [anon_sym_i16] = ACTIONS(1574), - [anon_sym_u32] = ACTIONS(1574), - [anon_sym_i32] = ACTIONS(1574), - [anon_sym_u64] = ACTIONS(1574), - [anon_sym_i64] = ACTIONS(1574), - [anon_sym_u128] = ACTIONS(1574), - [anon_sym_i128] = ACTIONS(1574), - [anon_sym_isize] = ACTIONS(1574), - [anon_sym_usize] = ACTIONS(1574), - [anon_sym_f32] = ACTIONS(1574), - [anon_sym_f64] = ACTIONS(1574), - [anon_sym_bool] = ACTIONS(1574), - [anon_sym_str] = ACTIONS(1574), - [anon_sym_char] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1574), - [anon_sym_break] = ACTIONS(1574), - [anon_sym_const] = ACTIONS(1574), - [anon_sym_continue] = ACTIONS(1574), - [anon_sym_default] = ACTIONS(1574), - [anon_sym_enum] = ACTIONS(1574), - [anon_sym_fn] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1574), - [anon_sym_if] = ACTIONS(1574), - [anon_sym_impl] = ACTIONS(1574), - [anon_sym_let] = ACTIONS(1574), - [anon_sym_loop] = ACTIONS(1574), - [anon_sym_match] = ACTIONS(1574), - [anon_sym_mod] = ACTIONS(1574), - [anon_sym_pub] = ACTIONS(1574), - [anon_sym_return] = ACTIONS(1574), - [anon_sym_static] = ACTIONS(1574), - [anon_sym_struct] = ACTIONS(1574), - [anon_sym_trait] = ACTIONS(1574), - [anon_sym_type] = ACTIONS(1574), - [anon_sym_union] = ACTIONS(1574), - [anon_sym_unsafe] = ACTIONS(1574), - [anon_sym_use] = ACTIONS(1574), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_POUND] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1572), - [anon_sym_extern] = ACTIONS(1574), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_move] = ACTIONS(1574), - [sym_integer_literal] = ACTIONS(1572), - [aux_sym_string_literal_token1] = ACTIONS(1572), - [sym_char_literal] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1574), - [anon_sym_false] = ACTIONS(1574), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1574), - [sym_super] = ACTIONS(1574), - [sym_crate] = ACTIONS(1574), - [sym_metavariable] = ACTIONS(1572), - [sym_raw_string_literal] = ACTIONS(1572), - [sym_float_literal] = ACTIONS(1572), + [ts_builtin_sym_end] = ACTIONS(1595), + [sym_identifier] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_macro_rules_BANG] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1595), + [anon_sym_RBRACE] = ACTIONS(1595), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_u8] = ACTIONS(1597), + [anon_sym_i8] = ACTIONS(1597), + [anon_sym_u16] = ACTIONS(1597), + [anon_sym_i16] = ACTIONS(1597), + [anon_sym_u32] = ACTIONS(1597), + [anon_sym_i32] = ACTIONS(1597), + [anon_sym_u64] = ACTIONS(1597), + [anon_sym_i64] = ACTIONS(1597), + [anon_sym_u128] = ACTIONS(1597), + [anon_sym_i128] = ACTIONS(1597), + [anon_sym_isize] = ACTIONS(1597), + [anon_sym_usize] = ACTIONS(1597), + [anon_sym_f32] = ACTIONS(1597), + [anon_sym_f64] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_str] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_SQUOTE] = ACTIONS(1597), + [anon_sym_async] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_default] = ACTIONS(1597), + [anon_sym_enum] = ACTIONS(1597), + [anon_sym_fn] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_impl] = ACTIONS(1597), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_loop] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1597), + [anon_sym_pub] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_struct] = ACTIONS(1597), + [anon_sym_trait] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_union] = ACTIONS(1597), + [anon_sym_unsafe] = ACTIONS(1597), + [anon_sym_use] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_extern] = ACTIONS(1597), + [anon_sym_LT] = ACTIONS(1595), + [anon_sym_COLON_COLON] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_PIPE] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1597), + [anon_sym_move] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1595), + [aux_sym_string_literal_token1] = ACTIONS(1595), + [sym_char_literal] = ACTIONS(1595), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1597), + [sym_super] = ACTIONS(1597), + [sym_crate] = ACTIONS(1597), + [sym_metavariable] = ACTIONS(1595), + [sym_raw_string_literal] = ACTIONS(1595), + [sym_float_literal] = ACTIONS(1595), [sym_block_comment] = ACTIONS(3), }, [365] = { - [ts_builtin_sym_end] = ACTIONS(1576), - [sym_identifier] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_macro_rules_BANG] = ACTIONS(1576), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_RBRACE] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1576), - [anon_sym_u8] = ACTIONS(1578), - [anon_sym_i8] = ACTIONS(1578), - [anon_sym_u16] = ACTIONS(1578), - [anon_sym_i16] = ACTIONS(1578), - [anon_sym_u32] = ACTIONS(1578), - [anon_sym_i32] = ACTIONS(1578), - [anon_sym_u64] = ACTIONS(1578), - [anon_sym_i64] = ACTIONS(1578), - [anon_sym_u128] = ACTIONS(1578), - [anon_sym_i128] = ACTIONS(1578), - [anon_sym_isize] = ACTIONS(1578), - [anon_sym_usize] = ACTIONS(1578), - [anon_sym_f32] = ACTIONS(1578), - [anon_sym_f64] = ACTIONS(1578), - [anon_sym_bool] = ACTIONS(1578), - [anon_sym_str] = ACTIONS(1578), - [anon_sym_char] = ACTIONS(1578), - [anon_sym_SQUOTE] = ACTIONS(1578), - [anon_sym_async] = ACTIONS(1578), - [anon_sym_break] = ACTIONS(1578), - [anon_sym_const] = ACTIONS(1578), - [anon_sym_continue] = ACTIONS(1578), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_enum] = ACTIONS(1578), - [anon_sym_fn] = ACTIONS(1578), - [anon_sym_for] = ACTIONS(1578), - [anon_sym_if] = ACTIONS(1578), - [anon_sym_impl] = ACTIONS(1578), - [anon_sym_let] = ACTIONS(1578), - [anon_sym_loop] = ACTIONS(1578), - [anon_sym_match] = ACTIONS(1578), - [anon_sym_mod] = ACTIONS(1578), - [anon_sym_pub] = ACTIONS(1578), - [anon_sym_return] = ACTIONS(1578), - [anon_sym_static] = ACTIONS(1578), - [anon_sym_struct] = ACTIONS(1578), - [anon_sym_trait] = ACTIONS(1578), - [anon_sym_type] = ACTIONS(1578), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1578), - [anon_sym_use] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1578), - [anon_sym_POUND] = ACTIONS(1576), - [anon_sym_BANG] = ACTIONS(1576), - [anon_sym_extern] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_COLON_COLON] = ACTIONS(1576), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_DOT_DOT] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_move] = ACTIONS(1578), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1576), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1578), - [anon_sym_false] = ACTIONS(1578), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1578), - [sym_super] = ACTIONS(1578), - [sym_crate] = ACTIONS(1578), - [sym_metavariable] = ACTIONS(1576), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [ts_builtin_sym_end] = ACTIONS(1599), + [sym_identifier] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_macro_rules_BANG] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_u8] = ACTIONS(1601), + [anon_sym_i8] = ACTIONS(1601), + [anon_sym_u16] = ACTIONS(1601), + [anon_sym_i16] = ACTIONS(1601), + [anon_sym_u32] = ACTIONS(1601), + [anon_sym_i32] = ACTIONS(1601), + [anon_sym_u64] = ACTIONS(1601), + [anon_sym_i64] = ACTIONS(1601), + [anon_sym_u128] = ACTIONS(1601), + [anon_sym_i128] = ACTIONS(1601), + [anon_sym_isize] = ACTIONS(1601), + [anon_sym_usize] = ACTIONS(1601), + [anon_sym_f32] = ACTIONS(1601), + [anon_sym_f64] = ACTIONS(1601), + [anon_sym_bool] = ACTIONS(1601), + [anon_sym_str] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_SQUOTE] = ACTIONS(1601), + [anon_sym_async] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_enum] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_impl] = ACTIONS(1601), + [anon_sym_let] = ACTIONS(1601), + [anon_sym_loop] = ACTIONS(1601), + [anon_sym_match] = ACTIONS(1601), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_pub] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_struct] = ACTIONS(1601), + [anon_sym_trait] = ACTIONS(1601), + [anon_sym_type] = ACTIONS(1601), + [anon_sym_union] = ACTIONS(1601), + [anon_sym_unsafe] = ACTIONS(1601), + [anon_sym_use] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_POUND] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_extern] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_COLON_COLON] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_yield] = ACTIONS(1601), + [anon_sym_move] = ACTIONS(1601), + [sym_integer_literal] = ACTIONS(1599), + [aux_sym_string_literal_token1] = ACTIONS(1599), + [sym_char_literal] = ACTIONS(1599), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1601), + [sym_super] = ACTIONS(1601), + [sym_crate] = ACTIONS(1601), + [sym_metavariable] = ACTIONS(1599), + [sym_raw_string_literal] = ACTIONS(1599), + [sym_float_literal] = ACTIONS(1599), [sym_block_comment] = ACTIONS(3), }, [366] = { - [ts_builtin_sym_end] = ACTIONS(1580), - [sym_identifier] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_macro_rules_BANG] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(1580), - [anon_sym_u8] = ACTIONS(1582), - [anon_sym_i8] = ACTIONS(1582), - [anon_sym_u16] = ACTIONS(1582), - [anon_sym_i16] = ACTIONS(1582), - [anon_sym_u32] = ACTIONS(1582), - [anon_sym_i32] = ACTIONS(1582), - [anon_sym_u64] = ACTIONS(1582), - [anon_sym_i64] = ACTIONS(1582), - [anon_sym_u128] = ACTIONS(1582), - [anon_sym_i128] = ACTIONS(1582), - [anon_sym_isize] = ACTIONS(1582), - [anon_sym_usize] = ACTIONS(1582), - [anon_sym_f32] = ACTIONS(1582), - [anon_sym_f64] = ACTIONS(1582), - [anon_sym_bool] = ACTIONS(1582), - [anon_sym_str] = ACTIONS(1582), - [anon_sym_char] = ACTIONS(1582), - [anon_sym_SQUOTE] = ACTIONS(1582), - [anon_sym_async] = ACTIONS(1582), - [anon_sym_break] = ACTIONS(1582), - [anon_sym_const] = ACTIONS(1582), - [anon_sym_continue] = ACTIONS(1582), - [anon_sym_default] = ACTIONS(1582), - [anon_sym_enum] = ACTIONS(1582), - [anon_sym_fn] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1582), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_impl] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1582), - [anon_sym_loop] = ACTIONS(1582), - [anon_sym_match] = ACTIONS(1582), - [anon_sym_mod] = ACTIONS(1582), - [anon_sym_pub] = ACTIONS(1582), - [anon_sym_return] = ACTIONS(1582), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_struct] = ACTIONS(1582), - [anon_sym_trait] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_union] = ACTIONS(1582), - [anon_sym_unsafe] = ACTIONS(1582), - [anon_sym_use] = ACTIONS(1582), - [anon_sym_while] = ACTIONS(1582), - [anon_sym_POUND] = ACTIONS(1580), - [anon_sym_BANG] = ACTIONS(1580), - [anon_sym_extern] = ACTIONS(1582), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_COLON_COLON] = ACTIONS(1580), - [anon_sym_AMP] = ACTIONS(1580), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_yield] = ACTIONS(1582), - [anon_sym_move] = ACTIONS(1582), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1580), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1582), - [anon_sym_false] = ACTIONS(1582), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1580), - [sym_raw_string_literal] = ACTIONS(1580), - [sym_float_literal] = ACTIONS(1580), + [ts_builtin_sym_end] = ACTIONS(1603), + [sym_identifier] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_macro_rules_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_RBRACE] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_u8] = ACTIONS(1605), + [anon_sym_i8] = ACTIONS(1605), + [anon_sym_u16] = ACTIONS(1605), + [anon_sym_i16] = ACTIONS(1605), + [anon_sym_u32] = ACTIONS(1605), + [anon_sym_i32] = ACTIONS(1605), + [anon_sym_u64] = ACTIONS(1605), + [anon_sym_i64] = ACTIONS(1605), + [anon_sym_u128] = ACTIONS(1605), + [anon_sym_i128] = ACTIONS(1605), + [anon_sym_isize] = ACTIONS(1605), + [anon_sym_usize] = ACTIONS(1605), + [anon_sym_f32] = ACTIONS(1605), + [anon_sym_f64] = ACTIONS(1605), + [anon_sym_bool] = ACTIONS(1605), + [anon_sym_str] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_enum] = ACTIONS(1605), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_impl] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1605), + [anon_sym_pub] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_struct] = ACTIONS(1605), + [anon_sym_trait] = ACTIONS(1605), + [anon_sym_type] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_unsafe] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_extern] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(1603), + [anon_sym_COLON_COLON] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_DOT_DOT] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1605), + [anon_sym_move] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1603), + [aux_sym_string_literal_token1] = ACTIONS(1603), + [sym_char_literal] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1605), + [sym_super] = ACTIONS(1605), + [sym_crate] = ACTIONS(1605), + [sym_metavariable] = ACTIONS(1603), + [sym_raw_string_literal] = ACTIONS(1603), + [sym_float_literal] = ACTIONS(1603), [sym_block_comment] = ACTIONS(3), }, [367] = { - [ts_builtin_sym_end] = ACTIONS(1584), - [sym_identifier] = ACTIONS(1586), - [anon_sym_SEMI] = ACTIONS(1584), - [anon_sym_macro_rules_BANG] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1584), - [anon_sym_u8] = ACTIONS(1586), - [anon_sym_i8] = ACTIONS(1586), - [anon_sym_u16] = ACTIONS(1586), - [anon_sym_i16] = ACTIONS(1586), - [anon_sym_u32] = ACTIONS(1586), - [anon_sym_i32] = ACTIONS(1586), - [anon_sym_u64] = ACTIONS(1586), - [anon_sym_i64] = ACTIONS(1586), - [anon_sym_u128] = ACTIONS(1586), - [anon_sym_i128] = ACTIONS(1586), - [anon_sym_isize] = ACTIONS(1586), - [anon_sym_usize] = ACTIONS(1586), - [anon_sym_f32] = ACTIONS(1586), - [anon_sym_f64] = ACTIONS(1586), - [anon_sym_bool] = ACTIONS(1586), - [anon_sym_str] = ACTIONS(1586), - [anon_sym_char] = ACTIONS(1586), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_async] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1586), - [anon_sym_const] = ACTIONS(1586), - [anon_sym_continue] = ACTIONS(1586), - [anon_sym_default] = ACTIONS(1586), - [anon_sym_enum] = ACTIONS(1586), - [anon_sym_fn] = ACTIONS(1586), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_impl] = ACTIONS(1586), - [anon_sym_let] = ACTIONS(1586), - [anon_sym_loop] = ACTIONS(1586), - [anon_sym_match] = ACTIONS(1586), - [anon_sym_mod] = ACTIONS(1586), - [anon_sym_pub] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_static] = ACTIONS(1586), - [anon_sym_struct] = ACTIONS(1586), - [anon_sym_trait] = ACTIONS(1586), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_union] = ACTIONS(1586), - [anon_sym_unsafe] = ACTIONS(1586), - [anon_sym_use] = ACTIONS(1586), - [anon_sym_while] = ACTIONS(1586), - [anon_sym_POUND] = ACTIONS(1584), - [anon_sym_BANG] = ACTIONS(1584), - [anon_sym_extern] = ACTIONS(1586), - [anon_sym_LT] = ACTIONS(1584), - [anon_sym_COLON_COLON] = ACTIONS(1584), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_DOT_DOT] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1584), - [anon_sym_yield] = ACTIONS(1586), - [anon_sym_move] = ACTIONS(1586), - [sym_integer_literal] = ACTIONS(1584), - [aux_sym_string_literal_token1] = ACTIONS(1584), - [sym_char_literal] = ACTIONS(1584), - [anon_sym_true] = ACTIONS(1586), - [anon_sym_false] = ACTIONS(1586), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1586), - [sym_super] = ACTIONS(1586), - [sym_crate] = ACTIONS(1586), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1584), - [sym_float_literal] = ACTIONS(1584), + [ts_builtin_sym_end] = ACTIONS(1607), + [sym_identifier] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_macro_rules_BANG] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_enum] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_impl] = ACTIONS(1609), + [anon_sym_let] = ACTIONS(1609), + [anon_sym_loop] = ACTIONS(1609), + [anon_sym_match] = ACTIONS(1609), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_pub] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1609), + [anon_sym_trait] = ACTIONS(1609), + [anon_sym_type] = ACTIONS(1609), + [anon_sym_union] = ACTIONS(1609), + [anon_sym_unsafe] = ACTIONS(1609), + [anon_sym_use] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_COLON_COLON] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_move] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1607), + [aux_sym_string_literal_token1] = ACTIONS(1607), + [sym_char_literal] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1609), + [sym_super] = ACTIONS(1609), + [sym_crate] = ACTIONS(1609), + [sym_metavariable] = ACTIONS(1607), + [sym_raw_string_literal] = ACTIONS(1607), + [sym_float_literal] = ACTIONS(1607), [sym_block_comment] = ACTIONS(3), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(1588), - [sym_identifier] = ACTIONS(1590), - [anon_sym_SEMI] = ACTIONS(1588), - [anon_sym_macro_rules_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_RBRACE] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1588), - [anon_sym_u8] = ACTIONS(1590), - [anon_sym_i8] = ACTIONS(1590), - [anon_sym_u16] = ACTIONS(1590), - [anon_sym_i16] = ACTIONS(1590), - [anon_sym_u32] = ACTIONS(1590), - [anon_sym_i32] = ACTIONS(1590), - [anon_sym_u64] = ACTIONS(1590), - [anon_sym_i64] = ACTIONS(1590), - [anon_sym_u128] = ACTIONS(1590), - [anon_sym_i128] = ACTIONS(1590), - [anon_sym_isize] = ACTIONS(1590), - [anon_sym_usize] = ACTIONS(1590), - [anon_sym_f32] = ACTIONS(1590), - [anon_sym_f64] = ACTIONS(1590), - [anon_sym_bool] = ACTIONS(1590), - [anon_sym_str] = ACTIONS(1590), - [anon_sym_char] = ACTIONS(1590), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(1590), - [anon_sym_break] = ACTIONS(1590), - [anon_sym_const] = ACTIONS(1590), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_default] = ACTIONS(1590), - [anon_sym_enum] = ACTIONS(1590), - [anon_sym_fn] = ACTIONS(1590), - [anon_sym_for] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1590), - [anon_sym_impl] = ACTIONS(1590), - [anon_sym_let] = ACTIONS(1590), - [anon_sym_loop] = ACTIONS(1590), - [anon_sym_match] = ACTIONS(1590), - [anon_sym_mod] = ACTIONS(1590), - [anon_sym_pub] = ACTIONS(1590), - [anon_sym_return] = ACTIONS(1590), - [anon_sym_static] = ACTIONS(1590), - [anon_sym_struct] = ACTIONS(1590), - [anon_sym_trait] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(1590), - [anon_sym_union] = ACTIONS(1590), - [anon_sym_unsafe] = ACTIONS(1590), - [anon_sym_use] = ACTIONS(1590), - [anon_sym_while] = ACTIONS(1590), - [anon_sym_POUND] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_extern] = ACTIONS(1590), - [anon_sym_LT] = ACTIONS(1588), - [anon_sym_COLON_COLON] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_DOT_DOT] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_move] = ACTIONS(1590), - [sym_integer_literal] = ACTIONS(1588), - [aux_sym_string_literal_token1] = ACTIONS(1588), - [sym_char_literal] = ACTIONS(1588), - [anon_sym_true] = ACTIONS(1590), - [anon_sym_false] = ACTIONS(1590), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1590), - [sym_super] = ACTIONS(1590), - [sym_crate] = ACTIONS(1590), - [sym_metavariable] = ACTIONS(1588), - [sym_raw_string_literal] = ACTIONS(1588), - [sym_float_literal] = ACTIONS(1588), + [ts_builtin_sym_end] = ACTIONS(1611), + [sym_identifier] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_macro_rules_BANG] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_RBRACE] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_u8] = ACTIONS(1613), + [anon_sym_i8] = ACTIONS(1613), + [anon_sym_u16] = ACTIONS(1613), + [anon_sym_i16] = ACTIONS(1613), + [anon_sym_u32] = ACTIONS(1613), + [anon_sym_i32] = ACTIONS(1613), + [anon_sym_u64] = ACTIONS(1613), + [anon_sym_i64] = ACTIONS(1613), + [anon_sym_u128] = ACTIONS(1613), + [anon_sym_i128] = ACTIONS(1613), + [anon_sym_isize] = ACTIONS(1613), + [anon_sym_usize] = ACTIONS(1613), + [anon_sym_f32] = ACTIONS(1613), + [anon_sym_f64] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_str] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_SQUOTE] = ACTIONS(1613), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_enum] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_impl] = ACTIONS(1613), + [anon_sym_let] = ACTIONS(1613), + [anon_sym_loop] = ACTIONS(1613), + [anon_sym_match] = ACTIONS(1613), + [anon_sym_mod] = ACTIONS(1613), + [anon_sym_pub] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_struct] = ACTIONS(1613), + [anon_sym_trait] = ACTIONS(1613), + [anon_sym_type] = ACTIONS(1613), + [anon_sym_union] = ACTIONS(1613), + [anon_sym_unsafe] = ACTIONS(1613), + [anon_sym_use] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_POUND] = ACTIONS(1611), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_extern] = ACTIONS(1613), + [anon_sym_LT] = ACTIONS(1611), + [anon_sym_COLON_COLON] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_DOT_DOT] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_PIPE] = ACTIONS(1611), + [anon_sym_yield] = ACTIONS(1613), + [anon_sym_move] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1611), + [aux_sym_string_literal_token1] = ACTIONS(1611), + [sym_char_literal] = ACTIONS(1611), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1613), + [sym_super] = ACTIONS(1613), + [sym_crate] = ACTIONS(1613), + [sym_metavariable] = ACTIONS(1611), + [sym_raw_string_literal] = ACTIONS(1611), + [sym_float_literal] = ACTIONS(1611), [sym_block_comment] = ACTIONS(3), }, [369] = { - [ts_builtin_sym_end] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1594), - [anon_sym_SEMI] = ACTIONS(1592), - [anon_sym_macro_rules_BANG] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_RBRACE] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1592), - [anon_sym_u8] = ACTIONS(1594), - [anon_sym_i8] = ACTIONS(1594), - [anon_sym_u16] = ACTIONS(1594), - [anon_sym_i16] = ACTIONS(1594), - [anon_sym_u32] = ACTIONS(1594), - [anon_sym_i32] = ACTIONS(1594), - [anon_sym_u64] = ACTIONS(1594), - [anon_sym_i64] = ACTIONS(1594), - [anon_sym_u128] = ACTIONS(1594), - [anon_sym_i128] = ACTIONS(1594), - [anon_sym_isize] = ACTIONS(1594), - [anon_sym_usize] = ACTIONS(1594), - [anon_sym_f32] = ACTIONS(1594), - [anon_sym_f64] = ACTIONS(1594), - [anon_sym_bool] = ACTIONS(1594), - [anon_sym_str] = ACTIONS(1594), - [anon_sym_char] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1594), - [anon_sym_async] = ACTIONS(1594), - [anon_sym_break] = ACTIONS(1594), - [anon_sym_const] = ACTIONS(1594), - [anon_sym_continue] = ACTIONS(1594), - [anon_sym_default] = ACTIONS(1594), - [anon_sym_enum] = ACTIONS(1594), - [anon_sym_fn] = ACTIONS(1594), - [anon_sym_for] = ACTIONS(1594), - [anon_sym_if] = ACTIONS(1594), - [anon_sym_impl] = ACTIONS(1594), - [anon_sym_let] = ACTIONS(1594), - [anon_sym_loop] = ACTIONS(1594), - [anon_sym_match] = ACTIONS(1594), - [anon_sym_mod] = ACTIONS(1594), - [anon_sym_pub] = ACTIONS(1594), - [anon_sym_return] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_struct] = ACTIONS(1594), - [anon_sym_trait] = ACTIONS(1594), - [anon_sym_type] = ACTIONS(1594), - [anon_sym_union] = ACTIONS(1594), - [anon_sym_unsafe] = ACTIONS(1594), - [anon_sym_use] = ACTIONS(1594), - [anon_sym_while] = ACTIONS(1594), - [anon_sym_POUND] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1592), - [anon_sym_extern] = ACTIONS(1594), - [anon_sym_LT] = ACTIONS(1592), - [anon_sym_COLON_COLON] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1592), - [anon_sym_DOT_DOT] = ACTIONS(1592), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(1592), - [anon_sym_yield] = ACTIONS(1594), - [anon_sym_move] = ACTIONS(1594), - [sym_integer_literal] = ACTIONS(1592), - [aux_sym_string_literal_token1] = ACTIONS(1592), - [sym_char_literal] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1594), - [anon_sym_false] = ACTIONS(1594), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1594), - [sym_super] = ACTIONS(1594), - [sym_crate] = ACTIONS(1594), - [sym_metavariable] = ACTIONS(1592), - [sym_raw_string_literal] = ACTIONS(1592), - [sym_float_literal] = ACTIONS(1592), + [ts_builtin_sym_end] = ACTIONS(1615), + [sym_identifier] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_macro_rules_BANG] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1615), + [anon_sym_RBRACE] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_u8] = ACTIONS(1617), + [anon_sym_i8] = ACTIONS(1617), + [anon_sym_u16] = ACTIONS(1617), + [anon_sym_i16] = ACTIONS(1617), + [anon_sym_u32] = ACTIONS(1617), + [anon_sym_i32] = ACTIONS(1617), + [anon_sym_u64] = ACTIONS(1617), + [anon_sym_i64] = ACTIONS(1617), + [anon_sym_u128] = ACTIONS(1617), + [anon_sym_i128] = ACTIONS(1617), + [anon_sym_isize] = ACTIONS(1617), + [anon_sym_usize] = ACTIONS(1617), + [anon_sym_f32] = ACTIONS(1617), + [anon_sym_f64] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_str] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_default] = ACTIONS(1617), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_impl] = ACTIONS(1617), + [anon_sym_let] = ACTIONS(1617), + [anon_sym_loop] = ACTIONS(1617), + [anon_sym_match] = ACTIONS(1617), + [anon_sym_mod] = ACTIONS(1617), + [anon_sym_pub] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_struct] = ACTIONS(1617), + [anon_sym_trait] = ACTIONS(1617), + [anon_sym_type] = ACTIONS(1617), + [anon_sym_union] = ACTIONS(1617), + [anon_sym_unsafe] = ACTIONS(1617), + [anon_sym_use] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_POUND] = ACTIONS(1615), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_extern] = ACTIONS(1617), + [anon_sym_LT] = ACTIONS(1615), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_DOT_DOT] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_PIPE] = ACTIONS(1615), + [anon_sym_yield] = ACTIONS(1617), + [anon_sym_move] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1615), + [aux_sym_string_literal_token1] = ACTIONS(1615), + [sym_char_literal] = ACTIONS(1615), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1617), + [sym_super] = ACTIONS(1617), + [sym_crate] = ACTIONS(1617), + [sym_metavariable] = ACTIONS(1615), + [sym_raw_string_literal] = ACTIONS(1615), + [sym_float_literal] = ACTIONS(1615), [sym_block_comment] = ACTIONS(3), }, [370] = { - [ts_builtin_sym_end] = ACTIONS(1596), - [sym_identifier] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_macro_rules_BANG] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1596), - [anon_sym_STAR] = ACTIONS(1596), - [anon_sym_u8] = ACTIONS(1598), - [anon_sym_i8] = ACTIONS(1598), - [anon_sym_u16] = ACTIONS(1598), - [anon_sym_i16] = ACTIONS(1598), - [anon_sym_u32] = ACTIONS(1598), - [anon_sym_i32] = ACTIONS(1598), - [anon_sym_u64] = ACTIONS(1598), - [anon_sym_i64] = ACTIONS(1598), - [anon_sym_u128] = ACTIONS(1598), - [anon_sym_i128] = ACTIONS(1598), - [anon_sym_isize] = ACTIONS(1598), - [anon_sym_usize] = ACTIONS(1598), - [anon_sym_f32] = ACTIONS(1598), - [anon_sym_f64] = ACTIONS(1598), - [anon_sym_bool] = ACTIONS(1598), - [anon_sym_str] = ACTIONS(1598), - [anon_sym_char] = ACTIONS(1598), - [anon_sym_SQUOTE] = ACTIONS(1598), - [anon_sym_async] = ACTIONS(1598), - [anon_sym_break] = ACTIONS(1598), - [anon_sym_const] = ACTIONS(1598), - [anon_sym_continue] = ACTIONS(1598), - [anon_sym_default] = ACTIONS(1598), - [anon_sym_enum] = ACTIONS(1598), - [anon_sym_fn] = ACTIONS(1598), - [anon_sym_for] = ACTIONS(1598), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_impl] = ACTIONS(1598), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_loop] = ACTIONS(1598), - [anon_sym_match] = ACTIONS(1598), - [anon_sym_mod] = ACTIONS(1598), - [anon_sym_pub] = ACTIONS(1598), - [anon_sym_return] = ACTIONS(1598), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_struct] = ACTIONS(1598), - [anon_sym_trait] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_union] = ACTIONS(1598), - [anon_sym_unsafe] = ACTIONS(1598), - [anon_sym_use] = ACTIONS(1598), - [anon_sym_while] = ACTIONS(1598), - [anon_sym_POUND] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(1596), - [anon_sym_extern] = ACTIONS(1598), - [anon_sym_LT] = ACTIONS(1596), - [anon_sym_COLON_COLON] = ACTIONS(1596), - [anon_sym_AMP] = ACTIONS(1596), - [anon_sym_DOT_DOT] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_yield] = ACTIONS(1598), - [anon_sym_move] = ACTIONS(1598), - [sym_integer_literal] = ACTIONS(1596), - [aux_sym_string_literal_token1] = ACTIONS(1596), - [sym_char_literal] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1598), - [anon_sym_false] = ACTIONS(1598), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1598), - [sym_super] = ACTIONS(1598), - [sym_crate] = ACTIONS(1598), - [sym_metavariable] = ACTIONS(1596), - [sym_raw_string_literal] = ACTIONS(1596), - [sym_float_literal] = ACTIONS(1596), + [sym__token_pattern] = STATE(342), + [sym_token_tree_pattern] = STATE(342), + [sym_token_binding_pattern] = STATE(342), + [sym_token_repetition_pattern] = STATE(342), + [sym__never_special_token] = STATE(342), + [sym__literal] = STATE(342), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(342), + [sym_identifier] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_RBRACK] = ACTIONS(1621), + [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_u8] = ACTIONS(1619), + [anon_sym_i8] = ACTIONS(1619), + [anon_sym_u16] = ACTIONS(1619), + [anon_sym_i16] = ACTIONS(1619), + [anon_sym_u32] = ACTIONS(1619), + [anon_sym_i32] = ACTIONS(1619), + [anon_sym_u64] = ACTIONS(1619), + [anon_sym_i64] = ACTIONS(1619), + [anon_sym_u128] = ACTIONS(1619), + [anon_sym_i128] = ACTIONS(1619), + [anon_sym_isize] = ACTIONS(1619), + [anon_sym_usize] = ACTIONS(1619), + [anon_sym_f32] = ACTIONS(1619), + [anon_sym_f64] = ACTIONS(1619), + [anon_sym_bool] = ACTIONS(1619), + [anon_sym_str] = ACTIONS(1619), + [anon_sym_char] = ACTIONS(1619), + [aux_sym__never_special_token_token1] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_as] = ACTIONS(1619), + [anon_sym_async] = ACTIONS(1619), + [anon_sym_await] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [anon_sym_const] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_enum] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_for] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1619), + [anon_sym_impl] = ACTIONS(1619), + [anon_sym_let] = ACTIONS(1619), + [anon_sym_loop] = ACTIONS(1619), + [anon_sym_match] = ACTIONS(1619), + [anon_sym_mod] = ACTIONS(1619), + [anon_sym_pub] = ACTIONS(1619), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_static] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1619), + [anon_sym_trait] = ACTIONS(1619), + [anon_sym_type] = ACTIONS(1619), + [anon_sym_union] = ACTIONS(1619), + [anon_sym_unsafe] = ACTIONS(1619), + [anon_sym_use] = ACTIONS(1619), + [anon_sym_where] = ACTIONS(1619), + [anon_sym_while] = ACTIONS(1619), + [sym_mutable_specifier] = ACTIONS(1619), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1168), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, [371] = { - [ts_builtin_sym_end] = ACTIONS(1600), - [sym_identifier] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_macro_rules_BANG] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_RBRACE] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_u8] = ACTIONS(1602), - [anon_sym_i8] = ACTIONS(1602), - [anon_sym_u16] = ACTIONS(1602), - [anon_sym_i16] = ACTIONS(1602), - [anon_sym_u32] = ACTIONS(1602), - [anon_sym_i32] = ACTIONS(1602), - [anon_sym_u64] = ACTIONS(1602), - [anon_sym_i64] = ACTIONS(1602), - [anon_sym_u128] = ACTIONS(1602), - [anon_sym_i128] = ACTIONS(1602), - [anon_sym_isize] = ACTIONS(1602), - [anon_sym_usize] = ACTIONS(1602), - [anon_sym_f32] = ACTIONS(1602), - [anon_sym_f64] = ACTIONS(1602), - [anon_sym_bool] = ACTIONS(1602), - [anon_sym_str] = ACTIONS(1602), - [anon_sym_char] = ACTIONS(1602), - [anon_sym_SQUOTE] = ACTIONS(1602), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_break] = ACTIONS(1602), - [anon_sym_const] = ACTIONS(1602), - [anon_sym_continue] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1602), - [anon_sym_enum] = ACTIONS(1602), - [anon_sym_fn] = ACTIONS(1602), - [anon_sym_for] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(1602), - [anon_sym_impl] = ACTIONS(1602), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_loop] = ACTIONS(1602), - [anon_sym_match] = ACTIONS(1602), - [anon_sym_mod] = ACTIONS(1602), - [anon_sym_pub] = ACTIONS(1602), - [anon_sym_return] = ACTIONS(1602), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_struct] = ACTIONS(1602), - [anon_sym_trait] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_union] = ACTIONS(1602), - [anon_sym_unsafe] = ACTIONS(1602), - [anon_sym_use] = ACTIONS(1602), - [anon_sym_while] = ACTIONS(1602), - [anon_sym_POUND] = ACTIONS(1600), - [anon_sym_BANG] = ACTIONS(1600), - [anon_sym_extern] = ACTIONS(1602), - [anon_sym_LT] = ACTIONS(1600), - [anon_sym_COLON_COLON] = ACTIONS(1600), - [anon_sym_AMP] = ACTIONS(1600), - [anon_sym_DOT_DOT] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_PIPE] = ACTIONS(1600), - [anon_sym_yield] = ACTIONS(1602), - [anon_sym_move] = ACTIONS(1602), - [sym_integer_literal] = ACTIONS(1600), - [aux_sym_string_literal_token1] = ACTIONS(1600), - [sym_char_literal] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(1602), - [anon_sym_false] = ACTIONS(1602), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1602), - [sym_super] = ACTIONS(1602), - [sym_crate] = ACTIONS(1602), - [sym_metavariable] = ACTIONS(1600), - [sym_raw_string_literal] = ACTIONS(1600), - [sym_float_literal] = ACTIONS(1600), + [ts_builtin_sym_end] = ACTIONS(1623), + [sym_identifier] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_macro_rules_BANG] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_u8] = ACTIONS(1625), + [anon_sym_i8] = ACTIONS(1625), + [anon_sym_u16] = ACTIONS(1625), + [anon_sym_i16] = ACTIONS(1625), + [anon_sym_u32] = ACTIONS(1625), + [anon_sym_i32] = ACTIONS(1625), + [anon_sym_u64] = ACTIONS(1625), + [anon_sym_i64] = ACTIONS(1625), + [anon_sym_u128] = ACTIONS(1625), + [anon_sym_i128] = ACTIONS(1625), + [anon_sym_isize] = ACTIONS(1625), + [anon_sym_usize] = ACTIONS(1625), + [anon_sym_f32] = ACTIONS(1625), + [anon_sym_f64] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_str] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_SQUOTE] = ACTIONS(1625), + [anon_sym_async] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1625), + [anon_sym_enum] = ACTIONS(1625), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_let] = ACTIONS(1625), + [anon_sym_loop] = ACTIONS(1625), + [anon_sym_match] = ACTIONS(1625), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_pub] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_trait] = ACTIONS(1625), + [anon_sym_type] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1625), + [anon_sym_unsafe] = ACTIONS(1625), + [anon_sym_use] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_POUND] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_extern] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_COLON_COLON] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_DOT_DOT] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_yield] = ACTIONS(1625), + [anon_sym_move] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1623), + [aux_sym_string_literal_token1] = ACTIONS(1623), + [sym_char_literal] = ACTIONS(1623), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1625), + [sym_super] = ACTIONS(1625), + [sym_crate] = ACTIONS(1625), + [sym_metavariable] = ACTIONS(1623), + [sym_raw_string_literal] = ACTIONS(1623), + [sym_float_literal] = ACTIONS(1623), [sym_block_comment] = ACTIONS(3), }, [372] = { - [ts_builtin_sym_end] = ACTIONS(1604), - [sym_identifier] = ACTIONS(1606), - [anon_sym_SEMI] = ACTIONS(1604), - [anon_sym_macro_rules_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_RBRACE] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1604), - [anon_sym_u8] = ACTIONS(1606), - [anon_sym_i8] = ACTIONS(1606), - [anon_sym_u16] = ACTIONS(1606), - [anon_sym_i16] = ACTIONS(1606), - [anon_sym_u32] = ACTIONS(1606), - [anon_sym_i32] = ACTIONS(1606), - [anon_sym_u64] = ACTIONS(1606), - [anon_sym_i64] = ACTIONS(1606), - [anon_sym_u128] = ACTIONS(1606), - [anon_sym_i128] = ACTIONS(1606), - [anon_sym_isize] = ACTIONS(1606), - [anon_sym_usize] = ACTIONS(1606), - [anon_sym_f32] = ACTIONS(1606), - [anon_sym_f64] = ACTIONS(1606), - [anon_sym_bool] = ACTIONS(1606), - [anon_sym_str] = ACTIONS(1606), - [anon_sym_char] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1606), - [anon_sym_async] = ACTIONS(1606), - [anon_sym_break] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1606), - [anon_sym_continue] = ACTIONS(1606), - [anon_sym_default] = ACTIONS(1606), - [anon_sym_enum] = ACTIONS(1606), - [anon_sym_fn] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(1606), - [anon_sym_if] = ACTIONS(1606), - [anon_sym_impl] = ACTIONS(1606), - [anon_sym_let] = ACTIONS(1606), - [anon_sym_loop] = ACTIONS(1606), - [anon_sym_match] = ACTIONS(1606), - [anon_sym_mod] = ACTIONS(1606), - [anon_sym_pub] = ACTIONS(1606), - [anon_sym_return] = ACTIONS(1606), - [anon_sym_static] = ACTIONS(1606), - [anon_sym_struct] = ACTIONS(1606), - [anon_sym_trait] = ACTIONS(1606), - [anon_sym_type] = ACTIONS(1606), - [anon_sym_union] = ACTIONS(1606), - [anon_sym_unsafe] = ACTIONS(1606), - [anon_sym_use] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_POUND] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_extern] = ACTIONS(1606), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1604), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_DOT_DOT] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_yield] = ACTIONS(1606), - [anon_sym_move] = ACTIONS(1606), - [sym_integer_literal] = ACTIONS(1604), - [aux_sym_string_literal_token1] = ACTIONS(1604), - [sym_char_literal] = ACTIONS(1604), - [anon_sym_true] = ACTIONS(1606), - [anon_sym_false] = ACTIONS(1606), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1606), - [sym_super] = ACTIONS(1606), - [sym_crate] = ACTIONS(1606), - [sym_metavariable] = ACTIONS(1604), - [sym_raw_string_literal] = ACTIONS(1604), - [sym_float_literal] = ACTIONS(1604), + [sym__token_pattern] = STATE(343), + [sym_token_tree_pattern] = STATE(343), + [sym_token_binding_pattern] = STATE(343), + [sym_token_repetition_pattern] = STATE(343), + [sym__never_special_token] = STATE(343), + [sym__literal] = STATE(343), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(343), + [sym_identifier] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_u8] = ACTIONS(1627), + [anon_sym_i8] = ACTIONS(1627), + [anon_sym_u16] = ACTIONS(1627), + [anon_sym_i16] = ACTIONS(1627), + [anon_sym_u32] = ACTIONS(1627), + [anon_sym_i32] = ACTIONS(1627), + [anon_sym_u64] = ACTIONS(1627), + [anon_sym_i64] = ACTIONS(1627), + [anon_sym_u128] = ACTIONS(1627), + [anon_sym_i128] = ACTIONS(1627), + [anon_sym_isize] = ACTIONS(1627), + [anon_sym_usize] = ACTIONS(1627), + [anon_sym_f32] = ACTIONS(1627), + [anon_sym_f64] = ACTIONS(1627), + [anon_sym_bool] = ACTIONS(1627), + [anon_sym_str] = ACTIONS(1627), + [anon_sym_char] = ACTIONS(1627), + [aux_sym__never_special_token_token1] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_as] = ACTIONS(1627), + [anon_sym_async] = ACTIONS(1627), + [anon_sym_await] = ACTIONS(1627), + [anon_sym_break] = ACTIONS(1627), + [anon_sym_const] = ACTIONS(1627), + [anon_sym_continue] = ACTIONS(1627), + [anon_sym_default] = ACTIONS(1627), + [anon_sym_enum] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1627), + [anon_sym_for] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1627), + [anon_sym_impl] = ACTIONS(1627), + [anon_sym_let] = ACTIONS(1627), + [anon_sym_loop] = ACTIONS(1627), + [anon_sym_match] = ACTIONS(1627), + [anon_sym_mod] = ACTIONS(1627), + [anon_sym_pub] = ACTIONS(1627), + [anon_sym_return] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_struct] = ACTIONS(1627), + [anon_sym_trait] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_unsafe] = ACTIONS(1627), + [anon_sym_use] = ACTIONS(1627), + [anon_sym_where] = ACTIONS(1627), + [anon_sym_while] = ACTIONS(1627), + [sym_mutable_specifier] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(1627), + [sym_super] = ACTIONS(1627), + [sym_crate] = ACTIONS(1627), + [sym_metavariable] = ACTIONS(1168), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, [373] = { - [ts_builtin_sym_end] = ACTIONS(1608), - [sym_identifier] = ACTIONS(1610), - [anon_sym_SEMI] = ACTIONS(1608), - [anon_sym_macro_rules_BANG] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1610), - [anon_sym_i8] = ACTIONS(1610), - [anon_sym_u16] = ACTIONS(1610), - [anon_sym_i16] = ACTIONS(1610), - [anon_sym_u32] = ACTIONS(1610), - [anon_sym_i32] = ACTIONS(1610), - [anon_sym_u64] = ACTIONS(1610), - [anon_sym_i64] = ACTIONS(1610), - [anon_sym_u128] = ACTIONS(1610), - [anon_sym_i128] = ACTIONS(1610), - [anon_sym_isize] = ACTIONS(1610), - [anon_sym_usize] = ACTIONS(1610), - [anon_sym_f32] = ACTIONS(1610), - [anon_sym_f64] = ACTIONS(1610), - [anon_sym_bool] = ACTIONS(1610), - [anon_sym_str] = ACTIONS(1610), - [anon_sym_char] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1610), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_break] = ACTIONS(1610), - [anon_sym_const] = ACTIONS(1610), - [anon_sym_continue] = ACTIONS(1610), - [anon_sym_default] = ACTIONS(1610), - [anon_sym_enum] = ACTIONS(1610), - [anon_sym_fn] = ACTIONS(1610), - [anon_sym_for] = ACTIONS(1610), - [anon_sym_if] = ACTIONS(1610), - [anon_sym_impl] = ACTIONS(1610), - [anon_sym_let] = ACTIONS(1610), - [anon_sym_loop] = ACTIONS(1610), - [anon_sym_match] = ACTIONS(1610), - [anon_sym_mod] = ACTIONS(1610), - [anon_sym_pub] = ACTIONS(1610), - [anon_sym_return] = ACTIONS(1610), - [anon_sym_static] = ACTIONS(1610), - [anon_sym_struct] = ACTIONS(1610), - [anon_sym_trait] = ACTIONS(1610), - [anon_sym_type] = ACTIONS(1610), - [anon_sym_union] = ACTIONS(1610), - [anon_sym_unsafe] = ACTIONS(1610), - [anon_sym_use] = ACTIONS(1610), - [anon_sym_while] = ACTIONS(1610), - [anon_sym_POUND] = ACTIONS(1608), - [anon_sym_BANG] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(1608), - [anon_sym_DOT_DOT] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_PIPE] = ACTIONS(1608), - [anon_sym_yield] = ACTIONS(1610), - [anon_sym_move] = ACTIONS(1610), - [sym_integer_literal] = ACTIONS(1608), - [aux_sym_string_literal_token1] = ACTIONS(1608), - [sym_char_literal] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1610), - [anon_sym_false] = ACTIONS(1610), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1610), - [sym_super] = ACTIONS(1610), - [sym_crate] = ACTIONS(1610), - [sym_metavariable] = ACTIONS(1608), - [sym_raw_string_literal] = ACTIONS(1608), - [sym_float_literal] = ACTIONS(1608), + [sym__token_pattern] = STATE(344), + [sym_token_tree_pattern] = STATE(344), + [sym_token_binding_pattern] = STATE(344), + [sym_token_repetition_pattern] = STATE(344), + [sym__never_special_token] = STATE(344), + [sym__literal] = STATE(344), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_RPAREN] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_u8] = ACTIONS(1629), + [anon_sym_i8] = ACTIONS(1629), + [anon_sym_u16] = ACTIONS(1629), + [anon_sym_i16] = ACTIONS(1629), + [anon_sym_u32] = ACTIONS(1629), + [anon_sym_i32] = ACTIONS(1629), + [anon_sym_u64] = ACTIONS(1629), + [anon_sym_i64] = ACTIONS(1629), + [anon_sym_u128] = ACTIONS(1629), + [anon_sym_i128] = ACTIONS(1629), + [anon_sym_isize] = ACTIONS(1629), + [anon_sym_usize] = ACTIONS(1629), + [anon_sym_f32] = ACTIONS(1629), + [anon_sym_f64] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_str] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [aux_sym__never_special_token_token1] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1629), + [anon_sym_as] = ACTIONS(1629), + [anon_sym_async] = ACTIONS(1629), + [anon_sym_await] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_default] = ACTIONS(1629), + [anon_sym_enum] = ACTIONS(1629), + [anon_sym_fn] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_impl] = ACTIONS(1629), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_loop] = ACTIONS(1629), + [anon_sym_match] = ACTIONS(1629), + [anon_sym_mod] = ACTIONS(1629), + [anon_sym_pub] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_trait] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1629), + [anon_sym_unsafe] = ACTIONS(1629), + [anon_sym_use] = ACTIONS(1629), + [anon_sym_where] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [sym_mutable_specifier] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(1629), + [sym_super] = ACTIONS(1629), + [sym_crate] = ACTIONS(1629), + [sym_metavariable] = ACTIONS(1168), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, [374] = { - [ts_builtin_sym_end] = ACTIONS(1612), - [sym_identifier] = ACTIONS(1614), - [anon_sym_SEMI] = ACTIONS(1612), - [anon_sym_macro_rules_BANG] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1612), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1612), - [anon_sym_u8] = ACTIONS(1614), - [anon_sym_i8] = ACTIONS(1614), - [anon_sym_u16] = ACTIONS(1614), - [anon_sym_i16] = ACTIONS(1614), - [anon_sym_u32] = ACTIONS(1614), - [anon_sym_i32] = ACTIONS(1614), - [anon_sym_u64] = ACTIONS(1614), - [anon_sym_i64] = ACTIONS(1614), - [anon_sym_u128] = ACTIONS(1614), - [anon_sym_i128] = ACTIONS(1614), - [anon_sym_isize] = ACTIONS(1614), - [anon_sym_usize] = ACTIONS(1614), - [anon_sym_f32] = ACTIONS(1614), - [anon_sym_f64] = ACTIONS(1614), - [anon_sym_bool] = ACTIONS(1614), - [anon_sym_str] = ACTIONS(1614), - [anon_sym_char] = ACTIONS(1614), - [anon_sym_SQUOTE] = ACTIONS(1614), - [anon_sym_async] = ACTIONS(1614), - [anon_sym_break] = ACTIONS(1614), - [anon_sym_const] = ACTIONS(1614), - [anon_sym_continue] = ACTIONS(1614), - [anon_sym_default] = ACTIONS(1614), - [anon_sym_enum] = ACTIONS(1614), - [anon_sym_fn] = ACTIONS(1614), - [anon_sym_for] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(1614), - [anon_sym_impl] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1614), - [anon_sym_loop] = ACTIONS(1614), - [anon_sym_match] = ACTIONS(1614), - [anon_sym_mod] = ACTIONS(1614), - [anon_sym_pub] = ACTIONS(1614), - [anon_sym_return] = ACTIONS(1614), - [anon_sym_static] = ACTIONS(1614), - [anon_sym_struct] = ACTIONS(1614), - [anon_sym_trait] = ACTIONS(1614), - [anon_sym_type] = ACTIONS(1614), - [anon_sym_union] = ACTIONS(1614), - [anon_sym_unsafe] = ACTIONS(1614), - [anon_sym_use] = ACTIONS(1614), - [anon_sym_while] = ACTIONS(1614), - [anon_sym_POUND] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1612), - [anon_sym_extern] = ACTIONS(1614), - [anon_sym_LT] = ACTIONS(1612), - [anon_sym_COLON_COLON] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_DOT_DOT] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), - [anon_sym_move] = ACTIONS(1614), - [sym_integer_literal] = ACTIONS(1612), - [aux_sym_string_literal_token1] = ACTIONS(1612), - [sym_char_literal] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1614), - [anon_sym_false] = ACTIONS(1614), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1614), - [sym_super] = ACTIONS(1614), - [sym_crate] = ACTIONS(1614), - [sym_metavariable] = ACTIONS(1612), - [sym_raw_string_literal] = ACTIONS(1612), - [sym_float_literal] = ACTIONS(1612), + [ts_builtin_sym_end] = ACTIONS(1631), + [sym_identifier] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_macro_rules_BANG] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1631), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_u8] = ACTIONS(1633), + [anon_sym_i8] = ACTIONS(1633), + [anon_sym_u16] = ACTIONS(1633), + [anon_sym_i16] = ACTIONS(1633), + [anon_sym_u32] = ACTIONS(1633), + [anon_sym_i32] = ACTIONS(1633), + [anon_sym_u64] = ACTIONS(1633), + [anon_sym_i64] = ACTIONS(1633), + [anon_sym_u128] = ACTIONS(1633), + [anon_sym_i128] = ACTIONS(1633), + [anon_sym_isize] = ACTIONS(1633), + [anon_sym_usize] = ACTIONS(1633), + [anon_sym_f32] = ACTIONS(1633), + [anon_sym_f64] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_str] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_SQUOTE] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_enum] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_impl] = ACTIONS(1633), + [anon_sym_let] = ACTIONS(1633), + [anon_sym_loop] = ACTIONS(1633), + [anon_sym_match] = ACTIONS(1633), + [anon_sym_mod] = ACTIONS(1633), + [anon_sym_pub] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_struct] = ACTIONS(1633), + [anon_sym_trait] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_union] = ACTIONS(1633), + [anon_sym_unsafe] = ACTIONS(1633), + [anon_sym_use] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_POUND] = ACTIONS(1631), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1633), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_COLON_COLON] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), + [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_yield] = ACTIONS(1633), + [anon_sym_move] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1631), + [aux_sym_string_literal_token1] = ACTIONS(1631), + [sym_char_literal] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1633), + [sym_super] = ACTIONS(1633), + [sym_crate] = ACTIONS(1633), + [sym_metavariable] = ACTIONS(1631), + [sym_raw_string_literal] = ACTIONS(1631), + [sym_float_literal] = ACTIONS(1631), [sym_block_comment] = ACTIONS(3), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(1616), - [sym_identifier] = ACTIONS(1618), - [anon_sym_SEMI] = ACTIONS(1616), - [anon_sym_macro_rules_BANG] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_RBRACE] = ACTIONS(1616), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1616), - [anon_sym_u8] = ACTIONS(1618), - [anon_sym_i8] = ACTIONS(1618), - [anon_sym_u16] = ACTIONS(1618), - [anon_sym_i16] = ACTIONS(1618), - [anon_sym_u32] = ACTIONS(1618), - [anon_sym_i32] = ACTIONS(1618), - [anon_sym_u64] = ACTIONS(1618), - [anon_sym_i64] = ACTIONS(1618), - [anon_sym_u128] = ACTIONS(1618), - [anon_sym_i128] = ACTIONS(1618), - [anon_sym_isize] = ACTIONS(1618), - [anon_sym_usize] = ACTIONS(1618), - [anon_sym_f32] = ACTIONS(1618), - [anon_sym_f64] = ACTIONS(1618), - [anon_sym_bool] = ACTIONS(1618), - [anon_sym_str] = ACTIONS(1618), - [anon_sym_char] = ACTIONS(1618), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_break] = ACTIONS(1618), - [anon_sym_const] = ACTIONS(1618), - [anon_sym_continue] = ACTIONS(1618), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_enum] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1618), - [anon_sym_for] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1618), - [anon_sym_impl] = ACTIONS(1618), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_loop] = ACTIONS(1618), - [anon_sym_match] = ACTIONS(1618), - [anon_sym_mod] = ACTIONS(1618), - [anon_sym_pub] = ACTIONS(1618), - [anon_sym_return] = ACTIONS(1618), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_struct] = ACTIONS(1618), - [anon_sym_trait] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_union] = ACTIONS(1618), - [anon_sym_unsafe] = ACTIONS(1618), - [anon_sym_use] = ACTIONS(1618), - [anon_sym_while] = ACTIONS(1618), - [anon_sym_POUND] = ACTIONS(1616), - [anon_sym_BANG] = ACTIONS(1616), - [anon_sym_extern] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(1616), - [anon_sym_COLON_COLON] = ACTIONS(1616), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_DOT_DOT] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1616), - [anon_sym_yield] = ACTIONS(1618), - [anon_sym_move] = ACTIONS(1618), - [sym_integer_literal] = ACTIONS(1616), - [aux_sym_string_literal_token1] = ACTIONS(1616), - [sym_char_literal] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1618), - [anon_sym_false] = ACTIONS(1618), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1618), - [sym_super] = ACTIONS(1618), - [sym_crate] = ACTIONS(1618), - [sym_metavariable] = ACTIONS(1616), - [sym_raw_string_literal] = ACTIONS(1616), - [sym_float_literal] = ACTIONS(1616), + [ts_builtin_sym_end] = ACTIONS(1635), + [sym_identifier] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_macro_rules_BANG] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACE] = ACTIONS(1635), + [anon_sym_RBRACE] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1635), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_u8] = ACTIONS(1637), + [anon_sym_i8] = ACTIONS(1637), + [anon_sym_u16] = ACTIONS(1637), + [anon_sym_i16] = ACTIONS(1637), + [anon_sym_u32] = ACTIONS(1637), + [anon_sym_i32] = ACTIONS(1637), + [anon_sym_u64] = ACTIONS(1637), + [anon_sym_i64] = ACTIONS(1637), + [anon_sym_u128] = ACTIONS(1637), + [anon_sym_i128] = ACTIONS(1637), + [anon_sym_isize] = ACTIONS(1637), + [anon_sym_usize] = ACTIONS(1637), + [anon_sym_f32] = ACTIONS(1637), + [anon_sym_f64] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_str] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1637), + [anon_sym_async] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_default] = ACTIONS(1637), + [anon_sym_enum] = ACTIONS(1637), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1637), + [anon_sym_let] = ACTIONS(1637), + [anon_sym_loop] = ACTIONS(1637), + [anon_sym_match] = ACTIONS(1637), + [anon_sym_mod] = ACTIONS(1637), + [anon_sym_pub] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_struct] = ACTIONS(1637), + [anon_sym_trait] = ACTIONS(1637), + [anon_sym_type] = ACTIONS(1637), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1637), + [anon_sym_use] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_POUND] = ACTIONS(1635), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_extern] = ACTIONS(1637), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_COLON_COLON] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_DOT_DOT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_PIPE] = ACTIONS(1635), + [anon_sym_yield] = ACTIONS(1637), + [anon_sym_move] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1635), + [aux_sym_string_literal_token1] = ACTIONS(1635), + [sym_char_literal] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1637), + [sym_super] = ACTIONS(1637), + [sym_crate] = ACTIONS(1637), + [sym_metavariable] = ACTIONS(1635), + [sym_raw_string_literal] = ACTIONS(1635), + [sym_float_literal] = ACTIONS(1635), [sym_block_comment] = ACTIONS(3), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(1620), - [sym_identifier] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_macro_rules_BANG] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_u8] = ACTIONS(1622), - [anon_sym_i8] = ACTIONS(1622), - [anon_sym_u16] = ACTIONS(1622), - [anon_sym_i16] = ACTIONS(1622), - [anon_sym_u32] = ACTIONS(1622), - [anon_sym_i32] = ACTIONS(1622), - [anon_sym_u64] = ACTIONS(1622), - [anon_sym_i64] = ACTIONS(1622), - [anon_sym_u128] = ACTIONS(1622), - [anon_sym_i128] = ACTIONS(1622), - [anon_sym_isize] = ACTIONS(1622), - [anon_sym_usize] = ACTIONS(1622), - [anon_sym_f32] = ACTIONS(1622), - [anon_sym_f64] = ACTIONS(1622), - [anon_sym_bool] = ACTIONS(1622), - [anon_sym_str] = ACTIONS(1622), - [anon_sym_char] = ACTIONS(1622), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_async] = ACTIONS(1622), - [anon_sym_break] = ACTIONS(1622), - [anon_sym_const] = ACTIONS(1622), - [anon_sym_continue] = ACTIONS(1622), - [anon_sym_default] = ACTIONS(1622), - [anon_sym_enum] = ACTIONS(1622), - [anon_sym_fn] = ACTIONS(1622), - [anon_sym_for] = ACTIONS(1622), - [anon_sym_if] = ACTIONS(1622), - [anon_sym_impl] = ACTIONS(1622), - [anon_sym_let] = ACTIONS(1622), - [anon_sym_loop] = ACTIONS(1622), - [anon_sym_match] = ACTIONS(1622), - [anon_sym_mod] = ACTIONS(1622), - [anon_sym_pub] = ACTIONS(1622), - [anon_sym_return] = ACTIONS(1622), - [anon_sym_static] = ACTIONS(1622), - [anon_sym_struct] = ACTIONS(1622), - [anon_sym_trait] = ACTIONS(1622), - [anon_sym_type] = ACTIONS(1622), - [anon_sym_union] = ACTIONS(1622), - [anon_sym_unsafe] = ACTIONS(1622), - [anon_sym_use] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(1622), - [anon_sym_POUND] = ACTIONS(1620), - [anon_sym_BANG] = ACTIONS(1620), - [anon_sym_extern] = ACTIONS(1622), - [anon_sym_LT] = ACTIONS(1620), - [anon_sym_COLON_COLON] = ACTIONS(1620), - [anon_sym_AMP] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_yield] = ACTIONS(1622), - [anon_sym_move] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(1620), - [aux_sym_string_literal_token1] = ACTIONS(1620), - [sym_char_literal] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1622), - [sym_super] = ACTIONS(1622), - [sym_crate] = ACTIONS(1622), - [sym_metavariable] = ACTIONS(1620), - [sym_raw_string_literal] = ACTIONS(1620), - [sym_float_literal] = ACTIONS(1620), + [ts_builtin_sym_end] = ACTIONS(1639), + [sym_identifier] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_macro_rules_BANG] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_u8] = ACTIONS(1641), + [anon_sym_i8] = ACTIONS(1641), + [anon_sym_u16] = ACTIONS(1641), + [anon_sym_i16] = ACTIONS(1641), + [anon_sym_u32] = ACTIONS(1641), + [anon_sym_i32] = ACTIONS(1641), + [anon_sym_u64] = ACTIONS(1641), + [anon_sym_i64] = ACTIONS(1641), + [anon_sym_u128] = ACTIONS(1641), + [anon_sym_i128] = ACTIONS(1641), + [anon_sym_isize] = ACTIONS(1641), + [anon_sym_usize] = ACTIONS(1641), + [anon_sym_f32] = ACTIONS(1641), + [anon_sym_f64] = ACTIONS(1641), + [anon_sym_bool] = ACTIONS(1641), + [anon_sym_str] = ACTIONS(1641), + [anon_sym_char] = ACTIONS(1641), + [anon_sym_SQUOTE] = ACTIONS(1641), + [anon_sym_async] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_default] = ACTIONS(1641), + [anon_sym_enum] = ACTIONS(1641), + [anon_sym_fn] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_impl] = ACTIONS(1641), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_loop] = ACTIONS(1641), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_mod] = ACTIONS(1641), + [anon_sym_pub] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_struct] = ACTIONS(1641), + [anon_sym_trait] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_union] = ACTIONS(1641), + [anon_sym_unsafe] = ACTIONS(1641), + [anon_sym_use] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1641), + [anon_sym_LT] = ACTIONS(1639), + [anon_sym_COLON_COLON] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_move] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1639), + [aux_sym_string_literal_token1] = ACTIONS(1639), + [sym_char_literal] = ACTIONS(1639), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1641), + [sym_super] = ACTIONS(1641), + [sym_crate] = ACTIONS(1641), + [sym_metavariable] = ACTIONS(1639), + [sym_raw_string_literal] = ACTIONS(1639), + [sym_float_literal] = ACTIONS(1639), [sym_block_comment] = ACTIONS(3), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(1624), - [sym_identifier] = ACTIONS(1626), - [anon_sym_SEMI] = ACTIONS(1624), - [anon_sym_macro_rules_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1624), - [anon_sym_LBRACK] = ACTIONS(1624), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_u8] = ACTIONS(1626), - [anon_sym_i8] = ACTIONS(1626), - [anon_sym_u16] = ACTIONS(1626), - [anon_sym_i16] = ACTIONS(1626), - [anon_sym_u32] = ACTIONS(1626), - [anon_sym_i32] = ACTIONS(1626), - [anon_sym_u64] = ACTIONS(1626), - [anon_sym_i64] = ACTIONS(1626), - [anon_sym_u128] = ACTIONS(1626), - [anon_sym_i128] = ACTIONS(1626), - [anon_sym_isize] = ACTIONS(1626), - [anon_sym_usize] = ACTIONS(1626), - [anon_sym_f32] = ACTIONS(1626), - [anon_sym_f64] = ACTIONS(1626), - [anon_sym_bool] = ACTIONS(1626), - [anon_sym_str] = ACTIONS(1626), - [anon_sym_char] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_async] = ACTIONS(1626), - [anon_sym_break] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1626), - [anon_sym_continue] = ACTIONS(1626), - [anon_sym_default] = ACTIONS(1626), - [anon_sym_enum] = ACTIONS(1626), - [anon_sym_fn] = ACTIONS(1626), - [anon_sym_for] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1626), - [anon_sym_impl] = ACTIONS(1626), - [anon_sym_let] = ACTIONS(1626), - [anon_sym_loop] = ACTIONS(1626), - [anon_sym_match] = ACTIONS(1626), - [anon_sym_mod] = ACTIONS(1626), - [anon_sym_pub] = ACTIONS(1626), - [anon_sym_return] = ACTIONS(1626), - [anon_sym_static] = ACTIONS(1626), - [anon_sym_struct] = ACTIONS(1626), - [anon_sym_trait] = ACTIONS(1626), - [anon_sym_type] = ACTIONS(1626), - [anon_sym_union] = ACTIONS(1626), - [anon_sym_unsafe] = ACTIONS(1626), - [anon_sym_use] = ACTIONS(1626), - [anon_sym_while] = ACTIONS(1626), - [anon_sym_POUND] = ACTIONS(1624), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_extern] = ACTIONS(1626), - [anon_sym_LT] = ACTIONS(1624), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1624), - [anon_sym_DOT_DOT] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_PIPE] = ACTIONS(1624), - [anon_sym_yield] = ACTIONS(1626), - [anon_sym_move] = ACTIONS(1626), - [sym_integer_literal] = ACTIONS(1624), - [aux_sym_string_literal_token1] = ACTIONS(1624), - [sym_char_literal] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1626), - [anon_sym_false] = ACTIONS(1626), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1626), - [sym_super] = ACTIONS(1626), - [sym_crate] = ACTIONS(1626), - [sym_metavariable] = ACTIONS(1624), - [sym_raw_string_literal] = ACTIONS(1624), - [sym_float_literal] = ACTIONS(1624), + [ts_builtin_sym_end] = ACTIONS(1643), + [sym_identifier] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_macro_rules_BANG] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_break] = ACTIONS(1645), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_continue] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1645), + [anon_sym_enum] = ACTIONS(1645), + [anon_sym_fn] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1645), + [anon_sym_impl] = ACTIONS(1645), + [anon_sym_let] = ACTIONS(1645), + [anon_sym_loop] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1645), + [anon_sym_mod] = ACTIONS(1645), + [anon_sym_pub] = ACTIONS(1645), + [anon_sym_return] = ACTIONS(1645), + [anon_sym_static] = ACTIONS(1645), + [anon_sym_struct] = ACTIONS(1645), + [anon_sym_trait] = ACTIONS(1645), + [anon_sym_type] = ACTIONS(1645), + [anon_sym_union] = ACTIONS(1645), + [anon_sym_unsafe] = ACTIONS(1645), + [anon_sym_use] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1645), + [anon_sym_POUND] = ACTIONS(1643), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1645), + [anon_sym_LT] = ACTIONS(1643), + [anon_sym_COLON_COLON] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_yield] = ACTIONS(1645), + [anon_sym_move] = ACTIONS(1645), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1643), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1643), + [sym_raw_string_literal] = ACTIONS(1643), + [sym_float_literal] = ACTIONS(1643), [sym_block_comment] = ACTIONS(3), }, [378] = { - [ts_builtin_sym_end] = ACTIONS(1628), - [sym_identifier] = ACTIONS(1630), - [anon_sym_SEMI] = ACTIONS(1628), - [anon_sym_macro_rules_BANG] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_RBRACE] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1628), - [anon_sym_u8] = ACTIONS(1630), - [anon_sym_i8] = ACTIONS(1630), - [anon_sym_u16] = ACTIONS(1630), - [anon_sym_i16] = ACTIONS(1630), - [anon_sym_u32] = ACTIONS(1630), - [anon_sym_i32] = ACTIONS(1630), - [anon_sym_u64] = ACTIONS(1630), - [anon_sym_i64] = ACTIONS(1630), - [anon_sym_u128] = ACTIONS(1630), - [anon_sym_i128] = ACTIONS(1630), - [anon_sym_isize] = ACTIONS(1630), - [anon_sym_usize] = ACTIONS(1630), - [anon_sym_f32] = ACTIONS(1630), - [anon_sym_f64] = ACTIONS(1630), - [anon_sym_bool] = ACTIONS(1630), - [anon_sym_str] = ACTIONS(1630), - [anon_sym_char] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(1630), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_break] = ACTIONS(1630), - [anon_sym_const] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(1630), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_enum] = ACTIONS(1630), - [anon_sym_fn] = ACTIONS(1630), - [anon_sym_for] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1630), - [anon_sym_impl] = ACTIONS(1630), - [anon_sym_let] = ACTIONS(1630), - [anon_sym_loop] = ACTIONS(1630), - [anon_sym_match] = ACTIONS(1630), - [anon_sym_mod] = ACTIONS(1630), - [anon_sym_pub] = ACTIONS(1630), - [anon_sym_return] = ACTIONS(1630), - [anon_sym_static] = ACTIONS(1630), - [anon_sym_struct] = ACTIONS(1630), - [anon_sym_trait] = ACTIONS(1630), - [anon_sym_type] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_unsafe] = ACTIONS(1630), - [anon_sym_use] = ACTIONS(1630), - [anon_sym_while] = ACTIONS(1630), - [anon_sym_POUND] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1628), - [anon_sym_extern] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(1628), - [anon_sym_COLON_COLON] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1628), - [anon_sym_DOT_DOT] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_PIPE] = ACTIONS(1628), - [anon_sym_yield] = ACTIONS(1630), - [anon_sym_move] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(1628), - [aux_sym_string_literal_token1] = ACTIONS(1628), - [sym_char_literal] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1630), - [anon_sym_false] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1630), - [sym_super] = ACTIONS(1630), - [sym_crate] = ACTIONS(1630), - [sym_metavariable] = ACTIONS(1628), - [sym_raw_string_literal] = ACTIONS(1628), - [sym_float_literal] = ACTIONS(1628), - [sym_block_comment] = ACTIONS(3), - }, - [379] = { - [ts_builtin_sym_end] = ACTIONS(1632), - [sym_identifier] = ACTIONS(1634), - [anon_sym_SEMI] = ACTIONS(1632), - [anon_sym_macro_rules_BANG] = ACTIONS(1632), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1632), - [anon_sym_RBRACE] = ACTIONS(1632), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1632), - [anon_sym_u8] = ACTIONS(1634), - [anon_sym_i8] = ACTIONS(1634), - [anon_sym_u16] = ACTIONS(1634), - [anon_sym_i16] = ACTIONS(1634), - [anon_sym_u32] = ACTIONS(1634), - [anon_sym_i32] = ACTIONS(1634), - [anon_sym_u64] = ACTIONS(1634), - [anon_sym_i64] = ACTIONS(1634), - [anon_sym_u128] = ACTIONS(1634), - [anon_sym_i128] = ACTIONS(1634), - [anon_sym_isize] = ACTIONS(1634), - [anon_sym_usize] = ACTIONS(1634), - [anon_sym_f32] = ACTIONS(1634), - [anon_sym_f64] = ACTIONS(1634), - [anon_sym_bool] = ACTIONS(1634), - [anon_sym_str] = ACTIONS(1634), - [anon_sym_char] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1634), - [anon_sym_async] = ACTIONS(1634), - [anon_sym_break] = ACTIONS(1634), - [anon_sym_const] = ACTIONS(1634), - [anon_sym_continue] = ACTIONS(1634), - [anon_sym_default] = ACTIONS(1634), - [anon_sym_enum] = ACTIONS(1634), - [anon_sym_fn] = ACTIONS(1634), - [anon_sym_for] = ACTIONS(1634), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_impl] = ACTIONS(1634), - [anon_sym_let] = ACTIONS(1634), - [anon_sym_loop] = ACTIONS(1634), - [anon_sym_match] = ACTIONS(1634), - [anon_sym_mod] = ACTIONS(1634), - [anon_sym_pub] = ACTIONS(1634), - [anon_sym_return] = ACTIONS(1634), - [anon_sym_static] = ACTIONS(1634), - [anon_sym_struct] = ACTIONS(1634), - [anon_sym_trait] = ACTIONS(1634), - [anon_sym_type] = ACTIONS(1634), - [anon_sym_union] = ACTIONS(1634), - [anon_sym_unsafe] = ACTIONS(1634), - [anon_sym_use] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1632), - [anon_sym_extern] = ACTIONS(1634), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_COLON_COLON] = ACTIONS(1632), - [anon_sym_AMP] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_PIPE] = ACTIONS(1632), - [anon_sym_yield] = ACTIONS(1634), - [anon_sym_move] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1632), - [aux_sym_string_literal_token1] = ACTIONS(1632), - [sym_char_literal] = ACTIONS(1632), - [anon_sym_true] = ACTIONS(1634), - [anon_sym_false] = ACTIONS(1634), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1634), - [sym_super] = ACTIONS(1634), - [sym_crate] = ACTIONS(1634), - [sym_metavariable] = ACTIONS(1632), - [sym_raw_string_literal] = ACTIONS(1632), - [sym_float_literal] = ACTIONS(1632), - [sym_block_comment] = ACTIONS(3), - }, - [380] = { - [ts_builtin_sym_end] = ACTIONS(1636), - [sym_identifier] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_macro_rules_BANG] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_STAR] = ACTIONS(1636), - [anon_sym_u8] = ACTIONS(1638), - [anon_sym_i8] = ACTIONS(1638), - [anon_sym_u16] = ACTIONS(1638), - [anon_sym_i16] = ACTIONS(1638), - [anon_sym_u32] = ACTIONS(1638), - [anon_sym_i32] = ACTIONS(1638), - [anon_sym_u64] = ACTIONS(1638), - [anon_sym_i64] = ACTIONS(1638), - [anon_sym_u128] = ACTIONS(1638), - [anon_sym_i128] = ACTIONS(1638), - [anon_sym_isize] = ACTIONS(1638), - [anon_sym_usize] = ACTIONS(1638), - [anon_sym_f32] = ACTIONS(1638), - [anon_sym_f64] = ACTIONS(1638), - [anon_sym_bool] = ACTIONS(1638), - [anon_sym_str] = ACTIONS(1638), - [anon_sym_char] = ACTIONS(1638), - [anon_sym_SQUOTE] = ACTIONS(1638), - [anon_sym_async] = ACTIONS(1638), - [anon_sym_break] = ACTIONS(1638), - [anon_sym_const] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(1638), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_enum] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1638), - [anon_sym_for] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1638), - [anon_sym_impl] = ACTIONS(1638), - [anon_sym_let] = ACTIONS(1638), - [anon_sym_loop] = ACTIONS(1638), - [anon_sym_match] = ACTIONS(1638), - [anon_sym_mod] = ACTIONS(1638), - [anon_sym_pub] = ACTIONS(1638), - [anon_sym_return] = ACTIONS(1638), - [anon_sym_static] = ACTIONS(1638), - [anon_sym_struct] = ACTIONS(1638), - [anon_sym_trait] = ACTIONS(1638), - [anon_sym_type] = ACTIONS(1638), - [anon_sym_union] = ACTIONS(1638), - [anon_sym_unsafe] = ACTIONS(1638), - [anon_sym_use] = ACTIONS(1638), - [anon_sym_while] = ACTIONS(1638), - [anon_sym_POUND] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_extern] = ACTIONS(1638), - [anon_sym_LT] = ACTIONS(1636), - [anon_sym_COLON_COLON] = ACTIONS(1636), - [anon_sym_AMP] = ACTIONS(1636), - [anon_sym_DOT_DOT] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_yield] = ACTIONS(1638), - [anon_sym_move] = ACTIONS(1638), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1636), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1638), - [anon_sym_false] = ACTIONS(1638), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1638), - [sym_super] = ACTIONS(1638), - [sym_crate] = ACTIONS(1638), - [sym_metavariable] = ACTIONS(1636), - [sym_raw_string_literal] = ACTIONS(1636), - [sym_float_literal] = ACTIONS(1636), - [sym_block_comment] = ACTIONS(3), - }, - [381] = { [sym_attribute_item] = STATE(548), - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_macro_invocation] = STATE(2506), - [sym_scoped_identifier] = STATE(1571), - [sym_scoped_type_identifier] = STATE(1936), - [sym_match_arm] = STATE(489), - [sym_last_match_arm] = STATE(2516), - [sym_match_pattern] = STATE(2451), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1924), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_arm] = STATE(498), + [sym_last_match_arm] = STATE(2544), + [sym_match_pattern] = STATE(2359), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), [aux_sym_enum_variant_list_repeat1] = STATE(548), - [aux_sym_match_block_repeat1] = STATE(489), - [sym_identifier] = ACTIONS(1166), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), + [aux_sym_match_block_repeat1] = STATE(498), + [sym_identifier] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -51087,8110 +50898,8725 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, + [379] = { + [sym__token_pattern] = STATE(245), + [sym_token_tree_pattern] = STATE(245), + [sym_token_binding_pattern] = STATE(245), + [sym_token_repetition_pattern] = STATE(245), + [sym__never_special_token] = STATE(245), + [sym__literal] = STATE(245), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(245), + [sym_identifier] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_RPAREN] = ACTIONS(1649), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_u8] = ACTIONS(1150), + [anon_sym_i8] = ACTIONS(1150), + [anon_sym_u16] = ACTIONS(1150), + [anon_sym_i16] = ACTIONS(1150), + [anon_sym_u32] = ACTIONS(1150), + [anon_sym_i32] = ACTIONS(1150), + [anon_sym_u64] = ACTIONS(1150), + [anon_sym_i64] = ACTIONS(1150), + [anon_sym_u128] = ACTIONS(1150), + [anon_sym_i128] = ACTIONS(1150), + [anon_sym_isize] = ACTIONS(1150), + [anon_sym_usize] = ACTIONS(1150), + [anon_sym_f32] = ACTIONS(1150), + [anon_sym_f64] = ACTIONS(1150), + [anon_sym_bool] = ACTIONS(1150), + [anon_sym_str] = ACTIONS(1150), + [anon_sym_char] = ACTIONS(1150), + [aux_sym__never_special_token_token1] = ACTIONS(1150), + [anon_sym_SQUOTE] = ACTIONS(1150), + [anon_sym_as] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_fn] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_impl] = ACTIONS(1150), + [anon_sym_let] = ACTIONS(1150), + [anon_sym_loop] = ACTIONS(1150), + [anon_sym_match] = ACTIONS(1150), + [anon_sym_mod] = ACTIONS(1150), + [anon_sym_pub] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_trait] = ACTIONS(1150), + [anon_sym_type] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_unsafe] = ACTIONS(1150), + [anon_sym_use] = ACTIONS(1150), + [anon_sym_where] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [sym_mutable_specifier] = ACTIONS(1150), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1168), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), + [sym_block_comment] = ACTIONS(3), + }, + [380] = { + [ts_builtin_sym_end] = ACTIONS(1651), + [sym_identifier] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_macro_rules_BANG] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_u8] = ACTIONS(1653), + [anon_sym_i8] = ACTIONS(1653), + [anon_sym_u16] = ACTIONS(1653), + [anon_sym_i16] = ACTIONS(1653), + [anon_sym_u32] = ACTIONS(1653), + [anon_sym_i32] = ACTIONS(1653), + [anon_sym_u64] = ACTIONS(1653), + [anon_sym_i64] = ACTIONS(1653), + [anon_sym_u128] = ACTIONS(1653), + [anon_sym_i128] = ACTIONS(1653), + [anon_sym_isize] = ACTIONS(1653), + [anon_sym_usize] = ACTIONS(1653), + [anon_sym_f32] = ACTIONS(1653), + [anon_sym_f64] = ACTIONS(1653), + [anon_sym_bool] = ACTIONS(1653), + [anon_sym_str] = ACTIONS(1653), + [anon_sym_char] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_default] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_impl] = ACTIONS(1653), + [anon_sym_let] = ACTIONS(1653), + [anon_sym_loop] = ACTIONS(1653), + [anon_sym_match] = ACTIONS(1653), + [anon_sym_mod] = ACTIONS(1653), + [anon_sym_pub] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_static] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_trait] = ACTIONS(1653), + [anon_sym_type] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_use] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1651), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym_LT] = ACTIONS(1651), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_DOT_DOT] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_yield] = ACTIONS(1653), + [anon_sym_move] = ACTIONS(1653), + [sym_integer_literal] = ACTIONS(1651), + [aux_sym_string_literal_token1] = ACTIONS(1651), + [sym_char_literal] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1653), + [anon_sym_false] = ACTIONS(1653), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1653), + [sym_super] = ACTIONS(1653), + [sym_crate] = ACTIONS(1653), + [sym_metavariable] = ACTIONS(1651), + [sym_raw_string_literal] = ACTIONS(1651), + [sym_float_literal] = ACTIONS(1651), + [sym_block_comment] = ACTIONS(3), + }, + [381] = { + [ts_builtin_sym_end] = ACTIONS(1655), + [sym_identifier] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_macro_rules_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_SQUOTE] = ACTIONS(1657), + [anon_sym_async] = ACTIONS(1657), + [anon_sym_break] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_continue] = ACTIONS(1657), + [anon_sym_default] = ACTIONS(1657), + [anon_sym_enum] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1657), + [anon_sym_if] = ACTIONS(1657), + [anon_sym_impl] = ACTIONS(1657), + [anon_sym_let] = ACTIONS(1657), + [anon_sym_loop] = ACTIONS(1657), + [anon_sym_match] = ACTIONS(1657), + [anon_sym_mod] = ACTIONS(1657), + [anon_sym_pub] = ACTIONS(1657), + [anon_sym_return] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1657), + [anon_sym_struct] = ACTIONS(1657), + [anon_sym_trait] = ACTIONS(1657), + [anon_sym_type] = ACTIONS(1657), + [anon_sym_union] = ACTIONS(1657), + [anon_sym_unsafe] = ACTIONS(1657), + [anon_sym_use] = ACTIONS(1657), + [anon_sym_while] = ACTIONS(1657), + [anon_sym_POUND] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_extern] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_yield] = ACTIONS(1657), + [anon_sym_move] = ACTIONS(1657), + [sym_integer_literal] = ACTIONS(1655), + [aux_sym_string_literal_token1] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1655), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1657), + [sym_super] = ACTIONS(1657), + [sym_crate] = ACTIONS(1657), + [sym_metavariable] = ACTIONS(1655), + [sym_raw_string_literal] = ACTIONS(1655), + [sym_float_literal] = ACTIONS(1655), + [sym_block_comment] = ACTIONS(3), + }, [382] = { - [ts_builtin_sym_end] = ACTIONS(1642), - [sym_identifier] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_macro_rules_BANG] = ACTIONS(1642), - [anon_sym_LPAREN] = ACTIONS(1642), - [anon_sym_LBRACE] = ACTIONS(1642), - [anon_sym_RBRACE] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1642), - [anon_sym_STAR] = ACTIONS(1642), - [anon_sym_u8] = ACTIONS(1644), - [anon_sym_i8] = ACTIONS(1644), - [anon_sym_u16] = ACTIONS(1644), - [anon_sym_i16] = ACTIONS(1644), - [anon_sym_u32] = ACTIONS(1644), - [anon_sym_i32] = ACTIONS(1644), - [anon_sym_u64] = ACTIONS(1644), - [anon_sym_i64] = ACTIONS(1644), - [anon_sym_u128] = ACTIONS(1644), - [anon_sym_i128] = ACTIONS(1644), - [anon_sym_isize] = ACTIONS(1644), - [anon_sym_usize] = ACTIONS(1644), - [anon_sym_f32] = ACTIONS(1644), - [anon_sym_f64] = ACTIONS(1644), - [anon_sym_bool] = ACTIONS(1644), - [anon_sym_str] = ACTIONS(1644), - [anon_sym_char] = ACTIONS(1644), - [anon_sym_SQUOTE] = ACTIONS(1644), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_break] = ACTIONS(1644), - [anon_sym_const] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(1644), - [anon_sym_default] = ACTIONS(1644), - [anon_sym_enum] = ACTIONS(1644), - [anon_sym_fn] = ACTIONS(1644), - [anon_sym_for] = ACTIONS(1644), - [anon_sym_if] = ACTIONS(1644), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_let] = ACTIONS(1644), - [anon_sym_loop] = ACTIONS(1644), - [anon_sym_match] = ACTIONS(1644), - [anon_sym_mod] = ACTIONS(1644), - [anon_sym_pub] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_static] = ACTIONS(1644), - [anon_sym_struct] = ACTIONS(1644), - [anon_sym_trait] = ACTIONS(1644), - [anon_sym_type] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1644), - [anon_sym_unsafe] = ACTIONS(1644), - [anon_sym_use] = ACTIONS(1644), - [anon_sym_while] = ACTIONS(1644), - [anon_sym_POUND] = ACTIONS(1642), - [anon_sym_BANG] = ACTIONS(1642), - [anon_sym_extern] = ACTIONS(1644), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_COLON_COLON] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1642), - [anon_sym_DOT_DOT] = ACTIONS(1642), - [anon_sym_DASH] = ACTIONS(1642), - [anon_sym_PIPE] = ACTIONS(1642), - [anon_sym_yield] = ACTIONS(1644), - [anon_sym_move] = ACTIONS(1644), - [sym_integer_literal] = ACTIONS(1642), - [aux_sym_string_literal_token1] = ACTIONS(1642), - [sym_char_literal] = ACTIONS(1642), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1644), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1644), - [sym_super] = ACTIONS(1644), - [sym_crate] = ACTIONS(1644), - [sym_metavariable] = ACTIONS(1642), - [sym_raw_string_literal] = ACTIONS(1642), - [sym_float_literal] = ACTIONS(1642), + [ts_builtin_sym_end] = ACTIONS(1659), + [sym_identifier] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_macro_rules_BANG] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(1659), + [anon_sym_u8] = ACTIONS(1661), + [anon_sym_i8] = ACTIONS(1661), + [anon_sym_u16] = ACTIONS(1661), + [anon_sym_i16] = ACTIONS(1661), + [anon_sym_u32] = ACTIONS(1661), + [anon_sym_i32] = ACTIONS(1661), + [anon_sym_u64] = ACTIONS(1661), + [anon_sym_i64] = ACTIONS(1661), + [anon_sym_u128] = ACTIONS(1661), + [anon_sym_i128] = ACTIONS(1661), + [anon_sym_isize] = ACTIONS(1661), + [anon_sym_usize] = ACTIONS(1661), + [anon_sym_f32] = ACTIONS(1661), + [anon_sym_f64] = ACTIONS(1661), + [anon_sym_bool] = ACTIONS(1661), + [anon_sym_str] = ACTIONS(1661), + [anon_sym_char] = ACTIONS(1661), + [anon_sym_SQUOTE] = ACTIONS(1661), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1661), + [anon_sym_enum] = ACTIONS(1661), + [anon_sym_fn] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_let] = ACTIONS(1661), + [anon_sym_loop] = ACTIONS(1661), + [anon_sym_match] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1661), + [anon_sym_pub] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_static] = ACTIONS(1661), + [anon_sym_struct] = ACTIONS(1661), + [anon_sym_trait] = ACTIONS(1661), + [anon_sym_type] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1661), + [anon_sym_unsafe] = ACTIONS(1661), + [anon_sym_use] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_COLON_COLON] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_DOT_DOT] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_yield] = ACTIONS(1661), + [anon_sym_move] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1659), + [aux_sym_string_literal_token1] = ACTIONS(1659), + [sym_char_literal] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1661), + [sym_super] = ACTIONS(1661), + [sym_crate] = ACTIONS(1661), + [sym_metavariable] = ACTIONS(1659), + [sym_raw_string_literal] = ACTIONS(1659), + [sym_float_literal] = ACTIONS(1659), [sym_block_comment] = ACTIONS(3), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(1646), - [sym_identifier] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1646), - [anon_sym_macro_rules_BANG] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1646), - [anon_sym_LBRACK] = ACTIONS(1646), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_u8] = ACTIONS(1648), - [anon_sym_i8] = ACTIONS(1648), - [anon_sym_u16] = ACTIONS(1648), - [anon_sym_i16] = ACTIONS(1648), - [anon_sym_u32] = ACTIONS(1648), - [anon_sym_i32] = ACTIONS(1648), - [anon_sym_u64] = ACTIONS(1648), - [anon_sym_i64] = ACTIONS(1648), - [anon_sym_u128] = ACTIONS(1648), - [anon_sym_i128] = ACTIONS(1648), - [anon_sym_isize] = ACTIONS(1648), - [anon_sym_usize] = ACTIONS(1648), - [anon_sym_f32] = ACTIONS(1648), - [anon_sym_f64] = ACTIONS(1648), - [anon_sym_bool] = ACTIONS(1648), - [anon_sym_str] = ACTIONS(1648), - [anon_sym_char] = ACTIONS(1648), - [anon_sym_SQUOTE] = ACTIONS(1648), - [anon_sym_async] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_default] = ACTIONS(1648), - [anon_sym_enum] = ACTIONS(1648), - [anon_sym_fn] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_impl] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_mod] = ACTIONS(1648), - [anon_sym_pub] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_static] = ACTIONS(1648), - [anon_sym_struct] = ACTIONS(1648), - [anon_sym_trait] = ACTIONS(1648), - [anon_sym_type] = ACTIONS(1648), - [anon_sym_union] = ACTIONS(1648), - [anon_sym_unsafe] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1646), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_LT] = ACTIONS(1646), - [anon_sym_COLON_COLON] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1646), - [anon_sym_DOT_DOT] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1646), - [anon_sym_PIPE] = ACTIONS(1646), - [anon_sym_yield] = ACTIONS(1648), - [anon_sym_move] = ACTIONS(1648), - [sym_integer_literal] = ACTIONS(1646), - [aux_sym_string_literal_token1] = ACTIONS(1646), - [sym_char_literal] = ACTIONS(1646), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1648), - [sym_super] = ACTIONS(1648), - [sym_crate] = ACTIONS(1648), - [sym_metavariable] = ACTIONS(1646), - [sym_raw_string_literal] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1646), + [ts_builtin_sym_end] = ACTIONS(1663), + [sym_identifier] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_macro_rules_BANG] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_async] = ACTIONS(1665), + [anon_sym_break] = ACTIONS(1665), + [anon_sym_const] = ACTIONS(1665), + [anon_sym_continue] = ACTIONS(1665), + [anon_sym_default] = ACTIONS(1665), + [anon_sym_enum] = ACTIONS(1665), + [anon_sym_fn] = ACTIONS(1665), + [anon_sym_for] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1665), + [anon_sym_impl] = ACTIONS(1665), + [anon_sym_let] = ACTIONS(1665), + [anon_sym_loop] = ACTIONS(1665), + [anon_sym_match] = ACTIONS(1665), + [anon_sym_mod] = ACTIONS(1665), + [anon_sym_pub] = ACTIONS(1665), + [anon_sym_return] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1665), + [anon_sym_struct] = ACTIONS(1665), + [anon_sym_trait] = ACTIONS(1665), + [anon_sym_type] = ACTIONS(1665), + [anon_sym_union] = ACTIONS(1665), + [anon_sym_unsafe] = ACTIONS(1665), + [anon_sym_use] = ACTIONS(1665), + [anon_sym_while] = ACTIONS(1665), + [anon_sym_POUND] = ACTIONS(1663), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_extern] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_COLON_COLON] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_yield] = ACTIONS(1665), + [anon_sym_move] = ACTIONS(1665), + [sym_integer_literal] = ACTIONS(1663), + [aux_sym_string_literal_token1] = ACTIONS(1663), + [sym_char_literal] = ACTIONS(1663), + [anon_sym_true] = ACTIONS(1665), + [anon_sym_false] = ACTIONS(1665), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1665), + [sym_super] = ACTIONS(1665), + [sym_crate] = ACTIONS(1665), + [sym_metavariable] = ACTIONS(1663), + [sym_raw_string_literal] = ACTIONS(1663), + [sym_float_literal] = ACTIONS(1663), [sym_block_comment] = ACTIONS(3), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(1650), - [sym_identifier] = ACTIONS(1652), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_macro_rules_BANG] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1650), - [anon_sym_u8] = ACTIONS(1652), - [anon_sym_i8] = ACTIONS(1652), - [anon_sym_u16] = ACTIONS(1652), - [anon_sym_i16] = ACTIONS(1652), - [anon_sym_u32] = ACTIONS(1652), - [anon_sym_i32] = ACTIONS(1652), - [anon_sym_u64] = ACTIONS(1652), - [anon_sym_i64] = ACTIONS(1652), - [anon_sym_u128] = ACTIONS(1652), - [anon_sym_i128] = ACTIONS(1652), - [anon_sym_isize] = ACTIONS(1652), - [anon_sym_usize] = ACTIONS(1652), - [anon_sym_f32] = ACTIONS(1652), - [anon_sym_f64] = ACTIONS(1652), - [anon_sym_bool] = ACTIONS(1652), - [anon_sym_str] = ACTIONS(1652), - [anon_sym_char] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_break] = ACTIONS(1652), - [anon_sym_const] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(1652), - [anon_sym_default] = ACTIONS(1652), - [anon_sym_enum] = ACTIONS(1652), - [anon_sym_fn] = ACTIONS(1652), - [anon_sym_for] = ACTIONS(1652), - [anon_sym_if] = ACTIONS(1652), - [anon_sym_impl] = ACTIONS(1652), - [anon_sym_let] = ACTIONS(1652), - [anon_sym_loop] = ACTIONS(1652), - [anon_sym_match] = ACTIONS(1652), - [anon_sym_mod] = ACTIONS(1652), - [anon_sym_pub] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_static] = ACTIONS(1652), - [anon_sym_struct] = ACTIONS(1652), - [anon_sym_trait] = ACTIONS(1652), - [anon_sym_type] = ACTIONS(1652), - [anon_sym_union] = ACTIONS(1652), - [anon_sym_unsafe] = ACTIONS(1652), - [anon_sym_use] = ACTIONS(1652), - [anon_sym_while] = ACTIONS(1652), - [anon_sym_POUND] = ACTIONS(1650), - [anon_sym_BANG] = ACTIONS(1650), - [anon_sym_extern] = ACTIONS(1652), - [anon_sym_LT] = ACTIONS(1650), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_yield] = ACTIONS(1652), - [anon_sym_move] = ACTIONS(1652), - [sym_integer_literal] = ACTIONS(1650), - [aux_sym_string_literal_token1] = ACTIONS(1650), - [sym_char_literal] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1652), - [anon_sym_false] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1652), - [sym_super] = ACTIONS(1652), - [sym_crate] = ACTIONS(1652), - [sym_metavariable] = ACTIONS(1650), - [sym_raw_string_literal] = ACTIONS(1650), - [sym_float_literal] = ACTIONS(1650), + [ts_builtin_sym_end] = ACTIONS(1667), + [sym_identifier] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_macro_rules_BANG] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_u8] = ACTIONS(1669), + [anon_sym_i8] = ACTIONS(1669), + [anon_sym_u16] = ACTIONS(1669), + [anon_sym_i16] = ACTIONS(1669), + [anon_sym_u32] = ACTIONS(1669), + [anon_sym_i32] = ACTIONS(1669), + [anon_sym_u64] = ACTIONS(1669), + [anon_sym_i64] = ACTIONS(1669), + [anon_sym_u128] = ACTIONS(1669), + [anon_sym_i128] = ACTIONS(1669), + [anon_sym_isize] = ACTIONS(1669), + [anon_sym_usize] = ACTIONS(1669), + [anon_sym_f32] = ACTIONS(1669), + [anon_sym_f64] = ACTIONS(1669), + [anon_sym_bool] = ACTIONS(1669), + [anon_sym_str] = ACTIONS(1669), + [anon_sym_char] = ACTIONS(1669), + [anon_sym_SQUOTE] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1669), + [anon_sym_break] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1669), + [anon_sym_continue] = ACTIONS(1669), + [anon_sym_default] = ACTIONS(1669), + [anon_sym_enum] = ACTIONS(1669), + [anon_sym_fn] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1669), + [anon_sym_impl] = ACTIONS(1669), + [anon_sym_let] = ACTIONS(1669), + [anon_sym_loop] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1669), + [anon_sym_pub] = ACTIONS(1669), + [anon_sym_return] = ACTIONS(1669), + [anon_sym_static] = ACTIONS(1669), + [anon_sym_struct] = ACTIONS(1669), + [anon_sym_trait] = ACTIONS(1669), + [anon_sym_type] = ACTIONS(1669), + [anon_sym_union] = ACTIONS(1669), + [anon_sym_unsafe] = ACTIONS(1669), + [anon_sym_use] = ACTIONS(1669), + [anon_sym_while] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_extern] = ACTIONS(1669), + [anon_sym_LT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1667), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1669), + [anon_sym_move] = ACTIONS(1669), + [sym_integer_literal] = ACTIONS(1667), + [aux_sym_string_literal_token1] = ACTIONS(1667), + [sym_char_literal] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1669), + [sym_super] = ACTIONS(1669), + [sym_crate] = ACTIONS(1669), + [sym_metavariable] = ACTIONS(1667), + [sym_raw_string_literal] = ACTIONS(1667), + [sym_float_literal] = ACTIONS(1667), [sym_block_comment] = ACTIONS(3), }, [385] = { - [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(1671), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_macro_rules_BANG] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_LBRACK] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1671), + [anon_sym_u8] = ACTIONS(1673), + [anon_sym_i8] = ACTIONS(1673), + [anon_sym_u16] = ACTIONS(1673), + [anon_sym_i16] = ACTIONS(1673), + [anon_sym_u32] = ACTIONS(1673), + [anon_sym_i32] = ACTIONS(1673), + [anon_sym_u64] = ACTIONS(1673), + [anon_sym_i64] = ACTIONS(1673), + [anon_sym_u128] = ACTIONS(1673), + [anon_sym_i128] = ACTIONS(1673), + [anon_sym_isize] = ACTIONS(1673), + [anon_sym_usize] = ACTIONS(1673), + [anon_sym_f32] = ACTIONS(1673), + [anon_sym_f64] = ACTIONS(1673), + [anon_sym_bool] = ACTIONS(1673), + [anon_sym_str] = ACTIONS(1673), + [anon_sym_char] = ACTIONS(1673), + [anon_sym_SQUOTE] = ACTIONS(1673), + [anon_sym_async] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_enum] = ACTIONS(1673), + [anon_sym_fn] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_impl] = ACTIONS(1673), + [anon_sym_let] = ACTIONS(1673), + [anon_sym_loop] = ACTIONS(1673), + [anon_sym_match] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1673), + [anon_sym_pub] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_static] = ACTIONS(1673), + [anon_sym_struct] = ACTIONS(1673), + [anon_sym_trait] = ACTIONS(1673), + [anon_sym_type] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_unsafe] = ACTIONS(1673), + [anon_sym_use] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_extern] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_COLON_COLON] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_yield] = ACTIONS(1673), + [anon_sym_move] = ACTIONS(1673), + [sym_integer_literal] = ACTIONS(1671), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1673), + [sym_super] = ACTIONS(1673), + [sym_crate] = ACTIONS(1673), + [sym_metavariable] = ACTIONS(1671), + [sym_raw_string_literal] = ACTIONS(1671), + [sym_float_literal] = ACTIONS(1671), [sym_block_comment] = ACTIONS(3), }, [386] = { - [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(1675), + [sym_identifier] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_macro_rules_BANG] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1677), + [anon_sym_i8] = ACTIONS(1677), + [anon_sym_u16] = ACTIONS(1677), + [anon_sym_i16] = ACTIONS(1677), + [anon_sym_u32] = ACTIONS(1677), + [anon_sym_i32] = ACTIONS(1677), + [anon_sym_u64] = ACTIONS(1677), + [anon_sym_i64] = ACTIONS(1677), + [anon_sym_u128] = ACTIONS(1677), + [anon_sym_i128] = ACTIONS(1677), + [anon_sym_isize] = ACTIONS(1677), + [anon_sym_usize] = ACTIONS(1677), + [anon_sym_f32] = ACTIONS(1677), + [anon_sym_f64] = ACTIONS(1677), + [anon_sym_bool] = ACTIONS(1677), + [anon_sym_str] = ACTIONS(1677), + [anon_sym_char] = ACTIONS(1677), + [anon_sym_SQUOTE] = ACTIONS(1677), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_break] = ACTIONS(1677), + [anon_sym_const] = ACTIONS(1677), + [anon_sym_continue] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1677), + [anon_sym_enum] = ACTIONS(1677), + [anon_sym_fn] = ACTIONS(1677), + [anon_sym_for] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_impl] = ACTIONS(1677), + [anon_sym_let] = ACTIONS(1677), + [anon_sym_loop] = ACTIONS(1677), + [anon_sym_match] = ACTIONS(1677), + [anon_sym_mod] = ACTIONS(1677), + [anon_sym_pub] = ACTIONS(1677), + [anon_sym_return] = ACTIONS(1677), + [anon_sym_static] = ACTIONS(1677), + [anon_sym_struct] = ACTIONS(1677), + [anon_sym_trait] = ACTIONS(1677), + [anon_sym_type] = ACTIONS(1677), + [anon_sym_union] = ACTIONS(1677), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_use] = ACTIONS(1677), + [anon_sym_while] = ACTIONS(1677), + [anon_sym_POUND] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1675), + [anon_sym_extern] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(1675), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1677), + [anon_sym_move] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1675), + [aux_sym_string_literal_token1] = ACTIONS(1675), + [sym_char_literal] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1677), + [anon_sym_false] = ACTIONS(1677), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1677), + [sym_super] = ACTIONS(1677), + [sym_crate] = ACTIONS(1677), + [sym_metavariable] = ACTIONS(1675), + [sym_raw_string_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1675), [sym_block_comment] = ACTIONS(3), }, [387] = { - [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(1679), + [sym_identifier] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_macro_rules_BANG] = ACTIONS(1679), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_LBRACK] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_u8] = ACTIONS(1681), + [anon_sym_i8] = ACTIONS(1681), + [anon_sym_u16] = ACTIONS(1681), + [anon_sym_i16] = ACTIONS(1681), + [anon_sym_u32] = ACTIONS(1681), + [anon_sym_i32] = ACTIONS(1681), + [anon_sym_u64] = ACTIONS(1681), + [anon_sym_i64] = ACTIONS(1681), + [anon_sym_u128] = ACTIONS(1681), + [anon_sym_i128] = ACTIONS(1681), + [anon_sym_isize] = ACTIONS(1681), + [anon_sym_usize] = ACTIONS(1681), + [anon_sym_f32] = ACTIONS(1681), + [anon_sym_f64] = ACTIONS(1681), + [anon_sym_bool] = ACTIONS(1681), + [anon_sym_str] = ACTIONS(1681), + [anon_sym_char] = ACTIONS(1681), + [anon_sym_SQUOTE] = ACTIONS(1681), + [anon_sym_async] = ACTIONS(1681), + [anon_sym_break] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1681), + [anon_sym_continue] = ACTIONS(1681), + [anon_sym_default] = ACTIONS(1681), + [anon_sym_enum] = ACTIONS(1681), + [anon_sym_fn] = ACTIONS(1681), + [anon_sym_for] = ACTIONS(1681), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_impl] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1681), + [anon_sym_loop] = ACTIONS(1681), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1681), + [anon_sym_pub] = ACTIONS(1681), + [anon_sym_return] = ACTIONS(1681), + [anon_sym_static] = ACTIONS(1681), + [anon_sym_struct] = ACTIONS(1681), + [anon_sym_trait] = ACTIONS(1681), + [anon_sym_type] = ACTIONS(1681), + [anon_sym_union] = ACTIONS(1681), + [anon_sym_unsafe] = ACTIONS(1681), + [anon_sym_use] = ACTIONS(1681), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1679), + [anon_sym_extern] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1679), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1681), + [anon_sym_move] = ACTIONS(1681), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1679), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1681), + [anon_sym_false] = ACTIONS(1681), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1681), + [sym_super] = ACTIONS(1681), + [sym_crate] = ACTIONS(1681), + [sym_metavariable] = ACTIONS(1679), + [sym_raw_string_literal] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1679), [sym_block_comment] = ACTIONS(3), }, [388] = { - [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(1683), + [sym_identifier] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_macro_rules_BANG] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_u8] = ACTIONS(1685), + [anon_sym_i8] = ACTIONS(1685), + [anon_sym_u16] = ACTIONS(1685), + [anon_sym_i16] = ACTIONS(1685), + [anon_sym_u32] = ACTIONS(1685), + [anon_sym_i32] = ACTIONS(1685), + [anon_sym_u64] = ACTIONS(1685), + [anon_sym_i64] = ACTIONS(1685), + [anon_sym_u128] = ACTIONS(1685), + [anon_sym_i128] = ACTIONS(1685), + [anon_sym_isize] = ACTIONS(1685), + [anon_sym_usize] = ACTIONS(1685), + [anon_sym_f32] = ACTIONS(1685), + [anon_sym_f64] = ACTIONS(1685), + [anon_sym_bool] = ACTIONS(1685), + [anon_sym_str] = ACTIONS(1685), + [anon_sym_char] = ACTIONS(1685), + [anon_sym_SQUOTE] = ACTIONS(1685), + [anon_sym_async] = ACTIONS(1685), + [anon_sym_break] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_continue] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_enum] = ACTIONS(1685), + [anon_sym_fn] = ACTIONS(1685), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_if] = ACTIONS(1685), + [anon_sym_impl] = ACTIONS(1685), + [anon_sym_let] = ACTIONS(1685), + [anon_sym_loop] = ACTIONS(1685), + [anon_sym_match] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1685), + [anon_sym_pub] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1685), + [anon_sym_static] = ACTIONS(1685), + [anon_sym_struct] = ACTIONS(1685), + [anon_sym_trait] = ACTIONS(1685), + [anon_sym_type] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1685), + [anon_sym_use] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(1683), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_extern] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1683), + [anon_sym_COLON_COLON] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_DOT_DOT] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_yield] = ACTIONS(1685), + [anon_sym_move] = ACTIONS(1685), + [sym_integer_literal] = ACTIONS(1683), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1683), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1683), + [sym_raw_string_literal] = ACTIONS(1683), + [sym_float_literal] = ACTIONS(1683), [sym_block_comment] = ACTIONS(3), }, [389] = { - [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(1687), + [sym_identifier] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_macro_rules_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_u8] = ACTIONS(1689), + [anon_sym_i8] = ACTIONS(1689), + [anon_sym_u16] = ACTIONS(1689), + [anon_sym_i16] = ACTIONS(1689), + [anon_sym_u32] = ACTIONS(1689), + [anon_sym_i32] = ACTIONS(1689), + [anon_sym_u64] = ACTIONS(1689), + [anon_sym_i64] = ACTIONS(1689), + [anon_sym_u128] = ACTIONS(1689), + [anon_sym_i128] = ACTIONS(1689), + [anon_sym_isize] = ACTIONS(1689), + [anon_sym_usize] = ACTIONS(1689), + [anon_sym_f32] = ACTIONS(1689), + [anon_sym_f64] = ACTIONS(1689), + [anon_sym_bool] = ACTIONS(1689), + [anon_sym_str] = ACTIONS(1689), + [anon_sym_char] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_async] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1689), + [anon_sym_enum] = ACTIONS(1689), + [anon_sym_fn] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_impl] = ACTIONS(1689), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_loop] = ACTIONS(1689), + [anon_sym_match] = ACTIONS(1689), + [anon_sym_mod] = ACTIONS(1689), + [anon_sym_pub] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_static] = ACTIONS(1689), + [anon_sym_struct] = ACTIONS(1689), + [anon_sym_trait] = ACTIONS(1689), + [anon_sym_type] = ACTIONS(1689), + [anon_sym_union] = ACTIONS(1689), + [anon_sym_unsafe] = ACTIONS(1689), + [anon_sym_use] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(1687), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_extern] = ACTIONS(1689), + [anon_sym_LT] = ACTIONS(1687), + [anon_sym_COLON_COLON] = ACTIONS(1687), + [anon_sym_AMP] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_yield] = ACTIONS(1689), + [anon_sym_move] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1687), + [aux_sym_string_literal_token1] = ACTIONS(1687), + [sym_char_literal] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1689), + [anon_sym_false] = ACTIONS(1689), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1689), + [sym_super] = ACTIONS(1689), + [sym_crate] = ACTIONS(1689), + [sym_metavariable] = ACTIONS(1687), + [sym_raw_string_literal] = ACTIONS(1687), + [sym_float_literal] = ACTIONS(1687), [sym_block_comment] = ACTIONS(3), }, [390] = { - [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(1691), + [sym_identifier] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_macro_rules_BANG] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_RBRACE] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_u8] = ACTIONS(1693), + [anon_sym_i8] = ACTIONS(1693), + [anon_sym_u16] = ACTIONS(1693), + [anon_sym_i16] = ACTIONS(1693), + [anon_sym_u32] = ACTIONS(1693), + [anon_sym_i32] = ACTIONS(1693), + [anon_sym_u64] = ACTIONS(1693), + [anon_sym_i64] = ACTIONS(1693), + [anon_sym_u128] = ACTIONS(1693), + [anon_sym_i128] = ACTIONS(1693), + [anon_sym_isize] = ACTIONS(1693), + [anon_sym_usize] = ACTIONS(1693), + [anon_sym_f32] = ACTIONS(1693), + [anon_sym_f64] = ACTIONS(1693), + [anon_sym_bool] = ACTIONS(1693), + [anon_sym_str] = ACTIONS(1693), + [anon_sym_char] = ACTIONS(1693), + [anon_sym_SQUOTE] = ACTIONS(1693), + [anon_sym_async] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_default] = ACTIONS(1693), + [anon_sym_enum] = ACTIONS(1693), + [anon_sym_fn] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_impl] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_mod] = ACTIONS(1693), + [anon_sym_pub] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_static] = ACTIONS(1693), + [anon_sym_struct] = ACTIONS(1693), + [anon_sym_trait] = ACTIONS(1693), + [anon_sym_type] = ACTIONS(1693), + [anon_sym_union] = ACTIONS(1693), + [anon_sym_unsafe] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1691), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_move] = ACTIONS(1693), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1691), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1693), + [anon_sym_false] = ACTIONS(1693), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1693), + [sym_super] = ACTIONS(1693), + [sym_crate] = ACTIONS(1693), + [sym_metavariable] = ACTIONS(1691), + [sym_raw_string_literal] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1691), [sym_block_comment] = ACTIONS(3), }, [391] = { - [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(1695), + [sym_identifier] = ACTIONS(1697), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_macro_rules_BANG] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_STAR] = ACTIONS(1695), + [anon_sym_u8] = ACTIONS(1697), + [anon_sym_i8] = ACTIONS(1697), + [anon_sym_u16] = ACTIONS(1697), + [anon_sym_i16] = ACTIONS(1697), + [anon_sym_u32] = ACTIONS(1697), + [anon_sym_i32] = ACTIONS(1697), + [anon_sym_u64] = ACTIONS(1697), + [anon_sym_i64] = ACTIONS(1697), + [anon_sym_u128] = ACTIONS(1697), + [anon_sym_i128] = ACTIONS(1697), + [anon_sym_isize] = ACTIONS(1697), + [anon_sym_usize] = ACTIONS(1697), + [anon_sym_f32] = ACTIONS(1697), + [anon_sym_f64] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_str] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_SQUOTE] = ACTIONS(1697), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_break] = ACTIONS(1697), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_continue] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1697), + [anon_sym_enum] = ACTIONS(1697), + [anon_sym_fn] = ACTIONS(1697), + [anon_sym_for] = ACTIONS(1697), + [anon_sym_if] = ACTIONS(1697), + [anon_sym_impl] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1697), + [anon_sym_loop] = ACTIONS(1697), + [anon_sym_match] = ACTIONS(1697), + [anon_sym_mod] = ACTIONS(1697), + [anon_sym_pub] = ACTIONS(1697), + [anon_sym_return] = ACTIONS(1697), + [anon_sym_static] = ACTIONS(1697), + [anon_sym_struct] = ACTIONS(1697), + [anon_sym_trait] = ACTIONS(1697), + [anon_sym_type] = ACTIONS(1697), + [anon_sym_union] = ACTIONS(1697), + [anon_sym_unsafe] = ACTIONS(1697), + [anon_sym_use] = ACTIONS(1697), + [anon_sym_while] = ACTIONS(1697), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1695), + [anon_sym_extern] = ACTIONS(1697), + [anon_sym_LT] = ACTIONS(1695), + [anon_sym_COLON_COLON] = ACTIONS(1695), + [anon_sym_AMP] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_yield] = ACTIONS(1697), + [anon_sym_move] = ACTIONS(1697), + [sym_integer_literal] = ACTIONS(1695), + [aux_sym_string_literal_token1] = ACTIONS(1695), + [sym_char_literal] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1695), + [sym_raw_string_literal] = ACTIONS(1695), + [sym_float_literal] = ACTIONS(1695), [sym_block_comment] = ACTIONS(3), }, [392] = { - [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(1699), + [sym_identifier] = ACTIONS(1701), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_macro_rules_BANG] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1699), + [anon_sym_STAR] = ACTIONS(1699), + [anon_sym_u8] = ACTIONS(1701), + [anon_sym_i8] = ACTIONS(1701), + [anon_sym_u16] = ACTIONS(1701), + [anon_sym_i16] = ACTIONS(1701), + [anon_sym_u32] = ACTIONS(1701), + [anon_sym_i32] = ACTIONS(1701), + [anon_sym_u64] = ACTIONS(1701), + [anon_sym_i64] = ACTIONS(1701), + [anon_sym_u128] = ACTIONS(1701), + [anon_sym_i128] = ACTIONS(1701), + [anon_sym_isize] = ACTIONS(1701), + [anon_sym_usize] = ACTIONS(1701), + [anon_sym_f32] = ACTIONS(1701), + [anon_sym_f64] = ACTIONS(1701), + [anon_sym_bool] = ACTIONS(1701), + [anon_sym_str] = ACTIONS(1701), + [anon_sym_char] = ACTIONS(1701), + [anon_sym_SQUOTE] = ACTIONS(1701), + [anon_sym_async] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_default] = ACTIONS(1701), + [anon_sym_enum] = ACTIONS(1701), + [anon_sym_fn] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_impl] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_mod] = ACTIONS(1701), + [anon_sym_pub] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_static] = ACTIONS(1701), + [anon_sym_struct] = ACTIONS(1701), + [anon_sym_trait] = ACTIONS(1701), + [anon_sym_type] = ACTIONS(1701), + [anon_sym_union] = ACTIONS(1701), + [anon_sym_unsafe] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(1699), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_LT] = ACTIONS(1699), + [anon_sym_COLON_COLON] = ACTIONS(1699), + [anon_sym_AMP] = ACTIONS(1699), + [anon_sym_DOT_DOT] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_move] = ACTIONS(1701), + [sym_integer_literal] = ACTIONS(1699), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1699), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1701), + [sym_super] = ACTIONS(1701), + [sym_crate] = ACTIONS(1701), + [sym_metavariable] = ACTIONS(1699), + [sym_raw_string_literal] = ACTIONS(1699), + [sym_float_literal] = ACTIONS(1699), [sym_block_comment] = ACTIONS(3), }, [393] = { - [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(1703), + [sym_identifier] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_macro_rules_BANG] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(1703), + [anon_sym_u8] = ACTIONS(1705), + [anon_sym_i8] = ACTIONS(1705), + [anon_sym_u16] = ACTIONS(1705), + [anon_sym_i16] = ACTIONS(1705), + [anon_sym_u32] = ACTIONS(1705), + [anon_sym_i32] = ACTIONS(1705), + [anon_sym_u64] = ACTIONS(1705), + [anon_sym_i64] = ACTIONS(1705), + [anon_sym_u128] = ACTIONS(1705), + [anon_sym_i128] = ACTIONS(1705), + [anon_sym_isize] = ACTIONS(1705), + [anon_sym_usize] = ACTIONS(1705), + [anon_sym_f32] = ACTIONS(1705), + [anon_sym_f64] = ACTIONS(1705), + [anon_sym_bool] = ACTIONS(1705), + [anon_sym_str] = ACTIONS(1705), + [anon_sym_char] = ACTIONS(1705), + [anon_sym_SQUOTE] = ACTIONS(1705), + [anon_sym_async] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_default] = ACTIONS(1705), + [anon_sym_enum] = ACTIONS(1705), + [anon_sym_fn] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_impl] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_mod] = ACTIONS(1705), + [anon_sym_pub] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1705), + [anon_sym_trait] = ACTIONS(1705), + [anon_sym_type] = ACTIONS(1705), + [anon_sym_union] = ACTIONS(1705), + [anon_sym_unsafe] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1703), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_LT] = ACTIONS(1703), + [anon_sym_COLON_COLON] = ACTIONS(1703), + [anon_sym_AMP] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(1705), + [anon_sym_move] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [aux_sym_string_literal_token1] = ACTIONS(1703), + [sym_char_literal] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1705), + [sym_super] = ACTIONS(1705), + [sym_crate] = ACTIONS(1705), + [sym_metavariable] = ACTIONS(1703), + [sym_raw_string_literal] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1703), [sym_block_comment] = ACTIONS(3), }, [394] = { - [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(1707), + [sym_identifier] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_macro_rules_BANG] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(1707), + [anon_sym_u8] = ACTIONS(1709), + [anon_sym_i8] = ACTIONS(1709), + [anon_sym_u16] = ACTIONS(1709), + [anon_sym_i16] = ACTIONS(1709), + [anon_sym_u32] = ACTIONS(1709), + [anon_sym_i32] = ACTIONS(1709), + [anon_sym_u64] = ACTIONS(1709), + [anon_sym_i64] = ACTIONS(1709), + [anon_sym_u128] = ACTIONS(1709), + [anon_sym_i128] = ACTIONS(1709), + [anon_sym_isize] = ACTIONS(1709), + [anon_sym_usize] = ACTIONS(1709), + [anon_sym_f32] = ACTIONS(1709), + [anon_sym_f64] = ACTIONS(1709), + [anon_sym_bool] = ACTIONS(1709), + [anon_sym_str] = ACTIONS(1709), + [anon_sym_char] = ACTIONS(1709), + [anon_sym_SQUOTE] = ACTIONS(1709), + [anon_sym_async] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_default] = ACTIONS(1709), + [anon_sym_enum] = ACTIONS(1709), + [anon_sym_fn] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_impl] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1709), + [anon_sym_pub] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_static] = ACTIONS(1709), + [anon_sym_struct] = ACTIONS(1709), + [anon_sym_trait] = ACTIONS(1709), + [anon_sym_type] = ACTIONS(1709), + [anon_sym_union] = ACTIONS(1709), + [anon_sym_unsafe] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_COLON_COLON] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_yield] = ACTIONS(1709), + [anon_sym_move] = ACTIONS(1709), + [sym_integer_literal] = ACTIONS(1707), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1709), + [sym_super] = ACTIONS(1709), + [sym_crate] = ACTIONS(1709), + [sym_metavariable] = ACTIONS(1707), + [sym_raw_string_literal] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1707), [sym_block_comment] = ACTIONS(3), }, [395] = { - [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(1711), + [sym_identifier] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_macro_rules_BANG] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_u8] = ACTIONS(1713), + [anon_sym_i8] = ACTIONS(1713), + [anon_sym_u16] = ACTIONS(1713), + [anon_sym_i16] = ACTIONS(1713), + [anon_sym_u32] = ACTIONS(1713), + [anon_sym_i32] = ACTIONS(1713), + [anon_sym_u64] = ACTIONS(1713), + [anon_sym_i64] = ACTIONS(1713), + [anon_sym_u128] = ACTIONS(1713), + [anon_sym_i128] = ACTIONS(1713), + [anon_sym_isize] = ACTIONS(1713), + [anon_sym_usize] = ACTIONS(1713), + [anon_sym_f32] = ACTIONS(1713), + [anon_sym_f64] = ACTIONS(1713), + [anon_sym_bool] = ACTIONS(1713), + [anon_sym_str] = ACTIONS(1713), + [anon_sym_char] = ACTIONS(1713), + [anon_sym_SQUOTE] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(1713), + [anon_sym_break] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(1713), + [anon_sym_continue] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1713), + [anon_sym_enum] = ACTIONS(1713), + [anon_sym_fn] = ACTIONS(1713), + [anon_sym_for] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_impl] = ACTIONS(1713), + [anon_sym_let] = ACTIONS(1713), + [anon_sym_loop] = ACTIONS(1713), + [anon_sym_match] = ACTIONS(1713), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_pub] = ACTIONS(1713), + [anon_sym_return] = ACTIONS(1713), + [anon_sym_static] = ACTIONS(1713), + [anon_sym_struct] = ACTIONS(1713), + [anon_sym_trait] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(1713), + [anon_sym_union] = ACTIONS(1713), + [anon_sym_unsafe] = ACTIONS(1713), + [anon_sym_use] = ACTIONS(1713), + [anon_sym_while] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(1711), + [anon_sym_BANG] = ACTIONS(1711), + [anon_sym_extern] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_COLON_COLON] = ACTIONS(1711), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_yield] = ACTIONS(1713), + [anon_sym_move] = ACTIONS(1713), + [sym_integer_literal] = ACTIONS(1711), + [aux_sym_string_literal_token1] = ACTIONS(1711), + [sym_char_literal] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = ACTIONS(1713), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1713), + [sym_super] = ACTIONS(1713), + [sym_crate] = ACTIONS(1713), + [sym_metavariable] = ACTIONS(1711), + [sym_raw_string_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), [sym_block_comment] = ACTIONS(3), }, [396] = { - [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(1715), + [sym_identifier] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1715), + [anon_sym_macro_rules_BANG] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1715), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_u8] = ACTIONS(1717), + [anon_sym_i8] = ACTIONS(1717), + [anon_sym_u16] = ACTIONS(1717), + [anon_sym_i16] = ACTIONS(1717), + [anon_sym_u32] = ACTIONS(1717), + [anon_sym_i32] = ACTIONS(1717), + [anon_sym_u64] = ACTIONS(1717), + [anon_sym_i64] = ACTIONS(1717), + [anon_sym_u128] = ACTIONS(1717), + [anon_sym_i128] = ACTIONS(1717), + [anon_sym_isize] = ACTIONS(1717), + [anon_sym_usize] = ACTIONS(1717), + [anon_sym_f32] = ACTIONS(1717), + [anon_sym_f64] = ACTIONS(1717), + [anon_sym_bool] = ACTIONS(1717), + [anon_sym_str] = ACTIONS(1717), + [anon_sym_char] = ACTIONS(1717), + [anon_sym_SQUOTE] = ACTIONS(1717), + [anon_sym_async] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_default] = ACTIONS(1717), + [anon_sym_enum] = ACTIONS(1717), + [anon_sym_fn] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_impl] = ACTIONS(1717), + [anon_sym_let] = ACTIONS(1717), + [anon_sym_loop] = ACTIONS(1717), + [anon_sym_match] = ACTIONS(1717), + [anon_sym_mod] = ACTIONS(1717), + [anon_sym_pub] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_static] = ACTIONS(1717), + [anon_sym_struct] = ACTIONS(1717), + [anon_sym_trait] = ACTIONS(1717), + [anon_sym_type] = ACTIONS(1717), + [anon_sym_union] = ACTIONS(1717), + [anon_sym_unsafe] = ACTIONS(1717), + [anon_sym_use] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [anon_sym_POUND] = ACTIONS(1715), + [anon_sym_BANG] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1717), + [anon_sym_LT] = ACTIONS(1715), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_PIPE] = ACTIONS(1715), + [anon_sym_yield] = ACTIONS(1717), + [anon_sym_move] = ACTIONS(1717), + [sym_integer_literal] = ACTIONS(1715), + [aux_sym_string_literal_token1] = ACTIONS(1715), + [sym_char_literal] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1717), + [sym_super] = ACTIONS(1717), + [sym_crate] = ACTIONS(1717), + [sym_metavariable] = ACTIONS(1715), + [sym_raw_string_literal] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1715), [sym_block_comment] = ACTIONS(3), }, [397] = { - [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(1719), + [sym_identifier] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_macro_rules_BANG] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_STAR] = ACTIONS(1719), + [anon_sym_u8] = ACTIONS(1721), + [anon_sym_i8] = ACTIONS(1721), + [anon_sym_u16] = ACTIONS(1721), + [anon_sym_i16] = ACTIONS(1721), + [anon_sym_u32] = ACTIONS(1721), + [anon_sym_i32] = ACTIONS(1721), + [anon_sym_u64] = ACTIONS(1721), + [anon_sym_i64] = ACTIONS(1721), + [anon_sym_u128] = ACTIONS(1721), + [anon_sym_i128] = ACTIONS(1721), + [anon_sym_isize] = ACTIONS(1721), + [anon_sym_usize] = ACTIONS(1721), + [anon_sym_f32] = ACTIONS(1721), + [anon_sym_f64] = ACTIONS(1721), + [anon_sym_bool] = ACTIONS(1721), + [anon_sym_str] = ACTIONS(1721), + [anon_sym_char] = ACTIONS(1721), + [anon_sym_SQUOTE] = ACTIONS(1721), + [anon_sym_async] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_enum] = ACTIONS(1721), + [anon_sym_fn] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_impl] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_mod] = ACTIONS(1721), + [anon_sym_pub] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_static] = ACTIONS(1721), + [anon_sym_struct] = ACTIONS(1721), + [anon_sym_trait] = ACTIONS(1721), + [anon_sym_type] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_unsafe] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(1719), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_COLON_COLON] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1719), + [anon_sym_DASH] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(1721), + [anon_sym_move] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1719), + [aux_sym_string_literal_token1] = ACTIONS(1719), + [sym_char_literal] = ACTIONS(1719), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1721), + [sym_super] = ACTIONS(1721), + [sym_crate] = ACTIONS(1721), + [sym_metavariable] = ACTIONS(1719), + [sym_raw_string_literal] = ACTIONS(1719), + [sym_float_literal] = ACTIONS(1719), [sym_block_comment] = ACTIONS(3), }, [398] = { - [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(1723), + [sym_identifier] = ACTIONS(1725), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_macro_rules_BANG] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_u8] = ACTIONS(1725), + [anon_sym_i8] = ACTIONS(1725), + [anon_sym_u16] = ACTIONS(1725), + [anon_sym_i16] = ACTIONS(1725), + [anon_sym_u32] = ACTIONS(1725), + [anon_sym_i32] = ACTIONS(1725), + [anon_sym_u64] = ACTIONS(1725), + [anon_sym_i64] = ACTIONS(1725), + [anon_sym_u128] = ACTIONS(1725), + [anon_sym_i128] = ACTIONS(1725), + [anon_sym_isize] = ACTIONS(1725), + [anon_sym_usize] = ACTIONS(1725), + [anon_sym_f32] = ACTIONS(1725), + [anon_sym_f64] = ACTIONS(1725), + [anon_sym_bool] = ACTIONS(1725), + [anon_sym_str] = ACTIONS(1725), + [anon_sym_char] = ACTIONS(1725), + [anon_sym_SQUOTE] = ACTIONS(1725), + [anon_sym_async] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1725), + [anon_sym_const] = ACTIONS(1725), + [anon_sym_continue] = ACTIONS(1725), + [anon_sym_default] = ACTIONS(1725), + [anon_sym_enum] = ACTIONS(1725), + [anon_sym_fn] = ACTIONS(1725), + [anon_sym_for] = ACTIONS(1725), + [anon_sym_if] = ACTIONS(1725), + [anon_sym_impl] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_loop] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1725), + [anon_sym_mod] = ACTIONS(1725), + [anon_sym_pub] = ACTIONS(1725), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_struct] = ACTIONS(1725), + [anon_sym_trait] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_union] = ACTIONS(1725), + [anon_sym_unsafe] = ACTIONS(1725), + [anon_sym_use] = ACTIONS(1725), + [anon_sym_while] = ACTIONS(1725), + [anon_sym_POUND] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1723), + [anon_sym_extern] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_COLON_COLON] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_yield] = ACTIONS(1725), + [anon_sym_move] = ACTIONS(1725), + [sym_integer_literal] = ACTIONS(1723), + [aux_sym_string_literal_token1] = ACTIONS(1723), + [sym_char_literal] = ACTIONS(1723), + [anon_sym_true] = ACTIONS(1725), + [anon_sym_false] = ACTIONS(1725), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1725), + [sym_super] = ACTIONS(1725), + [sym_crate] = ACTIONS(1725), + [sym_metavariable] = ACTIONS(1723), + [sym_raw_string_literal] = ACTIONS(1723), + [sym_float_literal] = ACTIONS(1723), [sym_block_comment] = ACTIONS(3), }, [399] = { - [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(1727), + [sym_identifier] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_macro_rules_BANG] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_u8] = ACTIONS(1729), + [anon_sym_i8] = ACTIONS(1729), + [anon_sym_u16] = ACTIONS(1729), + [anon_sym_i16] = ACTIONS(1729), + [anon_sym_u32] = ACTIONS(1729), + [anon_sym_i32] = ACTIONS(1729), + [anon_sym_u64] = ACTIONS(1729), + [anon_sym_i64] = ACTIONS(1729), + [anon_sym_u128] = ACTIONS(1729), + [anon_sym_i128] = ACTIONS(1729), + [anon_sym_isize] = ACTIONS(1729), + [anon_sym_usize] = ACTIONS(1729), + [anon_sym_f32] = ACTIONS(1729), + [anon_sym_f64] = ACTIONS(1729), + [anon_sym_bool] = ACTIONS(1729), + [anon_sym_str] = ACTIONS(1729), + [anon_sym_char] = ACTIONS(1729), + [anon_sym_SQUOTE] = ACTIONS(1729), + [anon_sym_async] = ACTIONS(1729), + [anon_sym_break] = ACTIONS(1729), + [anon_sym_const] = ACTIONS(1729), + [anon_sym_continue] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1729), + [anon_sym_enum] = ACTIONS(1729), + [anon_sym_fn] = ACTIONS(1729), + [anon_sym_for] = ACTIONS(1729), + [anon_sym_if] = ACTIONS(1729), + [anon_sym_impl] = ACTIONS(1729), + [anon_sym_let] = ACTIONS(1729), + [anon_sym_loop] = ACTIONS(1729), + [anon_sym_match] = ACTIONS(1729), + [anon_sym_mod] = ACTIONS(1729), + [anon_sym_pub] = ACTIONS(1729), + [anon_sym_return] = ACTIONS(1729), + [anon_sym_static] = ACTIONS(1729), + [anon_sym_struct] = ACTIONS(1729), + [anon_sym_trait] = ACTIONS(1729), + [anon_sym_type] = ACTIONS(1729), + [anon_sym_union] = ACTIONS(1729), + [anon_sym_unsafe] = ACTIONS(1729), + [anon_sym_use] = ACTIONS(1729), + [anon_sym_while] = ACTIONS(1729), + [anon_sym_POUND] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_COLON_COLON] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_yield] = ACTIONS(1729), + [anon_sym_move] = ACTIONS(1729), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1727), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1729), + [sym_super] = ACTIONS(1729), + [sym_crate] = ACTIONS(1729), + [sym_metavariable] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1727), + [sym_float_literal] = ACTIONS(1727), [sym_block_comment] = ACTIONS(3), }, [400] = { - [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(1731), + [sym_identifier] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1731), + [anon_sym_macro_rules_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_LBRACE] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_STAR] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_SQUOTE] = ACTIONS(1733), + [anon_sym_async] = ACTIONS(1733), + [anon_sym_break] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1733), + [anon_sym_continue] = ACTIONS(1733), + [anon_sym_default] = ACTIONS(1733), + [anon_sym_enum] = ACTIONS(1733), + [anon_sym_fn] = ACTIONS(1733), + [anon_sym_for] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1733), + [anon_sym_impl] = ACTIONS(1733), + [anon_sym_let] = ACTIONS(1733), + [anon_sym_loop] = ACTIONS(1733), + [anon_sym_match] = ACTIONS(1733), + [anon_sym_mod] = ACTIONS(1733), + [anon_sym_pub] = ACTIONS(1733), + [anon_sym_return] = ACTIONS(1733), + [anon_sym_static] = ACTIONS(1733), + [anon_sym_struct] = ACTIONS(1733), + [anon_sym_trait] = ACTIONS(1733), + [anon_sym_type] = ACTIONS(1733), + [anon_sym_union] = ACTIONS(1733), + [anon_sym_unsafe] = ACTIONS(1733), + [anon_sym_use] = ACTIONS(1733), + [anon_sym_while] = ACTIONS(1733), + [anon_sym_POUND] = ACTIONS(1731), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1731), + [anon_sym_COLON_COLON] = ACTIONS(1731), + [anon_sym_AMP] = ACTIONS(1731), + [anon_sym_DOT_DOT] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_PIPE] = ACTIONS(1731), + [anon_sym_yield] = ACTIONS(1733), + [anon_sym_move] = ACTIONS(1733), + [sym_integer_literal] = ACTIONS(1731), + [aux_sym_string_literal_token1] = ACTIONS(1731), + [sym_char_literal] = ACTIONS(1731), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1731), + [sym_raw_string_literal] = ACTIONS(1731), + [sym_float_literal] = ACTIONS(1731), [sym_block_comment] = ACTIONS(3), }, [401] = { - [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(1735), + [sym_identifier] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_macro_rules_BANG] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1735), + [anon_sym_STAR] = ACTIONS(1735), + [anon_sym_u8] = ACTIONS(1737), + [anon_sym_i8] = ACTIONS(1737), + [anon_sym_u16] = ACTIONS(1737), + [anon_sym_i16] = ACTIONS(1737), + [anon_sym_u32] = ACTIONS(1737), + [anon_sym_i32] = ACTIONS(1737), + [anon_sym_u64] = ACTIONS(1737), + [anon_sym_i64] = ACTIONS(1737), + [anon_sym_u128] = ACTIONS(1737), + [anon_sym_i128] = ACTIONS(1737), + [anon_sym_isize] = ACTIONS(1737), + [anon_sym_usize] = ACTIONS(1737), + [anon_sym_f32] = ACTIONS(1737), + [anon_sym_f64] = ACTIONS(1737), + [anon_sym_bool] = ACTIONS(1737), + [anon_sym_str] = ACTIONS(1737), + [anon_sym_char] = ACTIONS(1737), + [anon_sym_SQUOTE] = ACTIONS(1737), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_break] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1737), + [anon_sym_continue] = ACTIONS(1737), + [anon_sym_default] = ACTIONS(1737), + [anon_sym_enum] = ACTIONS(1737), + [anon_sym_fn] = ACTIONS(1737), + [anon_sym_for] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1737), + [anon_sym_impl] = ACTIONS(1737), + [anon_sym_let] = ACTIONS(1737), + [anon_sym_loop] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1737), + [anon_sym_mod] = ACTIONS(1737), + [anon_sym_pub] = ACTIONS(1737), + [anon_sym_return] = ACTIONS(1737), + [anon_sym_static] = ACTIONS(1737), + [anon_sym_struct] = ACTIONS(1737), + [anon_sym_trait] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_union] = ACTIONS(1737), + [anon_sym_unsafe] = ACTIONS(1737), + [anon_sym_use] = ACTIONS(1737), + [anon_sym_while] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1737), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_COLON_COLON] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_yield] = ACTIONS(1737), + [anon_sym_move] = ACTIONS(1737), + [sym_integer_literal] = ACTIONS(1735), + [aux_sym_string_literal_token1] = ACTIONS(1735), + [sym_char_literal] = ACTIONS(1735), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1737), + [sym_super] = ACTIONS(1737), + [sym_crate] = ACTIONS(1737), + [sym_metavariable] = ACTIONS(1735), + [sym_raw_string_literal] = ACTIONS(1735), + [sym_float_literal] = ACTIONS(1735), [sym_block_comment] = ACTIONS(3), }, [402] = { - [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(1739), + [sym_identifier] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1739), + [anon_sym_macro_rules_BANG] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(1739), + [anon_sym_STAR] = ACTIONS(1739), + [anon_sym_u8] = ACTIONS(1741), + [anon_sym_i8] = ACTIONS(1741), + [anon_sym_u16] = ACTIONS(1741), + [anon_sym_i16] = ACTIONS(1741), + [anon_sym_u32] = ACTIONS(1741), + [anon_sym_i32] = ACTIONS(1741), + [anon_sym_u64] = ACTIONS(1741), + [anon_sym_i64] = ACTIONS(1741), + [anon_sym_u128] = ACTIONS(1741), + [anon_sym_i128] = ACTIONS(1741), + [anon_sym_isize] = ACTIONS(1741), + [anon_sym_usize] = ACTIONS(1741), + [anon_sym_f32] = ACTIONS(1741), + [anon_sym_f64] = ACTIONS(1741), + [anon_sym_bool] = ACTIONS(1741), + [anon_sym_str] = ACTIONS(1741), + [anon_sym_char] = ACTIONS(1741), + [anon_sym_SQUOTE] = ACTIONS(1741), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_break] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_continue] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1741), + [anon_sym_enum] = ACTIONS(1741), + [anon_sym_fn] = ACTIONS(1741), + [anon_sym_for] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1741), + [anon_sym_impl] = ACTIONS(1741), + [anon_sym_let] = ACTIONS(1741), + [anon_sym_loop] = ACTIONS(1741), + [anon_sym_match] = ACTIONS(1741), + [anon_sym_mod] = ACTIONS(1741), + [anon_sym_pub] = ACTIONS(1741), + [anon_sym_return] = ACTIONS(1741), + [anon_sym_static] = ACTIONS(1741), + [anon_sym_struct] = ACTIONS(1741), + [anon_sym_trait] = ACTIONS(1741), + [anon_sym_type] = ACTIONS(1741), + [anon_sym_union] = ACTIONS(1741), + [anon_sym_unsafe] = ACTIONS(1741), + [anon_sym_use] = ACTIONS(1741), + [anon_sym_while] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1741), + [anon_sym_LT] = ACTIONS(1739), + [anon_sym_COLON_COLON] = ACTIONS(1739), + [anon_sym_AMP] = ACTIONS(1739), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_PIPE] = ACTIONS(1739), + [anon_sym_yield] = ACTIONS(1741), + [anon_sym_move] = ACTIONS(1741), + [sym_integer_literal] = ACTIONS(1739), + [aux_sym_string_literal_token1] = ACTIONS(1739), + [sym_char_literal] = ACTIONS(1739), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1741), + [sym_super] = ACTIONS(1741), + [sym_crate] = ACTIONS(1741), + [sym_metavariable] = ACTIONS(1739), + [sym_raw_string_literal] = ACTIONS(1739), + [sym_float_literal] = ACTIONS(1739), [sym_block_comment] = ACTIONS(3), }, [403] = { - [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(1743), + [sym_identifier] = ACTIONS(1745), + [anon_sym_SEMI] = ACTIONS(1743), + [anon_sym_macro_rules_BANG] = ACTIONS(1743), + [anon_sym_LPAREN] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1743), + [anon_sym_u8] = ACTIONS(1745), + [anon_sym_i8] = ACTIONS(1745), + [anon_sym_u16] = ACTIONS(1745), + [anon_sym_i16] = ACTIONS(1745), + [anon_sym_u32] = ACTIONS(1745), + [anon_sym_i32] = ACTIONS(1745), + [anon_sym_u64] = ACTIONS(1745), + [anon_sym_i64] = ACTIONS(1745), + [anon_sym_u128] = ACTIONS(1745), + [anon_sym_i128] = ACTIONS(1745), + [anon_sym_isize] = ACTIONS(1745), + [anon_sym_usize] = ACTIONS(1745), + [anon_sym_f32] = ACTIONS(1745), + [anon_sym_f64] = ACTIONS(1745), + [anon_sym_bool] = ACTIONS(1745), + [anon_sym_str] = ACTIONS(1745), + [anon_sym_char] = ACTIONS(1745), + [anon_sym_SQUOTE] = ACTIONS(1745), + [anon_sym_async] = ACTIONS(1745), + [anon_sym_break] = ACTIONS(1745), + [anon_sym_const] = ACTIONS(1745), + [anon_sym_continue] = ACTIONS(1745), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_enum] = ACTIONS(1745), + [anon_sym_fn] = ACTIONS(1745), + [anon_sym_for] = ACTIONS(1745), + [anon_sym_if] = ACTIONS(1745), + [anon_sym_impl] = ACTIONS(1745), + [anon_sym_let] = ACTIONS(1745), + [anon_sym_loop] = ACTIONS(1745), + [anon_sym_match] = ACTIONS(1745), + [anon_sym_mod] = ACTIONS(1745), + [anon_sym_pub] = ACTIONS(1745), + [anon_sym_return] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1745), + [anon_sym_struct] = ACTIONS(1745), + [anon_sym_trait] = ACTIONS(1745), + [anon_sym_type] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_use] = ACTIONS(1745), + [anon_sym_while] = ACTIONS(1745), + [anon_sym_POUND] = ACTIONS(1743), + [anon_sym_BANG] = ACTIONS(1743), + [anon_sym_extern] = ACTIONS(1745), + [anon_sym_LT] = ACTIONS(1743), + [anon_sym_COLON_COLON] = ACTIONS(1743), + [anon_sym_AMP] = ACTIONS(1743), + [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PIPE] = ACTIONS(1743), + [anon_sym_yield] = ACTIONS(1745), + [anon_sym_move] = ACTIONS(1745), + [sym_integer_literal] = ACTIONS(1743), + [aux_sym_string_literal_token1] = ACTIONS(1743), + [sym_char_literal] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1745), + [anon_sym_false] = ACTIONS(1745), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1743), + [sym_raw_string_literal] = ACTIONS(1743), + [sym_float_literal] = ACTIONS(1743), [sym_block_comment] = ACTIONS(3), }, [404] = { - [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(1747), + [sym_identifier] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_macro_rules_BANG] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(1747), + [anon_sym_RBRACE] = ACTIONS(1747), + [anon_sym_LBRACK] = ACTIONS(1747), + [anon_sym_STAR] = ACTIONS(1747), + [anon_sym_u8] = ACTIONS(1749), + [anon_sym_i8] = ACTIONS(1749), + [anon_sym_u16] = ACTIONS(1749), + [anon_sym_i16] = ACTIONS(1749), + [anon_sym_u32] = ACTIONS(1749), + [anon_sym_i32] = ACTIONS(1749), + [anon_sym_u64] = ACTIONS(1749), + [anon_sym_i64] = ACTIONS(1749), + [anon_sym_u128] = ACTIONS(1749), + [anon_sym_i128] = ACTIONS(1749), + [anon_sym_isize] = ACTIONS(1749), + [anon_sym_usize] = ACTIONS(1749), + [anon_sym_f32] = ACTIONS(1749), + [anon_sym_f64] = ACTIONS(1749), + [anon_sym_bool] = ACTIONS(1749), + [anon_sym_str] = ACTIONS(1749), + [anon_sym_char] = ACTIONS(1749), + [anon_sym_SQUOTE] = ACTIONS(1749), + [anon_sym_async] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_default] = ACTIONS(1749), + [anon_sym_enum] = ACTIONS(1749), + [anon_sym_fn] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_impl] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_mod] = ACTIONS(1749), + [anon_sym_pub] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_static] = ACTIONS(1749), + [anon_sym_struct] = ACTIONS(1749), + [anon_sym_trait] = ACTIONS(1749), + [anon_sym_type] = ACTIONS(1749), + [anon_sym_union] = ACTIONS(1749), + [anon_sym_unsafe] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(1747), + [anon_sym_BANG] = ACTIONS(1747), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_COLON_COLON] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1747), + [anon_sym_DOT_DOT] = ACTIONS(1747), + [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_PIPE] = ACTIONS(1747), + [anon_sym_yield] = ACTIONS(1749), + [anon_sym_move] = ACTIONS(1749), + [sym_integer_literal] = ACTIONS(1747), + [aux_sym_string_literal_token1] = ACTIONS(1747), + [sym_char_literal] = ACTIONS(1747), + [anon_sym_true] = ACTIONS(1749), + [anon_sym_false] = ACTIONS(1749), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_crate] = ACTIONS(1749), + [sym_metavariable] = ACTIONS(1747), + [sym_raw_string_literal] = ACTIONS(1747), + [sym_float_literal] = ACTIONS(1747), [sym_block_comment] = ACTIONS(3), }, [405] = { - [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(1751), + [sym_identifier] = ACTIONS(1753), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_macro_rules_BANG] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_STAR] = ACTIONS(1751), + [anon_sym_u8] = ACTIONS(1753), + [anon_sym_i8] = ACTIONS(1753), + [anon_sym_u16] = ACTIONS(1753), + [anon_sym_i16] = ACTIONS(1753), + [anon_sym_u32] = ACTIONS(1753), + [anon_sym_i32] = ACTIONS(1753), + [anon_sym_u64] = ACTIONS(1753), + [anon_sym_i64] = ACTIONS(1753), + [anon_sym_u128] = ACTIONS(1753), + [anon_sym_i128] = ACTIONS(1753), + [anon_sym_isize] = ACTIONS(1753), + [anon_sym_usize] = ACTIONS(1753), + [anon_sym_f32] = ACTIONS(1753), + [anon_sym_f64] = ACTIONS(1753), + [anon_sym_bool] = ACTIONS(1753), + [anon_sym_str] = ACTIONS(1753), + [anon_sym_char] = ACTIONS(1753), + [anon_sym_SQUOTE] = ACTIONS(1753), + [anon_sym_async] = ACTIONS(1753), + [anon_sym_break] = ACTIONS(1753), + [anon_sym_const] = ACTIONS(1753), + [anon_sym_continue] = ACTIONS(1753), + [anon_sym_default] = ACTIONS(1753), + [anon_sym_enum] = ACTIONS(1753), + [anon_sym_fn] = ACTIONS(1753), + [anon_sym_for] = ACTIONS(1753), + [anon_sym_if] = ACTIONS(1753), + [anon_sym_impl] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_loop] = ACTIONS(1753), + [anon_sym_match] = ACTIONS(1753), + [anon_sym_mod] = ACTIONS(1753), + [anon_sym_pub] = ACTIONS(1753), + [anon_sym_return] = ACTIONS(1753), + [anon_sym_static] = ACTIONS(1753), + [anon_sym_struct] = ACTIONS(1753), + [anon_sym_trait] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_union] = ACTIONS(1753), + [anon_sym_unsafe] = ACTIONS(1753), + [anon_sym_use] = ACTIONS(1753), + [anon_sym_while] = ACTIONS(1753), + [anon_sym_POUND] = ACTIONS(1751), + [anon_sym_BANG] = ACTIONS(1751), + [anon_sym_extern] = ACTIONS(1753), + [anon_sym_LT] = ACTIONS(1751), + [anon_sym_COLON_COLON] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1751), + [anon_sym_DASH] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_yield] = ACTIONS(1753), + [anon_sym_move] = ACTIONS(1753), + [sym_integer_literal] = ACTIONS(1751), + [aux_sym_string_literal_token1] = ACTIONS(1751), + [sym_char_literal] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1753), + [anon_sym_false] = ACTIONS(1753), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1753), + [sym_super] = ACTIONS(1753), + [sym_crate] = ACTIONS(1753), + [sym_metavariable] = ACTIONS(1751), + [sym_raw_string_literal] = ACTIONS(1751), + [sym_float_literal] = ACTIONS(1751), [sym_block_comment] = ACTIONS(3), }, [406] = { - [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(1755), + [sym_identifier] = ACTIONS(1757), + [anon_sym_SEMI] = ACTIONS(1755), + [anon_sym_macro_rules_BANG] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1755), + [anon_sym_RBRACE] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1755), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_u8] = ACTIONS(1757), + [anon_sym_i8] = ACTIONS(1757), + [anon_sym_u16] = ACTIONS(1757), + [anon_sym_i16] = ACTIONS(1757), + [anon_sym_u32] = ACTIONS(1757), + [anon_sym_i32] = ACTIONS(1757), + [anon_sym_u64] = ACTIONS(1757), + [anon_sym_i64] = ACTIONS(1757), + [anon_sym_u128] = ACTIONS(1757), + [anon_sym_i128] = ACTIONS(1757), + [anon_sym_isize] = ACTIONS(1757), + [anon_sym_usize] = ACTIONS(1757), + [anon_sym_f32] = ACTIONS(1757), + [anon_sym_f64] = ACTIONS(1757), + [anon_sym_bool] = ACTIONS(1757), + [anon_sym_str] = ACTIONS(1757), + [anon_sym_char] = ACTIONS(1757), + [anon_sym_SQUOTE] = ACTIONS(1757), + [anon_sym_async] = ACTIONS(1757), + [anon_sym_break] = ACTIONS(1757), + [anon_sym_const] = ACTIONS(1757), + [anon_sym_continue] = ACTIONS(1757), + [anon_sym_default] = ACTIONS(1757), + [anon_sym_enum] = ACTIONS(1757), + [anon_sym_fn] = ACTIONS(1757), + [anon_sym_for] = ACTIONS(1757), + [anon_sym_if] = ACTIONS(1757), + [anon_sym_impl] = ACTIONS(1757), + [anon_sym_let] = ACTIONS(1757), + [anon_sym_loop] = ACTIONS(1757), + [anon_sym_match] = ACTIONS(1757), + [anon_sym_mod] = ACTIONS(1757), + [anon_sym_pub] = ACTIONS(1757), + [anon_sym_return] = ACTIONS(1757), + [anon_sym_static] = ACTIONS(1757), + [anon_sym_struct] = ACTIONS(1757), + [anon_sym_trait] = ACTIONS(1757), + [anon_sym_type] = ACTIONS(1757), + [anon_sym_union] = ACTIONS(1757), + [anon_sym_unsafe] = ACTIONS(1757), + [anon_sym_use] = ACTIONS(1757), + [anon_sym_while] = ACTIONS(1757), + [anon_sym_POUND] = ACTIONS(1755), + [anon_sym_BANG] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1757), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_COLON_COLON] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_PIPE] = ACTIONS(1755), + [anon_sym_yield] = ACTIONS(1757), + [anon_sym_move] = ACTIONS(1757), + [sym_integer_literal] = ACTIONS(1755), + [aux_sym_string_literal_token1] = ACTIONS(1755), + [sym_char_literal] = ACTIONS(1755), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = ACTIONS(1757), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1757), + [sym_super] = ACTIONS(1757), + [sym_crate] = ACTIONS(1757), + [sym_metavariable] = ACTIONS(1755), + [sym_raw_string_literal] = ACTIONS(1755), + [sym_float_literal] = ACTIONS(1755), [sym_block_comment] = ACTIONS(3), }, [407] = { - [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(1759), + [sym_identifier] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1759), + [anon_sym_macro_rules_BANG] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1759), + [anon_sym_STAR] = ACTIONS(1759), + [anon_sym_u8] = ACTIONS(1761), + [anon_sym_i8] = ACTIONS(1761), + [anon_sym_u16] = ACTIONS(1761), + [anon_sym_i16] = ACTIONS(1761), + [anon_sym_u32] = ACTIONS(1761), + [anon_sym_i32] = ACTIONS(1761), + [anon_sym_u64] = ACTIONS(1761), + [anon_sym_i64] = ACTIONS(1761), + [anon_sym_u128] = ACTIONS(1761), + [anon_sym_i128] = ACTIONS(1761), + [anon_sym_isize] = ACTIONS(1761), + [anon_sym_usize] = ACTIONS(1761), + [anon_sym_f32] = ACTIONS(1761), + [anon_sym_f64] = ACTIONS(1761), + [anon_sym_bool] = ACTIONS(1761), + [anon_sym_str] = ACTIONS(1761), + [anon_sym_char] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_async] = ACTIONS(1761), + [anon_sym_break] = ACTIONS(1761), + [anon_sym_const] = ACTIONS(1761), + [anon_sym_continue] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1761), + [anon_sym_enum] = ACTIONS(1761), + [anon_sym_fn] = ACTIONS(1761), + [anon_sym_for] = ACTIONS(1761), + [anon_sym_if] = ACTIONS(1761), + [anon_sym_impl] = ACTIONS(1761), + [anon_sym_let] = ACTIONS(1761), + [anon_sym_loop] = ACTIONS(1761), + [anon_sym_match] = ACTIONS(1761), + [anon_sym_mod] = ACTIONS(1761), + [anon_sym_pub] = ACTIONS(1761), + [anon_sym_return] = ACTIONS(1761), + [anon_sym_static] = ACTIONS(1761), + [anon_sym_struct] = ACTIONS(1761), + [anon_sym_trait] = ACTIONS(1761), + [anon_sym_type] = ACTIONS(1761), + [anon_sym_union] = ACTIONS(1761), + [anon_sym_unsafe] = ACTIONS(1761), + [anon_sym_use] = ACTIONS(1761), + [anon_sym_while] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(1759), + [anon_sym_extern] = ACTIONS(1761), + [anon_sym_LT] = ACTIONS(1759), + [anon_sym_COLON_COLON] = ACTIONS(1759), + [anon_sym_AMP] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1759), + [anon_sym_PIPE] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(1761), + [anon_sym_move] = ACTIONS(1761), + [sym_integer_literal] = ACTIONS(1759), + [aux_sym_string_literal_token1] = ACTIONS(1759), + [sym_char_literal] = ACTIONS(1759), + [anon_sym_true] = ACTIONS(1761), + [anon_sym_false] = ACTIONS(1761), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1761), + [sym_super] = ACTIONS(1761), + [sym_crate] = ACTIONS(1761), + [sym_metavariable] = ACTIONS(1759), + [sym_raw_string_literal] = ACTIONS(1759), + [sym_float_literal] = ACTIONS(1759), [sym_block_comment] = ACTIONS(3), }, [408] = { - [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(1763), + [sym_identifier] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_macro_rules_BANG] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_u8] = ACTIONS(1765), + [anon_sym_i8] = ACTIONS(1765), + [anon_sym_u16] = ACTIONS(1765), + [anon_sym_i16] = ACTIONS(1765), + [anon_sym_u32] = ACTIONS(1765), + [anon_sym_i32] = ACTIONS(1765), + [anon_sym_u64] = ACTIONS(1765), + [anon_sym_i64] = ACTIONS(1765), + [anon_sym_u128] = ACTIONS(1765), + [anon_sym_i128] = ACTIONS(1765), + [anon_sym_isize] = ACTIONS(1765), + [anon_sym_usize] = ACTIONS(1765), + [anon_sym_f32] = ACTIONS(1765), + [anon_sym_f64] = ACTIONS(1765), + [anon_sym_bool] = ACTIONS(1765), + [anon_sym_str] = ACTIONS(1765), + [anon_sym_char] = ACTIONS(1765), + [anon_sym_SQUOTE] = ACTIONS(1765), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_default] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_impl] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_mod] = ACTIONS(1765), + [anon_sym_pub] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_static] = ACTIONS(1765), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_trait] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_DOT_DOT] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_move] = ACTIONS(1765), + [sym_integer_literal] = ACTIONS(1763), + [aux_sym_string_literal_token1] = ACTIONS(1763), + [sym_char_literal] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1765), + [anon_sym_false] = ACTIONS(1765), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1765), + [sym_super] = ACTIONS(1765), + [sym_crate] = ACTIONS(1765), + [sym_metavariable] = ACTIONS(1763), + [sym_raw_string_literal] = ACTIONS(1763), + [sym_float_literal] = ACTIONS(1763), [sym_block_comment] = ACTIONS(3), }, [409] = { - [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(1767), + [sym_identifier] = ACTIONS(1769), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_macro_rules_BANG] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_u8] = ACTIONS(1769), + [anon_sym_i8] = ACTIONS(1769), + [anon_sym_u16] = ACTIONS(1769), + [anon_sym_i16] = ACTIONS(1769), + [anon_sym_u32] = ACTIONS(1769), + [anon_sym_i32] = ACTIONS(1769), + [anon_sym_u64] = ACTIONS(1769), + [anon_sym_i64] = ACTIONS(1769), + [anon_sym_u128] = ACTIONS(1769), + [anon_sym_i128] = ACTIONS(1769), + [anon_sym_isize] = ACTIONS(1769), + [anon_sym_usize] = ACTIONS(1769), + [anon_sym_f32] = ACTIONS(1769), + [anon_sym_f64] = ACTIONS(1769), + [anon_sym_bool] = ACTIONS(1769), + [anon_sym_str] = ACTIONS(1769), + [anon_sym_char] = ACTIONS(1769), + [anon_sym_SQUOTE] = ACTIONS(1769), + [anon_sym_async] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_enum] = ACTIONS(1769), + [anon_sym_fn] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_impl] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_loop] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_mod] = ACTIONS(1769), + [anon_sym_pub] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_static] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1769), + [anon_sym_trait] = ACTIONS(1769), + [anon_sym_type] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_unsafe] = ACTIONS(1769), + [anon_sym_use] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(1767), + [anon_sym_BANG] = ACTIONS(1767), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_COLON_COLON] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_yield] = ACTIONS(1769), + [anon_sym_move] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1767), + [aux_sym_string_literal_token1] = ACTIONS(1767), + [sym_char_literal] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1769), + [anon_sym_false] = ACTIONS(1769), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1769), + [sym_super] = ACTIONS(1769), + [sym_crate] = ACTIONS(1769), + [sym_metavariable] = ACTIONS(1767), + [sym_raw_string_literal] = ACTIONS(1767), + [sym_float_literal] = ACTIONS(1767), [sym_block_comment] = ACTIONS(3), }, [410] = { - [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(1771), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_macro_rules_BANG] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_u8] = ACTIONS(1773), + [anon_sym_i8] = ACTIONS(1773), + [anon_sym_u16] = ACTIONS(1773), + [anon_sym_i16] = ACTIONS(1773), + [anon_sym_u32] = ACTIONS(1773), + [anon_sym_i32] = ACTIONS(1773), + [anon_sym_u64] = ACTIONS(1773), + [anon_sym_i64] = ACTIONS(1773), + [anon_sym_u128] = ACTIONS(1773), + [anon_sym_i128] = ACTIONS(1773), + [anon_sym_isize] = ACTIONS(1773), + [anon_sym_usize] = ACTIONS(1773), + [anon_sym_f32] = ACTIONS(1773), + [anon_sym_f64] = ACTIONS(1773), + [anon_sym_bool] = ACTIONS(1773), + [anon_sym_str] = ACTIONS(1773), + [anon_sym_char] = ACTIONS(1773), + [anon_sym_SQUOTE] = ACTIONS(1773), + [anon_sym_async] = ACTIONS(1773), + [anon_sym_break] = ACTIONS(1773), + [anon_sym_const] = ACTIONS(1773), + [anon_sym_continue] = ACTIONS(1773), + [anon_sym_default] = ACTIONS(1773), + [anon_sym_enum] = ACTIONS(1773), + [anon_sym_fn] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1773), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_impl] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_loop] = ACTIONS(1773), + [anon_sym_match] = ACTIONS(1773), + [anon_sym_mod] = ACTIONS(1773), + [anon_sym_pub] = ACTIONS(1773), + [anon_sym_return] = ACTIONS(1773), + [anon_sym_static] = ACTIONS(1773), + [anon_sym_struct] = ACTIONS(1773), + [anon_sym_trait] = ACTIONS(1773), + [anon_sym_type] = ACTIONS(1773), + [anon_sym_union] = ACTIONS(1773), + [anon_sym_unsafe] = ACTIONS(1773), + [anon_sym_use] = ACTIONS(1773), + [anon_sym_while] = ACTIONS(1773), + [anon_sym_POUND] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1771), + [anon_sym_COLON_COLON] = ACTIONS(1771), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_yield] = ACTIONS(1773), + [anon_sym_move] = ACTIONS(1773), + [sym_integer_literal] = ACTIONS(1771), + [aux_sym_string_literal_token1] = ACTIONS(1771), + [sym_char_literal] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1773), + [sym_super] = ACTIONS(1773), + [sym_crate] = ACTIONS(1773), + [sym_metavariable] = ACTIONS(1771), + [sym_raw_string_literal] = ACTIONS(1771), + [sym_float_literal] = ACTIONS(1771), [sym_block_comment] = ACTIONS(3), }, [411] = { - [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(1775), + [sym_identifier] = ACTIONS(1777), + [anon_sym_SEMI] = ACTIONS(1775), + [anon_sym_macro_rules_BANG] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_RBRACE] = ACTIONS(1775), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1775), + [anon_sym_u8] = ACTIONS(1777), + [anon_sym_i8] = ACTIONS(1777), + [anon_sym_u16] = ACTIONS(1777), + [anon_sym_i16] = ACTIONS(1777), + [anon_sym_u32] = ACTIONS(1777), + [anon_sym_i32] = ACTIONS(1777), + [anon_sym_u64] = ACTIONS(1777), + [anon_sym_i64] = ACTIONS(1777), + [anon_sym_u128] = ACTIONS(1777), + [anon_sym_i128] = ACTIONS(1777), + [anon_sym_isize] = ACTIONS(1777), + [anon_sym_usize] = ACTIONS(1777), + [anon_sym_f32] = ACTIONS(1777), + [anon_sym_f64] = ACTIONS(1777), + [anon_sym_bool] = ACTIONS(1777), + [anon_sym_str] = ACTIONS(1777), + [anon_sym_char] = ACTIONS(1777), + [anon_sym_SQUOTE] = ACTIONS(1777), + [anon_sym_async] = ACTIONS(1777), + [anon_sym_break] = ACTIONS(1777), + [anon_sym_const] = ACTIONS(1777), + [anon_sym_continue] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1777), + [anon_sym_enum] = ACTIONS(1777), + [anon_sym_fn] = ACTIONS(1777), + [anon_sym_for] = ACTIONS(1777), + [anon_sym_if] = ACTIONS(1777), + [anon_sym_impl] = ACTIONS(1777), + [anon_sym_let] = ACTIONS(1777), + [anon_sym_loop] = ACTIONS(1777), + [anon_sym_match] = ACTIONS(1777), + [anon_sym_mod] = ACTIONS(1777), + [anon_sym_pub] = ACTIONS(1777), + [anon_sym_return] = ACTIONS(1777), + [anon_sym_static] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1777), + [anon_sym_trait] = ACTIONS(1777), + [anon_sym_type] = ACTIONS(1777), + [anon_sym_union] = ACTIONS(1777), + [anon_sym_unsafe] = ACTIONS(1777), + [anon_sym_use] = ACTIONS(1777), + [anon_sym_while] = ACTIONS(1777), + [anon_sym_POUND] = ACTIONS(1775), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_extern] = ACTIONS(1777), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_COLON_COLON] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_DOT_DOT] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(1775), + [anon_sym_yield] = ACTIONS(1777), + [anon_sym_move] = ACTIONS(1777), + [sym_integer_literal] = ACTIONS(1775), + [aux_sym_string_literal_token1] = ACTIONS(1775), + [sym_char_literal] = ACTIONS(1775), + [anon_sym_true] = ACTIONS(1777), + [anon_sym_false] = ACTIONS(1777), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1777), + [sym_super] = ACTIONS(1777), + [sym_crate] = ACTIONS(1777), + [sym_metavariable] = ACTIONS(1775), + [sym_raw_string_literal] = ACTIONS(1775), + [sym_float_literal] = ACTIONS(1775), [sym_block_comment] = ACTIONS(3), }, [412] = { - [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(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_macro_rules_BANG] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_LBRACK] = ACTIONS(1779), + [anon_sym_STAR] = ACTIONS(1779), + [anon_sym_u8] = ACTIONS(1781), + [anon_sym_i8] = ACTIONS(1781), + [anon_sym_u16] = ACTIONS(1781), + [anon_sym_i16] = ACTIONS(1781), + [anon_sym_u32] = ACTIONS(1781), + [anon_sym_i32] = ACTIONS(1781), + [anon_sym_u64] = ACTIONS(1781), + [anon_sym_i64] = ACTIONS(1781), + [anon_sym_u128] = ACTIONS(1781), + [anon_sym_i128] = ACTIONS(1781), + [anon_sym_isize] = ACTIONS(1781), + [anon_sym_usize] = ACTIONS(1781), + [anon_sym_f32] = ACTIONS(1781), + [anon_sym_f64] = ACTIONS(1781), + [anon_sym_bool] = ACTIONS(1781), + [anon_sym_str] = ACTIONS(1781), + [anon_sym_char] = ACTIONS(1781), + [anon_sym_SQUOTE] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [anon_sym_fn] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_impl] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_loop] = ACTIONS(1781), + [anon_sym_match] = ACTIONS(1781), + [anon_sym_mod] = ACTIONS(1781), + [anon_sym_pub] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_struct] = ACTIONS(1781), + [anon_sym_trait] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_union] = ACTIONS(1781), + [anon_sym_unsafe] = ACTIONS(1781), + [anon_sym_use] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(1779), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1779), + [anon_sym_COLON_COLON] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(1779), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_move] = ACTIONS(1781), + [sym_integer_literal] = ACTIONS(1779), + [aux_sym_string_literal_token1] = ACTIONS(1779), + [sym_char_literal] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1781), + [sym_super] = ACTIONS(1781), + [sym_crate] = ACTIONS(1781), + [sym_metavariable] = ACTIONS(1779), + [sym_raw_string_literal] = ACTIONS(1779), + [sym_float_literal] = ACTIONS(1779), [sym_block_comment] = ACTIONS(3), }, [413] = { - [ts_builtin_sym_end] = ACTIONS(1766), - [sym_identifier] = ACTIONS(1768), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_macro_rules_BANG] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_STAR] = ACTIONS(1766), - [anon_sym_u8] = ACTIONS(1768), - [anon_sym_i8] = ACTIONS(1768), - [anon_sym_u16] = ACTIONS(1768), - [anon_sym_i16] = ACTIONS(1768), - [anon_sym_u32] = ACTIONS(1768), - [anon_sym_i32] = ACTIONS(1768), - [anon_sym_u64] = ACTIONS(1768), - [anon_sym_i64] = ACTIONS(1768), - [anon_sym_u128] = ACTIONS(1768), - [anon_sym_i128] = ACTIONS(1768), - [anon_sym_isize] = ACTIONS(1768), - [anon_sym_usize] = ACTIONS(1768), - [anon_sym_f32] = ACTIONS(1768), - [anon_sym_f64] = ACTIONS(1768), - [anon_sym_bool] = ACTIONS(1768), - [anon_sym_str] = ACTIONS(1768), - [anon_sym_char] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_async] = ACTIONS(1768), - [anon_sym_break] = ACTIONS(1768), - [anon_sym_const] = ACTIONS(1768), - [anon_sym_continue] = ACTIONS(1768), - [anon_sym_default] = ACTIONS(1768), - [anon_sym_enum] = ACTIONS(1768), - [anon_sym_fn] = ACTIONS(1768), - [anon_sym_for] = ACTIONS(1768), - [anon_sym_if] = ACTIONS(1768), - [anon_sym_impl] = ACTIONS(1768), - [anon_sym_let] = ACTIONS(1768), - [anon_sym_loop] = ACTIONS(1768), - [anon_sym_match] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1768), - [anon_sym_pub] = ACTIONS(1768), - [anon_sym_return] = ACTIONS(1768), - [anon_sym_static] = ACTIONS(1768), - [anon_sym_struct] = ACTIONS(1768), - [anon_sym_trait] = ACTIONS(1768), - [anon_sym_type] = ACTIONS(1768), - [anon_sym_union] = ACTIONS(1768), - [anon_sym_unsafe] = ACTIONS(1768), - [anon_sym_use] = ACTIONS(1768), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_POUND] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1766), - [anon_sym_extern] = ACTIONS(1768), - [anon_sym_LT] = ACTIONS(1766), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_AMP] = ACTIONS(1766), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_yield] = ACTIONS(1768), - [anon_sym_move] = ACTIONS(1768), - [sym_integer_literal] = ACTIONS(1766), - [aux_sym_string_literal_token1] = ACTIONS(1766), - [sym_char_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1768), - [sym_super] = ACTIONS(1768), - [sym_crate] = ACTIONS(1768), - [sym_metavariable] = ACTIONS(1766), - [sym_raw_string_literal] = ACTIONS(1766), - [sym_float_literal] = ACTIONS(1766), + [ts_builtin_sym_end] = ACTIONS(1783), + [sym_identifier] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_macro_rules_BANG] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1783), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_u8] = ACTIONS(1785), + [anon_sym_i8] = ACTIONS(1785), + [anon_sym_u16] = ACTIONS(1785), + [anon_sym_i16] = ACTIONS(1785), + [anon_sym_u32] = ACTIONS(1785), + [anon_sym_i32] = ACTIONS(1785), + [anon_sym_u64] = ACTIONS(1785), + [anon_sym_i64] = ACTIONS(1785), + [anon_sym_u128] = ACTIONS(1785), + [anon_sym_i128] = ACTIONS(1785), + [anon_sym_isize] = ACTIONS(1785), + [anon_sym_usize] = ACTIONS(1785), + [anon_sym_f32] = ACTIONS(1785), + [anon_sym_f64] = ACTIONS(1785), + [anon_sym_bool] = ACTIONS(1785), + [anon_sym_str] = ACTIONS(1785), + [anon_sym_char] = ACTIONS(1785), + [anon_sym_SQUOTE] = ACTIONS(1785), + [anon_sym_async] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_default] = ACTIONS(1785), + [anon_sym_enum] = ACTIONS(1785), + [anon_sym_fn] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_impl] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_mod] = ACTIONS(1785), + [anon_sym_pub] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_static] = ACTIONS(1785), + [anon_sym_struct] = ACTIONS(1785), + [anon_sym_trait] = ACTIONS(1785), + [anon_sym_type] = ACTIONS(1785), + [anon_sym_union] = ACTIONS(1785), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(1783), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_COLON_COLON] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1783), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_yield] = ACTIONS(1785), + [anon_sym_move] = ACTIONS(1785), + [sym_integer_literal] = ACTIONS(1783), + [aux_sym_string_literal_token1] = ACTIONS(1783), + [sym_char_literal] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(1785), + [anon_sym_false] = ACTIONS(1785), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1785), + [sym_super] = ACTIONS(1785), + [sym_crate] = ACTIONS(1785), + [sym_metavariable] = ACTIONS(1783), + [sym_raw_string_literal] = ACTIONS(1783), + [sym_float_literal] = ACTIONS(1783), [sym_block_comment] = ACTIONS(3), }, [414] = { - [ts_builtin_sym_end] = ACTIONS(1770), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_macro_rules_BANG] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_u8] = ACTIONS(1772), - [anon_sym_i8] = ACTIONS(1772), - [anon_sym_u16] = ACTIONS(1772), - [anon_sym_i16] = ACTIONS(1772), - [anon_sym_u32] = ACTIONS(1772), - [anon_sym_i32] = ACTIONS(1772), - [anon_sym_u64] = ACTIONS(1772), - [anon_sym_i64] = ACTIONS(1772), - [anon_sym_u128] = ACTIONS(1772), - [anon_sym_i128] = ACTIONS(1772), - [anon_sym_isize] = ACTIONS(1772), - [anon_sym_usize] = ACTIONS(1772), - [anon_sym_f32] = ACTIONS(1772), - [anon_sym_f64] = ACTIONS(1772), - [anon_sym_bool] = ACTIONS(1772), - [anon_sym_str] = ACTIONS(1772), - [anon_sym_char] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1772), - [anon_sym_async] = ACTIONS(1772), - [anon_sym_break] = ACTIONS(1772), - [anon_sym_const] = ACTIONS(1772), - [anon_sym_continue] = ACTIONS(1772), - [anon_sym_default] = ACTIONS(1772), - [anon_sym_enum] = ACTIONS(1772), - [anon_sym_fn] = ACTIONS(1772), - [anon_sym_for] = ACTIONS(1772), - [anon_sym_if] = ACTIONS(1772), - [anon_sym_impl] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1772), - [anon_sym_loop] = ACTIONS(1772), - [anon_sym_match] = ACTIONS(1772), - [anon_sym_mod] = ACTIONS(1772), - [anon_sym_pub] = ACTIONS(1772), - [anon_sym_return] = ACTIONS(1772), - [anon_sym_static] = ACTIONS(1772), - [anon_sym_struct] = ACTIONS(1772), - [anon_sym_trait] = ACTIONS(1772), - [anon_sym_type] = ACTIONS(1772), - [anon_sym_union] = ACTIONS(1772), - [anon_sym_unsafe] = ACTIONS(1772), - [anon_sym_use] = ACTIONS(1772), - [anon_sym_while] = ACTIONS(1772), - [anon_sym_POUND] = ACTIONS(1770), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_yield] = ACTIONS(1772), - [anon_sym_move] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [aux_sym_string_literal_token1] = ACTIONS(1770), - [sym_char_literal] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1772), - [sym_super] = ACTIONS(1772), - [sym_crate] = ACTIONS(1772), - [sym_metavariable] = ACTIONS(1770), - [sym_raw_string_literal] = ACTIONS(1770), - [sym_float_literal] = ACTIONS(1770), + [ts_builtin_sym_end] = ACTIONS(1787), + [sym_identifier] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_macro_rules_BANG] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_u8] = ACTIONS(1789), + [anon_sym_i8] = ACTIONS(1789), + [anon_sym_u16] = ACTIONS(1789), + [anon_sym_i16] = ACTIONS(1789), + [anon_sym_u32] = ACTIONS(1789), + [anon_sym_i32] = ACTIONS(1789), + [anon_sym_u64] = ACTIONS(1789), + [anon_sym_i64] = ACTIONS(1789), + [anon_sym_u128] = ACTIONS(1789), + [anon_sym_i128] = ACTIONS(1789), + [anon_sym_isize] = ACTIONS(1789), + [anon_sym_usize] = ACTIONS(1789), + [anon_sym_f32] = ACTIONS(1789), + [anon_sym_f64] = ACTIONS(1789), + [anon_sym_bool] = ACTIONS(1789), + [anon_sym_str] = ACTIONS(1789), + [anon_sym_char] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_async] = ACTIONS(1789), + [anon_sym_break] = ACTIONS(1789), + [anon_sym_const] = ACTIONS(1789), + [anon_sym_continue] = ACTIONS(1789), + [anon_sym_default] = ACTIONS(1789), + [anon_sym_enum] = ACTIONS(1789), + [anon_sym_fn] = ACTIONS(1789), + [anon_sym_for] = ACTIONS(1789), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_impl] = ACTIONS(1789), + [anon_sym_let] = ACTIONS(1789), + [anon_sym_loop] = ACTIONS(1789), + [anon_sym_match] = ACTIONS(1789), + [anon_sym_mod] = ACTIONS(1789), + [anon_sym_pub] = ACTIONS(1789), + [anon_sym_return] = ACTIONS(1789), + [anon_sym_static] = ACTIONS(1789), + [anon_sym_struct] = ACTIONS(1789), + [anon_sym_trait] = ACTIONS(1789), + [anon_sym_type] = ACTIONS(1789), + [anon_sym_union] = ACTIONS(1789), + [anon_sym_unsafe] = ACTIONS(1789), + [anon_sym_use] = ACTIONS(1789), + [anon_sym_while] = ACTIONS(1789), + [anon_sym_POUND] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_COLON_COLON] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_yield] = ACTIONS(1789), + [anon_sym_move] = ACTIONS(1789), + [sym_integer_literal] = ACTIONS(1787), + [aux_sym_string_literal_token1] = ACTIONS(1787), + [sym_char_literal] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(1789), + [anon_sym_false] = ACTIONS(1789), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1789), + [sym_super] = ACTIONS(1789), + [sym_crate] = ACTIONS(1789), + [sym_metavariable] = ACTIONS(1787), + [sym_raw_string_literal] = ACTIONS(1787), + [sym_float_literal] = ACTIONS(1787), [sym_block_comment] = ACTIONS(3), }, [415] = { - [ts_builtin_sym_end] = ACTIONS(1774), - [sym_identifier] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_macro_rules_BANG] = ACTIONS(1774), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1774), - [anon_sym_RBRACE] = ACTIONS(1774), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1774), - [anon_sym_u8] = ACTIONS(1776), - [anon_sym_i8] = ACTIONS(1776), - [anon_sym_u16] = ACTIONS(1776), - [anon_sym_i16] = ACTIONS(1776), - [anon_sym_u32] = ACTIONS(1776), - [anon_sym_i32] = ACTIONS(1776), - [anon_sym_u64] = ACTIONS(1776), - [anon_sym_i64] = ACTIONS(1776), - [anon_sym_u128] = ACTIONS(1776), - [anon_sym_i128] = ACTIONS(1776), - [anon_sym_isize] = ACTIONS(1776), - [anon_sym_usize] = ACTIONS(1776), - [anon_sym_f32] = ACTIONS(1776), - [anon_sym_f64] = ACTIONS(1776), - [anon_sym_bool] = ACTIONS(1776), - [anon_sym_str] = ACTIONS(1776), - [anon_sym_char] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_async] = ACTIONS(1776), - [anon_sym_break] = ACTIONS(1776), - [anon_sym_const] = ACTIONS(1776), - [anon_sym_continue] = ACTIONS(1776), - [anon_sym_default] = ACTIONS(1776), - [anon_sym_enum] = ACTIONS(1776), - [anon_sym_fn] = ACTIONS(1776), - [anon_sym_for] = ACTIONS(1776), - [anon_sym_if] = ACTIONS(1776), - [anon_sym_impl] = ACTIONS(1776), - [anon_sym_let] = ACTIONS(1776), - [anon_sym_loop] = ACTIONS(1776), - [anon_sym_match] = ACTIONS(1776), - [anon_sym_mod] = ACTIONS(1776), - [anon_sym_pub] = ACTIONS(1776), - [anon_sym_return] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1776), - [anon_sym_struct] = ACTIONS(1776), - [anon_sym_trait] = ACTIONS(1776), - [anon_sym_type] = ACTIONS(1776), - [anon_sym_union] = ACTIONS(1776), - [anon_sym_unsafe] = ACTIONS(1776), - [anon_sym_use] = ACTIONS(1776), - [anon_sym_while] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(1774), - [anon_sym_BANG] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1776), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_COLON_COLON] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1774), - [anon_sym_DOT_DOT] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_yield] = ACTIONS(1776), - [anon_sym_move] = ACTIONS(1776), - [sym_integer_literal] = ACTIONS(1774), - [aux_sym_string_literal_token1] = ACTIONS(1774), - [sym_char_literal] = ACTIONS(1774), - [anon_sym_true] = ACTIONS(1776), - [anon_sym_false] = ACTIONS(1776), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1776), - [sym_super] = ACTIONS(1776), - [sym_crate] = ACTIONS(1776), - [sym_metavariable] = ACTIONS(1774), - [sym_raw_string_literal] = ACTIONS(1774), - [sym_float_literal] = ACTIONS(1774), + [ts_builtin_sym_end] = ACTIONS(1791), + [sym_identifier] = ACTIONS(1793), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_macro_rules_BANG] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_RBRACE] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1791), + [anon_sym_u8] = ACTIONS(1793), + [anon_sym_i8] = ACTIONS(1793), + [anon_sym_u16] = ACTIONS(1793), + [anon_sym_i16] = ACTIONS(1793), + [anon_sym_u32] = ACTIONS(1793), + [anon_sym_i32] = ACTIONS(1793), + [anon_sym_u64] = ACTIONS(1793), + [anon_sym_i64] = ACTIONS(1793), + [anon_sym_u128] = ACTIONS(1793), + [anon_sym_i128] = ACTIONS(1793), + [anon_sym_isize] = ACTIONS(1793), + [anon_sym_usize] = ACTIONS(1793), + [anon_sym_f32] = ACTIONS(1793), + [anon_sym_f64] = ACTIONS(1793), + [anon_sym_bool] = ACTIONS(1793), + [anon_sym_str] = ACTIONS(1793), + [anon_sym_char] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1793), + [anon_sym_async] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_continue] = ACTIONS(1793), + [anon_sym_default] = ACTIONS(1793), + [anon_sym_enum] = ACTIONS(1793), + [anon_sym_fn] = ACTIONS(1793), + [anon_sym_for] = ACTIONS(1793), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_impl] = ACTIONS(1793), + [anon_sym_let] = ACTIONS(1793), + [anon_sym_loop] = ACTIONS(1793), + [anon_sym_match] = ACTIONS(1793), + [anon_sym_mod] = ACTIONS(1793), + [anon_sym_pub] = ACTIONS(1793), + [anon_sym_return] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1793), + [anon_sym_struct] = ACTIONS(1793), + [anon_sym_trait] = ACTIONS(1793), + [anon_sym_type] = ACTIONS(1793), + [anon_sym_union] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1793), + [anon_sym_use] = ACTIONS(1793), + [anon_sym_while] = ACTIONS(1793), + [anon_sym_POUND] = ACTIONS(1791), + [anon_sym_BANG] = ACTIONS(1791), + [anon_sym_extern] = ACTIONS(1793), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_COLON_COLON] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_move] = ACTIONS(1793), + [sym_integer_literal] = ACTIONS(1791), + [aux_sym_string_literal_token1] = ACTIONS(1791), + [sym_char_literal] = ACTIONS(1791), + [anon_sym_true] = ACTIONS(1793), + [anon_sym_false] = ACTIONS(1793), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1793), + [sym_super] = ACTIONS(1793), + [sym_crate] = ACTIONS(1793), + [sym_metavariable] = ACTIONS(1791), + [sym_raw_string_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), [sym_block_comment] = ACTIONS(3), }, [416] = { - [ts_builtin_sym_end] = ACTIONS(1778), - [sym_identifier] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym_macro_rules_BANG] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_u8] = ACTIONS(1780), - [anon_sym_i8] = ACTIONS(1780), - [anon_sym_u16] = ACTIONS(1780), - [anon_sym_i16] = ACTIONS(1780), - [anon_sym_u32] = ACTIONS(1780), - [anon_sym_i32] = ACTIONS(1780), - [anon_sym_u64] = ACTIONS(1780), - [anon_sym_i64] = ACTIONS(1780), - [anon_sym_u128] = ACTIONS(1780), - [anon_sym_i128] = ACTIONS(1780), - [anon_sym_isize] = ACTIONS(1780), - [anon_sym_usize] = ACTIONS(1780), - [anon_sym_f32] = ACTIONS(1780), - [anon_sym_f64] = ACTIONS(1780), - [anon_sym_bool] = ACTIONS(1780), - [anon_sym_str] = ACTIONS(1780), - [anon_sym_char] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1780), - [anon_sym_async] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_const] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_default] = ACTIONS(1780), - [anon_sym_enum] = ACTIONS(1780), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_impl] = ACTIONS(1780), - [anon_sym_let] = ACTIONS(1780), - [anon_sym_loop] = ACTIONS(1780), - [anon_sym_match] = ACTIONS(1780), - [anon_sym_mod] = ACTIONS(1780), - [anon_sym_pub] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_static] = ACTIONS(1780), - [anon_sym_struct] = ACTIONS(1780), - [anon_sym_trait] = ACTIONS(1780), - [anon_sym_type] = ACTIONS(1780), - [anon_sym_union] = ACTIONS(1780), - [anon_sym_unsafe] = ACTIONS(1780), - [anon_sym_use] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_yield] = ACTIONS(1780), - [anon_sym_move] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [aux_sym_string_literal_token1] = ACTIONS(1778), - [sym_char_literal] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1780), - [sym_super] = ACTIONS(1780), - [sym_crate] = ACTIONS(1780), - [sym_metavariable] = ACTIONS(1778), - [sym_raw_string_literal] = ACTIONS(1778), - [sym_float_literal] = ACTIONS(1778), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SEMI] = ACTIONS(1795), + [anon_sym_macro_rules_BANG] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_u8] = ACTIONS(1797), + [anon_sym_i8] = ACTIONS(1797), + [anon_sym_u16] = ACTIONS(1797), + [anon_sym_i16] = ACTIONS(1797), + [anon_sym_u32] = ACTIONS(1797), + [anon_sym_i32] = ACTIONS(1797), + [anon_sym_u64] = ACTIONS(1797), + [anon_sym_i64] = ACTIONS(1797), + [anon_sym_u128] = ACTIONS(1797), + [anon_sym_i128] = ACTIONS(1797), + [anon_sym_isize] = ACTIONS(1797), + [anon_sym_usize] = ACTIONS(1797), + [anon_sym_f32] = ACTIONS(1797), + [anon_sym_f64] = ACTIONS(1797), + [anon_sym_bool] = ACTIONS(1797), + [anon_sym_str] = ACTIONS(1797), + [anon_sym_char] = ACTIONS(1797), + [anon_sym_SQUOTE] = ACTIONS(1797), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_default] = ACTIONS(1797), + [anon_sym_enum] = ACTIONS(1797), + [anon_sym_fn] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_impl] = ACTIONS(1797), + [anon_sym_let] = ACTIONS(1797), + [anon_sym_loop] = ACTIONS(1797), + [anon_sym_match] = ACTIONS(1797), + [anon_sym_mod] = ACTIONS(1797), + [anon_sym_pub] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1797), + [anon_sym_struct] = ACTIONS(1797), + [anon_sym_trait] = ACTIONS(1797), + [anon_sym_type] = ACTIONS(1797), + [anon_sym_union] = ACTIONS(1797), + [anon_sym_unsafe] = ACTIONS(1797), + [anon_sym_use] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(1795), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_extern] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1795), + [anon_sym_COLON_COLON] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_DOT_DOT] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_PIPE] = ACTIONS(1795), + [anon_sym_yield] = ACTIONS(1797), + [anon_sym_move] = ACTIONS(1797), + [sym_integer_literal] = ACTIONS(1795), + [aux_sym_string_literal_token1] = ACTIONS(1795), + [sym_char_literal] = ACTIONS(1795), + [anon_sym_true] = ACTIONS(1797), + [anon_sym_false] = ACTIONS(1797), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1797), + [sym_super] = ACTIONS(1797), + [sym_crate] = ACTIONS(1797), + [sym_metavariable] = ACTIONS(1795), + [sym_raw_string_literal] = ACTIONS(1795), + [sym_float_literal] = ACTIONS(1795), [sym_block_comment] = ACTIONS(3), }, [417] = { - [ts_builtin_sym_end] = ACTIONS(1782), - [sym_identifier] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_macro_rules_BANG] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1784), - [anon_sym_async] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_enum] = ACTIONS(1784), - [anon_sym_fn] = ACTIONS(1784), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_impl] = ACTIONS(1784), - [anon_sym_let] = ACTIONS(1784), - [anon_sym_loop] = ACTIONS(1784), - [anon_sym_match] = ACTIONS(1784), - [anon_sym_mod] = ACTIONS(1784), - [anon_sym_pub] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_static] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1784), - [anon_sym_trait] = ACTIONS(1784), - [anon_sym_type] = ACTIONS(1784), - [anon_sym_union] = ACTIONS(1784), - [anon_sym_unsafe] = ACTIONS(1784), - [anon_sym_use] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1782), - [anon_sym_extern] = ACTIONS(1784), - [anon_sym_LT] = ACTIONS(1782), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1782), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_yield] = ACTIONS(1784), - [anon_sym_move] = ACTIONS(1784), - [sym_integer_literal] = ACTIONS(1782), - [aux_sym_string_literal_token1] = ACTIONS(1782), - [sym_char_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1784), - [sym_super] = ACTIONS(1784), - [sym_crate] = ACTIONS(1784), - [sym_metavariable] = ACTIONS(1782), - [sym_raw_string_literal] = ACTIONS(1782), - [sym_float_literal] = ACTIONS(1782), + [ts_builtin_sym_end] = ACTIONS(1799), + [sym_identifier] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1799), + [anon_sym_macro_rules_BANG] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1799), + [anon_sym_u8] = ACTIONS(1801), + [anon_sym_i8] = ACTIONS(1801), + [anon_sym_u16] = ACTIONS(1801), + [anon_sym_i16] = ACTIONS(1801), + [anon_sym_u32] = ACTIONS(1801), + [anon_sym_i32] = ACTIONS(1801), + [anon_sym_u64] = ACTIONS(1801), + [anon_sym_i64] = ACTIONS(1801), + [anon_sym_u128] = ACTIONS(1801), + [anon_sym_i128] = ACTIONS(1801), + [anon_sym_isize] = ACTIONS(1801), + [anon_sym_usize] = ACTIONS(1801), + [anon_sym_f32] = ACTIONS(1801), + [anon_sym_f64] = ACTIONS(1801), + [anon_sym_bool] = ACTIONS(1801), + [anon_sym_str] = ACTIONS(1801), + [anon_sym_char] = ACTIONS(1801), + [anon_sym_SQUOTE] = ACTIONS(1801), + [anon_sym_async] = ACTIONS(1801), + [anon_sym_break] = ACTIONS(1801), + [anon_sym_const] = ACTIONS(1801), + [anon_sym_continue] = ACTIONS(1801), + [anon_sym_default] = ACTIONS(1801), + [anon_sym_enum] = ACTIONS(1801), + [anon_sym_fn] = ACTIONS(1801), + [anon_sym_for] = ACTIONS(1801), + [anon_sym_if] = ACTIONS(1801), + [anon_sym_impl] = ACTIONS(1801), + [anon_sym_let] = ACTIONS(1801), + [anon_sym_loop] = ACTIONS(1801), + [anon_sym_match] = ACTIONS(1801), + [anon_sym_mod] = ACTIONS(1801), + [anon_sym_pub] = ACTIONS(1801), + [anon_sym_return] = ACTIONS(1801), + [anon_sym_static] = ACTIONS(1801), + [anon_sym_struct] = ACTIONS(1801), + [anon_sym_trait] = ACTIONS(1801), + [anon_sym_type] = ACTIONS(1801), + [anon_sym_union] = ACTIONS(1801), + [anon_sym_unsafe] = ACTIONS(1801), + [anon_sym_use] = ACTIONS(1801), + [anon_sym_while] = ACTIONS(1801), + [anon_sym_POUND] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1799), + [anon_sym_COLON_COLON] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_yield] = ACTIONS(1801), + [anon_sym_move] = ACTIONS(1801), + [sym_integer_literal] = ACTIONS(1799), + [aux_sym_string_literal_token1] = ACTIONS(1799), + [sym_char_literal] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1801), + [sym_super] = ACTIONS(1801), + [sym_crate] = ACTIONS(1801), + [sym_metavariable] = ACTIONS(1799), + [sym_raw_string_literal] = ACTIONS(1799), + [sym_float_literal] = ACTIONS(1799), [sym_block_comment] = ACTIONS(3), }, [418] = { - [ts_builtin_sym_end] = ACTIONS(1786), - [sym_identifier] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_macro_rules_BANG] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_u8] = ACTIONS(1788), - [anon_sym_i8] = ACTIONS(1788), - [anon_sym_u16] = ACTIONS(1788), - [anon_sym_i16] = ACTIONS(1788), - [anon_sym_u32] = ACTIONS(1788), - [anon_sym_i32] = ACTIONS(1788), - [anon_sym_u64] = ACTIONS(1788), - [anon_sym_i64] = ACTIONS(1788), - [anon_sym_u128] = ACTIONS(1788), - [anon_sym_i128] = ACTIONS(1788), - [anon_sym_isize] = ACTIONS(1788), - [anon_sym_usize] = ACTIONS(1788), - [anon_sym_f32] = ACTIONS(1788), - [anon_sym_f64] = ACTIONS(1788), - [anon_sym_bool] = ACTIONS(1788), - [anon_sym_str] = ACTIONS(1788), - [anon_sym_char] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_default] = ACTIONS(1788), - [anon_sym_enum] = ACTIONS(1788), - [anon_sym_fn] = ACTIONS(1788), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_impl] = ACTIONS(1788), - [anon_sym_let] = ACTIONS(1788), - [anon_sym_loop] = ACTIONS(1788), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_mod] = ACTIONS(1788), - [anon_sym_pub] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_struct] = ACTIONS(1788), - [anon_sym_trait] = ACTIONS(1788), - [anon_sym_type] = ACTIONS(1788), - [anon_sym_union] = ACTIONS(1788), - [anon_sym_unsafe] = ACTIONS(1788), - [anon_sym_use] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_LT] = ACTIONS(1786), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_yield] = ACTIONS(1788), - [anon_sym_move] = ACTIONS(1788), - [sym_integer_literal] = ACTIONS(1786), - [aux_sym_string_literal_token1] = ACTIONS(1786), - [sym_char_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1788), - [anon_sym_false] = ACTIONS(1788), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1788), - [sym_super] = ACTIONS(1788), - [sym_crate] = ACTIONS(1788), - [sym_metavariable] = ACTIONS(1786), - [sym_raw_string_literal] = ACTIONS(1786), - [sym_float_literal] = ACTIONS(1786), + [ts_builtin_sym_end] = ACTIONS(1803), + [sym_identifier] = ACTIONS(1805), + [anon_sym_SEMI] = ACTIONS(1803), + [anon_sym_macro_rules_BANG] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_RBRACE] = ACTIONS(1803), + [anon_sym_LBRACK] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_u8] = ACTIONS(1805), + [anon_sym_i8] = ACTIONS(1805), + [anon_sym_u16] = ACTIONS(1805), + [anon_sym_i16] = ACTIONS(1805), + [anon_sym_u32] = ACTIONS(1805), + [anon_sym_i32] = ACTIONS(1805), + [anon_sym_u64] = ACTIONS(1805), + [anon_sym_i64] = ACTIONS(1805), + [anon_sym_u128] = ACTIONS(1805), + [anon_sym_i128] = ACTIONS(1805), + [anon_sym_isize] = ACTIONS(1805), + [anon_sym_usize] = ACTIONS(1805), + [anon_sym_f32] = ACTIONS(1805), + [anon_sym_f64] = ACTIONS(1805), + [anon_sym_bool] = ACTIONS(1805), + [anon_sym_str] = ACTIONS(1805), + [anon_sym_char] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1805), + [anon_sym_async] = ACTIONS(1805), + [anon_sym_break] = ACTIONS(1805), + [anon_sym_const] = ACTIONS(1805), + [anon_sym_continue] = ACTIONS(1805), + [anon_sym_default] = ACTIONS(1805), + [anon_sym_enum] = ACTIONS(1805), + [anon_sym_fn] = ACTIONS(1805), + [anon_sym_for] = ACTIONS(1805), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_impl] = ACTIONS(1805), + [anon_sym_let] = ACTIONS(1805), + [anon_sym_loop] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [anon_sym_mod] = ACTIONS(1805), + [anon_sym_pub] = ACTIONS(1805), + [anon_sym_return] = ACTIONS(1805), + [anon_sym_static] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1805), + [anon_sym_trait] = ACTIONS(1805), + [anon_sym_type] = ACTIONS(1805), + [anon_sym_union] = ACTIONS(1805), + [anon_sym_unsafe] = ACTIONS(1805), + [anon_sym_use] = ACTIONS(1805), + [anon_sym_while] = ACTIONS(1805), + [anon_sym_POUND] = ACTIONS(1803), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_extern] = ACTIONS(1805), + [anon_sym_LT] = ACTIONS(1803), + [anon_sym_COLON_COLON] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_PIPE] = ACTIONS(1803), + [anon_sym_yield] = ACTIONS(1805), + [anon_sym_move] = ACTIONS(1805), + [sym_integer_literal] = ACTIONS(1803), + [aux_sym_string_literal_token1] = ACTIONS(1803), + [sym_char_literal] = ACTIONS(1803), + [anon_sym_true] = ACTIONS(1805), + [anon_sym_false] = ACTIONS(1805), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1805), + [sym_super] = ACTIONS(1805), + [sym_crate] = ACTIONS(1805), + [sym_metavariable] = ACTIONS(1803), + [sym_raw_string_literal] = ACTIONS(1803), + [sym_float_literal] = ACTIONS(1803), [sym_block_comment] = ACTIONS(3), }, [419] = { - [ts_builtin_sym_end] = ACTIONS(1790), - [sym_identifier] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_macro_rules_BANG] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_u8] = ACTIONS(1792), - [anon_sym_i8] = ACTIONS(1792), - [anon_sym_u16] = ACTIONS(1792), - [anon_sym_i16] = ACTIONS(1792), - [anon_sym_u32] = ACTIONS(1792), - [anon_sym_i32] = ACTIONS(1792), - [anon_sym_u64] = ACTIONS(1792), - [anon_sym_i64] = ACTIONS(1792), - [anon_sym_u128] = ACTIONS(1792), - [anon_sym_i128] = ACTIONS(1792), - [anon_sym_isize] = ACTIONS(1792), - [anon_sym_usize] = ACTIONS(1792), - [anon_sym_f32] = ACTIONS(1792), - [anon_sym_f64] = ACTIONS(1792), - [anon_sym_bool] = ACTIONS(1792), - [anon_sym_str] = ACTIONS(1792), - [anon_sym_char] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_async] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1792), - [anon_sym_enum] = ACTIONS(1792), - [anon_sym_fn] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_impl] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1792), - [anon_sym_loop] = ACTIONS(1792), - [anon_sym_match] = ACTIONS(1792), - [anon_sym_mod] = ACTIONS(1792), - [anon_sym_pub] = ACTIONS(1792), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1792), - [anon_sym_struct] = ACTIONS(1792), - [anon_sym_trait] = ACTIONS(1792), - [anon_sym_type] = ACTIONS(1792), - [anon_sym_union] = ACTIONS(1792), - [anon_sym_unsafe] = ACTIONS(1792), - [anon_sym_use] = ACTIONS(1792), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_AMP] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_yield] = ACTIONS(1792), - [anon_sym_move] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [aux_sym_string_literal_token1] = ACTIONS(1790), - [sym_char_literal] = ACTIONS(1790), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1792), - [sym_super] = ACTIONS(1792), - [sym_crate] = ACTIONS(1792), - [sym_metavariable] = ACTIONS(1790), - [sym_raw_string_literal] = ACTIONS(1790), - [sym_float_literal] = ACTIONS(1790), + [ts_builtin_sym_end] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_macro_rules_BANG] = ACTIONS(1807), + [anon_sym_LPAREN] = ACTIONS(1807), + [anon_sym_LBRACE] = ACTIONS(1807), + [anon_sym_RBRACE] = ACTIONS(1807), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_u8] = ACTIONS(1809), + [anon_sym_i8] = ACTIONS(1809), + [anon_sym_u16] = ACTIONS(1809), + [anon_sym_i16] = ACTIONS(1809), + [anon_sym_u32] = ACTIONS(1809), + [anon_sym_i32] = ACTIONS(1809), + [anon_sym_u64] = ACTIONS(1809), + [anon_sym_i64] = ACTIONS(1809), + [anon_sym_u128] = ACTIONS(1809), + [anon_sym_i128] = ACTIONS(1809), + [anon_sym_isize] = ACTIONS(1809), + [anon_sym_usize] = ACTIONS(1809), + [anon_sym_f32] = ACTIONS(1809), + [anon_sym_f64] = ACTIONS(1809), + [anon_sym_bool] = ACTIONS(1809), + [anon_sym_str] = ACTIONS(1809), + [anon_sym_char] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_async] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_default] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_impl] = ACTIONS(1809), + [anon_sym_let] = ACTIONS(1809), + [anon_sym_loop] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_mod] = ACTIONS(1809), + [anon_sym_pub] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_static] = ACTIONS(1809), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_trait] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_use] = ACTIONS(1809), + [anon_sym_while] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1807), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_extern] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1807), + [anon_sym_COLON_COLON] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym_DOT_DOT] = ACTIONS(1807), + [anon_sym_DASH] = ACTIONS(1807), + [anon_sym_PIPE] = ACTIONS(1807), + [anon_sym_yield] = ACTIONS(1809), + [anon_sym_move] = ACTIONS(1809), + [sym_integer_literal] = ACTIONS(1807), + [aux_sym_string_literal_token1] = ACTIONS(1807), + [sym_char_literal] = ACTIONS(1807), + [anon_sym_true] = ACTIONS(1809), + [anon_sym_false] = ACTIONS(1809), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1809), + [sym_super] = ACTIONS(1809), + [sym_crate] = ACTIONS(1809), + [sym_metavariable] = ACTIONS(1807), + [sym_raw_string_literal] = ACTIONS(1807), + [sym_float_literal] = ACTIONS(1807), [sym_block_comment] = ACTIONS(3), }, [420] = { - [ts_builtin_sym_end] = ACTIONS(1794), - [sym_identifier] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_macro_rules_BANG] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_async] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_default] = ACTIONS(1796), - [anon_sym_enum] = ACTIONS(1796), - [anon_sym_fn] = ACTIONS(1796), - [anon_sym_for] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_impl] = ACTIONS(1796), - [anon_sym_let] = ACTIONS(1796), - [anon_sym_loop] = ACTIONS(1796), - [anon_sym_match] = ACTIONS(1796), - [anon_sym_mod] = ACTIONS(1796), - [anon_sym_pub] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1796), - [anon_sym_struct] = ACTIONS(1796), - [anon_sym_trait] = ACTIONS(1796), - [anon_sym_type] = ACTIONS(1796), - [anon_sym_union] = ACTIONS(1796), - [anon_sym_unsafe] = ACTIONS(1796), - [anon_sym_use] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_POUND] = ACTIONS(1794), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1796), - [anon_sym_LT] = ACTIONS(1794), - [anon_sym_COLON_COLON] = ACTIONS(1794), - [anon_sym_AMP] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_yield] = ACTIONS(1796), - [anon_sym_move] = ACTIONS(1796), - [sym_integer_literal] = ACTIONS(1794), - [aux_sym_string_literal_token1] = ACTIONS(1794), - [sym_char_literal] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1794), - [sym_raw_string_literal] = ACTIONS(1794), - [sym_float_literal] = ACTIONS(1794), + [ts_builtin_sym_end] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1811), + [anon_sym_macro_rules_BANG] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_RBRACE] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_u8] = ACTIONS(1813), + [anon_sym_i8] = ACTIONS(1813), + [anon_sym_u16] = ACTIONS(1813), + [anon_sym_i16] = ACTIONS(1813), + [anon_sym_u32] = ACTIONS(1813), + [anon_sym_i32] = ACTIONS(1813), + [anon_sym_u64] = ACTIONS(1813), + [anon_sym_i64] = ACTIONS(1813), + [anon_sym_u128] = ACTIONS(1813), + [anon_sym_i128] = ACTIONS(1813), + [anon_sym_isize] = ACTIONS(1813), + [anon_sym_usize] = ACTIONS(1813), + [anon_sym_f32] = ACTIONS(1813), + [anon_sym_f64] = ACTIONS(1813), + [anon_sym_bool] = ACTIONS(1813), + [anon_sym_str] = ACTIONS(1813), + [anon_sym_char] = ACTIONS(1813), + [anon_sym_SQUOTE] = ACTIONS(1813), + [anon_sym_async] = ACTIONS(1813), + [anon_sym_break] = ACTIONS(1813), + [anon_sym_const] = ACTIONS(1813), + [anon_sym_continue] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(1813), + [anon_sym_enum] = ACTIONS(1813), + [anon_sym_fn] = ACTIONS(1813), + [anon_sym_for] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_impl] = ACTIONS(1813), + [anon_sym_let] = ACTIONS(1813), + [anon_sym_loop] = ACTIONS(1813), + [anon_sym_match] = ACTIONS(1813), + [anon_sym_mod] = ACTIONS(1813), + [anon_sym_pub] = ACTIONS(1813), + [anon_sym_return] = ACTIONS(1813), + [anon_sym_static] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1813), + [anon_sym_trait] = ACTIONS(1813), + [anon_sym_type] = ACTIONS(1813), + [anon_sym_union] = ACTIONS(1813), + [anon_sym_unsafe] = ACTIONS(1813), + [anon_sym_use] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(1813), + [anon_sym_POUND] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1811), + [anon_sym_COLON_COLON] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_DOT_DOT] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_PIPE] = ACTIONS(1811), + [anon_sym_yield] = ACTIONS(1813), + [anon_sym_move] = ACTIONS(1813), + [sym_integer_literal] = ACTIONS(1811), + [aux_sym_string_literal_token1] = ACTIONS(1811), + [sym_char_literal] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(1813), + [anon_sym_false] = ACTIONS(1813), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1813), + [sym_super] = ACTIONS(1813), + [sym_crate] = ACTIONS(1813), + [sym_metavariable] = ACTIONS(1811), + [sym_raw_string_literal] = ACTIONS(1811), + [sym_float_literal] = ACTIONS(1811), [sym_block_comment] = ACTIONS(3), }, [421] = { - [ts_builtin_sym_end] = ACTIONS(1798), - [sym_identifier] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_macro_rules_BANG] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_u8] = ACTIONS(1800), - [anon_sym_i8] = ACTIONS(1800), - [anon_sym_u16] = ACTIONS(1800), - [anon_sym_i16] = ACTIONS(1800), - [anon_sym_u32] = ACTIONS(1800), - [anon_sym_i32] = ACTIONS(1800), - [anon_sym_u64] = ACTIONS(1800), - [anon_sym_i64] = ACTIONS(1800), - [anon_sym_u128] = ACTIONS(1800), - [anon_sym_i128] = ACTIONS(1800), - [anon_sym_isize] = ACTIONS(1800), - [anon_sym_usize] = ACTIONS(1800), - [anon_sym_f32] = ACTIONS(1800), - [anon_sym_f64] = ACTIONS(1800), - [anon_sym_bool] = ACTIONS(1800), - [anon_sym_str] = ACTIONS(1800), - [anon_sym_char] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_async] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_default] = ACTIONS(1800), - [anon_sym_enum] = ACTIONS(1800), - [anon_sym_fn] = ACTIONS(1800), - [anon_sym_for] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_impl] = ACTIONS(1800), - [anon_sym_let] = ACTIONS(1800), - [anon_sym_loop] = ACTIONS(1800), - [anon_sym_match] = ACTIONS(1800), - [anon_sym_mod] = ACTIONS(1800), - [anon_sym_pub] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1800), - [anon_sym_struct] = ACTIONS(1800), - [anon_sym_trait] = ACTIONS(1800), - [anon_sym_type] = ACTIONS(1800), - [anon_sym_union] = ACTIONS(1800), - [anon_sym_unsafe] = ACTIONS(1800), - [anon_sym_use] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1800), - [anon_sym_LT] = ACTIONS(1798), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_yield] = ACTIONS(1800), - [anon_sym_move] = ACTIONS(1800), - [sym_integer_literal] = ACTIONS(1798), - [aux_sym_string_literal_token1] = ACTIONS(1798), - [sym_char_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1800), - [sym_super] = ACTIONS(1800), - [sym_crate] = ACTIONS(1800), - [sym_metavariable] = ACTIONS(1798), - [sym_raw_string_literal] = ACTIONS(1798), - [sym_float_literal] = ACTIONS(1798), + [ts_builtin_sym_end] = ACTIONS(1815), + [sym_identifier] = ACTIONS(1817), + [anon_sym_SEMI] = ACTIONS(1815), + [anon_sym_macro_rules_BANG] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_LBRACE] = ACTIONS(1815), + [anon_sym_RBRACE] = ACTIONS(1815), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_u8] = ACTIONS(1817), + [anon_sym_i8] = ACTIONS(1817), + [anon_sym_u16] = ACTIONS(1817), + [anon_sym_i16] = ACTIONS(1817), + [anon_sym_u32] = ACTIONS(1817), + [anon_sym_i32] = ACTIONS(1817), + [anon_sym_u64] = ACTIONS(1817), + [anon_sym_i64] = ACTIONS(1817), + [anon_sym_u128] = ACTIONS(1817), + [anon_sym_i128] = ACTIONS(1817), + [anon_sym_isize] = ACTIONS(1817), + [anon_sym_usize] = ACTIONS(1817), + [anon_sym_f32] = ACTIONS(1817), + [anon_sym_f64] = ACTIONS(1817), + [anon_sym_bool] = ACTIONS(1817), + [anon_sym_str] = ACTIONS(1817), + [anon_sym_char] = ACTIONS(1817), + [anon_sym_SQUOTE] = ACTIONS(1817), + [anon_sym_async] = ACTIONS(1817), + [anon_sym_break] = ACTIONS(1817), + [anon_sym_const] = ACTIONS(1817), + [anon_sym_continue] = ACTIONS(1817), + [anon_sym_default] = ACTIONS(1817), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_fn] = ACTIONS(1817), + [anon_sym_for] = ACTIONS(1817), + [anon_sym_if] = ACTIONS(1817), + [anon_sym_impl] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_loop] = ACTIONS(1817), + [anon_sym_match] = ACTIONS(1817), + [anon_sym_mod] = ACTIONS(1817), + [anon_sym_pub] = ACTIONS(1817), + [anon_sym_return] = ACTIONS(1817), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_struct] = ACTIONS(1817), + [anon_sym_trait] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_union] = ACTIONS(1817), + [anon_sym_unsafe] = ACTIONS(1817), + [anon_sym_use] = ACTIONS(1817), + [anon_sym_while] = ACTIONS(1817), + [anon_sym_POUND] = ACTIONS(1815), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_extern] = ACTIONS(1817), + [anon_sym_LT] = ACTIONS(1815), + [anon_sym_COLON_COLON] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_DOT_DOT] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_PIPE] = ACTIONS(1815), + [anon_sym_yield] = ACTIONS(1817), + [anon_sym_move] = ACTIONS(1817), + [sym_integer_literal] = ACTIONS(1815), + [aux_sym_string_literal_token1] = ACTIONS(1815), + [sym_char_literal] = ACTIONS(1815), + [anon_sym_true] = ACTIONS(1817), + [anon_sym_false] = ACTIONS(1817), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1817), + [sym_super] = ACTIONS(1817), + [sym_crate] = ACTIONS(1817), + [sym_metavariable] = ACTIONS(1815), + [sym_raw_string_literal] = ACTIONS(1815), + [sym_float_literal] = ACTIONS(1815), [sym_block_comment] = ACTIONS(3), }, [422] = { - [ts_builtin_sym_end] = ACTIONS(1802), - [sym_identifier] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_macro_rules_BANG] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_u8] = ACTIONS(1804), - [anon_sym_i8] = ACTIONS(1804), - [anon_sym_u16] = ACTIONS(1804), - [anon_sym_i16] = ACTIONS(1804), - [anon_sym_u32] = ACTIONS(1804), - [anon_sym_i32] = ACTIONS(1804), - [anon_sym_u64] = ACTIONS(1804), - [anon_sym_i64] = ACTIONS(1804), - [anon_sym_u128] = ACTIONS(1804), - [anon_sym_i128] = ACTIONS(1804), - [anon_sym_isize] = ACTIONS(1804), - [anon_sym_usize] = ACTIONS(1804), - [anon_sym_f32] = ACTIONS(1804), - [anon_sym_f64] = ACTIONS(1804), - [anon_sym_bool] = ACTIONS(1804), - [anon_sym_str] = ACTIONS(1804), - [anon_sym_char] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_async] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_enum] = ACTIONS(1804), - [anon_sym_fn] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_impl] = ACTIONS(1804), - [anon_sym_let] = ACTIONS(1804), - [anon_sym_loop] = ACTIONS(1804), - [anon_sym_match] = ACTIONS(1804), - [anon_sym_mod] = ACTIONS(1804), - [anon_sym_pub] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1804), - [anon_sym_struct] = ACTIONS(1804), - [anon_sym_trait] = ACTIONS(1804), - [anon_sym_type] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_unsafe] = ACTIONS(1804), - [anon_sym_use] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_LT] = ACTIONS(1802), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_yield] = ACTIONS(1804), - [anon_sym_move] = ACTIONS(1804), - [sym_integer_literal] = ACTIONS(1802), - [aux_sym_string_literal_token1] = ACTIONS(1802), - [sym_char_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1804), - [sym_super] = ACTIONS(1804), - [sym_crate] = ACTIONS(1804), - [sym_metavariable] = ACTIONS(1802), - [sym_raw_string_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1802), + [ts_builtin_sym_end] = ACTIONS(1819), + [sym_identifier] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_macro_rules_BANG] = ACTIONS(1819), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1819), + [anon_sym_RBRACE] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(1819), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_u8] = ACTIONS(1821), + [anon_sym_i8] = ACTIONS(1821), + [anon_sym_u16] = ACTIONS(1821), + [anon_sym_i16] = ACTIONS(1821), + [anon_sym_u32] = ACTIONS(1821), + [anon_sym_i32] = ACTIONS(1821), + [anon_sym_u64] = ACTIONS(1821), + [anon_sym_i64] = ACTIONS(1821), + [anon_sym_u128] = ACTIONS(1821), + [anon_sym_i128] = ACTIONS(1821), + [anon_sym_isize] = ACTIONS(1821), + [anon_sym_usize] = ACTIONS(1821), + [anon_sym_f32] = ACTIONS(1821), + [anon_sym_f64] = ACTIONS(1821), + [anon_sym_bool] = ACTIONS(1821), + [anon_sym_str] = ACTIONS(1821), + [anon_sym_char] = ACTIONS(1821), + [anon_sym_SQUOTE] = ACTIONS(1821), + [anon_sym_async] = ACTIONS(1821), + [anon_sym_break] = ACTIONS(1821), + [anon_sym_const] = ACTIONS(1821), + [anon_sym_continue] = ACTIONS(1821), + [anon_sym_default] = ACTIONS(1821), + [anon_sym_enum] = ACTIONS(1821), + [anon_sym_fn] = ACTIONS(1821), + [anon_sym_for] = ACTIONS(1821), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_impl] = ACTIONS(1821), + [anon_sym_let] = ACTIONS(1821), + [anon_sym_loop] = ACTIONS(1821), + [anon_sym_match] = ACTIONS(1821), + [anon_sym_mod] = ACTIONS(1821), + [anon_sym_pub] = ACTIONS(1821), + [anon_sym_return] = ACTIONS(1821), + [anon_sym_static] = ACTIONS(1821), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_trait] = ACTIONS(1821), + [anon_sym_type] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1821), + [anon_sym_use] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(1821), + [anon_sym_POUND] = ACTIONS(1819), + [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_extern] = ACTIONS(1821), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_COLON_COLON] = ACTIONS(1819), + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1819), + [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_PIPE] = ACTIONS(1819), + [anon_sym_yield] = ACTIONS(1821), + [anon_sym_move] = ACTIONS(1821), + [sym_integer_literal] = ACTIONS(1819), + [aux_sym_string_literal_token1] = ACTIONS(1819), + [sym_char_literal] = ACTIONS(1819), + [anon_sym_true] = ACTIONS(1821), + [anon_sym_false] = ACTIONS(1821), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1821), + [sym_super] = ACTIONS(1821), + [sym_crate] = ACTIONS(1821), + [sym_metavariable] = ACTIONS(1819), + [sym_raw_string_literal] = ACTIONS(1819), + [sym_float_literal] = ACTIONS(1819), [sym_block_comment] = ACTIONS(3), }, [423] = { - [ts_builtin_sym_end] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_macro_rules_BANG] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_u8] = ACTIONS(1808), - [anon_sym_i8] = ACTIONS(1808), - [anon_sym_u16] = ACTIONS(1808), - [anon_sym_i16] = ACTIONS(1808), - [anon_sym_u32] = ACTIONS(1808), - [anon_sym_i32] = ACTIONS(1808), - [anon_sym_u64] = ACTIONS(1808), - [anon_sym_i64] = ACTIONS(1808), - [anon_sym_u128] = ACTIONS(1808), - [anon_sym_i128] = ACTIONS(1808), - [anon_sym_isize] = ACTIONS(1808), - [anon_sym_usize] = ACTIONS(1808), - [anon_sym_f32] = ACTIONS(1808), - [anon_sym_f64] = ACTIONS(1808), - [anon_sym_bool] = ACTIONS(1808), - [anon_sym_str] = ACTIONS(1808), - [anon_sym_char] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [anon_sym_async] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_default] = ACTIONS(1808), - [anon_sym_enum] = ACTIONS(1808), - [anon_sym_fn] = ACTIONS(1808), - [anon_sym_for] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_impl] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1808), - [anon_sym_loop] = ACTIONS(1808), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_mod] = ACTIONS(1808), - [anon_sym_pub] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1808), - [anon_sym_struct] = ACTIONS(1808), - [anon_sym_trait] = ACTIONS(1808), - [anon_sym_type] = ACTIONS(1808), - [anon_sym_union] = ACTIONS(1808), - [anon_sym_unsafe] = ACTIONS(1808), - [anon_sym_use] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1806), - [anon_sym_DOT_DOT] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_yield] = ACTIONS(1808), - [anon_sym_move] = ACTIONS(1808), - [sym_integer_literal] = ACTIONS(1806), - [aux_sym_string_literal_token1] = ACTIONS(1806), - [sym_char_literal] = ACTIONS(1806), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1806), - [sym_raw_string_literal] = ACTIONS(1806), - [sym_float_literal] = ACTIONS(1806), + [ts_builtin_sym_end] = ACTIONS(1823), + [sym_identifier] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_macro_rules_BANG] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1823), + [anon_sym_RBRACE] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_u8] = ACTIONS(1825), + [anon_sym_i8] = ACTIONS(1825), + [anon_sym_u16] = ACTIONS(1825), + [anon_sym_i16] = ACTIONS(1825), + [anon_sym_u32] = ACTIONS(1825), + [anon_sym_i32] = ACTIONS(1825), + [anon_sym_u64] = ACTIONS(1825), + [anon_sym_i64] = ACTIONS(1825), + [anon_sym_u128] = ACTIONS(1825), + [anon_sym_i128] = ACTIONS(1825), + [anon_sym_isize] = ACTIONS(1825), + [anon_sym_usize] = ACTIONS(1825), + [anon_sym_f32] = ACTIONS(1825), + [anon_sym_f64] = ACTIONS(1825), + [anon_sym_bool] = ACTIONS(1825), + [anon_sym_str] = ACTIONS(1825), + [anon_sym_char] = ACTIONS(1825), + [anon_sym_SQUOTE] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1825), + [anon_sym_break] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [anon_sym_continue] = ACTIONS(1825), + [anon_sym_default] = ACTIONS(1825), + [anon_sym_enum] = ACTIONS(1825), + [anon_sym_fn] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1825), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_impl] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_loop] = ACTIONS(1825), + [anon_sym_match] = ACTIONS(1825), + [anon_sym_mod] = ACTIONS(1825), + [anon_sym_pub] = ACTIONS(1825), + [anon_sym_return] = ACTIONS(1825), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(1825), + [anon_sym_trait] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_union] = ACTIONS(1825), + [anon_sym_unsafe] = ACTIONS(1825), + [anon_sym_use] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1825), + [anon_sym_POUND] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_extern] = ACTIONS(1825), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_COLON_COLON] = ACTIONS(1823), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1825), + [anon_sym_move] = ACTIONS(1825), + [sym_integer_literal] = ACTIONS(1823), + [aux_sym_string_literal_token1] = ACTIONS(1823), + [sym_char_literal] = ACTIONS(1823), + [anon_sym_true] = ACTIONS(1825), + [anon_sym_false] = ACTIONS(1825), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1825), + [sym_super] = ACTIONS(1825), + [sym_crate] = ACTIONS(1825), + [sym_metavariable] = ACTIONS(1823), + [sym_raw_string_literal] = ACTIONS(1823), + [sym_float_literal] = ACTIONS(1823), [sym_block_comment] = ACTIONS(3), }, [424] = { - [ts_builtin_sym_end] = ACTIONS(1810), - [sym_identifier] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_macro_rules_BANG] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_u8] = ACTIONS(1812), - [anon_sym_i8] = ACTIONS(1812), - [anon_sym_u16] = ACTIONS(1812), - [anon_sym_i16] = ACTIONS(1812), - [anon_sym_u32] = ACTIONS(1812), - [anon_sym_i32] = ACTIONS(1812), - [anon_sym_u64] = ACTIONS(1812), - [anon_sym_i64] = ACTIONS(1812), - [anon_sym_u128] = ACTIONS(1812), - [anon_sym_i128] = ACTIONS(1812), - [anon_sym_isize] = ACTIONS(1812), - [anon_sym_usize] = ACTIONS(1812), - [anon_sym_f32] = ACTIONS(1812), - [anon_sym_f64] = ACTIONS(1812), - [anon_sym_bool] = ACTIONS(1812), - [anon_sym_str] = ACTIONS(1812), - [anon_sym_char] = ACTIONS(1812), - [anon_sym_SQUOTE] = ACTIONS(1812), - [anon_sym_async] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_default] = ACTIONS(1812), - [anon_sym_enum] = ACTIONS(1812), - [anon_sym_fn] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_impl] = ACTIONS(1812), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_loop] = ACTIONS(1812), - [anon_sym_match] = ACTIONS(1812), - [anon_sym_mod] = ACTIONS(1812), - [anon_sym_pub] = ACTIONS(1812), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_static] = ACTIONS(1812), - [anon_sym_struct] = ACTIONS(1812), - [anon_sym_trait] = ACTIONS(1812), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_union] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(1812), - [anon_sym_use] = ACTIONS(1812), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_extern] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_yield] = ACTIONS(1812), - [anon_sym_move] = ACTIONS(1812), - [sym_integer_literal] = ACTIONS(1810), - [aux_sym_string_literal_token1] = ACTIONS(1810), - [sym_char_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1812), - [anon_sym_false] = ACTIONS(1812), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1812), - [sym_super] = ACTIONS(1812), - [sym_crate] = ACTIONS(1812), - [sym_metavariable] = ACTIONS(1810), - [sym_raw_string_literal] = ACTIONS(1810), - [sym_float_literal] = ACTIONS(1810), + [ts_builtin_sym_end] = ACTIONS(1827), + [sym_identifier] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_macro_rules_BANG] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1827), + [anon_sym_RBRACE] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1827), + [anon_sym_u8] = ACTIONS(1829), + [anon_sym_i8] = ACTIONS(1829), + [anon_sym_u16] = ACTIONS(1829), + [anon_sym_i16] = ACTIONS(1829), + [anon_sym_u32] = ACTIONS(1829), + [anon_sym_i32] = ACTIONS(1829), + [anon_sym_u64] = ACTIONS(1829), + [anon_sym_i64] = ACTIONS(1829), + [anon_sym_u128] = ACTIONS(1829), + [anon_sym_i128] = ACTIONS(1829), + [anon_sym_isize] = ACTIONS(1829), + [anon_sym_usize] = ACTIONS(1829), + [anon_sym_f32] = ACTIONS(1829), + [anon_sym_f64] = ACTIONS(1829), + [anon_sym_bool] = ACTIONS(1829), + [anon_sym_str] = ACTIONS(1829), + [anon_sym_char] = ACTIONS(1829), + [anon_sym_SQUOTE] = ACTIONS(1829), + [anon_sym_async] = ACTIONS(1829), + [anon_sym_break] = ACTIONS(1829), + [anon_sym_const] = ACTIONS(1829), + [anon_sym_continue] = ACTIONS(1829), + [anon_sym_default] = ACTIONS(1829), + [anon_sym_enum] = ACTIONS(1829), + [anon_sym_fn] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1829), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_impl] = ACTIONS(1829), + [anon_sym_let] = ACTIONS(1829), + [anon_sym_loop] = ACTIONS(1829), + [anon_sym_match] = ACTIONS(1829), + [anon_sym_mod] = ACTIONS(1829), + [anon_sym_pub] = ACTIONS(1829), + [anon_sym_return] = ACTIONS(1829), + [anon_sym_static] = ACTIONS(1829), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_trait] = ACTIONS(1829), + [anon_sym_type] = ACTIONS(1829), + [anon_sym_union] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1829), + [anon_sym_use] = ACTIONS(1829), + [anon_sym_while] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(1827), + [anon_sym_BANG] = ACTIONS(1827), + [anon_sym_extern] = ACTIONS(1829), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_COLON_COLON] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_DOT_DOT] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_move] = ACTIONS(1829), + [sym_integer_literal] = ACTIONS(1827), + [aux_sym_string_literal_token1] = ACTIONS(1827), + [sym_char_literal] = ACTIONS(1827), + [anon_sym_true] = ACTIONS(1829), + [anon_sym_false] = ACTIONS(1829), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1829), + [sym_super] = ACTIONS(1829), + [sym_crate] = ACTIONS(1829), + [sym_metavariable] = ACTIONS(1827), + [sym_raw_string_literal] = ACTIONS(1827), + [sym_float_literal] = ACTIONS(1827), [sym_block_comment] = ACTIONS(3), }, [425] = { - [ts_builtin_sym_end] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_macro_rules_BANG] = ACTIONS(1814), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_RBRACE] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_u8] = ACTIONS(1816), - [anon_sym_i8] = ACTIONS(1816), - [anon_sym_u16] = ACTIONS(1816), - [anon_sym_i16] = ACTIONS(1816), - [anon_sym_u32] = ACTIONS(1816), - [anon_sym_i32] = ACTIONS(1816), - [anon_sym_u64] = ACTIONS(1816), - [anon_sym_i64] = ACTIONS(1816), - [anon_sym_u128] = ACTIONS(1816), - [anon_sym_i128] = ACTIONS(1816), - [anon_sym_isize] = ACTIONS(1816), - [anon_sym_usize] = ACTIONS(1816), - [anon_sym_f32] = ACTIONS(1816), - [anon_sym_f64] = ACTIONS(1816), - [anon_sym_bool] = ACTIONS(1816), - [anon_sym_str] = ACTIONS(1816), - [anon_sym_char] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_async] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_default] = ACTIONS(1816), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_fn] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_impl] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1816), - [anon_sym_loop] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_mod] = ACTIONS(1816), - [anon_sym_pub] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_struct] = ACTIONS(1816), - [anon_sym_trait] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1816), - [anon_sym_unsafe] = ACTIONS(1816), - [anon_sym_use] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1814), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1814), - [anon_sym_COLON_COLON] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_DOT_DOT] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_yield] = ACTIONS(1816), - [anon_sym_move] = ACTIONS(1816), - [sym_integer_literal] = ACTIONS(1814), - [aux_sym_string_literal_token1] = ACTIONS(1814), - [sym_char_literal] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1816), - [sym_super] = ACTIONS(1816), - [sym_crate] = ACTIONS(1816), - [sym_metavariable] = ACTIONS(1814), - [sym_raw_string_literal] = ACTIONS(1814), - [sym_float_literal] = ACTIONS(1814), + [ts_builtin_sym_end] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_macro_rules_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_u8] = ACTIONS(1833), + [anon_sym_i8] = ACTIONS(1833), + [anon_sym_u16] = ACTIONS(1833), + [anon_sym_i16] = ACTIONS(1833), + [anon_sym_u32] = ACTIONS(1833), + [anon_sym_i32] = ACTIONS(1833), + [anon_sym_u64] = ACTIONS(1833), + [anon_sym_i64] = ACTIONS(1833), + [anon_sym_u128] = ACTIONS(1833), + [anon_sym_i128] = ACTIONS(1833), + [anon_sym_isize] = ACTIONS(1833), + [anon_sym_usize] = ACTIONS(1833), + [anon_sym_f32] = ACTIONS(1833), + [anon_sym_f64] = ACTIONS(1833), + [anon_sym_bool] = ACTIONS(1833), + [anon_sym_str] = ACTIONS(1833), + [anon_sym_char] = ACTIONS(1833), + [anon_sym_SQUOTE] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1833), + [anon_sym_enum] = ACTIONS(1833), + [anon_sym_fn] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_impl] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_loop] = ACTIONS(1833), + [anon_sym_match] = ACTIONS(1833), + [anon_sym_mod] = ACTIONS(1833), + [anon_sym_pub] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_static] = ACTIONS(1833), + [anon_sym_struct] = ACTIONS(1833), + [anon_sym_trait] = ACTIONS(1833), + [anon_sym_type] = ACTIONS(1833), + [anon_sym_union] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_use] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_extern] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_DOT_DOT] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_PIPE] = ACTIONS(1831), + [anon_sym_yield] = ACTIONS(1833), + [anon_sym_move] = ACTIONS(1833), + [sym_integer_literal] = ACTIONS(1831), + [aux_sym_string_literal_token1] = ACTIONS(1831), + [sym_char_literal] = ACTIONS(1831), + [anon_sym_true] = ACTIONS(1833), + [anon_sym_false] = ACTIONS(1833), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1833), + [sym_super] = ACTIONS(1833), + [sym_crate] = ACTIONS(1833), + [sym_metavariable] = ACTIONS(1831), + [sym_raw_string_literal] = ACTIONS(1831), + [sym_float_literal] = ACTIONS(1831), [sym_block_comment] = ACTIONS(3), }, [426] = { - [ts_builtin_sym_end] = ACTIONS(1818), - [sym_identifier] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_macro_rules_BANG] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_u8] = ACTIONS(1820), - [anon_sym_i8] = ACTIONS(1820), - [anon_sym_u16] = ACTIONS(1820), - [anon_sym_i16] = ACTIONS(1820), - [anon_sym_u32] = ACTIONS(1820), - [anon_sym_i32] = ACTIONS(1820), - [anon_sym_u64] = ACTIONS(1820), - [anon_sym_i64] = ACTIONS(1820), - [anon_sym_u128] = ACTIONS(1820), - [anon_sym_i128] = ACTIONS(1820), - [anon_sym_isize] = ACTIONS(1820), - [anon_sym_usize] = ACTIONS(1820), - [anon_sym_f32] = ACTIONS(1820), - [anon_sym_f64] = ACTIONS(1820), - [anon_sym_bool] = ACTIONS(1820), - [anon_sym_str] = ACTIONS(1820), - [anon_sym_char] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_async] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_default] = ACTIONS(1820), - [anon_sym_enum] = ACTIONS(1820), - [anon_sym_fn] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_impl] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_mod] = ACTIONS(1820), - [anon_sym_pub] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1820), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_trait] = ACTIONS(1820), - [anon_sym_type] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1820), - [anon_sym_unsafe] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_yield] = ACTIONS(1820), - [anon_sym_move] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [aux_sym_string_literal_token1] = ACTIONS(1818), - [sym_char_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1820), - [sym_super] = ACTIONS(1820), - [sym_crate] = ACTIONS(1820), - [sym_metavariable] = ACTIONS(1818), - [sym_raw_string_literal] = ACTIONS(1818), - [sym_float_literal] = ACTIONS(1818), + [ts_builtin_sym_end] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1837), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_macro_rules_BANG] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_STAR] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1837), + [anon_sym_i8] = ACTIONS(1837), + [anon_sym_u16] = ACTIONS(1837), + [anon_sym_i16] = ACTIONS(1837), + [anon_sym_u32] = ACTIONS(1837), + [anon_sym_i32] = ACTIONS(1837), + [anon_sym_u64] = ACTIONS(1837), + [anon_sym_i64] = ACTIONS(1837), + [anon_sym_u128] = ACTIONS(1837), + [anon_sym_i128] = ACTIONS(1837), + [anon_sym_isize] = ACTIONS(1837), + [anon_sym_usize] = ACTIONS(1837), + [anon_sym_f32] = ACTIONS(1837), + [anon_sym_f64] = ACTIONS(1837), + [anon_sym_bool] = ACTIONS(1837), + [anon_sym_str] = ACTIONS(1837), + [anon_sym_char] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_default] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_impl] = ACTIONS(1837), + [anon_sym_let] = ACTIONS(1837), + [anon_sym_loop] = ACTIONS(1837), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_mod] = ACTIONS(1837), + [anon_sym_pub] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_static] = ACTIONS(1837), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_trait] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), + [anon_sym_union] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_use] = ACTIONS(1837), + [anon_sym_while] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_extern] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1835), + [anon_sym_COLON_COLON] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_yield] = ACTIONS(1837), + [anon_sym_move] = ACTIONS(1837), + [sym_integer_literal] = ACTIONS(1835), + [aux_sym_string_literal_token1] = ACTIONS(1835), + [sym_char_literal] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1837), + [sym_super] = ACTIONS(1837), + [sym_crate] = ACTIONS(1837), + [sym_metavariable] = ACTIONS(1835), + [sym_raw_string_literal] = ACTIONS(1835), + [sym_float_literal] = ACTIONS(1835), [sym_block_comment] = ACTIONS(3), }, [427] = { - [ts_builtin_sym_end] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_macro_rules_BANG] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_u8] = ACTIONS(1824), - [anon_sym_i8] = ACTIONS(1824), - [anon_sym_u16] = ACTIONS(1824), - [anon_sym_i16] = ACTIONS(1824), - [anon_sym_u32] = ACTIONS(1824), - [anon_sym_i32] = ACTIONS(1824), - [anon_sym_u64] = ACTIONS(1824), - [anon_sym_i64] = ACTIONS(1824), - [anon_sym_u128] = ACTIONS(1824), - [anon_sym_i128] = ACTIONS(1824), - [anon_sym_isize] = ACTIONS(1824), - [anon_sym_usize] = ACTIONS(1824), - [anon_sym_f32] = ACTIONS(1824), - [anon_sym_f64] = ACTIONS(1824), - [anon_sym_bool] = ACTIONS(1824), - [anon_sym_str] = ACTIONS(1824), - [anon_sym_char] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_async] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_default] = ACTIONS(1824), - [anon_sym_enum] = ACTIONS(1824), - [anon_sym_fn] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_impl] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_mod] = ACTIONS(1824), - [anon_sym_pub] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1824), - [anon_sym_trait] = ACTIONS(1824), - [anon_sym_type] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1824), - [anon_sym_unsafe] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_yield] = ACTIONS(1824), - [anon_sym_move] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [aux_sym_string_literal_token1] = ACTIONS(1822), - [sym_char_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1824), - [anon_sym_false] = ACTIONS(1824), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1824), - [sym_super] = ACTIONS(1824), - [sym_crate] = ACTIONS(1824), - [sym_metavariable] = ACTIONS(1822), - [sym_raw_string_literal] = ACTIONS(1822), - [sym_float_literal] = ACTIONS(1822), + [ts_builtin_sym_end] = ACTIONS(1839), + [sym_identifier] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1839), + [anon_sym_macro_rules_BANG] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_STAR] = ACTIONS(1839), + [anon_sym_u8] = ACTIONS(1841), + [anon_sym_i8] = ACTIONS(1841), + [anon_sym_u16] = ACTIONS(1841), + [anon_sym_i16] = ACTIONS(1841), + [anon_sym_u32] = ACTIONS(1841), + [anon_sym_i32] = ACTIONS(1841), + [anon_sym_u64] = ACTIONS(1841), + [anon_sym_i64] = ACTIONS(1841), + [anon_sym_u128] = ACTIONS(1841), + [anon_sym_i128] = ACTIONS(1841), + [anon_sym_isize] = ACTIONS(1841), + [anon_sym_usize] = ACTIONS(1841), + [anon_sym_f32] = ACTIONS(1841), + [anon_sym_f64] = ACTIONS(1841), + [anon_sym_bool] = ACTIONS(1841), + [anon_sym_str] = ACTIONS(1841), + [anon_sym_char] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_async] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_default] = ACTIONS(1841), + [anon_sym_enum] = ACTIONS(1841), + [anon_sym_fn] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_impl] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1841), + [anon_sym_loop] = ACTIONS(1841), + [anon_sym_match] = ACTIONS(1841), + [anon_sym_mod] = ACTIONS(1841), + [anon_sym_pub] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_static] = ACTIONS(1841), + [anon_sym_struct] = ACTIONS(1841), + [anon_sym_trait] = ACTIONS(1841), + [anon_sym_type] = ACTIONS(1841), + [anon_sym_union] = ACTIONS(1841), + [anon_sym_unsafe] = ACTIONS(1841), + [anon_sym_use] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_POUND] = ACTIONS(1839), + [anon_sym_BANG] = ACTIONS(1839), + [anon_sym_extern] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1839), + [anon_sym_COLON_COLON] = ACTIONS(1839), + [anon_sym_AMP] = ACTIONS(1839), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_DASH] = ACTIONS(1839), + [anon_sym_PIPE] = ACTIONS(1839), + [anon_sym_yield] = ACTIONS(1841), + [anon_sym_move] = ACTIONS(1841), + [sym_integer_literal] = ACTIONS(1839), + [aux_sym_string_literal_token1] = ACTIONS(1839), + [sym_char_literal] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1841), + [sym_super] = ACTIONS(1841), + [sym_crate] = ACTIONS(1841), + [sym_metavariable] = ACTIONS(1839), + [sym_raw_string_literal] = ACTIONS(1839), + [sym_float_literal] = ACTIONS(1839), [sym_block_comment] = ACTIONS(3), }, [428] = { - [ts_builtin_sym_end] = ACTIONS(1826), - [sym_identifier] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_macro_rules_BANG] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_u8] = ACTIONS(1828), - [anon_sym_i8] = ACTIONS(1828), - [anon_sym_u16] = ACTIONS(1828), - [anon_sym_i16] = ACTIONS(1828), - [anon_sym_u32] = ACTIONS(1828), - [anon_sym_i32] = ACTIONS(1828), - [anon_sym_u64] = ACTIONS(1828), - [anon_sym_i64] = ACTIONS(1828), - [anon_sym_u128] = ACTIONS(1828), - [anon_sym_i128] = ACTIONS(1828), - [anon_sym_isize] = ACTIONS(1828), - [anon_sym_usize] = ACTIONS(1828), - [anon_sym_f32] = ACTIONS(1828), - [anon_sym_f64] = ACTIONS(1828), - [anon_sym_bool] = ACTIONS(1828), - [anon_sym_str] = ACTIONS(1828), - [anon_sym_char] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_async] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_default] = ACTIONS(1828), - [anon_sym_enum] = ACTIONS(1828), - [anon_sym_fn] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_impl] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_mod] = ACTIONS(1828), - [anon_sym_pub] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1828), - [anon_sym_struct] = ACTIONS(1828), - [anon_sym_trait] = ACTIONS(1828), - [anon_sym_type] = ACTIONS(1828), - [anon_sym_union] = ACTIONS(1828), - [anon_sym_unsafe] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_yield] = ACTIONS(1828), - [anon_sym_move] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [aux_sym_string_literal_token1] = ACTIONS(1826), - [sym_char_literal] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1828), - [sym_super] = ACTIONS(1828), - [sym_crate] = ACTIONS(1828), - [sym_metavariable] = ACTIONS(1826), - [sym_raw_string_literal] = ACTIONS(1826), - [sym_float_literal] = ACTIONS(1826), + [ts_builtin_sym_end] = ACTIONS(1843), + [sym_identifier] = ACTIONS(1845), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_macro_rules_BANG] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_u8] = ACTIONS(1845), + [anon_sym_i8] = ACTIONS(1845), + [anon_sym_u16] = ACTIONS(1845), + [anon_sym_i16] = ACTIONS(1845), + [anon_sym_u32] = ACTIONS(1845), + [anon_sym_i32] = ACTIONS(1845), + [anon_sym_u64] = ACTIONS(1845), + [anon_sym_i64] = ACTIONS(1845), + [anon_sym_u128] = ACTIONS(1845), + [anon_sym_i128] = ACTIONS(1845), + [anon_sym_isize] = ACTIONS(1845), + [anon_sym_usize] = ACTIONS(1845), + [anon_sym_f32] = ACTIONS(1845), + [anon_sym_f64] = ACTIONS(1845), + [anon_sym_bool] = ACTIONS(1845), + [anon_sym_str] = ACTIONS(1845), + [anon_sym_char] = ACTIONS(1845), + [anon_sym_SQUOTE] = ACTIONS(1845), + [anon_sym_async] = ACTIONS(1845), + [anon_sym_break] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(1845), + [anon_sym_continue] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1845), + [anon_sym_enum] = ACTIONS(1845), + [anon_sym_fn] = ACTIONS(1845), + [anon_sym_for] = ACTIONS(1845), + [anon_sym_if] = ACTIONS(1845), + [anon_sym_impl] = ACTIONS(1845), + [anon_sym_let] = ACTIONS(1845), + [anon_sym_loop] = ACTIONS(1845), + [anon_sym_match] = ACTIONS(1845), + [anon_sym_mod] = ACTIONS(1845), + [anon_sym_pub] = ACTIONS(1845), + [anon_sym_return] = ACTIONS(1845), + [anon_sym_static] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(1845), + [anon_sym_trait] = ACTIONS(1845), + [anon_sym_type] = ACTIONS(1845), + [anon_sym_union] = ACTIONS(1845), + [anon_sym_unsafe] = ACTIONS(1845), + [anon_sym_use] = ACTIONS(1845), + [anon_sym_while] = ACTIONS(1845), + [anon_sym_POUND] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_extern] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_yield] = ACTIONS(1845), + [anon_sym_move] = ACTIONS(1845), + [sym_integer_literal] = ACTIONS(1843), + [aux_sym_string_literal_token1] = ACTIONS(1843), + [sym_char_literal] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1845), + [anon_sym_false] = ACTIONS(1845), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1845), + [sym_super] = ACTIONS(1845), + [sym_crate] = ACTIONS(1845), + [sym_metavariable] = ACTIONS(1843), + [sym_raw_string_literal] = ACTIONS(1843), + [sym_float_literal] = ACTIONS(1843), [sym_block_comment] = ACTIONS(3), }, [429] = { - [ts_builtin_sym_end] = ACTIONS(1830), - [sym_identifier] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_macro_rules_BANG] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_u8] = ACTIONS(1832), - [anon_sym_i8] = ACTIONS(1832), - [anon_sym_u16] = ACTIONS(1832), - [anon_sym_i16] = ACTIONS(1832), - [anon_sym_u32] = ACTIONS(1832), - [anon_sym_i32] = ACTIONS(1832), - [anon_sym_u64] = ACTIONS(1832), - [anon_sym_i64] = ACTIONS(1832), - [anon_sym_u128] = ACTIONS(1832), - [anon_sym_i128] = ACTIONS(1832), - [anon_sym_isize] = ACTIONS(1832), - [anon_sym_usize] = ACTIONS(1832), - [anon_sym_f32] = ACTIONS(1832), - [anon_sym_f64] = ACTIONS(1832), - [anon_sym_bool] = ACTIONS(1832), - [anon_sym_str] = ACTIONS(1832), - [anon_sym_char] = ACTIONS(1832), - [anon_sym_SQUOTE] = ACTIONS(1832), - [anon_sym_async] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_default] = ACTIONS(1832), - [anon_sym_enum] = ACTIONS(1832), - [anon_sym_fn] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_impl] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_loop] = ACTIONS(1832), - [anon_sym_match] = ACTIONS(1832), - [anon_sym_mod] = ACTIONS(1832), - [anon_sym_pub] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_struct] = ACTIONS(1832), - [anon_sym_trait] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_union] = ACTIONS(1832), - [anon_sym_unsafe] = ACTIONS(1832), - [anon_sym_use] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_POUND] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_COLON_COLON] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_yield] = ACTIONS(1832), - [anon_sym_move] = ACTIONS(1832), - [sym_integer_literal] = ACTIONS(1830), - [aux_sym_string_literal_token1] = ACTIONS(1830), - [sym_char_literal] = ACTIONS(1830), - [anon_sym_true] = ACTIONS(1832), - [anon_sym_false] = ACTIONS(1832), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1832), - [sym_super] = ACTIONS(1832), - [sym_crate] = ACTIONS(1832), - [sym_metavariable] = ACTIONS(1830), - [sym_raw_string_literal] = ACTIONS(1830), - [sym_float_literal] = ACTIONS(1830), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1847), + [anon_sym_macro_rules_BANG] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_u8] = ACTIONS(1849), + [anon_sym_i8] = ACTIONS(1849), + [anon_sym_u16] = ACTIONS(1849), + [anon_sym_i16] = ACTIONS(1849), + [anon_sym_u32] = ACTIONS(1849), + [anon_sym_i32] = ACTIONS(1849), + [anon_sym_u64] = ACTIONS(1849), + [anon_sym_i64] = ACTIONS(1849), + [anon_sym_u128] = ACTIONS(1849), + [anon_sym_i128] = ACTIONS(1849), + [anon_sym_isize] = ACTIONS(1849), + [anon_sym_usize] = ACTIONS(1849), + [anon_sym_f32] = ACTIONS(1849), + [anon_sym_f64] = ACTIONS(1849), + [anon_sym_bool] = ACTIONS(1849), + [anon_sym_str] = ACTIONS(1849), + [anon_sym_char] = ACTIONS(1849), + [anon_sym_SQUOTE] = ACTIONS(1849), + [anon_sym_async] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_default] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_impl] = ACTIONS(1849), + [anon_sym_let] = ACTIONS(1849), + [anon_sym_loop] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_mod] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_static] = ACTIONS(1849), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_trait] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_use] = ACTIONS(1849), + [anon_sym_while] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(1849), + [anon_sym_LT] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1847), + [anon_sym_yield] = ACTIONS(1849), + [anon_sym_move] = ACTIONS(1849), + [sym_integer_literal] = ACTIONS(1847), + [aux_sym_string_literal_token1] = ACTIONS(1847), + [sym_char_literal] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(1849), + [anon_sym_false] = ACTIONS(1849), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1849), + [sym_super] = ACTIONS(1849), + [sym_crate] = ACTIONS(1849), + [sym_metavariable] = ACTIONS(1847), + [sym_raw_string_literal] = ACTIONS(1847), + [sym_float_literal] = ACTIONS(1847), [sym_block_comment] = ACTIONS(3), }, [430] = { - [ts_builtin_sym_end] = ACTIONS(1834), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_macro_rules_BANG] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_u8] = ACTIONS(1836), - [anon_sym_i8] = ACTIONS(1836), - [anon_sym_u16] = ACTIONS(1836), - [anon_sym_i16] = ACTIONS(1836), - [anon_sym_u32] = ACTIONS(1836), - [anon_sym_i32] = ACTIONS(1836), - [anon_sym_u64] = ACTIONS(1836), - [anon_sym_i64] = ACTIONS(1836), - [anon_sym_u128] = ACTIONS(1836), - [anon_sym_i128] = ACTIONS(1836), - [anon_sym_isize] = ACTIONS(1836), - [anon_sym_usize] = ACTIONS(1836), - [anon_sym_f32] = ACTIONS(1836), - [anon_sym_f64] = ACTIONS(1836), - [anon_sym_bool] = ACTIONS(1836), - [anon_sym_str] = ACTIONS(1836), - [anon_sym_char] = ACTIONS(1836), - [anon_sym_SQUOTE] = ACTIONS(1836), - [anon_sym_async] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_fn] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1836), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_impl] = ACTIONS(1836), - [anon_sym_let] = ACTIONS(1836), - [anon_sym_loop] = ACTIONS(1836), - [anon_sym_match] = ACTIONS(1836), - [anon_sym_mod] = ACTIONS(1836), - [anon_sym_pub] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_static] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_trait] = ACTIONS(1836), - [anon_sym_type] = ACTIONS(1836), - [anon_sym_union] = ACTIONS(1836), - [anon_sym_unsafe] = ACTIONS(1836), - [anon_sym_use] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_extern] = ACTIONS(1836), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_COLON_COLON] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_DOT_DOT] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_move] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [aux_sym_string_literal_token1] = ACTIONS(1834), - [sym_char_literal] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1836), - [sym_super] = ACTIONS(1836), - [sym_crate] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1834), - [sym_raw_string_literal] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), + [ts_builtin_sym_end] = ACTIONS(1851), + [sym_identifier] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_macro_rules_BANG] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1851), + [anon_sym_u8] = ACTIONS(1853), + [anon_sym_i8] = ACTIONS(1853), + [anon_sym_u16] = ACTIONS(1853), + [anon_sym_i16] = ACTIONS(1853), + [anon_sym_u32] = ACTIONS(1853), + [anon_sym_i32] = ACTIONS(1853), + [anon_sym_u64] = ACTIONS(1853), + [anon_sym_i64] = ACTIONS(1853), + [anon_sym_u128] = ACTIONS(1853), + [anon_sym_i128] = ACTIONS(1853), + [anon_sym_isize] = ACTIONS(1853), + [anon_sym_usize] = ACTIONS(1853), + [anon_sym_f32] = ACTIONS(1853), + [anon_sym_f64] = ACTIONS(1853), + [anon_sym_bool] = ACTIONS(1853), + [anon_sym_str] = ACTIONS(1853), + [anon_sym_char] = ACTIONS(1853), + [anon_sym_SQUOTE] = ACTIONS(1853), + [anon_sym_async] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1853), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_fn] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_impl] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_loop] = ACTIONS(1853), + [anon_sym_match] = ACTIONS(1853), + [anon_sym_mod] = ACTIONS(1853), + [anon_sym_pub] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_static] = ACTIONS(1853), + [anon_sym_struct] = ACTIONS(1853), + [anon_sym_trait] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_union] = ACTIONS(1853), + [anon_sym_unsafe] = ACTIONS(1853), + [anon_sym_use] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_POUND] = ACTIONS(1851), + [anon_sym_BANG] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1851), + [anon_sym_COLON_COLON] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_PIPE] = ACTIONS(1851), + [anon_sym_yield] = ACTIONS(1853), + [anon_sym_move] = ACTIONS(1853), + [sym_integer_literal] = ACTIONS(1851), + [aux_sym_string_literal_token1] = ACTIONS(1851), + [sym_char_literal] = ACTIONS(1851), + [anon_sym_true] = ACTIONS(1853), + [anon_sym_false] = ACTIONS(1853), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1853), + [sym_super] = ACTIONS(1853), + [sym_crate] = ACTIONS(1853), + [sym_metavariable] = ACTIONS(1851), + [sym_raw_string_literal] = ACTIONS(1851), + [sym_float_literal] = ACTIONS(1851), [sym_block_comment] = ACTIONS(3), }, [431] = { - [ts_builtin_sym_end] = ACTIONS(1838), - [sym_identifier] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_macro_rules_BANG] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_u8] = ACTIONS(1840), - [anon_sym_i8] = ACTIONS(1840), - [anon_sym_u16] = ACTIONS(1840), - [anon_sym_i16] = ACTIONS(1840), - [anon_sym_u32] = ACTIONS(1840), - [anon_sym_i32] = ACTIONS(1840), - [anon_sym_u64] = ACTIONS(1840), - [anon_sym_i64] = ACTIONS(1840), - [anon_sym_u128] = ACTIONS(1840), - [anon_sym_i128] = ACTIONS(1840), - [anon_sym_isize] = ACTIONS(1840), - [anon_sym_usize] = ACTIONS(1840), - [anon_sym_f32] = ACTIONS(1840), - [anon_sym_f64] = ACTIONS(1840), - [anon_sym_bool] = ACTIONS(1840), - [anon_sym_str] = ACTIONS(1840), - [anon_sym_char] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_async] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_enum] = ACTIONS(1840), - [anon_sym_fn] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_impl] = ACTIONS(1840), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_loop] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_mod] = ACTIONS(1840), - [anon_sym_pub] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_struct] = ACTIONS(1840), - [anon_sym_trait] = ACTIONS(1840), - [anon_sym_type] = ACTIONS(1840), - [anon_sym_union] = ACTIONS(1840), - [anon_sym_unsafe] = ACTIONS(1840), - [anon_sym_use] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_COLON_COLON] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1838), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_yield] = ACTIONS(1840), - [anon_sym_move] = ACTIONS(1840), - [sym_integer_literal] = ACTIONS(1838), - [aux_sym_string_literal_token1] = ACTIONS(1838), - [sym_char_literal] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1840), - [anon_sym_false] = ACTIONS(1840), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1840), - [sym_super] = ACTIONS(1840), - [sym_crate] = ACTIONS(1840), - [sym_metavariable] = ACTIONS(1838), - [sym_raw_string_literal] = ACTIONS(1838), - [sym_float_literal] = ACTIONS(1838), + [ts_builtin_sym_end] = ACTIONS(1855), + [sym_identifier] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1855), + [anon_sym_macro_rules_BANG] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_u8] = ACTIONS(1857), + [anon_sym_i8] = ACTIONS(1857), + [anon_sym_u16] = ACTIONS(1857), + [anon_sym_i16] = ACTIONS(1857), + [anon_sym_u32] = ACTIONS(1857), + [anon_sym_i32] = ACTIONS(1857), + [anon_sym_u64] = ACTIONS(1857), + [anon_sym_i64] = ACTIONS(1857), + [anon_sym_u128] = ACTIONS(1857), + [anon_sym_i128] = ACTIONS(1857), + [anon_sym_isize] = ACTIONS(1857), + [anon_sym_usize] = ACTIONS(1857), + [anon_sym_f32] = ACTIONS(1857), + [anon_sym_f64] = ACTIONS(1857), + [anon_sym_bool] = ACTIONS(1857), + [anon_sym_str] = ACTIONS(1857), + [anon_sym_char] = ACTIONS(1857), + [anon_sym_SQUOTE] = ACTIONS(1857), + [anon_sym_async] = ACTIONS(1857), + [anon_sym_break] = ACTIONS(1857), + [anon_sym_const] = ACTIONS(1857), + [anon_sym_continue] = ACTIONS(1857), + [anon_sym_default] = ACTIONS(1857), + [anon_sym_enum] = ACTIONS(1857), + [anon_sym_fn] = ACTIONS(1857), + [anon_sym_for] = ACTIONS(1857), + [anon_sym_if] = ACTIONS(1857), + [anon_sym_impl] = ACTIONS(1857), + [anon_sym_let] = ACTIONS(1857), + [anon_sym_loop] = ACTIONS(1857), + [anon_sym_match] = ACTIONS(1857), + [anon_sym_mod] = ACTIONS(1857), + [anon_sym_pub] = ACTIONS(1857), + [anon_sym_return] = ACTIONS(1857), + [anon_sym_static] = ACTIONS(1857), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_trait] = ACTIONS(1857), + [anon_sym_type] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1857), + [anon_sym_unsafe] = ACTIONS(1857), + [anon_sym_use] = ACTIONS(1857), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_POUND] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_extern] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(1855), + [anon_sym_COLON_COLON] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1855), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_yield] = ACTIONS(1857), + [anon_sym_move] = ACTIONS(1857), + [sym_integer_literal] = ACTIONS(1855), + [aux_sym_string_literal_token1] = ACTIONS(1855), + [sym_char_literal] = ACTIONS(1855), + [anon_sym_true] = ACTIONS(1857), + [anon_sym_false] = ACTIONS(1857), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1857), + [sym_super] = ACTIONS(1857), + [sym_crate] = ACTIONS(1857), + [sym_metavariable] = ACTIONS(1855), + [sym_raw_string_literal] = ACTIONS(1855), + [sym_float_literal] = ACTIONS(1855), [sym_block_comment] = ACTIONS(3), }, [432] = { - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_identifier] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_macro_rules_BANG] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_u8] = ACTIONS(1844), - [anon_sym_i8] = ACTIONS(1844), - [anon_sym_u16] = ACTIONS(1844), - [anon_sym_i16] = ACTIONS(1844), - [anon_sym_u32] = ACTIONS(1844), - [anon_sym_i32] = ACTIONS(1844), - [anon_sym_u64] = ACTIONS(1844), - [anon_sym_i64] = ACTIONS(1844), - [anon_sym_u128] = ACTIONS(1844), - [anon_sym_i128] = ACTIONS(1844), - [anon_sym_isize] = ACTIONS(1844), - [anon_sym_usize] = ACTIONS(1844), - [anon_sym_f32] = ACTIONS(1844), - [anon_sym_f64] = ACTIONS(1844), - [anon_sym_bool] = ACTIONS(1844), - [anon_sym_str] = ACTIONS(1844), - [anon_sym_char] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_default] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [anon_sym_fn] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_impl] = ACTIONS(1844), - [anon_sym_let] = ACTIONS(1844), - [anon_sym_loop] = ACTIONS(1844), - [anon_sym_match] = ACTIONS(1844), - [anon_sym_mod] = ACTIONS(1844), - [anon_sym_pub] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_struct] = ACTIONS(1844), - [anon_sym_trait] = ACTIONS(1844), - [anon_sym_type] = ACTIONS(1844), - [anon_sym_union] = ACTIONS(1844), - [anon_sym_unsafe] = ACTIONS(1844), - [anon_sym_use] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_COLON_COLON] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1842), - [anon_sym_DOT_DOT] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_yield] = ACTIONS(1844), - [anon_sym_move] = ACTIONS(1844), - [sym_integer_literal] = ACTIONS(1842), - [aux_sym_string_literal_token1] = ACTIONS(1842), - [sym_char_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1844), - [anon_sym_false] = ACTIONS(1844), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1844), - [sym_super] = ACTIONS(1844), - [sym_crate] = ACTIONS(1844), - [sym_metavariable] = ACTIONS(1842), - [sym_raw_string_literal] = ACTIONS(1842), - [sym_float_literal] = ACTIONS(1842), + [ts_builtin_sym_end] = ACTIONS(1859), + [sym_identifier] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1859), + [anon_sym_macro_rules_BANG] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1859), + [anon_sym_u8] = ACTIONS(1861), + [anon_sym_i8] = ACTIONS(1861), + [anon_sym_u16] = ACTIONS(1861), + [anon_sym_i16] = ACTIONS(1861), + [anon_sym_u32] = ACTIONS(1861), + [anon_sym_i32] = ACTIONS(1861), + [anon_sym_u64] = ACTIONS(1861), + [anon_sym_i64] = ACTIONS(1861), + [anon_sym_u128] = ACTIONS(1861), + [anon_sym_i128] = ACTIONS(1861), + [anon_sym_isize] = ACTIONS(1861), + [anon_sym_usize] = ACTIONS(1861), + [anon_sym_f32] = ACTIONS(1861), + [anon_sym_f64] = ACTIONS(1861), + [anon_sym_bool] = ACTIONS(1861), + [anon_sym_str] = ACTIONS(1861), + [anon_sym_char] = ACTIONS(1861), + [anon_sym_SQUOTE] = ACTIONS(1861), + [anon_sym_async] = ACTIONS(1861), + [anon_sym_break] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [anon_sym_continue] = ACTIONS(1861), + [anon_sym_default] = ACTIONS(1861), + [anon_sym_enum] = ACTIONS(1861), + [anon_sym_fn] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_impl] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_loop] = ACTIONS(1861), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_mod] = ACTIONS(1861), + [anon_sym_pub] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1861), + [anon_sym_static] = ACTIONS(1861), + [anon_sym_struct] = ACTIONS(1861), + [anon_sym_trait] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_union] = ACTIONS(1861), + [anon_sym_unsafe] = ACTIONS(1861), + [anon_sym_use] = ACTIONS(1861), + [anon_sym_while] = ACTIONS(1861), + [anon_sym_POUND] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_COLON_COLON] = ACTIONS(1859), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1861), + [anon_sym_move] = ACTIONS(1861), + [sym_integer_literal] = ACTIONS(1859), + [aux_sym_string_literal_token1] = ACTIONS(1859), + [sym_char_literal] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1861), + [sym_super] = ACTIONS(1861), + [sym_crate] = ACTIONS(1861), + [sym_metavariable] = ACTIONS(1859), + [sym_raw_string_literal] = ACTIONS(1859), + [sym_float_literal] = ACTIONS(1859), [sym_block_comment] = ACTIONS(3), }, [433] = { - [ts_builtin_sym_end] = ACTIONS(1846), - [sym_identifier] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_macro_rules_BANG] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_u8] = ACTIONS(1848), - [anon_sym_i8] = ACTIONS(1848), - [anon_sym_u16] = ACTIONS(1848), - [anon_sym_i16] = ACTIONS(1848), - [anon_sym_u32] = ACTIONS(1848), - [anon_sym_i32] = ACTIONS(1848), - [anon_sym_u64] = ACTIONS(1848), - [anon_sym_i64] = ACTIONS(1848), - [anon_sym_u128] = ACTIONS(1848), - [anon_sym_i128] = ACTIONS(1848), - [anon_sym_isize] = ACTIONS(1848), - [anon_sym_usize] = ACTIONS(1848), - [anon_sym_f32] = ACTIONS(1848), - [anon_sym_f64] = ACTIONS(1848), - [anon_sym_bool] = ACTIONS(1848), - [anon_sym_str] = ACTIONS(1848), - [anon_sym_char] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_async] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_default] = ACTIONS(1848), - [anon_sym_enum] = ACTIONS(1848), - [anon_sym_fn] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_impl] = ACTIONS(1848), - [anon_sym_let] = ACTIONS(1848), - [anon_sym_loop] = ACTIONS(1848), - [anon_sym_match] = ACTIONS(1848), - [anon_sym_mod] = ACTIONS(1848), - [anon_sym_pub] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1848), - [anon_sym_struct] = ACTIONS(1848), - [anon_sym_trait] = ACTIONS(1848), - [anon_sym_type] = ACTIONS(1848), - [anon_sym_union] = ACTIONS(1848), - [anon_sym_unsafe] = ACTIONS(1848), - [anon_sym_use] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_COLON_COLON] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_DOT_DOT] = ACTIONS(1846), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_yield] = ACTIONS(1848), - [anon_sym_move] = ACTIONS(1848), - [sym_integer_literal] = ACTIONS(1846), - [aux_sym_string_literal_token1] = ACTIONS(1846), - [sym_char_literal] = ACTIONS(1846), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1848), - [sym_super] = ACTIONS(1848), - [sym_crate] = ACTIONS(1848), - [sym_metavariable] = ACTIONS(1846), - [sym_raw_string_literal] = ACTIONS(1846), - [sym_float_literal] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1863), + [anon_sym_macro_rules_BANG] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1863), + [anon_sym_u8] = ACTIONS(1865), + [anon_sym_i8] = ACTIONS(1865), + [anon_sym_u16] = ACTIONS(1865), + [anon_sym_i16] = ACTIONS(1865), + [anon_sym_u32] = ACTIONS(1865), + [anon_sym_i32] = ACTIONS(1865), + [anon_sym_u64] = ACTIONS(1865), + [anon_sym_i64] = ACTIONS(1865), + [anon_sym_u128] = ACTIONS(1865), + [anon_sym_i128] = ACTIONS(1865), + [anon_sym_isize] = ACTIONS(1865), + [anon_sym_usize] = ACTIONS(1865), + [anon_sym_f32] = ACTIONS(1865), + [anon_sym_f64] = ACTIONS(1865), + [anon_sym_bool] = ACTIONS(1865), + [anon_sym_str] = ACTIONS(1865), + [anon_sym_char] = ACTIONS(1865), + [anon_sym_SQUOTE] = ACTIONS(1865), + [anon_sym_async] = ACTIONS(1865), + [anon_sym_break] = ACTIONS(1865), + [anon_sym_const] = ACTIONS(1865), + [anon_sym_continue] = ACTIONS(1865), + [anon_sym_default] = ACTIONS(1865), + [anon_sym_enum] = ACTIONS(1865), + [anon_sym_fn] = ACTIONS(1865), + [anon_sym_for] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_impl] = ACTIONS(1865), + [anon_sym_let] = ACTIONS(1865), + [anon_sym_loop] = ACTIONS(1865), + [anon_sym_match] = ACTIONS(1865), + [anon_sym_mod] = ACTIONS(1865), + [anon_sym_pub] = ACTIONS(1865), + [anon_sym_return] = ACTIONS(1865), + [anon_sym_static] = ACTIONS(1865), + [anon_sym_struct] = ACTIONS(1865), + [anon_sym_trait] = ACTIONS(1865), + [anon_sym_type] = ACTIONS(1865), + [anon_sym_union] = ACTIONS(1865), + [anon_sym_unsafe] = ACTIONS(1865), + [anon_sym_use] = ACTIONS(1865), + [anon_sym_while] = ACTIONS(1865), + [anon_sym_POUND] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_extern] = ACTIONS(1865), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_COLON_COLON] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_DOT_DOT] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_PIPE] = ACTIONS(1863), + [anon_sym_yield] = ACTIONS(1865), + [anon_sym_move] = ACTIONS(1865), + [sym_integer_literal] = ACTIONS(1863), + [aux_sym_string_literal_token1] = ACTIONS(1863), + [sym_char_literal] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(1865), + [anon_sym_false] = ACTIONS(1865), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1865), + [sym_super] = ACTIONS(1865), + [sym_crate] = ACTIONS(1865), + [sym_metavariable] = ACTIONS(1863), + [sym_raw_string_literal] = ACTIONS(1863), + [sym_float_literal] = ACTIONS(1863), [sym_block_comment] = ACTIONS(3), }, [434] = { - [ts_builtin_sym_end] = ACTIONS(1850), - [sym_identifier] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_macro_rules_BANG] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_u8] = ACTIONS(1852), - [anon_sym_i8] = ACTIONS(1852), - [anon_sym_u16] = ACTIONS(1852), - [anon_sym_i16] = ACTIONS(1852), - [anon_sym_u32] = ACTIONS(1852), - [anon_sym_i32] = ACTIONS(1852), - [anon_sym_u64] = ACTIONS(1852), - [anon_sym_i64] = ACTIONS(1852), - [anon_sym_u128] = ACTIONS(1852), - [anon_sym_i128] = ACTIONS(1852), - [anon_sym_isize] = ACTIONS(1852), - [anon_sym_usize] = ACTIONS(1852), - [anon_sym_f32] = ACTIONS(1852), - [anon_sym_f64] = ACTIONS(1852), - [anon_sym_bool] = ACTIONS(1852), - [anon_sym_str] = ACTIONS(1852), - [anon_sym_char] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_async] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_default] = ACTIONS(1852), - [anon_sym_enum] = ACTIONS(1852), - [anon_sym_fn] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1852), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_impl] = ACTIONS(1852), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_loop] = ACTIONS(1852), - [anon_sym_match] = ACTIONS(1852), - [anon_sym_mod] = ACTIONS(1852), - [anon_sym_pub] = ACTIONS(1852), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_struct] = ACTIONS(1852), - [anon_sym_trait] = ACTIONS(1852), - [anon_sym_type] = ACTIONS(1852), - [anon_sym_union] = ACTIONS(1852), - [anon_sym_unsafe] = ACTIONS(1852), - [anon_sym_use] = ACTIONS(1852), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_LT] = ACTIONS(1850), - [anon_sym_COLON_COLON] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_yield] = ACTIONS(1852), - [anon_sym_move] = ACTIONS(1852), - [sym_integer_literal] = ACTIONS(1850), - [aux_sym_string_literal_token1] = ACTIONS(1850), - [sym_char_literal] = ACTIONS(1850), - [anon_sym_true] = ACTIONS(1852), - [anon_sym_false] = ACTIONS(1852), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1852), - [sym_super] = ACTIONS(1852), - [sym_crate] = ACTIONS(1852), - [sym_metavariable] = ACTIONS(1850), - [sym_raw_string_literal] = ACTIONS(1850), - [sym_float_literal] = ACTIONS(1850), + [ts_builtin_sym_end] = ACTIONS(1867), + [sym_identifier] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1867), + [anon_sym_macro_rules_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_u8] = ACTIONS(1869), + [anon_sym_i8] = ACTIONS(1869), + [anon_sym_u16] = ACTIONS(1869), + [anon_sym_i16] = ACTIONS(1869), + [anon_sym_u32] = ACTIONS(1869), + [anon_sym_i32] = ACTIONS(1869), + [anon_sym_u64] = ACTIONS(1869), + [anon_sym_i64] = ACTIONS(1869), + [anon_sym_u128] = ACTIONS(1869), + [anon_sym_i128] = ACTIONS(1869), + [anon_sym_isize] = ACTIONS(1869), + [anon_sym_usize] = ACTIONS(1869), + [anon_sym_f32] = ACTIONS(1869), + [anon_sym_f64] = ACTIONS(1869), + [anon_sym_bool] = ACTIONS(1869), + [anon_sym_str] = ACTIONS(1869), + [anon_sym_char] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_async] = ACTIONS(1869), + [anon_sym_break] = ACTIONS(1869), + [anon_sym_const] = ACTIONS(1869), + [anon_sym_continue] = ACTIONS(1869), + [anon_sym_default] = ACTIONS(1869), + [anon_sym_enum] = ACTIONS(1869), + [anon_sym_fn] = ACTIONS(1869), + [anon_sym_for] = ACTIONS(1869), + [anon_sym_if] = ACTIONS(1869), + [anon_sym_impl] = ACTIONS(1869), + [anon_sym_let] = ACTIONS(1869), + [anon_sym_loop] = ACTIONS(1869), + [anon_sym_match] = ACTIONS(1869), + [anon_sym_mod] = ACTIONS(1869), + [anon_sym_pub] = ACTIONS(1869), + [anon_sym_return] = ACTIONS(1869), + [anon_sym_static] = ACTIONS(1869), + [anon_sym_struct] = ACTIONS(1869), + [anon_sym_trait] = ACTIONS(1869), + [anon_sym_type] = ACTIONS(1869), + [anon_sym_union] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1869), + [anon_sym_use] = ACTIONS(1869), + [anon_sym_while] = ACTIONS(1869), + [anon_sym_POUND] = ACTIONS(1867), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_extern] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1867), + [anon_sym_COLON_COLON] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1867), + [anon_sym_yield] = ACTIONS(1869), + [anon_sym_move] = ACTIONS(1869), + [sym_integer_literal] = ACTIONS(1867), + [aux_sym_string_literal_token1] = ACTIONS(1867), + [sym_char_literal] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1869), + [anon_sym_false] = ACTIONS(1869), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1869), + [sym_super] = ACTIONS(1869), + [sym_crate] = ACTIONS(1869), + [sym_metavariable] = ACTIONS(1867), + [sym_raw_string_literal] = ACTIONS(1867), + [sym_float_literal] = ACTIONS(1867), [sym_block_comment] = ACTIONS(3), }, [435] = { - [ts_builtin_sym_end] = ACTIONS(1854), - [sym_identifier] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_macro_rules_BANG] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_u8] = ACTIONS(1856), - [anon_sym_i8] = ACTIONS(1856), - [anon_sym_u16] = ACTIONS(1856), - [anon_sym_i16] = ACTIONS(1856), - [anon_sym_u32] = ACTIONS(1856), - [anon_sym_i32] = ACTIONS(1856), - [anon_sym_u64] = ACTIONS(1856), - [anon_sym_i64] = ACTIONS(1856), - [anon_sym_u128] = ACTIONS(1856), - [anon_sym_i128] = ACTIONS(1856), - [anon_sym_isize] = ACTIONS(1856), - [anon_sym_usize] = ACTIONS(1856), - [anon_sym_f32] = ACTIONS(1856), - [anon_sym_f64] = ACTIONS(1856), - [anon_sym_bool] = ACTIONS(1856), - [anon_sym_str] = ACTIONS(1856), - [anon_sym_char] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_async] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_default] = ACTIONS(1856), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_fn] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_impl] = ACTIONS(1856), - [anon_sym_let] = ACTIONS(1856), - [anon_sym_loop] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_mod] = ACTIONS(1856), - [anon_sym_pub] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1856), - [anon_sym_struct] = ACTIONS(1856), - [anon_sym_trait] = ACTIONS(1856), - [anon_sym_type] = ACTIONS(1856), - [anon_sym_union] = ACTIONS(1856), - [anon_sym_unsafe] = ACTIONS(1856), - [anon_sym_use] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_POUND] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_COLON_COLON] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_DOT_DOT] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_yield] = ACTIONS(1856), - [anon_sym_move] = ACTIONS(1856), - [sym_integer_literal] = ACTIONS(1854), - [aux_sym_string_literal_token1] = ACTIONS(1854), - [sym_char_literal] = ACTIONS(1854), - [anon_sym_true] = ACTIONS(1856), - [anon_sym_false] = ACTIONS(1856), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1856), - [sym_super] = ACTIONS(1856), - [sym_crate] = ACTIONS(1856), - [sym_metavariable] = ACTIONS(1854), - [sym_raw_string_literal] = ACTIONS(1854), - [sym_float_literal] = ACTIONS(1854), + [ts_builtin_sym_end] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_macro_rules_BANG] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_u8] = ACTIONS(1873), + [anon_sym_i8] = ACTIONS(1873), + [anon_sym_u16] = ACTIONS(1873), + [anon_sym_i16] = ACTIONS(1873), + [anon_sym_u32] = ACTIONS(1873), + [anon_sym_i32] = ACTIONS(1873), + [anon_sym_u64] = ACTIONS(1873), + [anon_sym_i64] = ACTIONS(1873), + [anon_sym_u128] = ACTIONS(1873), + [anon_sym_i128] = ACTIONS(1873), + [anon_sym_isize] = ACTIONS(1873), + [anon_sym_usize] = ACTIONS(1873), + [anon_sym_f32] = ACTIONS(1873), + [anon_sym_f64] = ACTIONS(1873), + [anon_sym_bool] = ACTIONS(1873), + [anon_sym_str] = ACTIONS(1873), + [anon_sym_char] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_default] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [anon_sym_fn] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_impl] = ACTIONS(1873), + [anon_sym_let] = ACTIONS(1873), + [anon_sym_loop] = ACTIONS(1873), + [anon_sym_match] = ACTIONS(1873), + [anon_sym_mod] = ACTIONS(1873), + [anon_sym_pub] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_static] = ACTIONS(1873), + [anon_sym_struct] = ACTIONS(1873), + [anon_sym_trait] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_union] = ACTIONS(1873), + [anon_sym_unsafe] = ACTIONS(1873), + [anon_sym_use] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_POUND] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_move] = ACTIONS(1873), + [sym_integer_literal] = ACTIONS(1871), + [aux_sym_string_literal_token1] = ACTIONS(1871), + [sym_char_literal] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1873), + [sym_super] = ACTIONS(1873), + [sym_crate] = ACTIONS(1873), + [sym_metavariable] = ACTIONS(1871), + [sym_raw_string_literal] = ACTIONS(1871), + [sym_float_literal] = ACTIONS(1871), [sym_block_comment] = ACTIONS(3), }, [436] = { - [ts_builtin_sym_end] = ACTIONS(1858), - [sym_identifier] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_macro_rules_BANG] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_u8] = ACTIONS(1860), - [anon_sym_i8] = ACTIONS(1860), - [anon_sym_u16] = ACTIONS(1860), - [anon_sym_i16] = ACTIONS(1860), - [anon_sym_u32] = ACTIONS(1860), - [anon_sym_i32] = ACTIONS(1860), - [anon_sym_u64] = ACTIONS(1860), - [anon_sym_i64] = ACTIONS(1860), - [anon_sym_u128] = ACTIONS(1860), - [anon_sym_i128] = ACTIONS(1860), - [anon_sym_isize] = ACTIONS(1860), - [anon_sym_usize] = ACTIONS(1860), - [anon_sym_f32] = ACTIONS(1860), - [anon_sym_f64] = ACTIONS(1860), - [anon_sym_bool] = ACTIONS(1860), - [anon_sym_str] = ACTIONS(1860), - [anon_sym_char] = ACTIONS(1860), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_async] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_const] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_default] = ACTIONS(1860), - [anon_sym_enum] = ACTIONS(1860), - [anon_sym_fn] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_impl] = ACTIONS(1860), - [anon_sym_let] = ACTIONS(1860), - [anon_sym_loop] = ACTIONS(1860), - [anon_sym_match] = ACTIONS(1860), - [anon_sym_mod] = ACTIONS(1860), - [anon_sym_pub] = ACTIONS(1860), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_static] = ACTIONS(1860), - [anon_sym_struct] = ACTIONS(1860), - [anon_sym_trait] = ACTIONS(1860), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_union] = ACTIONS(1860), - [anon_sym_unsafe] = ACTIONS(1860), - [anon_sym_use] = ACTIONS(1860), - [anon_sym_while] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1858), - [anon_sym_extern] = ACTIONS(1860), - [anon_sym_LT] = ACTIONS(1858), - [anon_sym_COLON_COLON] = ACTIONS(1858), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_yield] = ACTIONS(1860), - [anon_sym_move] = ACTIONS(1860), - [sym_integer_literal] = ACTIONS(1858), - [aux_sym_string_literal_token1] = ACTIONS(1858), - [sym_char_literal] = ACTIONS(1858), - [anon_sym_true] = ACTIONS(1860), - [anon_sym_false] = ACTIONS(1860), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1860), - [sym_super] = ACTIONS(1860), - [sym_crate] = ACTIONS(1860), - [sym_metavariable] = ACTIONS(1858), - [sym_raw_string_literal] = ACTIONS(1858), - [sym_float_literal] = ACTIONS(1858), + [ts_builtin_sym_end] = ACTIONS(524), + [sym_identifier] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(524), + [anon_sym_macro_rules_BANG] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(524), + [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_u8] = ACTIONS(526), + [anon_sym_i8] = ACTIONS(526), + [anon_sym_u16] = ACTIONS(526), + [anon_sym_i16] = ACTIONS(526), + [anon_sym_u32] = ACTIONS(526), + [anon_sym_i32] = ACTIONS(526), + [anon_sym_u64] = ACTIONS(526), + [anon_sym_i64] = ACTIONS(526), + [anon_sym_u128] = ACTIONS(526), + [anon_sym_i128] = ACTIONS(526), + [anon_sym_isize] = ACTIONS(526), + [anon_sym_usize] = ACTIONS(526), + [anon_sym_f32] = ACTIONS(526), + [anon_sym_f64] = ACTIONS(526), + [anon_sym_bool] = ACTIONS(526), + [anon_sym_str] = ACTIONS(526), + [anon_sym_char] = ACTIONS(526), + [anon_sym_SQUOTE] = ACTIONS(526), + [anon_sym_async] = ACTIONS(526), + [anon_sym_break] = ACTIONS(526), + [anon_sym_const] = ACTIONS(526), + [anon_sym_continue] = ACTIONS(526), + [anon_sym_default] = ACTIONS(526), + [anon_sym_enum] = ACTIONS(526), + [anon_sym_fn] = ACTIONS(526), + [anon_sym_for] = ACTIONS(526), + [anon_sym_if] = ACTIONS(526), + [anon_sym_impl] = ACTIONS(526), + [anon_sym_let] = ACTIONS(526), + [anon_sym_loop] = ACTIONS(526), + [anon_sym_match] = ACTIONS(526), + [anon_sym_mod] = ACTIONS(526), + [anon_sym_pub] = ACTIONS(526), + [anon_sym_return] = ACTIONS(526), + [anon_sym_static] = ACTIONS(526), + [anon_sym_struct] = ACTIONS(526), + [anon_sym_trait] = ACTIONS(526), + [anon_sym_type] = ACTIONS(526), + [anon_sym_union] = ACTIONS(526), + [anon_sym_unsafe] = ACTIONS(526), + [anon_sym_use] = ACTIONS(526), + [anon_sym_while] = ACTIONS(526), + [anon_sym_POUND] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_extern] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_COLON_COLON] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(524), + [anon_sym_DOT_DOT] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(524), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_move] = ACTIONS(526), + [sym_integer_literal] = ACTIONS(524), + [aux_sym_string_literal_token1] = ACTIONS(524), + [sym_char_literal] = ACTIONS(524), + [anon_sym_true] = ACTIONS(526), + [anon_sym_false] = ACTIONS(526), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(526), + [sym_super] = ACTIONS(526), + [sym_crate] = ACTIONS(526), + [sym_metavariable] = ACTIONS(524), + [sym_raw_string_literal] = ACTIONS(524), + [sym_float_literal] = ACTIONS(524), [sym_block_comment] = ACTIONS(3), }, [437] = { - [ts_builtin_sym_end] = ACTIONS(1862), - [sym_identifier] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_macro_rules_BANG] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_u8] = ACTIONS(1864), - [anon_sym_i8] = ACTIONS(1864), - [anon_sym_u16] = ACTIONS(1864), - [anon_sym_i16] = ACTIONS(1864), - [anon_sym_u32] = ACTIONS(1864), - [anon_sym_i32] = ACTIONS(1864), - [anon_sym_u64] = ACTIONS(1864), - [anon_sym_i64] = ACTIONS(1864), - [anon_sym_u128] = ACTIONS(1864), - [anon_sym_i128] = ACTIONS(1864), - [anon_sym_isize] = ACTIONS(1864), - [anon_sym_usize] = ACTIONS(1864), - [anon_sym_f32] = ACTIONS(1864), - [anon_sym_f64] = ACTIONS(1864), - [anon_sym_bool] = ACTIONS(1864), - [anon_sym_str] = ACTIONS(1864), - [anon_sym_char] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_async] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_default] = ACTIONS(1864), - [anon_sym_enum] = ACTIONS(1864), - [anon_sym_fn] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_impl] = ACTIONS(1864), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_loop] = ACTIONS(1864), - [anon_sym_match] = ACTIONS(1864), - [anon_sym_mod] = ACTIONS(1864), - [anon_sym_pub] = ACTIONS(1864), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1864), - [anon_sym_struct] = ACTIONS(1864), - [anon_sym_trait] = ACTIONS(1864), - [anon_sym_type] = ACTIONS(1864), - [anon_sym_union] = ACTIONS(1864), - [anon_sym_unsafe] = ACTIONS(1864), - [anon_sym_use] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_POUND] = ACTIONS(1862), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_COLON_COLON] = ACTIONS(1862), - [anon_sym_AMP] = ACTIONS(1862), - [anon_sym_DOT_DOT] = ACTIONS(1862), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_yield] = ACTIONS(1864), - [anon_sym_move] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(1862), - [aux_sym_string_literal_token1] = ACTIONS(1862), - [sym_char_literal] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1864), - [anon_sym_false] = ACTIONS(1864), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1864), - [sym_super] = ACTIONS(1864), - [sym_crate] = ACTIONS(1864), - [sym_metavariable] = ACTIONS(1862), - [sym_raw_string_literal] = ACTIONS(1862), - [sym_float_literal] = ACTIONS(1862), + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1875), + [anon_sym_macro_rules_BANG] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_STAR] = ACTIONS(1875), + [anon_sym_u8] = ACTIONS(1877), + [anon_sym_i8] = ACTIONS(1877), + [anon_sym_u16] = ACTIONS(1877), + [anon_sym_i16] = ACTIONS(1877), + [anon_sym_u32] = ACTIONS(1877), + [anon_sym_i32] = ACTIONS(1877), + [anon_sym_u64] = ACTIONS(1877), + [anon_sym_i64] = ACTIONS(1877), + [anon_sym_u128] = ACTIONS(1877), + [anon_sym_i128] = ACTIONS(1877), + [anon_sym_isize] = ACTIONS(1877), + [anon_sym_usize] = ACTIONS(1877), + [anon_sym_f32] = ACTIONS(1877), + [anon_sym_f64] = ACTIONS(1877), + [anon_sym_bool] = ACTIONS(1877), + [anon_sym_str] = ACTIONS(1877), + [anon_sym_char] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_async] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_default] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_impl] = ACTIONS(1877), + [anon_sym_let] = ACTIONS(1877), + [anon_sym_loop] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_mod] = ACTIONS(1877), + [anon_sym_pub] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_static] = ACTIONS(1877), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_trait] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_union] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_use] = ACTIONS(1877), + [anon_sym_while] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(1875), + [anon_sym_BANG] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1875), + [anon_sym_COLON_COLON] = ACTIONS(1875), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(1875), + [anon_sym_yield] = ACTIONS(1877), + [anon_sym_move] = ACTIONS(1877), + [sym_integer_literal] = ACTIONS(1875), + [aux_sym_string_literal_token1] = ACTIONS(1875), + [sym_char_literal] = ACTIONS(1875), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1877), + [sym_super] = ACTIONS(1877), + [sym_crate] = ACTIONS(1877), + [sym_metavariable] = ACTIONS(1875), + [sym_raw_string_literal] = ACTIONS(1875), + [sym_float_literal] = ACTIONS(1875), [sym_block_comment] = ACTIONS(3), }, [438] = { - [ts_builtin_sym_end] = ACTIONS(554), - [sym_identifier] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_macro_rules_BANG] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(556), - [anon_sym_i8] = ACTIONS(556), - [anon_sym_u16] = ACTIONS(556), - [anon_sym_i16] = ACTIONS(556), - [anon_sym_u32] = ACTIONS(556), - [anon_sym_i32] = ACTIONS(556), - [anon_sym_u64] = ACTIONS(556), - [anon_sym_i64] = ACTIONS(556), - [anon_sym_u128] = ACTIONS(556), - [anon_sym_i128] = ACTIONS(556), - [anon_sym_isize] = ACTIONS(556), - [anon_sym_usize] = ACTIONS(556), - [anon_sym_f32] = ACTIONS(556), - [anon_sym_f64] = ACTIONS(556), - [anon_sym_bool] = ACTIONS(556), - [anon_sym_str] = ACTIONS(556), - [anon_sym_char] = ACTIONS(556), - [anon_sym_SQUOTE] = ACTIONS(556), - [anon_sym_async] = ACTIONS(556), - [anon_sym_break] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_continue] = ACTIONS(556), - [anon_sym_default] = ACTIONS(556), - [anon_sym_enum] = ACTIONS(556), - [anon_sym_fn] = ACTIONS(556), - [anon_sym_for] = ACTIONS(556), - [anon_sym_if] = ACTIONS(556), - [anon_sym_impl] = ACTIONS(556), - [anon_sym_let] = ACTIONS(556), - [anon_sym_loop] = ACTIONS(556), - [anon_sym_match] = ACTIONS(556), - [anon_sym_mod] = ACTIONS(556), - [anon_sym_pub] = ACTIONS(556), - [anon_sym_return] = ACTIONS(556), - [anon_sym_static] = ACTIONS(556), - [anon_sym_struct] = ACTIONS(556), - [anon_sym_trait] = ACTIONS(556), - [anon_sym_type] = ACTIONS(556), - [anon_sym_union] = ACTIONS(556), - [anon_sym_unsafe] = ACTIONS(556), - [anon_sym_use] = ACTIONS(556), - [anon_sym_while] = ACTIONS(556), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_BANG] = ACTIONS(554), - [anon_sym_extern] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_AMP] = ACTIONS(554), - [anon_sym_DOT_DOT] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(554), - [anon_sym_yield] = ACTIONS(556), - [anon_sym_move] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(554), - [aux_sym_string_literal_token1] = ACTIONS(554), - [sym_char_literal] = ACTIONS(554), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(556), - [sym_super] = ACTIONS(556), - [sym_crate] = ACTIONS(556), - [sym_metavariable] = ACTIONS(554), - [sym_raw_string_literal] = ACTIONS(554), - [sym_float_literal] = ACTIONS(554), + [ts_builtin_sym_end] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_macro_rules_BANG] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_u8] = ACTIONS(1881), + [anon_sym_i8] = ACTIONS(1881), + [anon_sym_u16] = ACTIONS(1881), + [anon_sym_i16] = ACTIONS(1881), + [anon_sym_u32] = ACTIONS(1881), + [anon_sym_i32] = ACTIONS(1881), + [anon_sym_u64] = ACTIONS(1881), + [anon_sym_i64] = ACTIONS(1881), + [anon_sym_u128] = ACTIONS(1881), + [anon_sym_i128] = ACTIONS(1881), + [anon_sym_isize] = ACTIONS(1881), + [anon_sym_usize] = ACTIONS(1881), + [anon_sym_f32] = ACTIONS(1881), + [anon_sym_f64] = ACTIONS(1881), + [anon_sym_bool] = ACTIONS(1881), + [anon_sym_str] = ACTIONS(1881), + [anon_sym_char] = ACTIONS(1881), + [anon_sym_SQUOTE] = ACTIONS(1881), + [anon_sym_async] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_default] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_impl] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1881), + [anon_sym_loop] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_mod] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_static] = ACTIONS(1881), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_trait] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_use] = ACTIONS(1881), + [anon_sym_while] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_BANG] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_COLON_COLON] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_yield] = ACTIONS(1881), + [anon_sym_move] = ACTIONS(1881), + [sym_integer_literal] = ACTIONS(1879), + [aux_sym_string_literal_token1] = ACTIONS(1879), + [sym_char_literal] = ACTIONS(1879), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1881), + [sym_super] = ACTIONS(1881), + [sym_crate] = ACTIONS(1881), + [sym_metavariable] = ACTIONS(1879), + [sym_raw_string_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), [sym_block_comment] = ACTIONS(3), }, [439] = { - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_identifier] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_macro_rules_BANG] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_u8] = ACTIONS(1868), - [anon_sym_i8] = ACTIONS(1868), - [anon_sym_u16] = ACTIONS(1868), - [anon_sym_i16] = ACTIONS(1868), - [anon_sym_u32] = ACTIONS(1868), - [anon_sym_i32] = ACTIONS(1868), - [anon_sym_u64] = ACTIONS(1868), - [anon_sym_i64] = ACTIONS(1868), - [anon_sym_u128] = ACTIONS(1868), - [anon_sym_i128] = ACTIONS(1868), - [anon_sym_isize] = ACTIONS(1868), - [anon_sym_usize] = ACTIONS(1868), - [anon_sym_f32] = ACTIONS(1868), - [anon_sym_f64] = ACTIONS(1868), - [anon_sym_bool] = ACTIONS(1868), - [anon_sym_str] = ACTIONS(1868), - [anon_sym_char] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_async] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_impl] = ACTIONS(1868), - [anon_sym_let] = ACTIONS(1868), - [anon_sym_loop] = ACTIONS(1868), - [anon_sym_match] = ACTIONS(1868), - [anon_sym_mod] = ACTIONS(1868), - [anon_sym_pub] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_struct] = ACTIONS(1868), - [anon_sym_trait] = ACTIONS(1868), - [anon_sym_type] = ACTIONS(1868), - [anon_sym_union] = ACTIONS(1868), - [anon_sym_unsafe] = ACTIONS(1868), - [anon_sym_use] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(1866), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_COLON_COLON] = ACTIONS(1866), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_DOT_DOT] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_yield] = ACTIONS(1868), - [anon_sym_move] = ACTIONS(1868), - [sym_integer_literal] = ACTIONS(1866), - [aux_sym_string_literal_token1] = ACTIONS(1866), - [sym_char_literal] = ACTIONS(1866), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1868), - [sym_super] = ACTIONS(1868), - [sym_crate] = ACTIONS(1868), - [sym_metavariable] = ACTIONS(1866), - [sym_raw_string_literal] = ACTIONS(1866), - [sym_float_literal] = ACTIONS(1866), + [ts_builtin_sym_end] = ACTIONS(1883), + [sym_identifier] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1883), + [anon_sym_macro_rules_BANG] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1883), + [anon_sym_RBRACE] = ACTIONS(1883), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(1883), + [anon_sym_u8] = ACTIONS(1885), + [anon_sym_i8] = ACTIONS(1885), + [anon_sym_u16] = ACTIONS(1885), + [anon_sym_i16] = ACTIONS(1885), + [anon_sym_u32] = ACTIONS(1885), + [anon_sym_i32] = ACTIONS(1885), + [anon_sym_u64] = ACTIONS(1885), + [anon_sym_i64] = ACTIONS(1885), + [anon_sym_u128] = ACTIONS(1885), + [anon_sym_i128] = ACTIONS(1885), + [anon_sym_isize] = ACTIONS(1885), + [anon_sym_usize] = ACTIONS(1885), + [anon_sym_f32] = ACTIONS(1885), + [anon_sym_f64] = ACTIONS(1885), + [anon_sym_bool] = ACTIONS(1885), + [anon_sym_str] = ACTIONS(1885), + [anon_sym_char] = ACTIONS(1885), + [anon_sym_SQUOTE] = ACTIONS(1885), + [anon_sym_async] = ACTIONS(1885), + [anon_sym_break] = ACTIONS(1885), + [anon_sym_const] = ACTIONS(1885), + [anon_sym_continue] = ACTIONS(1885), + [anon_sym_default] = ACTIONS(1885), + [anon_sym_enum] = ACTIONS(1885), + [anon_sym_fn] = ACTIONS(1885), + [anon_sym_for] = ACTIONS(1885), + [anon_sym_if] = ACTIONS(1885), + [anon_sym_impl] = ACTIONS(1885), + [anon_sym_let] = ACTIONS(1885), + [anon_sym_loop] = ACTIONS(1885), + [anon_sym_match] = ACTIONS(1885), + [anon_sym_mod] = ACTIONS(1885), + [anon_sym_pub] = ACTIONS(1885), + [anon_sym_return] = ACTIONS(1885), + [anon_sym_static] = ACTIONS(1885), + [anon_sym_struct] = ACTIONS(1885), + [anon_sym_trait] = ACTIONS(1885), + [anon_sym_type] = ACTIONS(1885), + [anon_sym_union] = ACTIONS(1885), + [anon_sym_unsafe] = ACTIONS(1885), + [anon_sym_use] = ACTIONS(1885), + [anon_sym_while] = ACTIONS(1885), + [anon_sym_POUND] = ACTIONS(1883), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_extern] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_COLON_COLON] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_DASH] = ACTIONS(1883), + [anon_sym_PIPE] = ACTIONS(1883), + [anon_sym_yield] = ACTIONS(1885), + [anon_sym_move] = ACTIONS(1885), + [sym_integer_literal] = ACTIONS(1883), + [aux_sym_string_literal_token1] = ACTIONS(1883), + [sym_char_literal] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(1885), + [anon_sym_false] = ACTIONS(1885), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1885), + [sym_super] = ACTIONS(1885), + [sym_crate] = ACTIONS(1885), + [sym_metavariable] = ACTIONS(1883), + [sym_raw_string_literal] = ACTIONS(1883), + [sym_float_literal] = ACTIONS(1883), [sym_block_comment] = ACTIONS(3), }, [440] = { - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_identifier] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_macro_rules_BANG] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1870), - [anon_sym_u8] = ACTIONS(1872), - [anon_sym_i8] = ACTIONS(1872), - [anon_sym_u16] = ACTIONS(1872), - [anon_sym_i16] = ACTIONS(1872), - [anon_sym_u32] = ACTIONS(1872), - [anon_sym_i32] = ACTIONS(1872), - [anon_sym_u64] = ACTIONS(1872), - [anon_sym_i64] = ACTIONS(1872), - [anon_sym_u128] = ACTIONS(1872), - [anon_sym_i128] = ACTIONS(1872), - [anon_sym_isize] = ACTIONS(1872), - [anon_sym_usize] = ACTIONS(1872), - [anon_sym_f32] = ACTIONS(1872), - [anon_sym_f64] = ACTIONS(1872), - [anon_sym_bool] = ACTIONS(1872), - [anon_sym_str] = ACTIONS(1872), - [anon_sym_char] = ACTIONS(1872), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_async] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_default] = ACTIONS(1872), - [anon_sym_enum] = ACTIONS(1872), - [anon_sym_fn] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_impl] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1872), - [anon_sym_loop] = ACTIONS(1872), - [anon_sym_match] = ACTIONS(1872), - [anon_sym_mod] = ACTIONS(1872), - [anon_sym_pub] = ACTIONS(1872), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1872), - [anon_sym_struct] = ACTIONS(1872), - [anon_sym_trait] = ACTIONS(1872), - [anon_sym_type] = ACTIONS(1872), - [anon_sym_union] = ACTIONS(1872), - [anon_sym_unsafe] = ACTIONS(1872), - [anon_sym_use] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(1870), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_LT] = ACTIONS(1870), - [anon_sym_COLON_COLON] = ACTIONS(1870), - [anon_sym_AMP] = ACTIONS(1870), - [anon_sym_DOT_DOT] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_yield] = ACTIONS(1872), - [anon_sym_move] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(1870), - [aux_sym_string_literal_token1] = ACTIONS(1870), - [sym_char_literal] = ACTIONS(1870), - [anon_sym_true] = ACTIONS(1872), - [anon_sym_false] = ACTIONS(1872), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1872), - [sym_super] = ACTIONS(1872), - [sym_crate] = ACTIONS(1872), - [sym_metavariable] = ACTIONS(1870), - [sym_raw_string_literal] = ACTIONS(1870), - [sym_float_literal] = ACTIONS(1870), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_identifier] = ACTIONS(1889), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_macro_rules_BANG] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_u8] = ACTIONS(1889), + [anon_sym_i8] = ACTIONS(1889), + [anon_sym_u16] = ACTIONS(1889), + [anon_sym_i16] = ACTIONS(1889), + [anon_sym_u32] = ACTIONS(1889), + [anon_sym_i32] = ACTIONS(1889), + [anon_sym_u64] = ACTIONS(1889), + [anon_sym_i64] = ACTIONS(1889), + [anon_sym_u128] = ACTIONS(1889), + [anon_sym_i128] = ACTIONS(1889), + [anon_sym_isize] = ACTIONS(1889), + [anon_sym_usize] = ACTIONS(1889), + [anon_sym_f32] = ACTIONS(1889), + [anon_sym_f64] = ACTIONS(1889), + [anon_sym_bool] = ACTIONS(1889), + [anon_sym_str] = ACTIONS(1889), + [anon_sym_char] = ACTIONS(1889), + [anon_sym_SQUOTE] = ACTIONS(1889), + [anon_sym_async] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_default] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_impl] = ACTIONS(1889), + [anon_sym_let] = ACTIONS(1889), + [anon_sym_loop] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_mod] = ACTIONS(1889), + [anon_sym_pub] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_static] = ACTIONS(1889), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_trait] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_union] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_use] = ACTIONS(1889), + [anon_sym_while] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(1887), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_extern] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_COLON_COLON] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1887), + [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_yield] = ACTIONS(1889), + [anon_sym_move] = ACTIONS(1889), + [sym_integer_literal] = ACTIONS(1887), + [aux_sym_string_literal_token1] = ACTIONS(1887), + [sym_char_literal] = ACTIONS(1887), + [anon_sym_true] = ACTIONS(1889), + [anon_sym_false] = ACTIONS(1889), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1889), + [sym_super] = ACTIONS(1889), + [sym_crate] = ACTIONS(1889), + [sym_metavariable] = ACTIONS(1887), + [sym_raw_string_literal] = ACTIONS(1887), + [sym_float_literal] = ACTIONS(1887), [sym_block_comment] = ACTIONS(3), }, [441] = { - [ts_builtin_sym_end] = ACTIONS(1874), - [sym_identifier] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_macro_rules_BANG] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_u8] = ACTIONS(1876), - [anon_sym_i8] = ACTIONS(1876), - [anon_sym_u16] = ACTIONS(1876), - [anon_sym_i16] = ACTIONS(1876), - [anon_sym_u32] = ACTIONS(1876), - [anon_sym_i32] = ACTIONS(1876), - [anon_sym_u64] = ACTIONS(1876), - [anon_sym_i64] = ACTIONS(1876), - [anon_sym_u128] = ACTIONS(1876), - [anon_sym_i128] = ACTIONS(1876), - [anon_sym_isize] = ACTIONS(1876), - [anon_sym_usize] = ACTIONS(1876), - [anon_sym_f32] = ACTIONS(1876), - [anon_sym_f64] = ACTIONS(1876), - [anon_sym_bool] = ACTIONS(1876), - [anon_sym_str] = ACTIONS(1876), - [anon_sym_char] = ACTIONS(1876), - [anon_sym_SQUOTE] = ACTIONS(1876), - [anon_sym_async] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_const] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_default] = ACTIONS(1876), - [anon_sym_enum] = ACTIONS(1876), - [anon_sym_fn] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_impl] = ACTIONS(1876), - [anon_sym_let] = ACTIONS(1876), - [anon_sym_loop] = ACTIONS(1876), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_mod] = ACTIONS(1876), - [anon_sym_pub] = ACTIONS(1876), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_static] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1876), - [anon_sym_trait] = ACTIONS(1876), - [anon_sym_type] = ACTIONS(1876), - [anon_sym_union] = ACTIONS(1876), - [anon_sym_unsafe] = ACTIONS(1876), - [anon_sym_use] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1876), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_BANG] = ACTIONS(1874), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_COLON_COLON] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1874), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_yield] = ACTIONS(1876), - [anon_sym_move] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [aux_sym_string_literal_token1] = ACTIONS(1874), - [sym_char_literal] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1876), - [anon_sym_false] = ACTIONS(1876), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1876), - [sym_super] = ACTIONS(1876), - [sym_crate] = ACTIONS(1876), - [sym_metavariable] = ACTIONS(1874), - [sym_raw_string_literal] = ACTIONS(1874), - [sym_float_literal] = ACTIONS(1874), + [ts_builtin_sym_end] = ACTIONS(1891), + [sym_identifier] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1891), + [anon_sym_macro_rules_BANG] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_u8] = ACTIONS(1893), + [anon_sym_i8] = ACTIONS(1893), + [anon_sym_u16] = ACTIONS(1893), + [anon_sym_i16] = ACTIONS(1893), + [anon_sym_u32] = ACTIONS(1893), + [anon_sym_i32] = ACTIONS(1893), + [anon_sym_u64] = ACTIONS(1893), + [anon_sym_i64] = ACTIONS(1893), + [anon_sym_u128] = ACTIONS(1893), + [anon_sym_i128] = ACTIONS(1893), + [anon_sym_isize] = ACTIONS(1893), + [anon_sym_usize] = ACTIONS(1893), + [anon_sym_f32] = ACTIONS(1893), + [anon_sym_f64] = ACTIONS(1893), + [anon_sym_bool] = ACTIONS(1893), + [anon_sym_str] = ACTIONS(1893), + [anon_sym_char] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_async] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_default] = ACTIONS(1893), + [anon_sym_enum] = ACTIONS(1893), + [anon_sym_fn] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_impl] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_loop] = ACTIONS(1893), + [anon_sym_match] = ACTIONS(1893), + [anon_sym_mod] = ACTIONS(1893), + [anon_sym_pub] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_static] = ACTIONS(1893), + [anon_sym_struct] = ACTIONS(1893), + [anon_sym_trait] = ACTIONS(1893), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_union] = ACTIONS(1893), + [anon_sym_unsafe] = ACTIONS(1893), + [anon_sym_use] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(1891), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_extern] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1891), + [anon_sym_COLON_COLON] = ACTIONS(1891), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_PIPE] = ACTIONS(1891), + [anon_sym_yield] = ACTIONS(1893), + [anon_sym_move] = ACTIONS(1893), + [sym_integer_literal] = ACTIONS(1891), + [aux_sym_string_literal_token1] = ACTIONS(1891), + [sym_char_literal] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1893), + [anon_sym_false] = ACTIONS(1893), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1893), + [sym_super] = ACTIONS(1893), + [sym_crate] = ACTIONS(1893), + [sym_metavariable] = ACTIONS(1891), + [sym_raw_string_literal] = ACTIONS(1891), + [sym_float_literal] = ACTIONS(1891), [sym_block_comment] = ACTIONS(3), }, [442] = { - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_macro_rules_BANG] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1878), - [anon_sym_u8] = ACTIONS(1880), - [anon_sym_i8] = ACTIONS(1880), - [anon_sym_u16] = ACTIONS(1880), - [anon_sym_i16] = ACTIONS(1880), - [anon_sym_u32] = ACTIONS(1880), - [anon_sym_i32] = ACTIONS(1880), - [anon_sym_u64] = ACTIONS(1880), - [anon_sym_i64] = ACTIONS(1880), - [anon_sym_u128] = ACTIONS(1880), - [anon_sym_i128] = ACTIONS(1880), - [anon_sym_isize] = ACTIONS(1880), - [anon_sym_usize] = ACTIONS(1880), - [anon_sym_f32] = ACTIONS(1880), - [anon_sym_f64] = ACTIONS(1880), - [anon_sym_bool] = ACTIONS(1880), - [anon_sym_str] = ACTIONS(1880), - [anon_sym_char] = ACTIONS(1880), - [anon_sym_SQUOTE] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [anon_sym_fn] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_impl] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_loop] = ACTIONS(1880), - [anon_sym_match] = ACTIONS(1880), - [anon_sym_mod] = ACTIONS(1880), - [anon_sym_pub] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_struct] = ACTIONS(1880), - [anon_sym_trait] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_unsafe] = ACTIONS(1880), - [anon_sym_use] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(1878), - [anon_sym_BANG] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(1880), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_DOT_DOT] = ACTIONS(1878), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_yield] = ACTIONS(1880), - [anon_sym_move] = ACTIONS(1880), - [sym_integer_literal] = ACTIONS(1878), - [aux_sym_string_literal_token1] = ACTIONS(1878), - [sym_char_literal] = ACTIONS(1878), - [anon_sym_true] = ACTIONS(1880), - [anon_sym_false] = ACTIONS(1880), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1880), - [sym_super] = ACTIONS(1880), - [sym_crate] = ACTIONS(1880), - [sym_metavariable] = ACTIONS(1878), - [sym_raw_string_literal] = ACTIONS(1878), - [sym_float_literal] = ACTIONS(1878), + [ts_builtin_sym_end] = ACTIONS(1895), + [sym_identifier] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_macro_rules_BANG] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_u8] = ACTIONS(1897), + [anon_sym_i8] = ACTIONS(1897), + [anon_sym_u16] = ACTIONS(1897), + [anon_sym_i16] = ACTIONS(1897), + [anon_sym_u32] = ACTIONS(1897), + [anon_sym_i32] = ACTIONS(1897), + [anon_sym_u64] = ACTIONS(1897), + [anon_sym_i64] = ACTIONS(1897), + [anon_sym_u128] = ACTIONS(1897), + [anon_sym_i128] = ACTIONS(1897), + [anon_sym_isize] = ACTIONS(1897), + [anon_sym_usize] = ACTIONS(1897), + [anon_sym_f32] = ACTIONS(1897), + [anon_sym_f64] = ACTIONS(1897), + [anon_sym_bool] = ACTIONS(1897), + [anon_sym_str] = ACTIONS(1897), + [anon_sym_char] = ACTIONS(1897), + [anon_sym_SQUOTE] = ACTIONS(1897), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_default] = ACTIONS(1897), + [anon_sym_enum] = ACTIONS(1897), + [anon_sym_fn] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_impl] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_loop] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1897), + [anon_sym_mod] = ACTIONS(1897), + [anon_sym_pub] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_static] = ACTIONS(1897), + [anon_sym_struct] = ACTIONS(1897), + [anon_sym_trait] = ACTIONS(1897), + [anon_sym_type] = ACTIONS(1897), + [anon_sym_union] = ACTIONS(1897), + [anon_sym_unsafe] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(1895), + [anon_sym_BANG] = ACTIONS(1895), + [anon_sym_extern] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1895), + [anon_sym_COLON_COLON] = ACTIONS(1895), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1895), + [anon_sym_DASH] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_yield] = ACTIONS(1897), + [anon_sym_move] = ACTIONS(1897), + [sym_integer_literal] = ACTIONS(1895), + [aux_sym_string_literal_token1] = ACTIONS(1895), + [sym_char_literal] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1897), + [sym_super] = ACTIONS(1897), + [sym_crate] = ACTIONS(1897), + [sym_metavariable] = ACTIONS(1895), + [sym_raw_string_literal] = ACTIONS(1895), + [sym_float_literal] = ACTIONS(1895), [sym_block_comment] = ACTIONS(3), }, [443] = { - [ts_builtin_sym_end] = ACTIONS(1882), - [sym_identifier] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_macro_rules_BANG] = ACTIONS(1882), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1882), - [anon_sym_u8] = ACTIONS(1884), - [anon_sym_i8] = ACTIONS(1884), - [anon_sym_u16] = ACTIONS(1884), - [anon_sym_i16] = ACTIONS(1884), - [anon_sym_u32] = ACTIONS(1884), - [anon_sym_i32] = ACTIONS(1884), - [anon_sym_u64] = ACTIONS(1884), - [anon_sym_i64] = ACTIONS(1884), - [anon_sym_u128] = ACTIONS(1884), - [anon_sym_i128] = ACTIONS(1884), - [anon_sym_isize] = ACTIONS(1884), - [anon_sym_usize] = ACTIONS(1884), - [anon_sym_f32] = ACTIONS(1884), - [anon_sym_f64] = ACTIONS(1884), - [anon_sym_bool] = ACTIONS(1884), - [anon_sym_str] = ACTIONS(1884), - [anon_sym_char] = ACTIONS(1884), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_async] = ACTIONS(1884), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_const] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_fn] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1884), - [anon_sym_if] = ACTIONS(1884), - [anon_sym_impl] = ACTIONS(1884), - [anon_sym_let] = ACTIONS(1884), - [anon_sym_loop] = ACTIONS(1884), - [anon_sym_match] = ACTIONS(1884), - [anon_sym_mod] = ACTIONS(1884), - [anon_sym_pub] = ACTIONS(1884), - [anon_sym_return] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1884), - [anon_sym_struct] = ACTIONS(1884), - [anon_sym_trait] = ACTIONS(1884), - [anon_sym_type] = ACTIONS(1884), - [anon_sym_union] = ACTIONS(1884), - [anon_sym_unsafe] = ACTIONS(1884), - [anon_sym_use] = ACTIONS(1884), - [anon_sym_while] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_BANG] = ACTIONS(1882), - [anon_sym_extern] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_COLON_COLON] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1882), - [anon_sym_DOT_DOT] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_yield] = ACTIONS(1884), - [anon_sym_move] = ACTIONS(1884), - [sym_integer_literal] = ACTIONS(1882), - [aux_sym_string_literal_token1] = ACTIONS(1882), - [sym_char_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(1884), - [anon_sym_false] = ACTIONS(1884), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1884), - [sym_super] = ACTIONS(1884), - [sym_crate] = ACTIONS(1884), - [sym_metavariable] = ACTIONS(1882), - [sym_raw_string_literal] = ACTIONS(1882), - [sym_float_literal] = ACTIONS(1882), + [ts_builtin_sym_end] = ACTIONS(1899), + [sym_identifier] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_macro_rules_BANG] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_u8] = ACTIONS(1901), + [anon_sym_i8] = ACTIONS(1901), + [anon_sym_u16] = ACTIONS(1901), + [anon_sym_i16] = ACTIONS(1901), + [anon_sym_u32] = ACTIONS(1901), + [anon_sym_i32] = ACTIONS(1901), + [anon_sym_u64] = ACTIONS(1901), + [anon_sym_i64] = ACTIONS(1901), + [anon_sym_u128] = ACTIONS(1901), + [anon_sym_i128] = ACTIONS(1901), + [anon_sym_isize] = ACTIONS(1901), + [anon_sym_usize] = ACTIONS(1901), + [anon_sym_f32] = ACTIONS(1901), + [anon_sym_f64] = ACTIONS(1901), + [anon_sym_bool] = ACTIONS(1901), + [anon_sym_str] = ACTIONS(1901), + [anon_sym_char] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1901), + [anon_sym_async] = ACTIONS(1901), + [anon_sym_break] = ACTIONS(1901), + [anon_sym_const] = ACTIONS(1901), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_default] = ACTIONS(1901), + [anon_sym_enum] = ACTIONS(1901), + [anon_sym_fn] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_impl] = ACTIONS(1901), + [anon_sym_let] = ACTIONS(1901), + [anon_sym_loop] = ACTIONS(1901), + [anon_sym_match] = ACTIONS(1901), + [anon_sym_mod] = ACTIONS(1901), + [anon_sym_pub] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1901), + [anon_sym_static] = ACTIONS(1901), + [anon_sym_struct] = ACTIONS(1901), + [anon_sym_trait] = ACTIONS(1901), + [anon_sym_type] = ACTIONS(1901), + [anon_sym_union] = ACTIONS(1901), + [anon_sym_unsafe] = ACTIONS(1901), + [anon_sym_use] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_COLON_COLON] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_yield] = ACTIONS(1901), + [anon_sym_move] = ACTIONS(1901), + [sym_integer_literal] = ACTIONS(1899), + [aux_sym_string_literal_token1] = ACTIONS(1899), + [sym_char_literal] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1901), + [anon_sym_false] = ACTIONS(1901), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1901), + [sym_super] = ACTIONS(1901), + [sym_crate] = ACTIONS(1901), + [sym_metavariable] = ACTIONS(1899), + [sym_raw_string_literal] = ACTIONS(1899), + [sym_float_literal] = ACTIONS(1899), [sym_block_comment] = ACTIONS(3), }, [444] = { - [ts_builtin_sym_end] = ACTIONS(1886), - [sym_identifier] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_macro_rules_BANG] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_u8] = ACTIONS(1888), - [anon_sym_i8] = ACTIONS(1888), - [anon_sym_u16] = ACTIONS(1888), - [anon_sym_i16] = ACTIONS(1888), - [anon_sym_u32] = ACTIONS(1888), - [anon_sym_i32] = ACTIONS(1888), - [anon_sym_u64] = ACTIONS(1888), - [anon_sym_i64] = ACTIONS(1888), - [anon_sym_u128] = ACTIONS(1888), - [anon_sym_i128] = ACTIONS(1888), - [anon_sym_isize] = ACTIONS(1888), - [anon_sym_usize] = ACTIONS(1888), - [anon_sym_f32] = ACTIONS(1888), - [anon_sym_f64] = ACTIONS(1888), - [anon_sym_bool] = ACTIONS(1888), - [anon_sym_str] = ACTIONS(1888), - [anon_sym_char] = ACTIONS(1888), - [anon_sym_SQUOTE] = ACTIONS(1888), - [anon_sym_async] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(1888), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_default] = ACTIONS(1888), - [anon_sym_enum] = ACTIONS(1888), - [anon_sym_fn] = ACTIONS(1888), - [anon_sym_for] = ACTIONS(1888), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_impl] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1888), - [anon_sym_loop] = ACTIONS(1888), - [anon_sym_match] = ACTIONS(1888), - [anon_sym_mod] = ACTIONS(1888), - [anon_sym_pub] = ACTIONS(1888), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_static] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_trait] = ACTIONS(1888), - [anon_sym_type] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1888), - [anon_sym_unsafe] = ACTIONS(1888), - [anon_sym_use] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_extern] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_COLON_COLON] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_yield] = ACTIONS(1888), - [anon_sym_move] = ACTIONS(1888), - [sym_integer_literal] = ACTIONS(1886), - [aux_sym_string_literal_token1] = ACTIONS(1886), - [sym_char_literal] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1888), - [anon_sym_false] = ACTIONS(1888), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1888), - [sym_super] = ACTIONS(1888), - [sym_crate] = ACTIONS(1888), - [sym_metavariable] = ACTIONS(1886), - [sym_raw_string_literal] = ACTIONS(1886), - [sym_float_literal] = ACTIONS(1886), + [ts_builtin_sym_end] = ACTIONS(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_STAR] = 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_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(544), + [anon_sym_extern] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(544), + [anon_sym_COLON_COLON] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(544), + [anon_sym_DASH] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(544), + [anon_sym_yield] = ACTIONS(546), + [anon_sym_move] = 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), }, [445] = { - [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_STAR] = 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_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(516), - [anon_sym_extern] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(516), - [anon_sym_COLON_COLON] = ACTIONS(516), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_DOT_DOT] = ACTIONS(516), - [anon_sym_DASH] = ACTIONS(516), - [anon_sym_PIPE] = ACTIONS(516), - [anon_sym_yield] = ACTIONS(518), - [anon_sym_move] = 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), + [ts_builtin_sym_end] = ACTIONS(1903), + [sym_identifier] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_macro_rules_BANG] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_u8] = ACTIONS(1905), + [anon_sym_i8] = ACTIONS(1905), + [anon_sym_u16] = ACTIONS(1905), + [anon_sym_i16] = ACTIONS(1905), + [anon_sym_u32] = ACTIONS(1905), + [anon_sym_i32] = ACTIONS(1905), + [anon_sym_u64] = ACTIONS(1905), + [anon_sym_i64] = ACTIONS(1905), + [anon_sym_u128] = ACTIONS(1905), + [anon_sym_i128] = ACTIONS(1905), + [anon_sym_isize] = ACTIONS(1905), + [anon_sym_usize] = ACTIONS(1905), + [anon_sym_f32] = ACTIONS(1905), + [anon_sym_f64] = ACTIONS(1905), + [anon_sym_bool] = ACTIONS(1905), + [anon_sym_str] = ACTIONS(1905), + [anon_sym_char] = ACTIONS(1905), + [anon_sym_SQUOTE] = ACTIONS(1905), + [anon_sym_async] = ACTIONS(1905), + [anon_sym_break] = ACTIONS(1905), + [anon_sym_const] = ACTIONS(1905), + [anon_sym_continue] = ACTIONS(1905), + [anon_sym_default] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1905), + [anon_sym_fn] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1905), + [anon_sym_impl] = ACTIONS(1905), + [anon_sym_let] = ACTIONS(1905), + [anon_sym_loop] = ACTIONS(1905), + [anon_sym_match] = ACTIONS(1905), + [anon_sym_mod] = ACTIONS(1905), + [anon_sym_pub] = ACTIONS(1905), + [anon_sym_return] = ACTIONS(1905), + [anon_sym_static] = ACTIONS(1905), + [anon_sym_struct] = ACTIONS(1905), + [anon_sym_trait] = ACTIONS(1905), + [anon_sym_type] = ACTIONS(1905), + [anon_sym_union] = ACTIONS(1905), + [anon_sym_unsafe] = ACTIONS(1905), + [anon_sym_use] = ACTIONS(1905), + [anon_sym_while] = ACTIONS(1905), + [anon_sym_POUND] = ACTIONS(1903), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_COLON_COLON] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_yield] = ACTIONS(1905), + [anon_sym_move] = ACTIONS(1905), + [sym_integer_literal] = ACTIONS(1903), + [aux_sym_string_literal_token1] = ACTIONS(1903), + [sym_char_literal] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1905), + [anon_sym_false] = ACTIONS(1905), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1905), + [sym_super] = ACTIONS(1905), + [sym_crate] = ACTIONS(1905), + [sym_metavariable] = ACTIONS(1903), + [sym_raw_string_literal] = ACTIONS(1903), + [sym_float_literal] = ACTIONS(1903), [sym_block_comment] = ACTIONS(3), }, [446] = { - [ts_builtin_sym_end] = ACTIONS(1890), - [sym_identifier] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_macro_rules_BANG] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1890), - [anon_sym_u8] = ACTIONS(1892), - [anon_sym_i8] = ACTIONS(1892), - [anon_sym_u16] = ACTIONS(1892), - [anon_sym_i16] = ACTIONS(1892), - [anon_sym_u32] = ACTIONS(1892), - [anon_sym_i32] = ACTIONS(1892), - [anon_sym_u64] = ACTIONS(1892), - [anon_sym_i64] = ACTIONS(1892), - [anon_sym_u128] = ACTIONS(1892), - [anon_sym_i128] = ACTIONS(1892), - [anon_sym_isize] = ACTIONS(1892), - [anon_sym_usize] = ACTIONS(1892), - [anon_sym_f32] = ACTIONS(1892), - [anon_sym_f64] = ACTIONS(1892), - [anon_sym_bool] = ACTIONS(1892), - [anon_sym_str] = ACTIONS(1892), - [anon_sym_char] = ACTIONS(1892), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_async] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_const] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_default] = ACTIONS(1892), - [anon_sym_enum] = ACTIONS(1892), - [anon_sym_fn] = ACTIONS(1892), - [anon_sym_for] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_impl] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1892), - [anon_sym_loop] = ACTIONS(1892), - [anon_sym_match] = ACTIONS(1892), - [anon_sym_mod] = ACTIONS(1892), - [anon_sym_pub] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1892), - [anon_sym_struct] = ACTIONS(1892), - [anon_sym_trait] = ACTIONS(1892), - [anon_sym_type] = ACTIONS(1892), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_unsafe] = ACTIONS(1892), - [anon_sym_use] = ACTIONS(1892), - [anon_sym_while] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1890), - [anon_sym_COLON_COLON] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_yield] = ACTIONS(1892), - [anon_sym_move] = ACTIONS(1892), - [sym_integer_literal] = ACTIONS(1890), - [aux_sym_string_literal_token1] = ACTIONS(1890), - [sym_char_literal] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1892), - [sym_super] = ACTIONS(1892), - [sym_crate] = ACTIONS(1892), - [sym_metavariable] = ACTIONS(1890), - [sym_raw_string_literal] = ACTIONS(1890), - [sym_float_literal] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(1907), + [sym_identifier] = ACTIONS(1909), + [anon_sym_SEMI] = ACTIONS(1907), + [anon_sym_macro_rules_BANG] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1907), + [anon_sym_u8] = ACTIONS(1909), + [anon_sym_i8] = ACTIONS(1909), + [anon_sym_u16] = ACTIONS(1909), + [anon_sym_i16] = ACTIONS(1909), + [anon_sym_u32] = ACTIONS(1909), + [anon_sym_i32] = ACTIONS(1909), + [anon_sym_u64] = ACTIONS(1909), + [anon_sym_i64] = ACTIONS(1909), + [anon_sym_u128] = ACTIONS(1909), + [anon_sym_i128] = ACTIONS(1909), + [anon_sym_isize] = ACTIONS(1909), + [anon_sym_usize] = ACTIONS(1909), + [anon_sym_f32] = ACTIONS(1909), + [anon_sym_f64] = ACTIONS(1909), + [anon_sym_bool] = ACTIONS(1909), + [anon_sym_str] = ACTIONS(1909), + [anon_sym_char] = ACTIONS(1909), + [anon_sym_SQUOTE] = ACTIONS(1909), + [anon_sym_async] = ACTIONS(1909), + [anon_sym_break] = ACTIONS(1909), + [anon_sym_const] = ACTIONS(1909), + [anon_sym_continue] = ACTIONS(1909), + [anon_sym_default] = ACTIONS(1909), + [anon_sym_enum] = ACTIONS(1909), + [anon_sym_fn] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1909), + [anon_sym_if] = ACTIONS(1909), + [anon_sym_impl] = ACTIONS(1909), + [anon_sym_let] = ACTIONS(1909), + [anon_sym_loop] = ACTIONS(1909), + [anon_sym_match] = ACTIONS(1909), + [anon_sym_mod] = ACTIONS(1909), + [anon_sym_pub] = ACTIONS(1909), + [anon_sym_return] = ACTIONS(1909), + [anon_sym_static] = ACTIONS(1909), + [anon_sym_struct] = ACTIONS(1909), + [anon_sym_trait] = ACTIONS(1909), + [anon_sym_type] = ACTIONS(1909), + [anon_sym_union] = ACTIONS(1909), + [anon_sym_unsafe] = ACTIONS(1909), + [anon_sym_use] = ACTIONS(1909), + [anon_sym_while] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1907), + [anon_sym_COLON_COLON] = ACTIONS(1907), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_DOT_DOT] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_PIPE] = ACTIONS(1907), + [anon_sym_yield] = ACTIONS(1909), + [anon_sym_move] = ACTIONS(1909), + [sym_integer_literal] = ACTIONS(1907), + [aux_sym_string_literal_token1] = ACTIONS(1907), + [sym_char_literal] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1909), + [anon_sym_false] = ACTIONS(1909), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1909), + [sym_super] = ACTIONS(1909), + [sym_crate] = ACTIONS(1909), + [sym_metavariable] = ACTIONS(1907), + [sym_raw_string_literal] = ACTIONS(1907), + [sym_float_literal] = ACTIONS(1907), [sym_block_comment] = ACTIONS(3), }, [447] = { - [ts_builtin_sym_end] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_macro_rules_BANG] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1894), - [anon_sym_u8] = ACTIONS(1896), - [anon_sym_i8] = ACTIONS(1896), - [anon_sym_u16] = ACTIONS(1896), - [anon_sym_i16] = ACTIONS(1896), - [anon_sym_u32] = ACTIONS(1896), - [anon_sym_i32] = ACTIONS(1896), - [anon_sym_u64] = ACTIONS(1896), - [anon_sym_i64] = ACTIONS(1896), - [anon_sym_u128] = ACTIONS(1896), - [anon_sym_i128] = ACTIONS(1896), - [anon_sym_isize] = ACTIONS(1896), - [anon_sym_usize] = ACTIONS(1896), - [anon_sym_f32] = ACTIONS(1896), - [anon_sym_f64] = ACTIONS(1896), - [anon_sym_bool] = ACTIONS(1896), - [anon_sym_str] = ACTIONS(1896), - [anon_sym_char] = ACTIONS(1896), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(1896), - [anon_sym_break] = ACTIONS(1896), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_continue] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(1896), - [anon_sym_enum] = ACTIONS(1896), - [anon_sym_fn] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1896), - [anon_sym_if] = ACTIONS(1896), - [anon_sym_impl] = ACTIONS(1896), - [anon_sym_let] = ACTIONS(1896), - [anon_sym_loop] = ACTIONS(1896), - [anon_sym_match] = ACTIONS(1896), - [anon_sym_mod] = ACTIONS(1896), - [anon_sym_pub] = ACTIONS(1896), - [anon_sym_return] = ACTIONS(1896), - [anon_sym_static] = ACTIONS(1896), - [anon_sym_struct] = ACTIONS(1896), - [anon_sym_trait] = ACTIONS(1896), - [anon_sym_type] = ACTIONS(1896), - [anon_sym_union] = ACTIONS(1896), - [anon_sym_unsafe] = ACTIONS(1896), - [anon_sym_use] = ACTIONS(1896), - [anon_sym_while] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1896), - [anon_sym_LT] = ACTIONS(1894), - [anon_sym_COLON_COLON] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1894), - [anon_sym_DOT_DOT] = ACTIONS(1894), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PIPE] = ACTIONS(1894), - [anon_sym_yield] = ACTIONS(1896), - [anon_sym_move] = ACTIONS(1896), - [sym_integer_literal] = ACTIONS(1894), - [aux_sym_string_literal_token1] = ACTIONS(1894), - [sym_char_literal] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1896), - [sym_super] = ACTIONS(1896), - [sym_crate] = ACTIONS(1896), - [sym_metavariable] = ACTIONS(1894), - [sym_raw_string_literal] = ACTIONS(1894), - [sym_float_literal] = ACTIONS(1894), + [ts_builtin_sym_end] = ACTIONS(1911), + [sym_identifier] = ACTIONS(1913), + [anon_sym_SEMI] = ACTIONS(1911), + [anon_sym_macro_rules_BANG] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_u8] = ACTIONS(1913), + [anon_sym_i8] = ACTIONS(1913), + [anon_sym_u16] = ACTIONS(1913), + [anon_sym_i16] = ACTIONS(1913), + [anon_sym_u32] = ACTIONS(1913), + [anon_sym_i32] = ACTIONS(1913), + [anon_sym_u64] = ACTIONS(1913), + [anon_sym_i64] = ACTIONS(1913), + [anon_sym_u128] = ACTIONS(1913), + [anon_sym_i128] = ACTIONS(1913), + [anon_sym_isize] = ACTIONS(1913), + [anon_sym_usize] = ACTIONS(1913), + [anon_sym_f32] = ACTIONS(1913), + [anon_sym_f64] = ACTIONS(1913), + [anon_sym_bool] = ACTIONS(1913), + [anon_sym_str] = ACTIONS(1913), + [anon_sym_char] = ACTIONS(1913), + [anon_sym_SQUOTE] = ACTIONS(1913), + [anon_sym_async] = ACTIONS(1913), + [anon_sym_break] = ACTIONS(1913), + [anon_sym_const] = ACTIONS(1913), + [anon_sym_continue] = ACTIONS(1913), + [anon_sym_default] = ACTIONS(1913), + [anon_sym_enum] = ACTIONS(1913), + [anon_sym_fn] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_impl] = ACTIONS(1913), + [anon_sym_let] = ACTIONS(1913), + [anon_sym_loop] = ACTIONS(1913), + [anon_sym_match] = ACTIONS(1913), + [anon_sym_mod] = ACTIONS(1913), + [anon_sym_pub] = ACTIONS(1913), + [anon_sym_return] = ACTIONS(1913), + [anon_sym_static] = ACTIONS(1913), + [anon_sym_struct] = ACTIONS(1913), + [anon_sym_trait] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1913), + [anon_sym_union] = ACTIONS(1913), + [anon_sym_unsafe] = ACTIONS(1913), + [anon_sym_use] = ACTIONS(1913), + [anon_sym_while] = ACTIONS(1913), + [anon_sym_POUND] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_extern] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_COLON_COLON] = ACTIONS(1911), + [anon_sym_AMP] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_yield] = ACTIONS(1913), + [anon_sym_move] = ACTIONS(1913), + [sym_integer_literal] = ACTIONS(1911), + [aux_sym_string_literal_token1] = ACTIONS(1911), + [sym_char_literal] = ACTIONS(1911), + [anon_sym_true] = ACTIONS(1913), + [anon_sym_false] = ACTIONS(1913), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1913), + [sym_super] = ACTIONS(1913), + [sym_crate] = ACTIONS(1913), + [sym_metavariable] = ACTIONS(1911), + [sym_raw_string_literal] = ACTIONS(1911), + [sym_float_literal] = ACTIONS(1911), [sym_block_comment] = ACTIONS(3), }, [448] = { - [ts_builtin_sym_end] = ACTIONS(1898), - [sym_identifier] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_macro_rules_BANG] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_RBRACE] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_u8] = ACTIONS(1900), - [anon_sym_i8] = ACTIONS(1900), - [anon_sym_u16] = ACTIONS(1900), - [anon_sym_i16] = ACTIONS(1900), - [anon_sym_u32] = ACTIONS(1900), - [anon_sym_i32] = ACTIONS(1900), - [anon_sym_u64] = ACTIONS(1900), - [anon_sym_i64] = ACTIONS(1900), - [anon_sym_u128] = ACTIONS(1900), - [anon_sym_i128] = ACTIONS(1900), - [anon_sym_isize] = ACTIONS(1900), - [anon_sym_usize] = ACTIONS(1900), - [anon_sym_f32] = ACTIONS(1900), - [anon_sym_f64] = ACTIONS(1900), - [anon_sym_bool] = ACTIONS(1900), - [anon_sym_str] = ACTIONS(1900), - [anon_sym_char] = ACTIONS(1900), - [anon_sym_SQUOTE] = ACTIONS(1900), - [anon_sym_async] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_default] = ACTIONS(1900), - [anon_sym_enum] = ACTIONS(1900), - [anon_sym_fn] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_impl] = ACTIONS(1900), - [anon_sym_let] = ACTIONS(1900), - [anon_sym_loop] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [anon_sym_mod] = ACTIONS(1900), - [anon_sym_pub] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1900), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_trait] = ACTIONS(1900), - [anon_sym_type] = ACTIONS(1900), - [anon_sym_union] = ACTIONS(1900), - [anon_sym_unsafe] = ACTIONS(1900), - [anon_sym_use] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [anon_sym_POUND] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1898), - [anon_sym_DOT_DOT] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_yield] = ACTIONS(1900), - [anon_sym_move] = ACTIONS(1900), - [sym_integer_literal] = ACTIONS(1898), - [aux_sym_string_literal_token1] = ACTIONS(1898), - [sym_char_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1900), - [sym_super] = ACTIONS(1900), - [sym_crate] = ACTIONS(1900), - [sym_metavariable] = ACTIONS(1898), - [sym_raw_string_literal] = ACTIONS(1898), - [sym_float_literal] = ACTIONS(1898), + [ts_builtin_sym_end] = ACTIONS(1915), + [sym_identifier] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1915), + [anon_sym_macro_rules_BANG] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1915), + [anon_sym_u8] = ACTIONS(1917), + [anon_sym_i8] = ACTIONS(1917), + [anon_sym_u16] = ACTIONS(1917), + [anon_sym_i16] = ACTIONS(1917), + [anon_sym_u32] = ACTIONS(1917), + [anon_sym_i32] = ACTIONS(1917), + [anon_sym_u64] = ACTIONS(1917), + [anon_sym_i64] = ACTIONS(1917), + [anon_sym_u128] = ACTIONS(1917), + [anon_sym_i128] = ACTIONS(1917), + [anon_sym_isize] = ACTIONS(1917), + [anon_sym_usize] = ACTIONS(1917), + [anon_sym_f32] = ACTIONS(1917), + [anon_sym_f64] = ACTIONS(1917), + [anon_sym_bool] = ACTIONS(1917), + [anon_sym_str] = ACTIONS(1917), + [anon_sym_char] = ACTIONS(1917), + [anon_sym_SQUOTE] = ACTIONS(1917), + [anon_sym_async] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_default] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_fn] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_impl] = ACTIONS(1917), + [anon_sym_let] = ACTIONS(1917), + [anon_sym_loop] = ACTIONS(1917), + [anon_sym_match] = ACTIONS(1917), + [anon_sym_mod] = ACTIONS(1917), + [anon_sym_pub] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(1917), + [anon_sym_static] = ACTIONS(1917), + [anon_sym_struct] = ACTIONS(1917), + [anon_sym_trait] = ACTIONS(1917), + [anon_sym_type] = ACTIONS(1917), + [anon_sym_union] = ACTIONS(1917), + [anon_sym_unsafe] = ACTIONS(1917), + [anon_sym_use] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_POUND] = ACTIONS(1915), + [anon_sym_BANG] = ACTIONS(1915), + [anon_sym_extern] = ACTIONS(1917), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_COLON_COLON] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_yield] = ACTIONS(1917), + [anon_sym_move] = ACTIONS(1917), + [sym_integer_literal] = ACTIONS(1915), + [aux_sym_string_literal_token1] = ACTIONS(1915), + [sym_char_literal] = ACTIONS(1915), + [anon_sym_true] = ACTIONS(1917), + [anon_sym_false] = ACTIONS(1917), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1917), + [sym_super] = ACTIONS(1917), + [sym_crate] = ACTIONS(1917), + [sym_metavariable] = ACTIONS(1915), + [sym_raw_string_literal] = ACTIONS(1915), + [sym_float_literal] = ACTIONS(1915), [sym_block_comment] = ACTIONS(3), }, [449] = { - [ts_builtin_sym_end] = ACTIONS(546), - [sym_identifier] = ACTIONS(548), - [anon_sym_SEMI] = ACTIONS(546), - [anon_sym_macro_rules_BANG] = ACTIONS(546), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_LBRACE] = ACTIONS(546), - [anon_sym_RBRACE] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(546), - [anon_sym_u8] = ACTIONS(548), - [anon_sym_i8] = ACTIONS(548), - [anon_sym_u16] = ACTIONS(548), - [anon_sym_i16] = ACTIONS(548), - [anon_sym_u32] = ACTIONS(548), - [anon_sym_i32] = ACTIONS(548), - [anon_sym_u64] = ACTIONS(548), - [anon_sym_i64] = ACTIONS(548), - [anon_sym_u128] = ACTIONS(548), - [anon_sym_i128] = ACTIONS(548), - [anon_sym_isize] = ACTIONS(548), - [anon_sym_usize] = ACTIONS(548), - [anon_sym_f32] = ACTIONS(548), - [anon_sym_f64] = ACTIONS(548), - [anon_sym_bool] = ACTIONS(548), - [anon_sym_str] = ACTIONS(548), - [anon_sym_char] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(548), - [anon_sym_async] = ACTIONS(548), - [anon_sym_break] = ACTIONS(548), - [anon_sym_const] = ACTIONS(548), - [anon_sym_continue] = ACTIONS(548), - [anon_sym_default] = ACTIONS(548), - [anon_sym_enum] = ACTIONS(548), - [anon_sym_fn] = ACTIONS(548), - [anon_sym_for] = ACTIONS(548), - [anon_sym_if] = ACTIONS(548), - [anon_sym_impl] = ACTIONS(548), - [anon_sym_let] = ACTIONS(548), - [anon_sym_loop] = ACTIONS(548), - [anon_sym_match] = ACTIONS(548), - [anon_sym_mod] = ACTIONS(548), - [anon_sym_pub] = ACTIONS(548), - [anon_sym_return] = ACTIONS(548), - [anon_sym_static] = ACTIONS(548), - [anon_sym_struct] = ACTIONS(548), - [anon_sym_trait] = ACTIONS(548), - [anon_sym_type] = ACTIONS(548), - [anon_sym_union] = ACTIONS(548), - [anon_sym_unsafe] = ACTIONS(548), - [anon_sym_use] = ACTIONS(548), - [anon_sym_while] = ACTIONS(548), - [anon_sym_POUND] = ACTIONS(546), - [anon_sym_BANG] = ACTIONS(546), - [anon_sym_extern] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(546), - [anon_sym_COLON_COLON] = ACTIONS(546), - [anon_sym_AMP] = ACTIONS(546), - [anon_sym_DOT_DOT] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_PIPE] = ACTIONS(546), - [anon_sym_yield] = ACTIONS(548), - [anon_sym_move] = ACTIONS(548), - [sym_integer_literal] = ACTIONS(546), - [aux_sym_string_literal_token1] = ACTIONS(546), - [sym_char_literal] = ACTIONS(546), - [anon_sym_true] = ACTIONS(548), - [anon_sym_false] = ACTIONS(548), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(548), - [sym_super] = ACTIONS(548), - [sym_crate] = ACTIONS(548), - [sym_metavariable] = ACTIONS(546), - [sym_raw_string_literal] = ACTIONS(546), - [sym_float_literal] = ACTIONS(546), + [ts_builtin_sym_end] = ACTIONS(1919), + [sym_identifier] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_macro_rules_BANG] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_LBRACK] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1919), + [anon_sym_u8] = ACTIONS(1921), + [anon_sym_i8] = ACTIONS(1921), + [anon_sym_u16] = ACTIONS(1921), + [anon_sym_i16] = ACTIONS(1921), + [anon_sym_u32] = ACTIONS(1921), + [anon_sym_i32] = ACTIONS(1921), + [anon_sym_u64] = ACTIONS(1921), + [anon_sym_i64] = ACTIONS(1921), + [anon_sym_u128] = ACTIONS(1921), + [anon_sym_i128] = ACTIONS(1921), + [anon_sym_isize] = ACTIONS(1921), + [anon_sym_usize] = ACTIONS(1921), + [anon_sym_f32] = ACTIONS(1921), + [anon_sym_f64] = ACTIONS(1921), + [anon_sym_bool] = ACTIONS(1921), + [anon_sym_str] = ACTIONS(1921), + [anon_sym_char] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1921), + [anon_sym_async] = ACTIONS(1921), + [anon_sym_break] = ACTIONS(1921), + [anon_sym_const] = ACTIONS(1921), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_default] = ACTIONS(1921), + [anon_sym_enum] = ACTIONS(1921), + [anon_sym_fn] = ACTIONS(1921), + [anon_sym_for] = ACTIONS(1921), + [anon_sym_if] = ACTIONS(1921), + [anon_sym_impl] = ACTIONS(1921), + [anon_sym_let] = ACTIONS(1921), + [anon_sym_loop] = ACTIONS(1921), + [anon_sym_match] = ACTIONS(1921), + [anon_sym_mod] = ACTIONS(1921), + [anon_sym_pub] = ACTIONS(1921), + [anon_sym_return] = ACTIONS(1921), + [anon_sym_static] = ACTIONS(1921), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_trait] = ACTIONS(1921), + [anon_sym_type] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1921), + [anon_sym_unsafe] = ACTIONS(1921), + [anon_sym_use] = ACTIONS(1921), + [anon_sym_while] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(1919), + [anon_sym_BANG] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(1919), + [anon_sym_COLON_COLON] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1919), + [anon_sym_DOT_DOT] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(1919), + [anon_sym_yield] = ACTIONS(1921), + [anon_sym_move] = ACTIONS(1921), + [sym_integer_literal] = ACTIONS(1919), + [aux_sym_string_literal_token1] = ACTIONS(1919), + [sym_char_literal] = ACTIONS(1919), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1921), + [sym_super] = ACTIONS(1921), + [sym_crate] = ACTIONS(1921), + [sym_metavariable] = ACTIONS(1919), + [sym_raw_string_literal] = ACTIONS(1919), + [sym_float_literal] = ACTIONS(1919), [sym_block_comment] = ACTIONS(3), }, [450] = { - [ts_builtin_sym_end] = ACTIONS(1902), - [sym_identifier] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_macro_rules_BANG] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_u8] = ACTIONS(1904), - [anon_sym_i8] = ACTIONS(1904), - [anon_sym_u16] = ACTIONS(1904), - [anon_sym_i16] = ACTIONS(1904), - [anon_sym_u32] = ACTIONS(1904), - [anon_sym_i32] = ACTIONS(1904), - [anon_sym_u64] = ACTIONS(1904), - [anon_sym_i64] = ACTIONS(1904), - [anon_sym_u128] = ACTIONS(1904), - [anon_sym_i128] = ACTIONS(1904), - [anon_sym_isize] = ACTIONS(1904), - [anon_sym_usize] = ACTIONS(1904), - [anon_sym_f32] = ACTIONS(1904), - [anon_sym_f64] = ACTIONS(1904), - [anon_sym_bool] = ACTIONS(1904), - [anon_sym_str] = ACTIONS(1904), - [anon_sym_char] = ACTIONS(1904), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_async] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_default] = ACTIONS(1904), - [anon_sym_enum] = ACTIONS(1904), - [anon_sym_fn] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_impl] = ACTIONS(1904), - [anon_sym_let] = ACTIONS(1904), - [anon_sym_loop] = ACTIONS(1904), - [anon_sym_match] = ACTIONS(1904), - [anon_sym_mod] = ACTIONS(1904), - [anon_sym_pub] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1904), - [anon_sym_struct] = ACTIONS(1904), - [anon_sym_trait] = ACTIONS(1904), - [anon_sym_type] = ACTIONS(1904), - [anon_sym_union] = ACTIONS(1904), - [anon_sym_unsafe] = ACTIONS(1904), - [anon_sym_use] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_POUND] = ACTIONS(1902), - [anon_sym_BANG] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_COLON_COLON] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1902), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_PIPE] = ACTIONS(1902), - [anon_sym_yield] = ACTIONS(1904), - [anon_sym_move] = ACTIONS(1904), - [sym_integer_literal] = ACTIONS(1902), - [aux_sym_string_literal_token1] = ACTIONS(1902), - [sym_char_literal] = ACTIONS(1902), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1904), - [sym_super] = ACTIONS(1904), - [sym_crate] = ACTIONS(1904), - [sym_metavariable] = ACTIONS(1902), - [sym_raw_string_literal] = ACTIONS(1902), - [sym_float_literal] = ACTIONS(1902), + [ts_builtin_sym_end] = ACTIONS(550), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_macro_rules_BANG] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(550), + [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_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(550), + [anon_sym_extern] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_COLON_COLON] = ACTIONS(550), + [anon_sym_AMP] = ACTIONS(550), + [anon_sym_DOT_DOT] = ACTIONS(550), + [anon_sym_DASH] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_yield] = ACTIONS(552), + [anon_sym_move] = ACTIONS(552), + [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), }, [451] = { - [ts_builtin_sym_end] = ACTIONS(1906), - [sym_identifier] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1906), - [anon_sym_macro_rules_BANG] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_u8] = ACTIONS(1908), - [anon_sym_i8] = ACTIONS(1908), - [anon_sym_u16] = ACTIONS(1908), - [anon_sym_i16] = ACTIONS(1908), - [anon_sym_u32] = ACTIONS(1908), - [anon_sym_i32] = ACTIONS(1908), - [anon_sym_u64] = ACTIONS(1908), - [anon_sym_i64] = ACTIONS(1908), - [anon_sym_u128] = ACTIONS(1908), - [anon_sym_i128] = ACTIONS(1908), - [anon_sym_isize] = ACTIONS(1908), - [anon_sym_usize] = ACTIONS(1908), - [anon_sym_f32] = ACTIONS(1908), - [anon_sym_f64] = ACTIONS(1908), - [anon_sym_bool] = ACTIONS(1908), - [anon_sym_str] = ACTIONS(1908), - [anon_sym_char] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1908), - [anon_sym_async] = ACTIONS(1908), - [anon_sym_break] = ACTIONS(1908), - [anon_sym_const] = ACTIONS(1908), - [anon_sym_continue] = ACTIONS(1908), - [anon_sym_default] = ACTIONS(1908), - [anon_sym_enum] = ACTIONS(1908), - [anon_sym_fn] = ACTIONS(1908), - [anon_sym_for] = ACTIONS(1908), - [anon_sym_if] = ACTIONS(1908), - [anon_sym_impl] = ACTIONS(1908), - [anon_sym_let] = ACTIONS(1908), - [anon_sym_loop] = ACTIONS(1908), - [anon_sym_match] = ACTIONS(1908), - [anon_sym_mod] = ACTIONS(1908), - [anon_sym_pub] = ACTIONS(1908), - [anon_sym_return] = ACTIONS(1908), - [anon_sym_static] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(1908), - [anon_sym_trait] = ACTIONS(1908), - [anon_sym_type] = ACTIONS(1908), - [anon_sym_union] = ACTIONS(1908), - [anon_sym_unsafe] = ACTIONS(1908), - [anon_sym_use] = ACTIONS(1908), - [anon_sym_while] = ACTIONS(1908), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1906), - [anon_sym_extern] = ACTIONS(1908), - [anon_sym_LT] = ACTIONS(1906), - [anon_sym_COLON_COLON] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1906), - [anon_sym_DOT_DOT] = ACTIONS(1906), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_PIPE] = ACTIONS(1906), - [anon_sym_yield] = ACTIONS(1908), - [anon_sym_move] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(1906), - [aux_sym_string_literal_token1] = ACTIONS(1906), - [sym_char_literal] = ACTIONS(1906), - [anon_sym_true] = ACTIONS(1908), - [anon_sym_false] = ACTIONS(1908), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1908), - [sym_super] = ACTIONS(1908), - [sym_crate] = ACTIONS(1908), - [sym_metavariable] = ACTIONS(1906), - [sym_raw_string_literal] = ACTIONS(1906), - [sym_float_literal] = ACTIONS(1906), + [ts_builtin_sym_end] = ACTIONS(1923), + [sym_identifier] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1923), + [anon_sym_macro_rules_BANG] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_u8] = ACTIONS(1925), + [anon_sym_i8] = ACTIONS(1925), + [anon_sym_u16] = ACTIONS(1925), + [anon_sym_i16] = ACTIONS(1925), + [anon_sym_u32] = ACTIONS(1925), + [anon_sym_i32] = ACTIONS(1925), + [anon_sym_u64] = ACTIONS(1925), + [anon_sym_i64] = ACTIONS(1925), + [anon_sym_u128] = ACTIONS(1925), + [anon_sym_i128] = ACTIONS(1925), + [anon_sym_isize] = ACTIONS(1925), + [anon_sym_usize] = ACTIONS(1925), + [anon_sym_f32] = ACTIONS(1925), + [anon_sym_f64] = ACTIONS(1925), + [anon_sym_bool] = ACTIONS(1925), + [anon_sym_str] = ACTIONS(1925), + [anon_sym_char] = ACTIONS(1925), + [anon_sym_SQUOTE] = ACTIONS(1925), + [anon_sym_async] = ACTIONS(1925), + [anon_sym_break] = ACTIONS(1925), + [anon_sym_const] = ACTIONS(1925), + [anon_sym_continue] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(1925), + [anon_sym_enum] = ACTIONS(1925), + [anon_sym_fn] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(1925), + [anon_sym_if] = ACTIONS(1925), + [anon_sym_impl] = ACTIONS(1925), + [anon_sym_let] = ACTIONS(1925), + [anon_sym_loop] = ACTIONS(1925), + [anon_sym_match] = ACTIONS(1925), + [anon_sym_mod] = ACTIONS(1925), + [anon_sym_pub] = ACTIONS(1925), + [anon_sym_return] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1925), + [anon_sym_struct] = ACTIONS(1925), + [anon_sym_trait] = ACTIONS(1925), + [anon_sym_type] = ACTIONS(1925), + [anon_sym_union] = ACTIONS(1925), + [anon_sym_unsafe] = ACTIONS(1925), + [anon_sym_use] = ACTIONS(1925), + [anon_sym_while] = ACTIONS(1925), + [anon_sym_POUND] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_extern] = ACTIONS(1925), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_COLON_COLON] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_yield] = ACTIONS(1925), + [anon_sym_move] = ACTIONS(1925), + [sym_integer_literal] = ACTIONS(1923), + [aux_sym_string_literal_token1] = ACTIONS(1923), + [sym_char_literal] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1925), + [anon_sym_false] = ACTIONS(1925), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1925), + [sym_super] = ACTIONS(1925), + [sym_crate] = ACTIONS(1925), + [sym_metavariable] = ACTIONS(1923), + [sym_raw_string_literal] = ACTIONS(1923), + [sym_float_literal] = ACTIONS(1923), [sym_block_comment] = ACTIONS(3), }, [452] = { - [ts_builtin_sym_end] = ACTIONS(1910), - [sym_identifier] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_macro_rules_BANG] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1910), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_RBRACE] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1910), - [anon_sym_STAR] = ACTIONS(1910), - [anon_sym_u8] = ACTIONS(1912), - [anon_sym_i8] = ACTIONS(1912), - [anon_sym_u16] = ACTIONS(1912), - [anon_sym_i16] = ACTIONS(1912), - [anon_sym_u32] = ACTIONS(1912), - [anon_sym_i32] = ACTIONS(1912), - [anon_sym_u64] = ACTIONS(1912), - [anon_sym_i64] = ACTIONS(1912), - [anon_sym_u128] = ACTIONS(1912), - [anon_sym_i128] = ACTIONS(1912), - [anon_sym_isize] = ACTIONS(1912), - [anon_sym_usize] = ACTIONS(1912), - [anon_sym_f32] = ACTIONS(1912), - [anon_sym_f64] = ACTIONS(1912), - [anon_sym_bool] = ACTIONS(1912), - [anon_sym_str] = ACTIONS(1912), - [anon_sym_char] = ACTIONS(1912), - [anon_sym_SQUOTE] = ACTIONS(1912), - [anon_sym_async] = ACTIONS(1912), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_const] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_default] = ACTIONS(1912), - [anon_sym_enum] = ACTIONS(1912), - [anon_sym_fn] = ACTIONS(1912), - [anon_sym_for] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(1912), - [anon_sym_impl] = ACTIONS(1912), - [anon_sym_let] = ACTIONS(1912), - [anon_sym_loop] = ACTIONS(1912), - [anon_sym_match] = ACTIONS(1912), - [anon_sym_mod] = ACTIONS(1912), - [anon_sym_pub] = ACTIONS(1912), - [anon_sym_return] = ACTIONS(1912), - [anon_sym_static] = ACTIONS(1912), - [anon_sym_struct] = ACTIONS(1912), - [anon_sym_trait] = ACTIONS(1912), - [anon_sym_type] = ACTIONS(1912), - [anon_sym_union] = ACTIONS(1912), - [anon_sym_unsafe] = ACTIONS(1912), - [anon_sym_use] = ACTIONS(1912), - [anon_sym_while] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(1910), - [anon_sym_BANG] = ACTIONS(1910), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym_LT] = ACTIONS(1910), - [anon_sym_COLON_COLON] = ACTIONS(1910), - [anon_sym_AMP] = ACTIONS(1910), - [anon_sym_DOT_DOT] = ACTIONS(1910), - [anon_sym_DASH] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1910), - [anon_sym_yield] = ACTIONS(1912), - [anon_sym_move] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(1910), - [aux_sym_string_literal_token1] = ACTIONS(1910), - [sym_char_literal] = ACTIONS(1910), - [anon_sym_true] = ACTIONS(1912), - [anon_sym_false] = ACTIONS(1912), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1912), - [sym_super] = ACTIONS(1912), - [sym_crate] = ACTIONS(1912), - [sym_metavariable] = ACTIONS(1910), - [sym_raw_string_literal] = ACTIONS(1910), - [sym_float_literal] = ACTIONS(1910), + [ts_builtin_sym_end] = ACTIONS(1927), + [sym_identifier] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1927), + [anon_sym_macro_rules_BANG] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1927), + [anon_sym_u8] = ACTIONS(1929), + [anon_sym_i8] = ACTIONS(1929), + [anon_sym_u16] = ACTIONS(1929), + [anon_sym_i16] = ACTIONS(1929), + [anon_sym_u32] = ACTIONS(1929), + [anon_sym_i32] = ACTIONS(1929), + [anon_sym_u64] = ACTIONS(1929), + [anon_sym_i64] = ACTIONS(1929), + [anon_sym_u128] = ACTIONS(1929), + [anon_sym_i128] = ACTIONS(1929), + [anon_sym_isize] = ACTIONS(1929), + [anon_sym_usize] = ACTIONS(1929), + [anon_sym_f32] = ACTIONS(1929), + [anon_sym_f64] = ACTIONS(1929), + [anon_sym_bool] = ACTIONS(1929), + [anon_sym_str] = ACTIONS(1929), + [anon_sym_char] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1929), + [anon_sym_async] = ACTIONS(1929), + [anon_sym_break] = ACTIONS(1929), + [anon_sym_const] = ACTIONS(1929), + [anon_sym_continue] = ACTIONS(1929), + [anon_sym_default] = ACTIONS(1929), + [anon_sym_enum] = ACTIONS(1929), + [anon_sym_fn] = ACTIONS(1929), + [anon_sym_for] = ACTIONS(1929), + [anon_sym_if] = ACTIONS(1929), + [anon_sym_impl] = ACTIONS(1929), + [anon_sym_let] = ACTIONS(1929), + [anon_sym_loop] = ACTIONS(1929), + [anon_sym_match] = ACTIONS(1929), + [anon_sym_mod] = ACTIONS(1929), + [anon_sym_pub] = ACTIONS(1929), + [anon_sym_return] = ACTIONS(1929), + [anon_sym_static] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1929), + [anon_sym_trait] = ACTIONS(1929), + [anon_sym_type] = ACTIONS(1929), + [anon_sym_union] = ACTIONS(1929), + [anon_sym_unsafe] = ACTIONS(1929), + [anon_sym_use] = ACTIONS(1929), + [anon_sym_while] = ACTIONS(1929), + [anon_sym_POUND] = ACTIONS(1927), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_extern] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1927), + [anon_sym_COLON_COLON] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1927), + [anon_sym_yield] = ACTIONS(1929), + [anon_sym_move] = ACTIONS(1929), + [sym_integer_literal] = ACTIONS(1927), + [aux_sym_string_literal_token1] = ACTIONS(1927), + [sym_char_literal] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1929), + [anon_sym_false] = ACTIONS(1929), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1929), + [sym_super] = ACTIONS(1929), + [sym_crate] = ACTIONS(1929), + [sym_metavariable] = ACTIONS(1927), + [sym_raw_string_literal] = ACTIONS(1927), + [sym_float_literal] = ACTIONS(1927), [sym_block_comment] = ACTIONS(3), }, [453] = { - [ts_builtin_sym_end] = ACTIONS(1914), - [sym_identifier] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_macro_rules_BANG] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1914), - [anon_sym_u8] = ACTIONS(1916), - [anon_sym_i8] = ACTIONS(1916), - [anon_sym_u16] = ACTIONS(1916), - [anon_sym_i16] = ACTIONS(1916), - [anon_sym_u32] = ACTIONS(1916), - [anon_sym_i32] = ACTIONS(1916), - [anon_sym_u64] = ACTIONS(1916), - [anon_sym_i64] = ACTIONS(1916), - [anon_sym_u128] = ACTIONS(1916), - [anon_sym_i128] = ACTIONS(1916), - [anon_sym_isize] = ACTIONS(1916), - [anon_sym_usize] = ACTIONS(1916), - [anon_sym_f32] = ACTIONS(1916), - [anon_sym_f64] = ACTIONS(1916), - [anon_sym_bool] = ACTIONS(1916), - [anon_sym_str] = ACTIONS(1916), - [anon_sym_char] = ACTIONS(1916), - [anon_sym_SQUOTE] = ACTIONS(1916), - [anon_sym_async] = ACTIONS(1916), - [anon_sym_break] = ACTIONS(1916), - [anon_sym_const] = ACTIONS(1916), - [anon_sym_continue] = ACTIONS(1916), - [anon_sym_default] = ACTIONS(1916), - [anon_sym_enum] = ACTIONS(1916), - [anon_sym_fn] = ACTIONS(1916), - [anon_sym_for] = ACTIONS(1916), - [anon_sym_if] = ACTIONS(1916), - [anon_sym_impl] = ACTIONS(1916), - [anon_sym_let] = ACTIONS(1916), - [anon_sym_loop] = ACTIONS(1916), - [anon_sym_match] = ACTIONS(1916), - [anon_sym_mod] = ACTIONS(1916), - [anon_sym_pub] = ACTIONS(1916), - [anon_sym_return] = ACTIONS(1916), - [anon_sym_static] = ACTIONS(1916), - [anon_sym_struct] = ACTIONS(1916), - [anon_sym_trait] = ACTIONS(1916), - [anon_sym_type] = ACTIONS(1916), - [anon_sym_union] = ACTIONS(1916), - [anon_sym_unsafe] = ACTIONS(1916), - [anon_sym_use] = ACTIONS(1916), - [anon_sym_while] = ACTIONS(1916), - [anon_sym_POUND] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_extern] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1914), - [anon_sym_COLON_COLON] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1914), - [anon_sym_DOT_DOT] = ACTIONS(1914), - [anon_sym_DASH] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1914), - [anon_sym_yield] = ACTIONS(1916), - [anon_sym_move] = ACTIONS(1916), - [sym_integer_literal] = ACTIONS(1914), - [aux_sym_string_literal_token1] = ACTIONS(1914), - [sym_char_literal] = ACTIONS(1914), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1916), - [sym_super] = ACTIONS(1916), - [sym_crate] = ACTIONS(1916), - [sym_metavariable] = ACTIONS(1914), - [sym_raw_string_literal] = ACTIONS(1914), - [sym_float_literal] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_identifier] = ACTIONS(1933), + [anon_sym_SEMI] = ACTIONS(1931), + [anon_sym_macro_rules_BANG] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(1931), + [anon_sym_u8] = ACTIONS(1933), + [anon_sym_i8] = ACTIONS(1933), + [anon_sym_u16] = ACTIONS(1933), + [anon_sym_i16] = ACTIONS(1933), + [anon_sym_u32] = ACTIONS(1933), + [anon_sym_i32] = ACTIONS(1933), + [anon_sym_u64] = ACTIONS(1933), + [anon_sym_i64] = ACTIONS(1933), + [anon_sym_u128] = ACTIONS(1933), + [anon_sym_i128] = ACTIONS(1933), + [anon_sym_isize] = ACTIONS(1933), + [anon_sym_usize] = ACTIONS(1933), + [anon_sym_f32] = ACTIONS(1933), + [anon_sym_f64] = ACTIONS(1933), + [anon_sym_bool] = ACTIONS(1933), + [anon_sym_str] = ACTIONS(1933), + [anon_sym_char] = ACTIONS(1933), + [anon_sym_SQUOTE] = ACTIONS(1933), + [anon_sym_async] = ACTIONS(1933), + [anon_sym_break] = ACTIONS(1933), + [anon_sym_const] = ACTIONS(1933), + [anon_sym_continue] = ACTIONS(1933), + [anon_sym_default] = ACTIONS(1933), + [anon_sym_enum] = ACTIONS(1933), + [anon_sym_fn] = ACTIONS(1933), + [anon_sym_for] = ACTIONS(1933), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_impl] = ACTIONS(1933), + [anon_sym_let] = ACTIONS(1933), + [anon_sym_loop] = ACTIONS(1933), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_mod] = ACTIONS(1933), + [anon_sym_pub] = ACTIONS(1933), + [anon_sym_return] = ACTIONS(1933), + [anon_sym_static] = ACTIONS(1933), + [anon_sym_struct] = ACTIONS(1933), + [anon_sym_trait] = ACTIONS(1933), + [anon_sym_type] = ACTIONS(1933), + [anon_sym_union] = ACTIONS(1933), + [anon_sym_unsafe] = ACTIONS(1933), + [anon_sym_use] = ACTIONS(1933), + [anon_sym_while] = ACTIONS(1933), + [anon_sym_POUND] = ACTIONS(1931), + [anon_sym_BANG] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1933), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_COLON_COLON] = ACTIONS(1931), + [anon_sym_AMP] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_PIPE] = ACTIONS(1931), + [anon_sym_yield] = ACTIONS(1933), + [anon_sym_move] = ACTIONS(1933), + [sym_integer_literal] = ACTIONS(1931), + [aux_sym_string_literal_token1] = ACTIONS(1931), + [sym_char_literal] = ACTIONS(1931), + [anon_sym_true] = ACTIONS(1933), + [anon_sym_false] = ACTIONS(1933), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1933), + [sym_super] = ACTIONS(1933), + [sym_crate] = ACTIONS(1933), + [sym_metavariable] = ACTIONS(1931), + [sym_raw_string_literal] = ACTIONS(1931), + [sym_float_literal] = ACTIONS(1931), [sym_block_comment] = ACTIONS(3), }, [454] = { - [ts_builtin_sym_end] = ACTIONS(1918), - [sym_identifier] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_macro_rules_BANG] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1918), - [anon_sym_u8] = ACTIONS(1920), - [anon_sym_i8] = ACTIONS(1920), - [anon_sym_u16] = ACTIONS(1920), - [anon_sym_i16] = ACTIONS(1920), - [anon_sym_u32] = ACTIONS(1920), - [anon_sym_i32] = ACTIONS(1920), - [anon_sym_u64] = ACTIONS(1920), - [anon_sym_i64] = ACTIONS(1920), - [anon_sym_u128] = ACTIONS(1920), - [anon_sym_i128] = ACTIONS(1920), - [anon_sym_isize] = ACTIONS(1920), - [anon_sym_usize] = ACTIONS(1920), - [anon_sym_f32] = ACTIONS(1920), - [anon_sym_f64] = ACTIONS(1920), - [anon_sym_bool] = ACTIONS(1920), - [anon_sym_str] = ACTIONS(1920), - [anon_sym_char] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_async] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_default] = ACTIONS(1920), - [anon_sym_enum] = ACTIONS(1920), - [anon_sym_fn] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_impl] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_mod] = ACTIONS(1920), - [anon_sym_pub] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_static] = ACTIONS(1920), - [anon_sym_struct] = ACTIONS(1920), - [anon_sym_trait] = ACTIONS(1920), - [anon_sym_type] = ACTIONS(1920), - [anon_sym_union] = ACTIONS(1920), - [anon_sym_unsafe] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_POUND] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1918), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_COLON_COLON] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - [anon_sym_DOT_DOT] = ACTIONS(1918), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_yield] = ACTIONS(1920), - [anon_sym_move] = ACTIONS(1920), - [sym_integer_literal] = ACTIONS(1918), - [aux_sym_string_literal_token1] = ACTIONS(1918), - [sym_char_literal] = ACTIONS(1918), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1920), - [sym_super] = ACTIONS(1920), - [sym_crate] = ACTIONS(1920), - [sym_metavariable] = ACTIONS(1918), - [sym_raw_string_literal] = ACTIONS(1918), - [sym_float_literal] = ACTIONS(1918), + [ts_builtin_sym_end] = ACTIONS(1935), + [sym_identifier] = ACTIONS(1937), + [anon_sym_SEMI] = ACTIONS(1935), + [anon_sym_macro_rules_BANG] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1935), + [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1935), + [anon_sym_STAR] = ACTIONS(1935), + [anon_sym_u8] = ACTIONS(1937), + [anon_sym_i8] = ACTIONS(1937), + [anon_sym_u16] = ACTIONS(1937), + [anon_sym_i16] = ACTIONS(1937), + [anon_sym_u32] = ACTIONS(1937), + [anon_sym_i32] = ACTIONS(1937), + [anon_sym_u64] = ACTIONS(1937), + [anon_sym_i64] = ACTIONS(1937), + [anon_sym_u128] = ACTIONS(1937), + [anon_sym_i128] = ACTIONS(1937), + [anon_sym_isize] = ACTIONS(1937), + [anon_sym_usize] = ACTIONS(1937), + [anon_sym_f32] = ACTIONS(1937), + [anon_sym_f64] = ACTIONS(1937), + [anon_sym_bool] = ACTIONS(1937), + [anon_sym_str] = ACTIONS(1937), + [anon_sym_char] = ACTIONS(1937), + [anon_sym_SQUOTE] = ACTIONS(1937), + [anon_sym_async] = ACTIONS(1937), + [anon_sym_break] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(1937), + [anon_sym_continue] = ACTIONS(1937), + [anon_sym_default] = ACTIONS(1937), + [anon_sym_enum] = ACTIONS(1937), + [anon_sym_fn] = ACTIONS(1937), + [anon_sym_for] = ACTIONS(1937), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_impl] = ACTIONS(1937), + [anon_sym_let] = ACTIONS(1937), + [anon_sym_loop] = ACTIONS(1937), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_mod] = ACTIONS(1937), + [anon_sym_pub] = ACTIONS(1937), + [anon_sym_return] = ACTIONS(1937), + [anon_sym_static] = ACTIONS(1937), + [anon_sym_struct] = ACTIONS(1937), + [anon_sym_trait] = ACTIONS(1937), + [anon_sym_type] = ACTIONS(1937), + [anon_sym_union] = ACTIONS(1937), + [anon_sym_unsafe] = ACTIONS(1937), + [anon_sym_use] = ACTIONS(1937), + [anon_sym_while] = ACTIONS(1937), + [anon_sym_POUND] = ACTIONS(1935), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_extern] = ACTIONS(1937), + [anon_sym_LT] = ACTIONS(1935), + [anon_sym_COLON_COLON] = ACTIONS(1935), + [anon_sym_AMP] = ACTIONS(1935), + [anon_sym_DOT_DOT] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1935), + [anon_sym_yield] = ACTIONS(1937), + [anon_sym_move] = ACTIONS(1937), + [sym_integer_literal] = ACTIONS(1935), + [aux_sym_string_literal_token1] = ACTIONS(1935), + [sym_char_literal] = ACTIONS(1935), + [anon_sym_true] = ACTIONS(1937), + [anon_sym_false] = ACTIONS(1937), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1937), + [sym_super] = ACTIONS(1937), + [sym_crate] = ACTIONS(1937), + [sym_metavariable] = ACTIONS(1935), + [sym_raw_string_literal] = ACTIONS(1935), + [sym_float_literal] = ACTIONS(1935), [sym_block_comment] = ACTIONS(3), }, [455] = { - [ts_builtin_sym_end] = ACTIONS(1922), - [sym_identifier] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1922), - [anon_sym_macro_rules_BANG] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1922), - [anon_sym_RBRACE] = ACTIONS(1922), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_u8] = ACTIONS(1924), - [anon_sym_i8] = ACTIONS(1924), - [anon_sym_u16] = ACTIONS(1924), - [anon_sym_i16] = ACTIONS(1924), - [anon_sym_u32] = ACTIONS(1924), - [anon_sym_i32] = ACTIONS(1924), - [anon_sym_u64] = ACTIONS(1924), - [anon_sym_i64] = ACTIONS(1924), - [anon_sym_u128] = ACTIONS(1924), - [anon_sym_i128] = ACTIONS(1924), - [anon_sym_isize] = ACTIONS(1924), - [anon_sym_usize] = ACTIONS(1924), - [anon_sym_f32] = ACTIONS(1924), - [anon_sym_f64] = ACTIONS(1924), - [anon_sym_bool] = ACTIONS(1924), - [anon_sym_str] = ACTIONS(1924), - [anon_sym_char] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_async] = ACTIONS(1924), - [anon_sym_break] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1924), - [anon_sym_continue] = ACTIONS(1924), - [anon_sym_default] = ACTIONS(1924), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_fn] = ACTIONS(1924), - [anon_sym_for] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(1924), - [anon_sym_impl] = ACTIONS(1924), - [anon_sym_let] = ACTIONS(1924), - [anon_sym_loop] = ACTIONS(1924), - [anon_sym_match] = ACTIONS(1924), - [anon_sym_mod] = ACTIONS(1924), - [anon_sym_pub] = ACTIONS(1924), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(1924), - [anon_sym_trait] = ACTIONS(1924), - [anon_sym_type] = ACTIONS(1924), - [anon_sym_union] = ACTIONS(1924), - [anon_sym_unsafe] = ACTIONS(1924), - [anon_sym_use] = ACTIONS(1924), - [anon_sym_while] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_extern] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_COLON_COLON] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1922), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_yield] = ACTIONS(1924), - [anon_sym_move] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(1922), - [aux_sym_string_literal_token1] = ACTIONS(1922), - [sym_char_literal] = ACTIONS(1922), - [anon_sym_true] = ACTIONS(1924), - [anon_sym_false] = ACTIONS(1924), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1924), - [sym_super] = ACTIONS(1924), - [sym_crate] = ACTIONS(1924), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1922), - [sym_float_literal] = ACTIONS(1922), + [ts_builtin_sym_end] = ACTIONS(1939), + [sym_identifier] = ACTIONS(1941), + [anon_sym_SEMI] = ACTIONS(1939), + [anon_sym_macro_rules_BANG] = ACTIONS(1939), + [anon_sym_LPAREN] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1939), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1939), + [anon_sym_u8] = ACTIONS(1941), + [anon_sym_i8] = ACTIONS(1941), + [anon_sym_u16] = ACTIONS(1941), + [anon_sym_i16] = ACTIONS(1941), + [anon_sym_u32] = ACTIONS(1941), + [anon_sym_i32] = ACTIONS(1941), + [anon_sym_u64] = ACTIONS(1941), + [anon_sym_i64] = ACTIONS(1941), + [anon_sym_u128] = ACTIONS(1941), + [anon_sym_i128] = ACTIONS(1941), + [anon_sym_isize] = ACTIONS(1941), + [anon_sym_usize] = ACTIONS(1941), + [anon_sym_f32] = ACTIONS(1941), + [anon_sym_f64] = ACTIONS(1941), + [anon_sym_bool] = ACTIONS(1941), + [anon_sym_str] = ACTIONS(1941), + [anon_sym_char] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_async] = ACTIONS(1941), + [anon_sym_break] = ACTIONS(1941), + [anon_sym_const] = ACTIONS(1941), + [anon_sym_continue] = ACTIONS(1941), + [anon_sym_default] = ACTIONS(1941), + [anon_sym_enum] = ACTIONS(1941), + [anon_sym_fn] = ACTIONS(1941), + [anon_sym_for] = ACTIONS(1941), + [anon_sym_if] = ACTIONS(1941), + [anon_sym_impl] = ACTIONS(1941), + [anon_sym_let] = ACTIONS(1941), + [anon_sym_loop] = ACTIONS(1941), + [anon_sym_match] = ACTIONS(1941), + [anon_sym_mod] = ACTIONS(1941), + [anon_sym_pub] = ACTIONS(1941), + [anon_sym_return] = ACTIONS(1941), + [anon_sym_static] = ACTIONS(1941), + [anon_sym_struct] = ACTIONS(1941), + [anon_sym_trait] = ACTIONS(1941), + [anon_sym_type] = ACTIONS(1941), + [anon_sym_union] = ACTIONS(1941), + [anon_sym_unsafe] = ACTIONS(1941), + [anon_sym_use] = ACTIONS(1941), + [anon_sym_while] = ACTIONS(1941), + [anon_sym_POUND] = ACTIONS(1939), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_extern] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(1939), + [anon_sym_COLON_COLON] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_DOT_DOT] = ACTIONS(1939), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PIPE] = ACTIONS(1939), + [anon_sym_yield] = ACTIONS(1941), + [anon_sym_move] = ACTIONS(1941), + [sym_integer_literal] = ACTIONS(1939), + [aux_sym_string_literal_token1] = ACTIONS(1939), + [sym_char_literal] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1941), + [anon_sym_false] = ACTIONS(1941), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1941), + [sym_super] = ACTIONS(1941), + [sym_crate] = ACTIONS(1941), + [sym_metavariable] = ACTIONS(1939), + [sym_raw_string_literal] = ACTIONS(1939), + [sym_float_literal] = ACTIONS(1939), [sym_block_comment] = ACTIONS(3), }, [456] = { - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_macro_rules_BANG] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_STAR] = ACTIONS(1926), - [anon_sym_u8] = ACTIONS(1928), - [anon_sym_i8] = ACTIONS(1928), - [anon_sym_u16] = ACTIONS(1928), - [anon_sym_i16] = ACTIONS(1928), - [anon_sym_u32] = ACTIONS(1928), - [anon_sym_i32] = ACTIONS(1928), - [anon_sym_u64] = ACTIONS(1928), - [anon_sym_i64] = ACTIONS(1928), - [anon_sym_u128] = ACTIONS(1928), - [anon_sym_i128] = ACTIONS(1928), - [anon_sym_isize] = ACTIONS(1928), - [anon_sym_usize] = ACTIONS(1928), - [anon_sym_f32] = ACTIONS(1928), - [anon_sym_f64] = ACTIONS(1928), - [anon_sym_bool] = ACTIONS(1928), - [anon_sym_str] = ACTIONS(1928), - [anon_sym_char] = ACTIONS(1928), - [anon_sym_SQUOTE] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_break] = ACTIONS(1928), - [anon_sym_const] = ACTIONS(1928), - [anon_sym_continue] = ACTIONS(1928), - [anon_sym_default] = ACTIONS(1928), - [anon_sym_enum] = ACTIONS(1928), - [anon_sym_fn] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_impl] = ACTIONS(1928), - [anon_sym_let] = ACTIONS(1928), - [anon_sym_loop] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_mod] = ACTIONS(1928), - [anon_sym_pub] = ACTIONS(1928), - [anon_sym_return] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1928), - [anon_sym_struct] = ACTIONS(1928), - [anon_sym_trait] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_union] = ACTIONS(1928), - [anon_sym_unsafe] = ACTIONS(1928), - [anon_sym_use] = ACTIONS(1928), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_POUND] = ACTIONS(1926), - [anon_sym_BANG] = ACTIONS(1926), - [anon_sym_extern] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1926), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_AMP] = ACTIONS(1926), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_yield] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [sym_integer_literal] = ACTIONS(1926), - [aux_sym_string_literal_token1] = ACTIONS(1926), - [sym_char_literal] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1928), - [sym_super] = ACTIONS(1928), - [sym_crate] = ACTIONS(1928), - [sym_metavariable] = ACTIONS(1926), - [sym_raw_string_literal] = ACTIONS(1926), - [sym_float_literal] = ACTIONS(1926), + [ts_builtin_sym_end] = ACTIONS(1943), + [sym_identifier] = ACTIONS(1945), + [anon_sym_SEMI] = ACTIONS(1943), + [anon_sym_macro_rules_BANG] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_RBRACE] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1943), + [anon_sym_u8] = ACTIONS(1945), + [anon_sym_i8] = ACTIONS(1945), + [anon_sym_u16] = ACTIONS(1945), + [anon_sym_i16] = ACTIONS(1945), + [anon_sym_u32] = ACTIONS(1945), + [anon_sym_i32] = ACTIONS(1945), + [anon_sym_u64] = ACTIONS(1945), + [anon_sym_i64] = ACTIONS(1945), + [anon_sym_u128] = ACTIONS(1945), + [anon_sym_i128] = ACTIONS(1945), + [anon_sym_isize] = ACTIONS(1945), + [anon_sym_usize] = ACTIONS(1945), + [anon_sym_f32] = ACTIONS(1945), + [anon_sym_f64] = ACTIONS(1945), + [anon_sym_bool] = ACTIONS(1945), + [anon_sym_str] = ACTIONS(1945), + [anon_sym_char] = ACTIONS(1945), + [anon_sym_SQUOTE] = ACTIONS(1945), + [anon_sym_async] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_default] = ACTIONS(1945), + [anon_sym_enum] = ACTIONS(1945), + [anon_sym_fn] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_impl] = ACTIONS(1945), + [anon_sym_let] = ACTIONS(1945), + [anon_sym_loop] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_mod] = ACTIONS(1945), + [anon_sym_pub] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_static] = ACTIONS(1945), + [anon_sym_struct] = ACTIONS(1945), + [anon_sym_trait] = ACTIONS(1945), + [anon_sym_type] = ACTIONS(1945), + [anon_sym_union] = ACTIONS(1945), + [anon_sym_unsafe] = ACTIONS(1945), + [anon_sym_use] = ACTIONS(1945), + [anon_sym_while] = ACTIONS(1945), + [anon_sym_POUND] = ACTIONS(1943), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(1943), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_yield] = ACTIONS(1945), + [anon_sym_move] = ACTIONS(1945), + [sym_integer_literal] = ACTIONS(1943), + [aux_sym_string_literal_token1] = ACTIONS(1943), + [sym_char_literal] = ACTIONS(1943), + [anon_sym_true] = ACTIONS(1945), + [anon_sym_false] = ACTIONS(1945), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1945), + [sym_super] = ACTIONS(1945), + [sym_crate] = ACTIONS(1945), + [sym_metavariable] = ACTIONS(1943), + [sym_raw_string_literal] = ACTIONS(1943), + [sym_float_literal] = ACTIONS(1943), [sym_block_comment] = ACTIONS(3), }, [457] = { - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_macro_rules_BANG] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_u8] = ACTIONS(1932), - [anon_sym_i8] = ACTIONS(1932), - [anon_sym_u16] = ACTIONS(1932), - [anon_sym_i16] = ACTIONS(1932), - [anon_sym_u32] = ACTIONS(1932), - [anon_sym_i32] = ACTIONS(1932), - [anon_sym_u64] = ACTIONS(1932), - [anon_sym_i64] = ACTIONS(1932), - [anon_sym_u128] = ACTIONS(1932), - [anon_sym_i128] = ACTIONS(1932), - [anon_sym_isize] = ACTIONS(1932), - [anon_sym_usize] = ACTIONS(1932), - [anon_sym_f32] = ACTIONS(1932), - [anon_sym_f64] = ACTIONS(1932), - [anon_sym_bool] = ACTIONS(1932), - [anon_sym_str] = ACTIONS(1932), - [anon_sym_char] = ACTIONS(1932), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1932), - [anon_sym_const] = ACTIONS(1932), - [anon_sym_continue] = ACTIONS(1932), - [anon_sym_default] = ACTIONS(1932), - [anon_sym_enum] = ACTIONS(1932), - [anon_sym_fn] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_impl] = ACTIONS(1932), - [anon_sym_let] = ACTIONS(1932), - [anon_sym_loop] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_mod] = ACTIONS(1932), - [anon_sym_pub] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_static] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1932), - [anon_sym_trait] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_union] = ACTIONS(1932), - [anon_sym_unsafe] = ACTIONS(1932), - [anon_sym_use] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1930), - [anon_sym_extern] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_COLON_COLON] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_yield] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [sym_integer_literal] = ACTIONS(1930), - [aux_sym_string_literal_token1] = ACTIONS(1930), - [sym_char_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1932), - [sym_super] = ACTIONS(1932), - [sym_crate] = ACTIONS(1932), - [sym_metavariable] = ACTIONS(1930), - [sym_raw_string_literal] = ACTIONS(1930), - [sym_float_literal] = ACTIONS(1930), + [ts_builtin_sym_end] = ACTIONS(1947), + [sym_identifier] = ACTIONS(1949), + [anon_sym_SEMI] = ACTIONS(1947), + [anon_sym_macro_rules_BANG] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_u8] = ACTIONS(1949), + [anon_sym_i8] = ACTIONS(1949), + [anon_sym_u16] = ACTIONS(1949), + [anon_sym_i16] = ACTIONS(1949), + [anon_sym_u32] = ACTIONS(1949), + [anon_sym_i32] = ACTIONS(1949), + [anon_sym_u64] = ACTIONS(1949), + [anon_sym_i64] = ACTIONS(1949), + [anon_sym_u128] = ACTIONS(1949), + [anon_sym_i128] = ACTIONS(1949), + [anon_sym_isize] = ACTIONS(1949), + [anon_sym_usize] = ACTIONS(1949), + [anon_sym_f32] = ACTIONS(1949), + [anon_sym_f64] = ACTIONS(1949), + [anon_sym_bool] = ACTIONS(1949), + [anon_sym_str] = ACTIONS(1949), + [anon_sym_char] = ACTIONS(1949), + [anon_sym_SQUOTE] = ACTIONS(1949), + [anon_sym_async] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_default] = ACTIONS(1949), + [anon_sym_enum] = ACTIONS(1949), + [anon_sym_fn] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_impl] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_mod] = ACTIONS(1949), + [anon_sym_pub] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_static] = ACTIONS(1949), + [anon_sym_struct] = ACTIONS(1949), + [anon_sym_trait] = ACTIONS(1949), + [anon_sym_type] = ACTIONS(1949), + [anon_sym_union] = ACTIONS(1949), + [anon_sym_unsafe] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(1947), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_COLON_COLON] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_yield] = ACTIONS(1949), + [anon_sym_move] = ACTIONS(1949), + [sym_integer_literal] = ACTIONS(1947), + [aux_sym_string_literal_token1] = ACTIONS(1947), + [sym_char_literal] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1949), + [anon_sym_false] = ACTIONS(1949), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1949), + [sym_super] = ACTIONS(1949), + [sym_crate] = ACTIONS(1949), + [sym_metavariable] = ACTIONS(1947), + [sym_raw_string_literal] = ACTIONS(1947), + [sym_float_literal] = ACTIONS(1947), [sym_block_comment] = ACTIONS(3), }, [458] = { - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_macro_rules_BANG] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_u8] = ACTIONS(1936), - [anon_sym_i8] = ACTIONS(1936), - [anon_sym_u16] = ACTIONS(1936), - [anon_sym_i16] = ACTIONS(1936), - [anon_sym_u32] = ACTIONS(1936), - [anon_sym_i32] = ACTIONS(1936), - [anon_sym_u64] = ACTIONS(1936), - [anon_sym_i64] = ACTIONS(1936), - [anon_sym_u128] = ACTIONS(1936), - [anon_sym_i128] = ACTIONS(1936), - [anon_sym_isize] = ACTIONS(1936), - [anon_sym_usize] = ACTIONS(1936), - [anon_sym_f32] = ACTIONS(1936), - [anon_sym_f64] = ACTIONS(1936), - [anon_sym_bool] = ACTIONS(1936), - [anon_sym_str] = ACTIONS(1936), - [anon_sym_char] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_const] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_default] = ACTIONS(1936), - [anon_sym_enum] = ACTIONS(1936), - [anon_sym_fn] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_impl] = ACTIONS(1936), - [anon_sym_let] = ACTIONS(1936), - [anon_sym_loop] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_mod] = ACTIONS(1936), - [anon_sym_pub] = ACTIONS(1936), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_struct] = ACTIONS(1936), - [anon_sym_trait] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_unsafe] = ACTIONS(1936), - [anon_sym_use] = ACTIONS(1936), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_POUND] = ACTIONS(1934), - [anon_sym_BANG] = ACTIONS(1934), - [anon_sym_extern] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1934), - [anon_sym_COLON_COLON] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1934), - [anon_sym_PIPE] = ACTIONS(1934), - [anon_sym_yield] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [sym_integer_literal] = ACTIONS(1934), - [aux_sym_string_literal_token1] = ACTIONS(1934), - [sym_char_literal] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1936), - [sym_super] = ACTIONS(1936), - [sym_crate] = ACTIONS(1936), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1934), - [sym_float_literal] = ACTIONS(1934), + [ts_builtin_sym_end] = ACTIONS(1951), + [sym_identifier] = ACTIONS(1953), + [anon_sym_SEMI] = ACTIONS(1951), + [anon_sym_macro_rules_BANG] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1951), + [anon_sym_RBRACE] = ACTIONS(1951), + [anon_sym_LBRACK] = ACTIONS(1951), + [anon_sym_STAR] = ACTIONS(1951), + [anon_sym_u8] = ACTIONS(1953), + [anon_sym_i8] = ACTIONS(1953), + [anon_sym_u16] = ACTIONS(1953), + [anon_sym_i16] = ACTIONS(1953), + [anon_sym_u32] = ACTIONS(1953), + [anon_sym_i32] = ACTIONS(1953), + [anon_sym_u64] = ACTIONS(1953), + [anon_sym_i64] = ACTIONS(1953), + [anon_sym_u128] = ACTIONS(1953), + [anon_sym_i128] = ACTIONS(1953), + [anon_sym_isize] = ACTIONS(1953), + [anon_sym_usize] = ACTIONS(1953), + [anon_sym_f32] = ACTIONS(1953), + [anon_sym_f64] = ACTIONS(1953), + [anon_sym_bool] = ACTIONS(1953), + [anon_sym_str] = ACTIONS(1953), + [anon_sym_char] = ACTIONS(1953), + [anon_sym_SQUOTE] = ACTIONS(1953), + [anon_sym_async] = ACTIONS(1953), + [anon_sym_break] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1953), + [anon_sym_continue] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1953), + [anon_sym_enum] = ACTIONS(1953), + [anon_sym_fn] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1953), + [anon_sym_if] = ACTIONS(1953), + [anon_sym_impl] = ACTIONS(1953), + [anon_sym_let] = ACTIONS(1953), + [anon_sym_loop] = ACTIONS(1953), + [anon_sym_match] = ACTIONS(1953), + [anon_sym_mod] = ACTIONS(1953), + [anon_sym_pub] = ACTIONS(1953), + [anon_sym_return] = ACTIONS(1953), + [anon_sym_static] = ACTIONS(1953), + [anon_sym_struct] = ACTIONS(1953), + [anon_sym_trait] = ACTIONS(1953), + [anon_sym_type] = ACTIONS(1953), + [anon_sym_union] = ACTIONS(1953), + [anon_sym_unsafe] = ACTIONS(1953), + [anon_sym_use] = ACTIONS(1953), + [anon_sym_while] = ACTIONS(1953), + [anon_sym_POUND] = ACTIONS(1951), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1951), + [anon_sym_COLON_COLON] = ACTIONS(1951), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1951), + [anon_sym_yield] = ACTIONS(1953), + [anon_sym_move] = ACTIONS(1953), + [sym_integer_literal] = ACTIONS(1951), + [aux_sym_string_literal_token1] = ACTIONS(1951), + [sym_char_literal] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(1953), + [anon_sym_false] = ACTIONS(1953), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1953), + [sym_super] = ACTIONS(1953), + [sym_crate] = ACTIONS(1953), + [sym_metavariable] = ACTIONS(1951), + [sym_raw_string_literal] = ACTIONS(1951), + [sym_float_literal] = ACTIONS(1951), [sym_block_comment] = ACTIONS(3), }, [459] = { - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_macro_rules_BANG] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_u8] = ACTIONS(1940), - [anon_sym_i8] = ACTIONS(1940), - [anon_sym_u16] = ACTIONS(1940), - [anon_sym_i16] = ACTIONS(1940), - [anon_sym_u32] = ACTIONS(1940), - [anon_sym_i32] = ACTIONS(1940), - [anon_sym_u64] = ACTIONS(1940), - [anon_sym_i64] = ACTIONS(1940), - [anon_sym_u128] = ACTIONS(1940), - [anon_sym_i128] = ACTIONS(1940), - [anon_sym_isize] = ACTIONS(1940), - [anon_sym_usize] = ACTIONS(1940), - [anon_sym_f32] = ACTIONS(1940), - [anon_sym_f64] = ACTIONS(1940), - [anon_sym_bool] = ACTIONS(1940), - [anon_sym_str] = ACTIONS(1940), - [anon_sym_char] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_default] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_fn] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_impl] = ACTIONS(1940), - [anon_sym_let] = ACTIONS(1940), - [anon_sym_loop] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_mod] = ACTIONS(1940), - [anon_sym_pub] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_trait] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [anon_sym_unsafe] = ACTIONS(1940), - [anon_sym_use] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_POUND] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym_LT] = ACTIONS(1938), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_PIPE] = ACTIONS(1938), - [anon_sym_yield] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [sym_integer_literal] = ACTIONS(1938), - [aux_sym_string_literal_token1] = ACTIONS(1938), - [sym_char_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1940), - [sym_super] = ACTIONS(1940), - [sym_crate] = ACTIONS(1940), - [sym_metavariable] = ACTIONS(1938), - [sym_raw_string_literal] = ACTIONS(1938), - [sym_float_literal] = ACTIONS(1938), + [ts_builtin_sym_end] = ACTIONS(1955), + [sym_identifier] = ACTIONS(1957), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_macro_rules_BANG] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_u8] = ACTIONS(1957), + [anon_sym_i8] = ACTIONS(1957), + [anon_sym_u16] = ACTIONS(1957), + [anon_sym_i16] = ACTIONS(1957), + [anon_sym_u32] = ACTIONS(1957), + [anon_sym_i32] = ACTIONS(1957), + [anon_sym_u64] = ACTIONS(1957), + [anon_sym_i64] = ACTIONS(1957), + [anon_sym_u128] = ACTIONS(1957), + [anon_sym_i128] = ACTIONS(1957), + [anon_sym_isize] = ACTIONS(1957), + [anon_sym_usize] = ACTIONS(1957), + [anon_sym_f32] = ACTIONS(1957), + [anon_sym_f64] = ACTIONS(1957), + [anon_sym_bool] = ACTIONS(1957), + [anon_sym_str] = ACTIONS(1957), + [anon_sym_char] = ACTIONS(1957), + [anon_sym_SQUOTE] = ACTIONS(1957), + [anon_sym_async] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_default] = ACTIONS(1957), + [anon_sym_enum] = ACTIONS(1957), + [anon_sym_fn] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_impl] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_mod] = ACTIONS(1957), + [anon_sym_pub] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_static] = ACTIONS(1957), + [anon_sym_struct] = ACTIONS(1957), + [anon_sym_trait] = ACTIONS(1957), + [anon_sym_type] = ACTIONS(1957), + [anon_sym_union] = ACTIONS(1957), + [anon_sym_unsafe] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(1955), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1955), + [anon_sym_COLON_COLON] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_yield] = ACTIONS(1957), + [anon_sym_move] = ACTIONS(1957), + [sym_integer_literal] = ACTIONS(1955), + [aux_sym_string_literal_token1] = ACTIONS(1955), + [sym_char_literal] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_false] = ACTIONS(1957), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1957), + [sym_super] = ACTIONS(1957), + [sym_crate] = ACTIONS(1957), + [sym_metavariable] = ACTIONS(1955), + [sym_raw_string_literal] = ACTIONS(1955), + [sym_float_literal] = ACTIONS(1955), [sym_block_comment] = ACTIONS(3), }, [460] = { - [ts_builtin_sym_end] = ACTIONS(1942), - [sym_identifier] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_macro_rules_BANG] = ACTIONS(1942), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1942), - [anon_sym_u8] = ACTIONS(1944), - [anon_sym_i8] = ACTIONS(1944), - [anon_sym_u16] = ACTIONS(1944), - [anon_sym_i16] = ACTIONS(1944), - [anon_sym_u32] = ACTIONS(1944), - [anon_sym_i32] = ACTIONS(1944), - [anon_sym_u64] = ACTIONS(1944), - [anon_sym_i64] = ACTIONS(1944), - [anon_sym_u128] = ACTIONS(1944), - [anon_sym_i128] = ACTIONS(1944), - [anon_sym_isize] = ACTIONS(1944), - [anon_sym_usize] = ACTIONS(1944), - [anon_sym_f32] = ACTIONS(1944), - [anon_sym_f64] = ACTIONS(1944), - [anon_sym_bool] = ACTIONS(1944), - [anon_sym_str] = ACTIONS(1944), - [anon_sym_char] = ACTIONS(1944), - [anon_sym_SQUOTE] = ACTIONS(1944), - [anon_sym_async] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_const] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_default] = ACTIONS(1944), - [anon_sym_enum] = ACTIONS(1944), - [anon_sym_fn] = ACTIONS(1944), - [anon_sym_for] = ACTIONS(1944), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_impl] = ACTIONS(1944), - [anon_sym_let] = ACTIONS(1944), - [anon_sym_loop] = ACTIONS(1944), - [anon_sym_match] = ACTIONS(1944), - [anon_sym_mod] = ACTIONS(1944), - [anon_sym_pub] = ACTIONS(1944), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_static] = ACTIONS(1944), - [anon_sym_struct] = ACTIONS(1944), - [anon_sym_trait] = ACTIONS(1944), - [anon_sym_type] = ACTIONS(1944), - [anon_sym_union] = ACTIONS(1944), - [anon_sym_unsafe] = ACTIONS(1944), - [anon_sym_use] = ACTIONS(1944), - [anon_sym_while] = ACTIONS(1944), - [anon_sym_POUND] = ACTIONS(1942), - [anon_sym_BANG] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_yield] = ACTIONS(1944), - [anon_sym_move] = ACTIONS(1944), - [sym_integer_literal] = ACTIONS(1942), - [aux_sym_string_literal_token1] = ACTIONS(1942), - [sym_char_literal] = ACTIONS(1942), - [anon_sym_true] = ACTIONS(1944), - [anon_sym_false] = ACTIONS(1944), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1944), - [sym_super] = ACTIONS(1944), - [sym_crate] = ACTIONS(1944), - [sym_metavariable] = ACTIONS(1942), - [sym_raw_string_literal] = ACTIONS(1942), - [sym_float_literal] = ACTIONS(1942), + [ts_builtin_sym_end] = ACTIONS(1959), + [sym_identifier] = ACTIONS(1961), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_macro_rules_BANG] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1959), + [anon_sym_u8] = ACTIONS(1961), + [anon_sym_i8] = ACTIONS(1961), + [anon_sym_u16] = ACTIONS(1961), + [anon_sym_i16] = ACTIONS(1961), + [anon_sym_u32] = ACTIONS(1961), + [anon_sym_i32] = ACTIONS(1961), + [anon_sym_u64] = ACTIONS(1961), + [anon_sym_i64] = ACTIONS(1961), + [anon_sym_u128] = ACTIONS(1961), + [anon_sym_i128] = ACTIONS(1961), + [anon_sym_isize] = ACTIONS(1961), + [anon_sym_usize] = ACTIONS(1961), + [anon_sym_f32] = ACTIONS(1961), + [anon_sym_f64] = ACTIONS(1961), + [anon_sym_bool] = ACTIONS(1961), + [anon_sym_str] = ACTIONS(1961), + [anon_sym_char] = ACTIONS(1961), + [anon_sym_SQUOTE] = ACTIONS(1961), + [anon_sym_async] = ACTIONS(1961), + [anon_sym_break] = ACTIONS(1961), + [anon_sym_const] = ACTIONS(1961), + [anon_sym_continue] = ACTIONS(1961), + [anon_sym_default] = ACTIONS(1961), + [anon_sym_enum] = ACTIONS(1961), + [anon_sym_fn] = ACTIONS(1961), + [anon_sym_for] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1961), + [anon_sym_impl] = ACTIONS(1961), + [anon_sym_let] = ACTIONS(1961), + [anon_sym_loop] = ACTIONS(1961), + [anon_sym_match] = ACTIONS(1961), + [anon_sym_mod] = ACTIONS(1961), + [anon_sym_pub] = ACTIONS(1961), + [anon_sym_return] = ACTIONS(1961), + [anon_sym_static] = ACTIONS(1961), + [anon_sym_struct] = ACTIONS(1961), + [anon_sym_trait] = ACTIONS(1961), + [anon_sym_type] = ACTIONS(1961), + [anon_sym_union] = ACTIONS(1961), + [anon_sym_unsafe] = ACTIONS(1961), + [anon_sym_use] = ACTIONS(1961), + [anon_sym_while] = ACTIONS(1961), + [anon_sym_POUND] = ACTIONS(1959), + [anon_sym_BANG] = ACTIONS(1959), + [anon_sym_extern] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_COLON_COLON] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_DOT_DOT] = ACTIONS(1959), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_yield] = ACTIONS(1961), + [anon_sym_move] = ACTIONS(1961), + [sym_integer_literal] = ACTIONS(1959), + [aux_sym_string_literal_token1] = ACTIONS(1959), + [sym_char_literal] = ACTIONS(1959), + [anon_sym_true] = ACTIONS(1961), + [anon_sym_false] = ACTIONS(1961), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1961), + [sym_super] = ACTIONS(1961), + [sym_crate] = ACTIONS(1961), + [sym_metavariable] = ACTIONS(1959), + [sym_raw_string_literal] = ACTIONS(1959), + [sym_float_literal] = ACTIONS(1959), [sym_block_comment] = ACTIONS(3), }, [461] = { - [ts_builtin_sym_end] = ACTIONS(1946), - [sym_identifier] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym_macro_rules_BANG] = ACTIONS(1946), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_RBRACE] = ACTIONS(1946), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_u8] = ACTIONS(1948), - [anon_sym_i8] = ACTIONS(1948), - [anon_sym_u16] = ACTIONS(1948), - [anon_sym_i16] = ACTIONS(1948), - [anon_sym_u32] = ACTIONS(1948), - [anon_sym_i32] = ACTIONS(1948), - [anon_sym_u64] = ACTIONS(1948), - [anon_sym_i64] = ACTIONS(1948), - [anon_sym_u128] = ACTIONS(1948), - [anon_sym_i128] = ACTIONS(1948), - [anon_sym_isize] = ACTIONS(1948), - [anon_sym_usize] = ACTIONS(1948), - [anon_sym_f32] = ACTIONS(1948), - [anon_sym_f64] = ACTIONS(1948), - [anon_sym_bool] = ACTIONS(1948), - [anon_sym_str] = ACTIONS(1948), - [anon_sym_char] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_async] = ACTIONS(1948), - [anon_sym_break] = ACTIONS(1948), - [anon_sym_const] = ACTIONS(1948), - [anon_sym_continue] = ACTIONS(1948), - [anon_sym_default] = ACTIONS(1948), - [anon_sym_enum] = ACTIONS(1948), - [anon_sym_fn] = ACTIONS(1948), - [anon_sym_for] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_impl] = ACTIONS(1948), - [anon_sym_let] = ACTIONS(1948), - [anon_sym_loop] = ACTIONS(1948), - [anon_sym_match] = ACTIONS(1948), - [anon_sym_mod] = ACTIONS(1948), - [anon_sym_pub] = ACTIONS(1948), - [anon_sym_return] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1948), - [anon_sym_struct] = ACTIONS(1948), - [anon_sym_trait] = ACTIONS(1948), - [anon_sym_type] = ACTIONS(1948), - [anon_sym_union] = ACTIONS(1948), - [anon_sym_unsafe] = ACTIONS(1948), - [anon_sym_use] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1948), - [anon_sym_LT] = ACTIONS(1946), - [anon_sym_COLON_COLON] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1946), - [anon_sym_DOT_DOT] = ACTIONS(1946), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1946), - [anon_sym_yield] = ACTIONS(1948), - [anon_sym_move] = ACTIONS(1948), - [sym_integer_literal] = ACTIONS(1946), - [aux_sym_string_literal_token1] = ACTIONS(1946), - [sym_char_literal] = ACTIONS(1946), - [anon_sym_true] = ACTIONS(1948), - [anon_sym_false] = ACTIONS(1948), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1948), - [sym_super] = ACTIONS(1948), - [sym_crate] = ACTIONS(1948), - [sym_metavariable] = ACTIONS(1946), - [sym_raw_string_literal] = ACTIONS(1946), - [sym_float_literal] = ACTIONS(1946), + [ts_builtin_sym_end] = ACTIONS(1963), + [sym_identifier] = ACTIONS(1965), + [anon_sym_SEMI] = ACTIONS(1963), + [anon_sym_macro_rules_BANG] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1963), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(1963), + [anon_sym_u8] = ACTIONS(1965), + [anon_sym_i8] = ACTIONS(1965), + [anon_sym_u16] = ACTIONS(1965), + [anon_sym_i16] = ACTIONS(1965), + [anon_sym_u32] = ACTIONS(1965), + [anon_sym_i32] = ACTIONS(1965), + [anon_sym_u64] = ACTIONS(1965), + [anon_sym_i64] = ACTIONS(1965), + [anon_sym_u128] = ACTIONS(1965), + [anon_sym_i128] = ACTIONS(1965), + [anon_sym_isize] = ACTIONS(1965), + [anon_sym_usize] = ACTIONS(1965), + [anon_sym_f32] = ACTIONS(1965), + [anon_sym_f64] = ACTIONS(1965), + [anon_sym_bool] = ACTIONS(1965), + [anon_sym_str] = ACTIONS(1965), + [anon_sym_char] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_async] = ACTIONS(1965), + [anon_sym_break] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_continue] = ACTIONS(1965), + [anon_sym_default] = ACTIONS(1965), + [anon_sym_enum] = ACTIONS(1965), + [anon_sym_fn] = ACTIONS(1965), + [anon_sym_for] = ACTIONS(1965), + [anon_sym_if] = ACTIONS(1965), + [anon_sym_impl] = ACTIONS(1965), + [anon_sym_let] = ACTIONS(1965), + [anon_sym_loop] = ACTIONS(1965), + [anon_sym_match] = ACTIONS(1965), + [anon_sym_mod] = ACTIONS(1965), + [anon_sym_pub] = ACTIONS(1965), + [anon_sym_return] = ACTIONS(1965), + [anon_sym_static] = ACTIONS(1965), + [anon_sym_struct] = ACTIONS(1965), + [anon_sym_trait] = ACTIONS(1965), + [anon_sym_type] = ACTIONS(1965), + [anon_sym_union] = ACTIONS(1965), + [anon_sym_unsafe] = ACTIONS(1965), + [anon_sym_use] = ACTIONS(1965), + [anon_sym_while] = ACTIONS(1965), + [anon_sym_POUND] = ACTIONS(1963), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1963), + [anon_sym_COLON_COLON] = ACTIONS(1963), + [anon_sym_AMP] = ACTIONS(1963), + [anon_sym_DOT_DOT] = ACTIONS(1963), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1963), + [anon_sym_yield] = ACTIONS(1965), + [anon_sym_move] = ACTIONS(1965), + [sym_integer_literal] = ACTIONS(1963), + [aux_sym_string_literal_token1] = ACTIONS(1963), + [sym_char_literal] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1965), + [anon_sym_false] = ACTIONS(1965), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1965), + [sym_super] = ACTIONS(1965), + [sym_crate] = ACTIONS(1965), + [sym_metavariable] = ACTIONS(1963), + [sym_raw_string_literal] = ACTIONS(1963), + [sym_float_literal] = ACTIONS(1963), [sym_block_comment] = ACTIONS(3), }, [462] = { - [ts_builtin_sym_end] = ACTIONS(1950), - [sym_identifier] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1950), - [anon_sym_macro_rules_BANG] = ACTIONS(1950), - [anon_sym_LPAREN] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1950), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(1950), - [anon_sym_STAR] = ACTIONS(1950), - [anon_sym_u8] = ACTIONS(1952), - [anon_sym_i8] = ACTIONS(1952), - [anon_sym_u16] = ACTIONS(1952), - [anon_sym_i16] = ACTIONS(1952), - [anon_sym_u32] = ACTIONS(1952), - [anon_sym_i32] = ACTIONS(1952), - [anon_sym_u64] = ACTIONS(1952), - [anon_sym_i64] = ACTIONS(1952), - [anon_sym_u128] = ACTIONS(1952), - [anon_sym_i128] = ACTIONS(1952), - [anon_sym_isize] = ACTIONS(1952), - [anon_sym_usize] = ACTIONS(1952), - [anon_sym_f32] = ACTIONS(1952), - [anon_sym_f64] = ACTIONS(1952), - [anon_sym_bool] = ACTIONS(1952), - [anon_sym_str] = ACTIONS(1952), - [anon_sym_char] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_async] = ACTIONS(1952), - [anon_sym_break] = ACTIONS(1952), - [anon_sym_const] = ACTIONS(1952), - [anon_sym_continue] = ACTIONS(1952), - [anon_sym_default] = ACTIONS(1952), - [anon_sym_enum] = ACTIONS(1952), - [anon_sym_fn] = ACTIONS(1952), - [anon_sym_for] = ACTIONS(1952), - [anon_sym_if] = ACTIONS(1952), - [anon_sym_impl] = ACTIONS(1952), - [anon_sym_let] = ACTIONS(1952), - [anon_sym_loop] = ACTIONS(1952), - [anon_sym_match] = ACTIONS(1952), - [anon_sym_mod] = ACTIONS(1952), - [anon_sym_pub] = ACTIONS(1952), - [anon_sym_return] = ACTIONS(1952), - [anon_sym_static] = ACTIONS(1952), - [anon_sym_struct] = ACTIONS(1952), - [anon_sym_trait] = ACTIONS(1952), - [anon_sym_type] = ACTIONS(1952), - [anon_sym_union] = ACTIONS(1952), - [anon_sym_unsafe] = ACTIONS(1952), - [anon_sym_use] = ACTIONS(1952), - [anon_sym_while] = ACTIONS(1952), - [anon_sym_POUND] = ACTIONS(1950), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(1952), - [anon_sym_LT] = ACTIONS(1950), - [anon_sym_COLON_COLON] = ACTIONS(1950), - [anon_sym_AMP] = ACTIONS(1950), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1950), - [anon_sym_PIPE] = ACTIONS(1950), - [anon_sym_yield] = ACTIONS(1952), - [anon_sym_move] = ACTIONS(1952), - [sym_integer_literal] = ACTIONS(1950), - [aux_sym_string_literal_token1] = ACTIONS(1950), - [sym_char_literal] = ACTIONS(1950), - [anon_sym_true] = ACTIONS(1952), - [anon_sym_false] = ACTIONS(1952), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1952), - [sym_super] = ACTIONS(1952), - [sym_crate] = ACTIONS(1952), - [sym_metavariable] = ACTIONS(1950), - [sym_raw_string_literal] = ACTIONS(1950), - [sym_float_literal] = ACTIONS(1950), + [ts_builtin_sym_end] = ACTIONS(1967), + [sym_identifier] = ACTIONS(1969), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym_macro_rules_BANG] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_STAR] = ACTIONS(1967), + [anon_sym_u8] = ACTIONS(1969), + [anon_sym_i8] = ACTIONS(1969), + [anon_sym_u16] = ACTIONS(1969), + [anon_sym_i16] = ACTIONS(1969), + [anon_sym_u32] = ACTIONS(1969), + [anon_sym_i32] = ACTIONS(1969), + [anon_sym_u64] = ACTIONS(1969), + [anon_sym_i64] = ACTIONS(1969), + [anon_sym_u128] = ACTIONS(1969), + [anon_sym_i128] = ACTIONS(1969), + [anon_sym_isize] = ACTIONS(1969), + [anon_sym_usize] = ACTIONS(1969), + [anon_sym_f32] = ACTIONS(1969), + [anon_sym_f64] = ACTIONS(1969), + [anon_sym_bool] = ACTIONS(1969), + [anon_sym_str] = ACTIONS(1969), + [anon_sym_char] = ACTIONS(1969), + [anon_sym_SQUOTE] = ACTIONS(1969), + [anon_sym_async] = ACTIONS(1969), + [anon_sym_break] = ACTIONS(1969), + [anon_sym_const] = ACTIONS(1969), + [anon_sym_continue] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(1969), + [anon_sym_enum] = ACTIONS(1969), + [anon_sym_fn] = ACTIONS(1969), + [anon_sym_for] = ACTIONS(1969), + [anon_sym_if] = ACTIONS(1969), + [anon_sym_impl] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_loop] = ACTIONS(1969), + [anon_sym_match] = ACTIONS(1969), + [anon_sym_mod] = ACTIONS(1969), + [anon_sym_pub] = ACTIONS(1969), + [anon_sym_return] = ACTIONS(1969), + [anon_sym_static] = ACTIONS(1969), + [anon_sym_struct] = ACTIONS(1969), + [anon_sym_trait] = ACTIONS(1969), + [anon_sym_type] = ACTIONS(1969), + [anon_sym_union] = ACTIONS(1969), + [anon_sym_unsafe] = ACTIONS(1969), + [anon_sym_use] = ACTIONS(1969), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(1967), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_extern] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1967), + [anon_sym_COLON_COLON] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1967), + [anon_sym_yield] = ACTIONS(1969), + [anon_sym_move] = ACTIONS(1969), + [sym_integer_literal] = ACTIONS(1967), + [aux_sym_string_literal_token1] = ACTIONS(1967), + [sym_char_literal] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1969), + [anon_sym_false] = ACTIONS(1969), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1969), + [sym_super] = ACTIONS(1969), + [sym_crate] = ACTIONS(1969), + [sym_metavariable] = ACTIONS(1967), + [sym_raw_string_literal] = ACTIONS(1967), + [sym_float_literal] = ACTIONS(1967), [sym_block_comment] = ACTIONS(3), }, [463] = { - [ts_builtin_sym_end] = ACTIONS(1954), - [sym_identifier] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_macro_rules_BANG] = ACTIONS(1954), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_STAR] = ACTIONS(1954), - [anon_sym_u8] = ACTIONS(1956), - [anon_sym_i8] = ACTIONS(1956), - [anon_sym_u16] = ACTIONS(1956), - [anon_sym_i16] = ACTIONS(1956), - [anon_sym_u32] = ACTIONS(1956), - [anon_sym_i32] = ACTIONS(1956), - [anon_sym_u64] = ACTIONS(1956), - [anon_sym_i64] = ACTIONS(1956), - [anon_sym_u128] = ACTIONS(1956), - [anon_sym_i128] = ACTIONS(1956), - [anon_sym_isize] = ACTIONS(1956), - [anon_sym_usize] = ACTIONS(1956), - [anon_sym_f32] = ACTIONS(1956), - [anon_sym_f64] = ACTIONS(1956), - [anon_sym_bool] = ACTIONS(1956), - [anon_sym_str] = ACTIONS(1956), - [anon_sym_char] = ACTIONS(1956), - [anon_sym_SQUOTE] = ACTIONS(1956), - [anon_sym_async] = ACTIONS(1956), - [anon_sym_break] = ACTIONS(1956), - [anon_sym_const] = ACTIONS(1956), - [anon_sym_continue] = ACTIONS(1956), - [anon_sym_default] = ACTIONS(1956), - [anon_sym_enum] = ACTIONS(1956), - [anon_sym_fn] = ACTIONS(1956), - [anon_sym_for] = ACTIONS(1956), - [anon_sym_if] = ACTIONS(1956), - [anon_sym_impl] = ACTIONS(1956), - [anon_sym_let] = ACTIONS(1956), - [anon_sym_loop] = ACTIONS(1956), - [anon_sym_match] = ACTIONS(1956), - [anon_sym_mod] = ACTIONS(1956), - [anon_sym_pub] = ACTIONS(1956), - [anon_sym_return] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1956), - [anon_sym_trait] = ACTIONS(1956), - [anon_sym_type] = ACTIONS(1956), - [anon_sym_union] = ACTIONS(1956), - [anon_sym_unsafe] = ACTIONS(1956), - [anon_sym_use] = ACTIONS(1956), - [anon_sym_while] = ACTIONS(1956), - [anon_sym_POUND] = ACTIONS(1954), - [anon_sym_BANG] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1956), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_AMP] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1954), - [anon_sym_DASH] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_yield] = ACTIONS(1956), - [anon_sym_move] = ACTIONS(1956), - [sym_integer_literal] = ACTIONS(1954), - [aux_sym_string_literal_token1] = ACTIONS(1954), - [sym_char_literal] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1956), - [sym_super] = ACTIONS(1956), - [sym_crate] = ACTIONS(1956), - [sym_metavariable] = ACTIONS(1954), - [sym_raw_string_literal] = ACTIONS(1954), - [sym_float_literal] = ACTIONS(1954), + [ts_builtin_sym_end] = ACTIONS(1971), + [sym_identifier] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_macro_rules_BANG] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_u8] = ACTIONS(1973), + [anon_sym_i8] = ACTIONS(1973), + [anon_sym_u16] = ACTIONS(1973), + [anon_sym_i16] = ACTIONS(1973), + [anon_sym_u32] = ACTIONS(1973), + [anon_sym_i32] = ACTIONS(1973), + [anon_sym_u64] = ACTIONS(1973), + [anon_sym_i64] = ACTIONS(1973), + [anon_sym_u128] = ACTIONS(1973), + [anon_sym_i128] = ACTIONS(1973), + [anon_sym_isize] = ACTIONS(1973), + [anon_sym_usize] = ACTIONS(1973), + [anon_sym_f32] = ACTIONS(1973), + [anon_sym_f64] = ACTIONS(1973), + [anon_sym_bool] = ACTIONS(1973), + [anon_sym_str] = ACTIONS(1973), + [anon_sym_char] = ACTIONS(1973), + [anon_sym_SQUOTE] = ACTIONS(1973), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_break] = ACTIONS(1973), + [anon_sym_const] = ACTIONS(1973), + [anon_sym_continue] = ACTIONS(1973), + [anon_sym_default] = ACTIONS(1973), + [anon_sym_enum] = ACTIONS(1973), + [anon_sym_fn] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_impl] = ACTIONS(1973), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_loop] = ACTIONS(1973), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_mod] = ACTIONS(1973), + [anon_sym_pub] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_struct] = ACTIONS(1973), + [anon_sym_trait] = ACTIONS(1973), + [anon_sym_type] = ACTIONS(1973), + [anon_sym_union] = ACTIONS(1973), + [anon_sym_unsafe] = ACTIONS(1973), + [anon_sym_use] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1971), + [anon_sym_extern] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_COLON_COLON] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_yield] = ACTIONS(1973), + [anon_sym_move] = ACTIONS(1973), + [sym_integer_literal] = ACTIONS(1971), + [aux_sym_string_literal_token1] = ACTIONS(1971), + [sym_char_literal] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1973), + [anon_sym_false] = ACTIONS(1973), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1973), + [sym_super] = ACTIONS(1973), + [sym_crate] = ACTIONS(1973), + [sym_metavariable] = ACTIONS(1971), + [sym_raw_string_literal] = ACTIONS(1971), + [sym_float_literal] = ACTIONS(1971), [sym_block_comment] = ACTIONS(3), }, [464] = { - [ts_builtin_sym_end] = ACTIONS(1958), - [sym_identifier] = ACTIONS(1960), - [anon_sym_SEMI] = ACTIONS(1958), - [anon_sym_macro_rules_BANG] = ACTIONS(1958), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1958), - [anon_sym_RBRACE] = ACTIONS(1958), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_u8] = ACTIONS(1960), - [anon_sym_i8] = ACTIONS(1960), - [anon_sym_u16] = ACTIONS(1960), - [anon_sym_i16] = ACTIONS(1960), - [anon_sym_u32] = ACTIONS(1960), - [anon_sym_i32] = ACTIONS(1960), - [anon_sym_u64] = ACTIONS(1960), - [anon_sym_i64] = ACTIONS(1960), - [anon_sym_u128] = ACTIONS(1960), - [anon_sym_i128] = ACTIONS(1960), - [anon_sym_isize] = ACTIONS(1960), - [anon_sym_usize] = ACTIONS(1960), - [anon_sym_f32] = ACTIONS(1960), - [anon_sym_f64] = ACTIONS(1960), - [anon_sym_bool] = ACTIONS(1960), - [anon_sym_str] = ACTIONS(1960), - [anon_sym_char] = ACTIONS(1960), - [anon_sym_SQUOTE] = ACTIONS(1960), - [anon_sym_async] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1960), - [anon_sym_continue] = ACTIONS(1960), - [anon_sym_default] = ACTIONS(1960), - [anon_sym_enum] = ACTIONS(1960), - [anon_sym_fn] = ACTIONS(1960), - [anon_sym_for] = ACTIONS(1960), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_impl] = ACTIONS(1960), - [anon_sym_let] = ACTIONS(1960), - [anon_sym_loop] = ACTIONS(1960), - [anon_sym_match] = ACTIONS(1960), - [anon_sym_mod] = ACTIONS(1960), - [anon_sym_pub] = ACTIONS(1960), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_static] = ACTIONS(1960), - [anon_sym_struct] = ACTIONS(1960), - [anon_sym_trait] = ACTIONS(1960), - [anon_sym_type] = ACTIONS(1960), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_unsafe] = ACTIONS(1960), - [anon_sym_use] = ACTIONS(1960), - [anon_sym_while] = ACTIONS(1960), - [anon_sym_POUND] = ACTIONS(1958), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_LT] = ACTIONS(1958), - [anon_sym_COLON_COLON] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1958), - [anon_sym_DOT_DOT] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_PIPE] = ACTIONS(1958), - [anon_sym_yield] = ACTIONS(1960), - [anon_sym_move] = ACTIONS(1960), - [sym_integer_literal] = ACTIONS(1958), - [aux_sym_string_literal_token1] = ACTIONS(1958), - [sym_char_literal] = ACTIONS(1958), - [anon_sym_true] = ACTIONS(1960), - [anon_sym_false] = ACTIONS(1960), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1960), - [sym_super] = ACTIONS(1960), - [sym_crate] = ACTIONS(1960), - [sym_metavariable] = ACTIONS(1958), - [sym_raw_string_literal] = ACTIONS(1958), - [sym_float_literal] = ACTIONS(1958), + [ts_builtin_sym_end] = ACTIONS(1975), + [sym_identifier] = ACTIONS(1977), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_macro_rules_BANG] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_u8] = ACTIONS(1977), + [anon_sym_i8] = ACTIONS(1977), + [anon_sym_u16] = ACTIONS(1977), + [anon_sym_i16] = ACTIONS(1977), + [anon_sym_u32] = ACTIONS(1977), + [anon_sym_i32] = ACTIONS(1977), + [anon_sym_u64] = ACTIONS(1977), + [anon_sym_i64] = ACTIONS(1977), + [anon_sym_u128] = ACTIONS(1977), + [anon_sym_i128] = ACTIONS(1977), + [anon_sym_isize] = ACTIONS(1977), + [anon_sym_usize] = ACTIONS(1977), + [anon_sym_f32] = ACTIONS(1977), + [anon_sym_f64] = ACTIONS(1977), + [anon_sym_bool] = ACTIONS(1977), + [anon_sym_str] = ACTIONS(1977), + [anon_sym_char] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1977), + [anon_sym_async] = ACTIONS(1977), + [anon_sym_break] = ACTIONS(1977), + [anon_sym_const] = ACTIONS(1977), + [anon_sym_continue] = ACTIONS(1977), + [anon_sym_default] = ACTIONS(1977), + [anon_sym_enum] = ACTIONS(1977), + [anon_sym_fn] = ACTIONS(1977), + [anon_sym_for] = ACTIONS(1977), + [anon_sym_if] = ACTIONS(1977), + [anon_sym_impl] = ACTIONS(1977), + [anon_sym_let] = ACTIONS(1977), + [anon_sym_loop] = ACTIONS(1977), + [anon_sym_match] = ACTIONS(1977), + [anon_sym_mod] = ACTIONS(1977), + [anon_sym_pub] = ACTIONS(1977), + [anon_sym_return] = ACTIONS(1977), + [anon_sym_static] = ACTIONS(1977), + [anon_sym_struct] = ACTIONS(1977), + [anon_sym_trait] = ACTIONS(1977), + [anon_sym_type] = ACTIONS(1977), + [anon_sym_union] = ACTIONS(1977), + [anon_sym_unsafe] = ACTIONS(1977), + [anon_sym_use] = ACTIONS(1977), + [anon_sym_while] = ACTIONS(1977), + [anon_sym_POUND] = ACTIONS(1975), + [anon_sym_BANG] = ACTIONS(1975), + [anon_sym_extern] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_COLON_COLON] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_DOT_DOT] = ACTIONS(1975), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_yield] = ACTIONS(1977), + [anon_sym_move] = ACTIONS(1977), + [sym_integer_literal] = ACTIONS(1975), + [aux_sym_string_literal_token1] = ACTIONS(1975), + [sym_char_literal] = ACTIONS(1975), + [anon_sym_true] = ACTIONS(1977), + [anon_sym_false] = ACTIONS(1977), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1977), + [sym_super] = ACTIONS(1977), + [sym_crate] = ACTIONS(1977), + [sym_metavariable] = ACTIONS(1975), + [sym_raw_string_literal] = ACTIONS(1975), + [sym_float_literal] = ACTIONS(1975), [sym_block_comment] = ACTIONS(3), }, [465] = { - [ts_builtin_sym_end] = ACTIONS(1962), - [sym_identifier] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_macro_rules_BANG] = ACTIONS(1962), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_RBRACE] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_u8] = ACTIONS(1964), - [anon_sym_i8] = ACTIONS(1964), - [anon_sym_u16] = ACTIONS(1964), - [anon_sym_i16] = ACTIONS(1964), - [anon_sym_u32] = ACTIONS(1964), - [anon_sym_i32] = ACTIONS(1964), - [anon_sym_u64] = ACTIONS(1964), - [anon_sym_i64] = ACTIONS(1964), - [anon_sym_u128] = ACTIONS(1964), - [anon_sym_i128] = ACTIONS(1964), - [anon_sym_isize] = ACTIONS(1964), - [anon_sym_usize] = ACTIONS(1964), - [anon_sym_f32] = ACTIONS(1964), - [anon_sym_f64] = ACTIONS(1964), - [anon_sym_bool] = ACTIONS(1964), - [anon_sym_str] = ACTIONS(1964), - [anon_sym_char] = ACTIONS(1964), - [anon_sym_SQUOTE] = ACTIONS(1964), - [anon_sym_async] = ACTIONS(1964), - [anon_sym_break] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1964), - [anon_sym_continue] = ACTIONS(1964), - [anon_sym_default] = ACTIONS(1964), - [anon_sym_enum] = ACTIONS(1964), - [anon_sym_fn] = ACTIONS(1964), - [anon_sym_for] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_impl] = ACTIONS(1964), - [anon_sym_let] = ACTIONS(1964), - [anon_sym_loop] = ACTIONS(1964), - [anon_sym_match] = ACTIONS(1964), - [anon_sym_mod] = ACTIONS(1964), - [anon_sym_pub] = ACTIONS(1964), - [anon_sym_return] = ACTIONS(1964), - [anon_sym_static] = ACTIONS(1964), - [anon_sym_struct] = ACTIONS(1964), - [anon_sym_trait] = ACTIONS(1964), - [anon_sym_type] = ACTIONS(1964), - [anon_sym_union] = ACTIONS(1964), - [anon_sym_unsafe] = ACTIONS(1964), - [anon_sym_use] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1964), - [anon_sym_POUND] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1964), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_COLON_COLON] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_DOT_DOT] = ACTIONS(1962), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_yield] = ACTIONS(1964), - [anon_sym_move] = ACTIONS(1964), - [sym_integer_literal] = ACTIONS(1962), - [aux_sym_string_literal_token1] = ACTIONS(1962), - [sym_char_literal] = ACTIONS(1962), - [anon_sym_true] = ACTIONS(1964), - [anon_sym_false] = ACTIONS(1964), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1964), - [sym_super] = ACTIONS(1964), - [sym_crate] = ACTIONS(1964), - [sym_metavariable] = ACTIONS(1962), - [sym_raw_string_literal] = ACTIONS(1962), - [sym_float_literal] = ACTIONS(1962), + [ts_builtin_sym_end] = ACTIONS(1979), + [sym_identifier] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(1979), + [anon_sym_macro_rules_BANG] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_RBRACE] = ACTIONS(1979), + [anon_sym_LBRACK] = ACTIONS(1979), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_u8] = ACTIONS(1981), + [anon_sym_i8] = ACTIONS(1981), + [anon_sym_u16] = ACTIONS(1981), + [anon_sym_i16] = ACTIONS(1981), + [anon_sym_u32] = ACTIONS(1981), + [anon_sym_i32] = ACTIONS(1981), + [anon_sym_u64] = ACTIONS(1981), + [anon_sym_i64] = ACTIONS(1981), + [anon_sym_u128] = ACTIONS(1981), + [anon_sym_i128] = ACTIONS(1981), + [anon_sym_isize] = ACTIONS(1981), + [anon_sym_usize] = ACTIONS(1981), + [anon_sym_f32] = ACTIONS(1981), + [anon_sym_f64] = ACTIONS(1981), + [anon_sym_bool] = ACTIONS(1981), + [anon_sym_str] = ACTIONS(1981), + [anon_sym_char] = ACTIONS(1981), + [anon_sym_SQUOTE] = ACTIONS(1981), + [anon_sym_async] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1981), + [anon_sym_enum] = ACTIONS(1981), + [anon_sym_fn] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_impl] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_mod] = ACTIONS(1981), + [anon_sym_pub] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_static] = ACTIONS(1981), + [anon_sym_struct] = ACTIONS(1981), + [anon_sym_trait] = ACTIONS(1981), + [anon_sym_type] = ACTIONS(1981), + [anon_sym_union] = ACTIONS(1981), + [anon_sym_unsafe] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_POUND] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_COLON_COLON] = ACTIONS(1979), + [anon_sym_AMP] = ACTIONS(1979), + [anon_sym_DOT_DOT] = ACTIONS(1979), + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_yield] = ACTIONS(1981), + [anon_sym_move] = ACTIONS(1981), + [sym_integer_literal] = ACTIONS(1979), + [aux_sym_string_literal_token1] = ACTIONS(1979), + [sym_char_literal] = ACTIONS(1979), + [anon_sym_true] = ACTIONS(1981), + [anon_sym_false] = ACTIONS(1981), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1981), + [sym_super] = ACTIONS(1981), + [sym_crate] = ACTIONS(1981), + [sym_metavariable] = ACTIONS(1979), + [sym_raw_string_literal] = ACTIONS(1979), + [sym_float_literal] = ACTIONS(1979), [sym_block_comment] = ACTIONS(3), }, [466] = { - [ts_builtin_sym_end] = ACTIONS(1966), - [sym_identifier] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_macro_rules_BANG] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1966), - [anon_sym_u8] = ACTIONS(1968), - [anon_sym_i8] = ACTIONS(1968), - [anon_sym_u16] = ACTIONS(1968), - [anon_sym_i16] = ACTIONS(1968), - [anon_sym_u32] = ACTIONS(1968), - [anon_sym_i32] = ACTIONS(1968), - [anon_sym_u64] = ACTIONS(1968), - [anon_sym_i64] = ACTIONS(1968), - [anon_sym_u128] = ACTIONS(1968), - [anon_sym_i128] = ACTIONS(1968), - [anon_sym_isize] = ACTIONS(1968), - [anon_sym_usize] = ACTIONS(1968), - [anon_sym_f32] = ACTIONS(1968), - [anon_sym_f64] = ACTIONS(1968), - [anon_sym_bool] = ACTIONS(1968), - [anon_sym_str] = ACTIONS(1968), - [anon_sym_char] = ACTIONS(1968), - [anon_sym_SQUOTE] = ACTIONS(1968), - [anon_sym_async] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_const] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_default] = ACTIONS(1968), - [anon_sym_enum] = ACTIONS(1968), - [anon_sym_fn] = ACTIONS(1968), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_impl] = ACTIONS(1968), - [anon_sym_let] = ACTIONS(1968), - [anon_sym_loop] = ACTIONS(1968), - [anon_sym_match] = ACTIONS(1968), - [anon_sym_mod] = ACTIONS(1968), - [anon_sym_pub] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1968), - [anon_sym_struct] = ACTIONS(1968), - [anon_sym_trait] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_union] = ACTIONS(1968), - [anon_sym_unsafe] = ACTIONS(1968), - [anon_sym_use] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_POUND] = ACTIONS(1966), - [anon_sym_BANG] = ACTIONS(1966), - [anon_sym_extern] = ACTIONS(1968), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_COLON_COLON] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1966), - [anon_sym_DOT_DOT] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_yield] = ACTIONS(1968), - [anon_sym_move] = ACTIONS(1968), - [sym_integer_literal] = ACTIONS(1966), - [aux_sym_string_literal_token1] = ACTIONS(1966), - [sym_char_literal] = ACTIONS(1966), - [anon_sym_true] = ACTIONS(1968), - [anon_sym_false] = ACTIONS(1968), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1968), - [sym_super] = ACTIONS(1968), - [sym_crate] = ACTIONS(1968), - [sym_metavariable] = ACTIONS(1966), - [sym_raw_string_literal] = ACTIONS(1966), - [sym_float_literal] = ACTIONS(1966), + [ts_builtin_sym_end] = ACTIONS(1983), + [sym_identifier] = ACTIONS(1985), + [anon_sym_SEMI] = ACTIONS(1983), + [anon_sym_macro_rules_BANG] = ACTIONS(1983), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1983), + [anon_sym_RBRACE] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1983), + [anon_sym_u8] = ACTIONS(1985), + [anon_sym_i8] = ACTIONS(1985), + [anon_sym_u16] = ACTIONS(1985), + [anon_sym_i16] = ACTIONS(1985), + [anon_sym_u32] = ACTIONS(1985), + [anon_sym_i32] = ACTIONS(1985), + [anon_sym_u64] = ACTIONS(1985), + [anon_sym_i64] = ACTIONS(1985), + [anon_sym_u128] = ACTIONS(1985), + [anon_sym_i128] = ACTIONS(1985), + [anon_sym_isize] = ACTIONS(1985), + [anon_sym_usize] = ACTIONS(1985), + [anon_sym_f32] = ACTIONS(1985), + [anon_sym_f64] = ACTIONS(1985), + [anon_sym_bool] = ACTIONS(1985), + [anon_sym_str] = ACTIONS(1985), + [anon_sym_char] = ACTIONS(1985), + [anon_sym_SQUOTE] = ACTIONS(1985), + [anon_sym_async] = ACTIONS(1985), + [anon_sym_break] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1985), + [anon_sym_continue] = ACTIONS(1985), + [anon_sym_default] = ACTIONS(1985), + [anon_sym_enum] = ACTIONS(1985), + [anon_sym_fn] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1985), + [anon_sym_if] = ACTIONS(1985), + [anon_sym_impl] = ACTIONS(1985), + [anon_sym_let] = ACTIONS(1985), + [anon_sym_loop] = ACTIONS(1985), + [anon_sym_match] = ACTIONS(1985), + [anon_sym_mod] = ACTIONS(1985), + [anon_sym_pub] = ACTIONS(1985), + [anon_sym_return] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1985), + [anon_sym_struct] = ACTIONS(1985), + [anon_sym_trait] = ACTIONS(1985), + [anon_sym_type] = ACTIONS(1985), + [anon_sym_union] = ACTIONS(1985), + [anon_sym_unsafe] = ACTIONS(1985), + [anon_sym_use] = ACTIONS(1985), + [anon_sym_while] = ACTIONS(1985), + [anon_sym_POUND] = ACTIONS(1983), + [anon_sym_BANG] = ACTIONS(1983), + [anon_sym_extern] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_COLON_COLON] = ACTIONS(1983), + [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1983), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_PIPE] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_move] = ACTIONS(1985), + [sym_integer_literal] = ACTIONS(1983), + [aux_sym_string_literal_token1] = ACTIONS(1983), + [sym_char_literal] = ACTIONS(1983), + [anon_sym_true] = ACTIONS(1985), + [anon_sym_false] = ACTIONS(1985), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1985), + [sym_super] = ACTIONS(1985), + [sym_crate] = ACTIONS(1985), + [sym_metavariable] = ACTIONS(1983), + [sym_raw_string_literal] = ACTIONS(1983), + [sym_float_literal] = ACTIONS(1983), [sym_block_comment] = ACTIONS(3), }, [467] = { - [ts_builtin_sym_end] = ACTIONS(1970), - [sym_identifier] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_macro_rules_BANG] = ACTIONS(1970), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_u8] = ACTIONS(1972), - [anon_sym_i8] = ACTIONS(1972), - [anon_sym_u16] = ACTIONS(1972), - [anon_sym_i16] = ACTIONS(1972), - [anon_sym_u32] = ACTIONS(1972), - [anon_sym_i32] = ACTIONS(1972), - [anon_sym_u64] = ACTIONS(1972), - [anon_sym_i64] = ACTIONS(1972), - [anon_sym_u128] = ACTIONS(1972), - [anon_sym_i128] = ACTIONS(1972), - [anon_sym_isize] = ACTIONS(1972), - [anon_sym_usize] = ACTIONS(1972), - [anon_sym_f32] = ACTIONS(1972), - [anon_sym_f64] = ACTIONS(1972), - [anon_sym_bool] = ACTIONS(1972), - [anon_sym_str] = ACTIONS(1972), - [anon_sym_char] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_async] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_default] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [anon_sym_fn] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_impl] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_loop] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_mod] = ACTIONS(1972), - [anon_sym_pub] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_struct] = ACTIONS(1972), - [anon_sym_trait] = ACTIONS(1972), - [anon_sym_type] = ACTIONS(1972), - [anon_sym_union] = ACTIONS(1972), - [anon_sym_unsafe] = ACTIONS(1972), - [anon_sym_use] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1970), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_COLON_COLON] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_DOT_DOT] = ACTIONS(1970), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_yield] = ACTIONS(1972), - [anon_sym_move] = ACTIONS(1972), - [sym_integer_literal] = ACTIONS(1970), - [aux_sym_string_literal_token1] = ACTIONS(1970), - [sym_char_literal] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(1972), - [anon_sym_false] = ACTIONS(1972), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1972), - [sym_super] = ACTIONS(1972), - [sym_crate] = ACTIONS(1972), - [sym_metavariable] = ACTIONS(1970), - [sym_raw_string_literal] = ACTIONS(1970), - [sym_float_literal] = ACTIONS(1970), + [ts_builtin_sym_end] = ACTIONS(1987), + [sym_identifier] = ACTIONS(1989), + [anon_sym_SEMI] = ACTIONS(1987), + [anon_sym_macro_rules_BANG] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1987), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_STAR] = ACTIONS(1987), + [anon_sym_u8] = ACTIONS(1989), + [anon_sym_i8] = ACTIONS(1989), + [anon_sym_u16] = ACTIONS(1989), + [anon_sym_i16] = ACTIONS(1989), + [anon_sym_u32] = ACTIONS(1989), + [anon_sym_i32] = ACTIONS(1989), + [anon_sym_u64] = ACTIONS(1989), + [anon_sym_i64] = ACTIONS(1989), + [anon_sym_u128] = ACTIONS(1989), + [anon_sym_i128] = ACTIONS(1989), + [anon_sym_isize] = ACTIONS(1989), + [anon_sym_usize] = ACTIONS(1989), + [anon_sym_f32] = ACTIONS(1989), + [anon_sym_f64] = ACTIONS(1989), + [anon_sym_bool] = ACTIONS(1989), + [anon_sym_str] = ACTIONS(1989), + [anon_sym_char] = ACTIONS(1989), + [anon_sym_SQUOTE] = ACTIONS(1989), + [anon_sym_async] = ACTIONS(1989), + [anon_sym_break] = ACTIONS(1989), + [anon_sym_const] = ACTIONS(1989), + [anon_sym_continue] = ACTIONS(1989), + [anon_sym_default] = ACTIONS(1989), + [anon_sym_enum] = ACTIONS(1989), + [anon_sym_fn] = ACTIONS(1989), + [anon_sym_for] = ACTIONS(1989), + [anon_sym_if] = ACTIONS(1989), + [anon_sym_impl] = ACTIONS(1989), + [anon_sym_let] = ACTIONS(1989), + [anon_sym_loop] = ACTIONS(1989), + [anon_sym_match] = ACTIONS(1989), + [anon_sym_mod] = ACTIONS(1989), + [anon_sym_pub] = ACTIONS(1989), + [anon_sym_return] = ACTIONS(1989), + [anon_sym_static] = ACTIONS(1989), + [anon_sym_struct] = ACTIONS(1989), + [anon_sym_trait] = ACTIONS(1989), + [anon_sym_type] = ACTIONS(1989), + [anon_sym_union] = ACTIONS(1989), + [anon_sym_unsafe] = ACTIONS(1989), + [anon_sym_use] = ACTIONS(1989), + [anon_sym_while] = ACTIONS(1989), + [anon_sym_POUND] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1987), + [anon_sym_extern] = ACTIONS(1989), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_COLON_COLON] = ACTIONS(1987), + [anon_sym_AMP] = ACTIONS(1987), + [anon_sym_DOT_DOT] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1987), + [anon_sym_PIPE] = ACTIONS(1987), + [anon_sym_yield] = ACTIONS(1989), + [anon_sym_move] = ACTIONS(1989), + [sym_integer_literal] = ACTIONS(1987), + [aux_sym_string_literal_token1] = ACTIONS(1987), + [sym_char_literal] = ACTIONS(1987), + [anon_sym_true] = ACTIONS(1989), + [anon_sym_false] = ACTIONS(1989), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1989), + [sym_super] = ACTIONS(1989), + [sym_crate] = ACTIONS(1989), + [sym_metavariable] = ACTIONS(1987), + [sym_raw_string_literal] = ACTIONS(1987), + [sym_float_literal] = ACTIONS(1987), [sym_block_comment] = ACTIONS(3), }, [468] = { - [ts_builtin_sym_end] = ACTIONS(1974), - [sym_identifier] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_macro_rules_BANG] = ACTIONS(1974), - [anon_sym_LPAREN] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_LBRACK] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1974), - [anon_sym_u8] = ACTIONS(1976), - [anon_sym_i8] = ACTIONS(1976), - [anon_sym_u16] = ACTIONS(1976), - [anon_sym_i16] = ACTIONS(1976), - [anon_sym_u32] = ACTIONS(1976), - [anon_sym_i32] = ACTIONS(1976), - [anon_sym_u64] = ACTIONS(1976), - [anon_sym_i64] = ACTIONS(1976), - [anon_sym_u128] = ACTIONS(1976), - [anon_sym_i128] = ACTIONS(1976), - [anon_sym_isize] = ACTIONS(1976), - [anon_sym_usize] = ACTIONS(1976), - [anon_sym_f32] = ACTIONS(1976), - [anon_sym_f64] = ACTIONS(1976), - [anon_sym_bool] = ACTIONS(1976), - [anon_sym_str] = ACTIONS(1976), - [anon_sym_char] = ACTIONS(1976), - [anon_sym_SQUOTE] = ACTIONS(1976), - [anon_sym_async] = ACTIONS(1976), - [anon_sym_break] = ACTIONS(1976), - [anon_sym_const] = ACTIONS(1976), - [anon_sym_continue] = ACTIONS(1976), - [anon_sym_default] = ACTIONS(1976), - [anon_sym_enum] = ACTIONS(1976), - [anon_sym_fn] = ACTIONS(1976), - [anon_sym_for] = ACTIONS(1976), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_impl] = ACTIONS(1976), - [anon_sym_let] = ACTIONS(1976), - [anon_sym_loop] = ACTIONS(1976), - [anon_sym_match] = ACTIONS(1976), - [anon_sym_mod] = ACTIONS(1976), - [anon_sym_pub] = ACTIONS(1976), - [anon_sym_return] = ACTIONS(1976), - [anon_sym_static] = ACTIONS(1976), - [anon_sym_struct] = ACTIONS(1976), - [anon_sym_trait] = ACTIONS(1976), - [anon_sym_type] = ACTIONS(1976), - [anon_sym_union] = ACTIONS(1976), - [anon_sym_unsafe] = ACTIONS(1976), - [anon_sym_use] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [anon_sym_POUND] = ACTIONS(1974), - [anon_sym_BANG] = ACTIONS(1974), - [anon_sym_extern] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_COLON_COLON] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - [anon_sym_DOT_DOT] = ACTIONS(1974), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_yield] = ACTIONS(1976), - [anon_sym_move] = ACTIONS(1976), - [sym_integer_literal] = ACTIONS(1974), - [aux_sym_string_literal_token1] = ACTIONS(1974), - [sym_char_literal] = ACTIONS(1974), - [anon_sym_true] = ACTIONS(1976), - [anon_sym_false] = ACTIONS(1976), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1976), - [sym_super] = ACTIONS(1976), - [sym_crate] = ACTIONS(1976), - [sym_metavariable] = ACTIONS(1974), - [sym_raw_string_literal] = ACTIONS(1974), - [sym_float_literal] = ACTIONS(1974), + [ts_builtin_sym_end] = ACTIONS(1991), + [sym_identifier] = ACTIONS(1993), + [anon_sym_SEMI] = ACTIONS(1991), + [anon_sym_macro_rules_BANG] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1991), + [anon_sym_RBRACE] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1991), + [anon_sym_u8] = ACTIONS(1993), + [anon_sym_i8] = ACTIONS(1993), + [anon_sym_u16] = ACTIONS(1993), + [anon_sym_i16] = ACTIONS(1993), + [anon_sym_u32] = ACTIONS(1993), + [anon_sym_i32] = ACTIONS(1993), + [anon_sym_u64] = ACTIONS(1993), + [anon_sym_i64] = ACTIONS(1993), + [anon_sym_u128] = ACTIONS(1993), + [anon_sym_i128] = ACTIONS(1993), + [anon_sym_isize] = ACTIONS(1993), + [anon_sym_usize] = ACTIONS(1993), + [anon_sym_f32] = ACTIONS(1993), + [anon_sym_f64] = ACTIONS(1993), + [anon_sym_bool] = ACTIONS(1993), + [anon_sym_str] = ACTIONS(1993), + [anon_sym_char] = ACTIONS(1993), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_async] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_enum] = ACTIONS(1993), + [anon_sym_fn] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_impl] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_mod] = ACTIONS(1993), + [anon_sym_pub] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_static] = ACTIONS(1993), + [anon_sym_struct] = ACTIONS(1993), + [anon_sym_trait] = ACTIONS(1993), + [anon_sym_type] = ACTIONS(1993), + [anon_sym_union] = ACTIONS(1993), + [anon_sym_unsafe] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(1991), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_COLON_COLON] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_DOT_DOT] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_yield] = ACTIONS(1993), + [anon_sym_move] = ACTIONS(1993), + [sym_integer_literal] = ACTIONS(1991), + [aux_sym_string_literal_token1] = ACTIONS(1991), + [sym_char_literal] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(1993), + [anon_sym_false] = ACTIONS(1993), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1993), + [sym_super] = ACTIONS(1993), + [sym_crate] = ACTIONS(1993), + [sym_metavariable] = ACTIONS(1991), + [sym_raw_string_literal] = ACTIONS(1991), + [sym_float_literal] = ACTIONS(1991), [sym_block_comment] = ACTIONS(3), }, [469] = { - [ts_builtin_sym_end] = ACTIONS(1978), - [sym_identifier] = ACTIONS(1980), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_macro_rules_BANG] = ACTIONS(1978), - [anon_sym_LPAREN] = ACTIONS(1978), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_RBRACE] = ACTIONS(1978), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_STAR] = ACTIONS(1978), - [anon_sym_u8] = ACTIONS(1980), - [anon_sym_i8] = ACTIONS(1980), - [anon_sym_u16] = ACTIONS(1980), - [anon_sym_i16] = ACTIONS(1980), - [anon_sym_u32] = ACTIONS(1980), - [anon_sym_i32] = ACTIONS(1980), - [anon_sym_u64] = ACTIONS(1980), - [anon_sym_i64] = ACTIONS(1980), - [anon_sym_u128] = ACTIONS(1980), - [anon_sym_i128] = ACTIONS(1980), - [anon_sym_isize] = ACTIONS(1980), - [anon_sym_usize] = ACTIONS(1980), - [anon_sym_f32] = ACTIONS(1980), - [anon_sym_f64] = ACTIONS(1980), - [anon_sym_bool] = ACTIONS(1980), - [anon_sym_str] = ACTIONS(1980), - [anon_sym_char] = ACTIONS(1980), - [anon_sym_SQUOTE] = ACTIONS(1980), - [anon_sym_async] = ACTIONS(1980), - [anon_sym_break] = ACTIONS(1980), - [anon_sym_const] = ACTIONS(1980), - [anon_sym_continue] = ACTIONS(1980), - [anon_sym_default] = ACTIONS(1980), - [anon_sym_enum] = ACTIONS(1980), - [anon_sym_fn] = ACTIONS(1980), - [anon_sym_for] = ACTIONS(1980), - [anon_sym_if] = ACTIONS(1980), - [anon_sym_impl] = ACTIONS(1980), - [anon_sym_let] = ACTIONS(1980), - [anon_sym_loop] = ACTIONS(1980), - [anon_sym_match] = ACTIONS(1980), - [anon_sym_mod] = ACTIONS(1980), - [anon_sym_pub] = ACTIONS(1980), - [anon_sym_return] = ACTIONS(1980), - [anon_sym_static] = ACTIONS(1980), - [anon_sym_struct] = ACTIONS(1980), - [anon_sym_trait] = ACTIONS(1980), - [anon_sym_type] = ACTIONS(1980), - [anon_sym_union] = ACTIONS(1980), - [anon_sym_unsafe] = ACTIONS(1980), - [anon_sym_use] = ACTIONS(1980), - [anon_sym_while] = ACTIONS(1980), - [anon_sym_POUND] = ACTIONS(1978), - [anon_sym_BANG] = ACTIONS(1978), - [anon_sym_extern] = ACTIONS(1980), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_COLON_COLON] = ACTIONS(1978), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_DOT_DOT] = ACTIONS(1978), - [anon_sym_DASH] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_yield] = ACTIONS(1980), - [anon_sym_move] = ACTIONS(1980), - [sym_integer_literal] = ACTIONS(1978), - [aux_sym_string_literal_token1] = ACTIONS(1978), - [sym_char_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1980), - [anon_sym_false] = ACTIONS(1980), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1980), - [sym_super] = ACTIONS(1980), - [sym_crate] = ACTIONS(1980), - [sym_metavariable] = ACTIONS(1978), - [sym_raw_string_literal] = ACTIONS(1978), - [sym_float_literal] = ACTIONS(1978), + [ts_builtin_sym_end] = ACTIONS(1995), + [sym_identifier] = ACTIONS(1997), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_macro_rules_BANG] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_RBRACE] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(1995), + [anon_sym_u8] = ACTIONS(1997), + [anon_sym_i8] = ACTIONS(1997), + [anon_sym_u16] = ACTIONS(1997), + [anon_sym_i16] = ACTIONS(1997), + [anon_sym_u32] = ACTIONS(1997), + [anon_sym_i32] = ACTIONS(1997), + [anon_sym_u64] = ACTIONS(1997), + [anon_sym_i64] = ACTIONS(1997), + [anon_sym_u128] = ACTIONS(1997), + [anon_sym_i128] = ACTIONS(1997), + [anon_sym_isize] = ACTIONS(1997), + [anon_sym_usize] = ACTIONS(1997), + [anon_sym_f32] = ACTIONS(1997), + [anon_sym_f64] = ACTIONS(1997), + [anon_sym_bool] = ACTIONS(1997), + [anon_sym_str] = ACTIONS(1997), + [anon_sym_char] = ACTIONS(1997), + [anon_sym_SQUOTE] = ACTIONS(1997), + [anon_sym_async] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(1997), + [anon_sym_enum] = ACTIONS(1997), + [anon_sym_fn] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_impl] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_mod] = ACTIONS(1997), + [anon_sym_pub] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_static] = ACTIONS(1997), + [anon_sym_struct] = ACTIONS(1997), + [anon_sym_trait] = ACTIONS(1997), + [anon_sym_type] = ACTIONS(1997), + [anon_sym_union] = ACTIONS(1997), + [anon_sym_unsafe] = ACTIONS(1997), + [anon_sym_use] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_POUND] = ACTIONS(1995), + [anon_sym_BANG] = ACTIONS(1995), + [anon_sym_extern] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1995), + [anon_sym_DOT_DOT] = ACTIONS(1995), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_yield] = ACTIONS(1997), + [anon_sym_move] = ACTIONS(1997), + [sym_integer_literal] = ACTIONS(1995), + [aux_sym_string_literal_token1] = ACTIONS(1995), + [sym_char_literal] = ACTIONS(1995), + [anon_sym_true] = ACTIONS(1997), + [anon_sym_false] = ACTIONS(1997), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1997), + [sym_super] = ACTIONS(1997), + [sym_crate] = ACTIONS(1997), + [sym_metavariable] = ACTIONS(1995), + [sym_raw_string_literal] = ACTIONS(1995), + [sym_float_literal] = ACTIONS(1995), [sym_block_comment] = ACTIONS(3), }, [470] = { - [ts_builtin_sym_end] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_macro_rules_BANG] = ACTIONS(1982), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1982), - [anon_sym_STAR] = ACTIONS(1982), - [anon_sym_u8] = ACTIONS(1984), - [anon_sym_i8] = ACTIONS(1984), - [anon_sym_u16] = ACTIONS(1984), - [anon_sym_i16] = ACTIONS(1984), - [anon_sym_u32] = ACTIONS(1984), - [anon_sym_i32] = ACTIONS(1984), - [anon_sym_u64] = ACTIONS(1984), - [anon_sym_i64] = ACTIONS(1984), - [anon_sym_u128] = ACTIONS(1984), - [anon_sym_i128] = ACTIONS(1984), - [anon_sym_isize] = ACTIONS(1984), - [anon_sym_usize] = ACTIONS(1984), - [anon_sym_f32] = ACTIONS(1984), - [anon_sym_f64] = ACTIONS(1984), - [anon_sym_bool] = ACTIONS(1984), - [anon_sym_str] = ACTIONS(1984), - [anon_sym_char] = ACTIONS(1984), - [anon_sym_SQUOTE] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_default] = ACTIONS(1984), - [anon_sym_enum] = ACTIONS(1984), - [anon_sym_fn] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_impl] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_loop] = ACTIONS(1984), - [anon_sym_match] = ACTIONS(1984), - [anon_sym_mod] = ACTIONS(1984), - [anon_sym_pub] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_struct] = ACTIONS(1984), - [anon_sym_trait] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_union] = ACTIONS(1984), - [anon_sym_unsafe] = ACTIONS(1984), - [anon_sym_use] = ACTIONS(1984), - [anon_sym_while] = ACTIONS(1984), - [anon_sym_POUND] = ACTIONS(1982), - [anon_sym_BANG] = ACTIONS(1982), - [anon_sym_extern] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_COLON_COLON] = ACTIONS(1982), - [anon_sym_AMP] = ACTIONS(1982), - [anon_sym_DOT_DOT] = ACTIONS(1982), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_move] = ACTIONS(1984), - [sym_integer_literal] = ACTIONS(1982), - [aux_sym_string_literal_token1] = ACTIONS(1982), - [sym_char_literal] = ACTIONS(1982), - [anon_sym_true] = ACTIONS(1984), - [anon_sym_false] = ACTIONS(1984), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_crate] = ACTIONS(1984), - [sym_metavariable] = ACTIONS(1982), - [sym_raw_string_literal] = ACTIONS(1982), - [sym_float_literal] = ACTIONS(1982), + [ts_builtin_sym_end] = ACTIONS(1999), + [sym_identifier] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(1999), + [anon_sym_macro_rules_BANG] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_STAR] = ACTIONS(1999), + [anon_sym_u8] = ACTIONS(2001), + [anon_sym_i8] = ACTIONS(2001), + [anon_sym_u16] = ACTIONS(2001), + [anon_sym_i16] = ACTIONS(2001), + [anon_sym_u32] = ACTIONS(2001), + [anon_sym_i32] = ACTIONS(2001), + [anon_sym_u64] = ACTIONS(2001), + [anon_sym_i64] = ACTIONS(2001), + [anon_sym_u128] = ACTIONS(2001), + [anon_sym_i128] = ACTIONS(2001), + [anon_sym_isize] = ACTIONS(2001), + [anon_sym_usize] = ACTIONS(2001), + [anon_sym_f32] = ACTIONS(2001), + [anon_sym_f64] = ACTIONS(2001), + [anon_sym_bool] = ACTIONS(2001), + [anon_sym_str] = ACTIONS(2001), + [anon_sym_char] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_async] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_default] = ACTIONS(2001), + [anon_sym_enum] = ACTIONS(2001), + [anon_sym_fn] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_impl] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_mod] = ACTIONS(2001), + [anon_sym_pub] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_struct] = ACTIONS(2001), + [anon_sym_trait] = ACTIONS(2001), + [anon_sym_type] = ACTIONS(2001), + [anon_sym_union] = ACTIONS(2001), + [anon_sym_unsafe] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(1999), + [anon_sym_COLON_COLON] = ACTIONS(1999), + [anon_sym_AMP] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_PIPE] = ACTIONS(1999), + [anon_sym_yield] = ACTIONS(2001), + [anon_sym_move] = ACTIONS(2001), + [sym_integer_literal] = ACTIONS(1999), + [aux_sym_string_literal_token1] = ACTIONS(1999), + [sym_char_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2001), + [sym_super] = ACTIONS(2001), + [sym_crate] = ACTIONS(2001), + [sym_metavariable] = ACTIONS(1999), + [sym_raw_string_literal] = ACTIONS(1999), + [sym_float_literal] = ACTIONS(1999), [sym_block_comment] = ACTIONS(3), }, [471] = { - [ts_builtin_sym_end] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_macro_rules_BANG] = ACTIONS(1986), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_u8] = ACTIONS(1988), - [anon_sym_i8] = ACTIONS(1988), - [anon_sym_u16] = ACTIONS(1988), - [anon_sym_i16] = ACTIONS(1988), - [anon_sym_u32] = ACTIONS(1988), - [anon_sym_i32] = ACTIONS(1988), - [anon_sym_u64] = ACTIONS(1988), - [anon_sym_i64] = ACTIONS(1988), - [anon_sym_u128] = ACTIONS(1988), - [anon_sym_i128] = ACTIONS(1988), - [anon_sym_isize] = ACTIONS(1988), - [anon_sym_usize] = ACTIONS(1988), - [anon_sym_f32] = ACTIONS(1988), - [anon_sym_f64] = ACTIONS(1988), - [anon_sym_bool] = ACTIONS(1988), - [anon_sym_str] = ACTIONS(1988), - [anon_sym_char] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_fn] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_impl] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_loop] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1988), - [anon_sym_mod] = ACTIONS(1988), - [anon_sym_pub] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_trait] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_unsafe] = ACTIONS(1988), - [anon_sym_use] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_POUND] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_DOT_DOT] = ACTIONS(1986), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_yield] = ACTIONS(1988), - [anon_sym_move] = ACTIONS(1988), - [sym_integer_literal] = ACTIONS(1986), - [aux_sym_string_literal_token1] = ACTIONS(1986), - [sym_char_literal] = ACTIONS(1986), - [anon_sym_true] = ACTIONS(1988), - [anon_sym_false] = ACTIONS(1988), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1988), - [sym_super] = ACTIONS(1988), - [sym_crate] = ACTIONS(1988), - [sym_metavariable] = ACTIONS(1986), - [sym_raw_string_literal] = ACTIONS(1986), - [sym_float_literal] = ACTIONS(1986), + [ts_builtin_sym_end] = ACTIONS(2003), + [sym_identifier] = ACTIONS(2005), + [anon_sym_SEMI] = ACTIONS(2003), + [anon_sym_macro_rules_BANG] = ACTIONS(2003), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2003), + [anon_sym_STAR] = ACTIONS(2003), + [anon_sym_u8] = ACTIONS(2005), + [anon_sym_i8] = ACTIONS(2005), + [anon_sym_u16] = ACTIONS(2005), + [anon_sym_i16] = ACTIONS(2005), + [anon_sym_u32] = ACTIONS(2005), + [anon_sym_i32] = ACTIONS(2005), + [anon_sym_u64] = ACTIONS(2005), + [anon_sym_i64] = ACTIONS(2005), + [anon_sym_u128] = ACTIONS(2005), + [anon_sym_i128] = ACTIONS(2005), + [anon_sym_isize] = ACTIONS(2005), + [anon_sym_usize] = ACTIONS(2005), + [anon_sym_f32] = ACTIONS(2005), + [anon_sym_f64] = ACTIONS(2005), + [anon_sym_bool] = ACTIONS(2005), + [anon_sym_str] = ACTIONS(2005), + [anon_sym_char] = ACTIONS(2005), + [anon_sym_SQUOTE] = ACTIONS(2005), + [anon_sym_async] = ACTIONS(2005), + [anon_sym_break] = ACTIONS(2005), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2005), + [anon_sym_enum] = ACTIONS(2005), + [anon_sym_fn] = ACTIONS(2005), + [anon_sym_for] = ACTIONS(2005), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_impl] = ACTIONS(2005), + [anon_sym_let] = ACTIONS(2005), + [anon_sym_loop] = ACTIONS(2005), + [anon_sym_match] = ACTIONS(2005), + [anon_sym_mod] = ACTIONS(2005), + [anon_sym_pub] = ACTIONS(2005), + [anon_sym_return] = ACTIONS(2005), + [anon_sym_static] = ACTIONS(2005), + [anon_sym_struct] = ACTIONS(2005), + [anon_sym_trait] = ACTIONS(2005), + [anon_sym_type] = ACTIONS(2005), + [anon_sym_union] = ACTIONS(2005), + [anon_sym_unsafe] = ACTIONS(2005), + [anon_sym_use] = ACTIONS(2005), + [anon_sym_while] = ACTIONS(2005), + [anon_sym_POUND] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(2003), + [anon_sym_extern] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym_DOT_DOT] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_yield] = ACTIONS(2005), + [anon_sym_move] = ACTIONS(2005), + [sym_integer_literal] = ACTIONS(2003), + [aux_sym_string_literal_token1] = ACTIONS(2003), + [sym_char_literal] = ACTIONS(2003), + [anon_sym_true] = ACTIONS(2005), + [anon_sym_false] = ACTIONS(2005), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2005), + [sym_super] = ACTIONS(2005), + [sym_crate] = ACTIONS(2005), + [sym_metavariable] = ACTIONS(2003), + [sym_raw_string_literal] = ACTIONS(2003), + [sym_float_literal] = ACTIONS(2003), [sym_block_comment] = ACTIONS(3), }, [472] = { - [ts_builtin_sym_end] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1992), - [anon_sym_SEMI] = ACTIONS(1990), - [anon_sym_macro_rules_BANG] = ACTIONS(1990), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_RBRACE] = ACTIONS(1990), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1990), - [anon_sym_u8] = ACTIONS(1992), - [anon_sym_i8] = ACTIONS(1992), - [anon_sym_u16] = ACTIONS(1992), - [anon_sym_i16] = ACTIONS(1992), - [anon_sym_u32] = ACTIONS(1992), - [anon_sym_i32] = ACTIONS(1992), - [anon_sym_u64] = ACTIONS(1992), - [anon_sym_i64] = ACTIONS(1992), - [anon_sym_u128] = ACTIONS(1992), - [anon_sym_i128] = ACTIONS(1992), - [anon_sym_isize] = ACTIONS(1992), - [anon_sym_usize] = ACTIONS(1992), - [anon_sym_f32] = ACTIONS(1992), - [anon_sym_f64] = ACTIONS(1992), - [anon_sym_bool] = ACTIONS(1992), - [anon_sym_str] = ACTIONS(1992), - [anon_sym_char] = ACTIONS(1992), - [anon_sym_SQUOTE] = ACTIONS(1992), - [anon_sym_async] = ACTIONS(1992), - [anon_sym_break] = ACTIONS(1992), - [anon_sym_const] = ACTIONS(1992), - [anon_sym_continue] = ACTIONS(1992), - [anon_sym_default] = ACTIONS(1992), - [anon_sym_enum] = ACTIONS(1992), - [anon_sym_fn] = ACTIONS(1992), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_impl] = ACTIONS(1992), - [anon_sym_let] = ACTIONS(1992), - [anon_sym_loop] = ACTIONS(1992), - [anon_sym_match] = ACTIONS(1992), - [anon_sym_mod] = ACTIONS(1992), - [anon_sym_pub] = ACTIONS(1992), - [anon_sym_return] = ACTIONS(1992), - [anon_sym_static] = ACTIONS(1992), - [anon_sym_struct] = ACTIONS(1992), - [anon_sym_trait] = ACTIONS(1992), - [anon_sym_type] = ACTIONS(1992), - [anon_sym_union] = ACTIONS(1992), - [anon_sym_unsafe] = ACTIONS(1992), - [anon_sym_use] = ACTIONS(1992), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_POUND] = ACTIONS(1990), - [anon_sym_BANG] = ACTIONS(1990), - [anon_sym_extern] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1990), - [anon_sym_COLON_COLON] = ACTIONS(1990), - [anon_sym_AMP] = ACTIONS(1990), - [anon_sym_DOT_DOT] = ACTIONS(1990), - [anon_sym_DASH] = ACTIONS(1990), - [anon_sym_PIPE] = ACTIONS(1990), - [anon_sym_yield] = ACTIONS(1992), - [anon_sym_move] = ACTIONS(1992), - [sym_integer_literal] = ACTIONS(1990), - [aux_sym_string_literal_token1] = ACTIONS(1990), - [sym_char_literal] = ACTIONS(1990), - [anon_sym_true] = ACTIONS(1992), - [anon_sym_false] = ACTIONS(1992), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1992), - [sym_super] = ACTIONS(1992), - [sym_crate] = ACTIONS(1992), - [sym_metavariable] = ACTIONS(1990), - [sym_raw_string_literal] = ACTIONS(1990), - [sym_float_literal] = ACTIONS(1990), + [ts_builtin_sym_end] = ACTIONS(2007), + [sym_identifier] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(2007), + [anon_sym_macro_rules_BANG] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_u8] = ACTIONS(2009), + [anon_sym_i8] = ACTIONS(2009), + [anon_sym_u16] = ACTIONS(2009), + [anon_sym_i16] = ACTIONS(2009), + [anon_sym_u32] = ACTIONS(2009), + [anon_sym_i32] = ACTIONS(2009), + [anon_sym_u64] = ACTIONS(2009), + [anon_sym_i64] = ACTIONS(2009), + [anon_sym_u128] = ACTIONS(2009), + [anon_sym_i128] = ACTIONS(2009), + [anon_sym_isize] = ACTIONS(2009), + [anon_sym_usize] = ACTIONS(2009), + [anon_sym_f32] = ACTIONS(2009), + [anon_sym_f64] = ACTIONS(2009), + [anon_sym_bool] = ACTIONS(2009), + [anon_sym_str] = ACTIONS(2009), + [anon_sym_char] = ACTIONS(2009), + [anon_sym_SQUOTE] = ACTIONS(2009), + [anon_sym_async] = ACTIONS(2009), + [anon_sym_break] = ACTIONS(2009), + [anon_sym_const] = ACTIONS(2009), + [anon_sym_continue] = ACTIONS(2009), + [anon_sym_default] = ACTIONS(2009), + [anon_sym_enum] = ACTIONS(2009), + [anon_sym_fn] = ACTIONS(2009), + [anon_sym_for] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2009), + [anon_sym_impl] = ACTIONS(2009), + [anon_sym_let] = ACTIONS(2009), + [anon_sym_loop] = ACTIONS(2009), + [anon_sym_match] = ACTIONS(2009), + [anon_sym_mod] = ACTIONS(2009), + [anon_sym_pub] = ACTIONS(2009), + [anon_sym_return] = ACTIONS(2009), + [anon_sym_static] = ACTIONS(2009), + [anon_sym_struct] = ACTIONS(2009), + [anon_sym_trait] = ACTIONS(2009), + [anon_sym_type] = ACTIONS(2009), + [anon_sym_union] = ACTIONS(2009), + [anon_sym_unsafe] = ACTIONS(2009), + [anon_sym_use] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_POUND] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2007), + [anon_sym_extern] = ACTIONS(2009), + [anon_sym_LT] = ACTIONS(2007), + [anon_sym_COLON_COLON] = ACTIONS(2007), + [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_PIPE] = ACTIONS(2007), + [anon_sym_yield] = ACTIONS(2009), + [anon_sym_move] = ACTIONS(2009), + [sym_integer_literal] = ACTIONS(2007), + [aux_sym_string_literal_token1] = ACTIONS(2007), + [sym_char_literal] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2009), + [anon_sym_false] = ACTIONS(2009), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2007), + [sym_raw_string_literal] = ACTIONS(2007), + [sym_float_literal] = ACTIONS(2007), [sym_block_comment] = ACTIONS(3), }, [473] = { - [ts_builtin_sym_end] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_macro_rules_BANG] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_RBRACE] = ACTIONS(1994), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1994), - [anon_sym_u8] = ACTIONS(1996), - [anon_sym_i8] = ACTIONS(1996), - [anon_sym_u16] = ACTIONS(1996), - [anon_sym_i16] = ACTIONS(1996), - [anon_sym_u32] = ACTIONS(1996), - [anon_sym_i32] = ACTIONS(1996), - [anon_sym_u64] = ACTIONS(1996), - [anon_sym_i64] = ACTIONS(1996), - [anon_sym_u128] = ACTIONS(1996), - [anon_sym_i128] = ACTIONS(1996), - [anon_sym_isize] = ACTIONS(1996), - [anon_sym_usize] = ACTIONS(1996), - [anon_sym_f32] = ACTIONS(1996), - [anon_sym_f64] = ACTIONS(1996), - [anon_sym_bool] = ACTIONS(1996), - [anon_sym_str] = ACTIONS(1996), - [anon_sym_char] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_async] = ACTIONS(1996), - [anon_sym_break] = ACTIONS(1996), - [anon_sym_const] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(1996), - [anon_sym_default] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1996), - [anon_sym_fn] = ACTIONS(1996), - [anon_sym_for] = ACTIONS(1996), - [anon_sym_if] = ACTIONS(1996), - [anon_sym_impl] = ACTIONS(1996), - [anon_sym_let] = ACTIONS(1996), - [anon_sym_loop] = ACTIONS(1996), - [anon_sym_match] = ACTIONS(1996), - [anon_sym_mod] = ACTIONS(1996), - [anon_sym_pub] = ACTIONS(1996), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1996), - [anon_sym_struct] = ACTIONS(1996), - [anon_sym_trait] = ACTIONS(1996), - [anon_sym_type] = ACTIONS(1996), - [anon_sym_union] = ACTIONS(1996), - [anon_sym_unsafe] = ACTIONS(1996), - [anon_sym_use] = ACTIONS(1996), - [anon_sym_while] = ACTIONS(1996), - [anon_sym_POUND] = ACTIONS(1994), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1996), - [anon_sym_LT] = ACTIONS(1994), - [anon_sym_COLON_COLON] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_DOT_DOT] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PIPE] = ACTIONS(1994), - [anon_sym_yield] = ACTIONS(1996), - [anon_sym_move] = ACTIONS(1996), - [sym_integer_literal] = ACTIONS(1994), - [aux_sym_string_literal_token1] = ACTIONS(1994), - [sym_char_literal] = ACTIONS(1994), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1996), - [sym_super] = ACTIONS(1996), - [sym_crate] = ACTIONS(1996), - [sym_metavariable] = ACTIONS(1994), - [sym_raw_string_literal] = ACTIONS(1994), - [sym_float_literal] = ACTIONS(1994), + [ts_builtin_sym_end] = ACTIONS(2011), + [sym_identifier] = ACTIONS(2013), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_macro_rules_BANG] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_u8] = ACTIONS(2013), + [anon_sym_i8] = ACTIONS(2013), + [anon_sym_u16] = ACTIONS(2013), + [anon_sym_i16] = ACTIONS(2013), + [anon_sym_u32] = ACTIONS(2013), + [anon_sym_i32] = ACTIONS(2013), + [anon_sym_u64] = ACTIONS(2013), + [anon_sym_i64] = ACTIONS(2013), + [anon_sym_u128] = ACTIONS(2013), + [anon_sym_i128] = ACTIONS(2013), + [anon_sym_isize] = ACTIONS(2013), + [anon_sym_usize] = ACTIONS(2013), + [anon_sym_f32] = ACTIONS(2013), + [anon_sym_f64] = ACTIONS(2013), + [anon_sym_bool] = ACTIONS(2013), + [anon_sym_str] = ACTIONS(2013), + [anon_sym_char] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_async] = ACTIONS(2013), + [anon_sym_break] = ACTIONS(2013), + [anon_sym_const] = ACTIONS(2013), + [anon_sym_continue] = ACTIONS(2013), + [anon_sym_default] = ACTIONS(2013), + [anon_sym_enum] = ACTIONS(2013), + [anon_sym_fn] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_if] = ACTIONS(2013), + [anon_sym_impl] = ACTIONS(2013), + [anon_sym_let] = ACTIONS(2013), + [anon_sym_loop] = ACTIONS(2013), + [anon_sym_match] = ACTIONS(2013), + [anon_sym_mod] = ACTIONS(2013), + [anon_sym_pub] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2013), + [anon_sym_static] = ACTIONS(2013), + [anon_sym_struct] = ACTIONS(2013), + [anon_sym_trait] = ACTIONS(2013), + [anon_sym_type] = ACTIONS(2013), + [anon_sym_union] = ACTIONS(2013), + [anon_sym_unsafe] = ACTIONS(2013), + [anon_sym_use] = ACTIONS(2013), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2011), + [anon_sym_extern] = ACTIONS(2013), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_COLON_COLON] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2011), + [anon_sym_DOT_DOT] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_yield] = ACTIONS(2013), + [anon_sym_move] = ACTIONS(2013), + [sym_integer_literal] = ACTIONS(2011), + [aux_sym_string_literal_token1] = ACTIONS(2011), + [sym_char_literal] = ACTIONS(2011), + [anon_sym_true] = ACTIONS(2013), + [anon_sym_false] = ACTIONS(2013), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2013), + [sym_super] = ACTIONS(2013), + [sym_crate] = ACTIONS(2013), + [sym_metavariable] = ACTIONS(2011), + [sym_raw_string_literal] = ACTIONS(2011), + [sym_float_literal] = ACTIONS(2011), [sym_block_comment] = ACTIONS(3), }, [474] = { - [ts_builtin_sym_end] = ACTIONS(1998), - [sym_identifier] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(1998), - [anon_sym_macro_rules_BANG] = ACTIONS(1998), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(1998), - [anon_sym_RBRACE] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_STAR] = ACTIONS(1998), - [anon_sym_u8] = ACTIONS(2000), - [anon_sym_i8] = ACTIONS(2000), - [anon_sym_u16] = ACTIONS(2000), - [anon_sym_i16] = ACTIONS(2000), - [anon_sym_u32] = ACTIONS(2000), - [anon_sym_i32] = ACTIONS(2000), - [anon_sym_u64] = ACTIONS(2000), - [anon_sym_i64] = ACTIONS(2000), - [anon_sym_u128] = ACTIONS(2000), - [anon_sym_i128] = ACTIONS(2000), - [anon_sym_isize] = ACTIONS(2000), - [anon_sym_usize] = ACTIONS(2000), - [anon_sym_f32] = ACTIONS(2000), - [anon_sym_f64] = ACTIONS(2000), - [anon_sym_bool] = ACTIONS(2000), - [anon_sym_str] = ACTIONS(2000), - [anon_sym_char] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_async] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_const] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_default] = ACTIONS(2000), - [anon_sym_enum] = ACTIONS(2000), - [anon_sym_fn] = ACTIONS(2000), - [anon_sym_for] = ACTIONS(2000), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_impl] = ACTIONS(2000), - [anon_sym_let] = ACTIONS(2000), - [anon_sym_loop] = ACTIONS(2000), - [anon_sym_match] = ACTIONS(2000), - [anon_sym_mod] = ACTIONS(2000), - [anon_sym_pub] = ACTIONS(2000), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2000), - [anon_sym_trait] = ACTIONS(2000), - [anon_sym_type] = ACTIONS(2000), - [anon_sym_union] = ACTIONS(2000), - [anon_sym_unsafe] = ACTIONS(2000), - [anon_sym_use] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2000), - [anon_sym_POUND] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1998), - [anon_sym_extern] = ACTIONS(2000), - [anon_sym_LT] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_AMP] = ACTIONS(1998), - [anon_sym_DOT_DOT] = ACTIONS(1998), - [anon_sym_DASH] = ACTIONS(1998), - [anon_sym_PIPE] = ACTIONS(1998), - [anon_sym_yield] = ACTIONS(2000), - [anon_sym_move] = ACTIONS(2000), - [sym_integer_literal] = ACTIONS(1998), - [aux_sym_string_literal_token1] = ACTIONS(1998), - [sym_char_literal] = ACTIONS(1998), - [anon_sym_true] = ACTIONS(2000), - [anon_sym_false] = ACTIONS(2000), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2000), - [sym_super] = ACTIONS(2000), - [sym_crate] = ACTIONS(2000), - [sym_metavariable] = ACTIONS(1998), - [sym_raw_string_literal] = ACTIONS(1998), - [sym_float_literal] = ACTIONS(1998), + [ts_builtin_sym_end] = ACTIONS(2015), + [sym_identifier] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_macro_rules_BANG] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_u8] = ACTIONS(2017), + [anon_sym_i8] = ACTIONS(2017), + [anon_sym_u16] = ACTIONS(2017), + [anon_sym_i16] = ACTIONS(2017), + [anon_sym_u32] = ACTIONS(2017), + [anon_sym_i32] = ACTIONS(2017), + [anon_sym_u64] = ACTIONS(2017), + [anon_sym_i64] = ACTIONS(2017), + [anon_sym_u128] = ACTIONS(2017), + [anon_sym_i128] = ACTIONS(2017), + [anon_sym_isize] = ACTIONS(2017), + [anon_sym_usize] = ACTIONS(2017), + [anon_sym_f32] = ACTIONS(2017), + [anon_sym_f64] = ACTIONS(2017), + [anon_sym_bool] = ACTIONS(2017), + [anon_sym_str] = ACTIONS(2017), + [anon_sym_char] = ACTIONS(2017), + [anon_sym_SQUOTE] = ACTIONS(2017), + [anon_sym_async] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(2017), + [anon_sym_enum] = ACTIONS(2017), + [anon_sym_fn] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_impl] = ACTIONS(2017), + [anon_sym_let] = ACTIONS(2017), + [anon_sym_loop] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2017), + [anon_sym_mod] = ACTIONS(2017), + [anon_sym_pub] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_struct] = ACTIONS(2017), + [anon_sym_trait] = ACTIONS(2017), + [anon_sym_type] = ACTIONS(2017), + [anon_sym_union] = ACTIONS(2017), + [anon_sym_unsafe] = ACTIONS(2017), + [anon_sym_use] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_POUND] = ACTIONS(2015), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym_LT] = ACTIONS(2015), + [anon_sym_COLON_COLON] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_PIPE] = ACTIONS(2015), + [anon_sym_yield] = ACTIONS(2017), + [anon_sym_move] = ACTIONS(2017), + [sym_integer_literal] = ACTIONS(2015), + [aux_sym_string_literal_token1] = ACTIONS(2015), + [sym_char_literal] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2017), + [anon_sym_false] = ACTIONS(2017), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2017), + [sym_super] = ACTIONS(2017), + [sym_crate] = ACTIONS(2017), + [sym_metavariable] = ACTIONS(2015), + [sym_raw_string_literal] = ACTIONS(2015), + [sym_float_literal] = ACTIONS(2015), [sym_block_comment] = ACTIONS(3), }, [475] = { - [ts_builtin_sym_end] = ACTIONS(2002), - [sym_identifier] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_macro_rules_BANG] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_u8] = ACTIONS(2004), - [anon_sym_i8] = ACTIONS(2004), - [anon_sym_u16] = ACTIONS(2004), - [anon_sym_i16] = ACTIONS(2004), - [anon_sym_u32] = ACTIONS(2004), - [anon_sym_i32] = ACTIONS(2004), - [anon_sym_u64] = ACTIONS(2004), - [anon_sym_i64] = ACTIONS(2004), - [anon_sym_u128] = ACTIONS(2004), - [anon_sym_i128] = ACTIONS(2004), - [anon_sym_isize] = ACTIONS(2004), - [anon_sym_usize] = ACTIONS(2004), - [anon_sym_f32] = ACTIONS(2004), - [anon_sym_f64] = ACTIONS(2004), - [anon_sym_bool] = ACTIONS(2004), - [anon_sym_str] = ACTIONS(2004), - [anon_sym_char] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_default] = ACTIONS(2004), - [anon_sym_enum] = ACTIONS(2004), - [anon_sym_fn] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_impl] = ACTIONS(2004), - [anon_sym_let] = ACTIONS(2004), - [anon_sym_loop] = ACTIONS(2004), - [anon_sym_match] = ACTIONS(2004), - [anon_sym_mod] = ACTIONS(2004), - [anon_sym_pub] = ACTIONS(2004), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_struct] = ACTIONS(2004), - [anon_sym_trait] = ACTIONS(2004), - [anon_sym_type] = ACTIONS(2004), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_unsafe] = ACTIONS(2004), - [anon_sym_use] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [anon_sym_POUND] = ACTIONS(2002), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2004), - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_COLON_COLON] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_yield] = ACTIONS(2004), - [anon_sym_move] = ACTIONS(2004), - [sym_integer_literal] = ACTIONS(2002), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2004), - [sym_super] = ACTIONS(2004), - [sym_crate] = ACTIONS(2004), - [sym_metavariable] = ACTIONS(2002), - [sym_raw_string_literal] = ACTIONS(2002), - [sym_float_literal] = ACTIONS(2002), + [ts_builtin_sym_end] = ACTIONS(2019), + [sym_identifier] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym_macro_rules_BANG] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_u8] = ACTIONS(2021), + [anon_sym_i8] = ACTIONS(2021), + [anon_sym_u16] = ACTIONS(2021), + [anon_sym_i16] = ACTIONS(2021), + [anon_sym_u32] = ACTIONS(2021), + [anon_sym_i32] = ACTIONS(2021), + [anon_sym_u64] = ACTIONS(2021), + [anon_sym_i64] = ACTIONS(2021), + [anon_sym_u128] = ACTIONS(2021), + [anon_sym_i128] = ACTIONS(2021), + [anon_sym_isize] = ACTIONS(2021), + [anon_sym_usize] = ACTIONS(2021), + [anon_sym_f32] = ACTIONS(2021), + [anon_sym_f64] = ACTIONS(2021), + [anon_sym_bool] = ACTIONS(2021), + [anon_sym_str] = ACTIONS(2021), + [anon_sym_char] = ACTIONS(2021), + [anon_sym_SQUOTE] = ACTIONS(2021), + [anon_sym_async] = ACTIONS(2021), + [anon_sym_break] = ACTIONS(2021), + [anon_sym_const] = ACTIONS(2021), + [anon_sym_continue] = ACTIONS(2021), + [anon_sym_default] = ACTIONS(2021), + [anon_sym_enum] = ACTIONS(2021), + [anon_sym_fn] = ACTIONS(2021), + [anon_sym_for] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2021), + [anon_sym_impl] = ACTIONS(2021), + [anon_sym_let] = ACTIONS(2021), + [anon_sym_loop] = ACTIONS(2021), + [anon_sym_match] = ACTIONS(2021), + [anon_sym_mod] = ACTIONS(2021), + [anon_sym_pub] = ACTIONS(2021), + [anon_sym_return] = ACTIONS(2021), + [anon_sym_static] = ACTIONS(2021), + [anon_sym_struct] = ACTIONS(2021), + [anon_sym_trait] = ACTIONS(2021), + [anon_sym_type] = ACTIONS(2021), + [anon_sym_union] = ACTIONS(2021), + [anon_sym_unsafe] = ACTIONS(2021), + [anon_sym_use] = ACTIONS(2021), + [anon_sym_while] = ACTIONS(2021), + [anon_sym_POUND] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_extern] = ACTIONS(2021), + [anon_sym_LT] = ACTIONS(2019), + [anon_sym_COLON_COLON] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2019), + [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_yield] = ACTIONS(2021), + [anon_sym_move] = ACTIONS(2021), + [sym_integer_literal] = ACTIONS(2019), + [aux_sym_string_literal_token1] = ACTIONS(2019), + [sym_char_literal] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2021), + [anon_sym_false] = ACTIONS(2021), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2021), + [sym_super] = ACTIONS(2021), + [sym_crate] = ACTIONS(2021), + [sym_metavariable] = ACTIONS(2019), + [sym_raw_string_literal] = ACTIONS(2019), + [sym_float_literal] = ACTIONS(2019), [sym_block_comment] = ACTIONS(3), }, [476] = { - [ts_builtin_sym_end] = ACTIONS(2006), - [sym_identifier] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_macro_rules_BANG] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_u8] = ACTIONS(2008), - [anon_sym_i8] = ACTIONS(2008), - [anon_sym_u16] = ACTIONS(2008), - [anon_sym_i16] = ACTIONS(2008), - [anon_sym_u32] = ACTIONS(2008), - [anon_sym_i32] = ACTIONS(2008), - [anon_sym_u64] = ACTIONS(2008), - [anon_sym_i64] = ACTIONS(2008), - [anon_sym_u128] = ACTIONS(2008), - [anon_sym_i128] = ACTIONS(2008), - [anon_sym_isize] = ACTIONS(2008), - [anon_sym_usize] = ACTIONS(2008), - [anon_sym_f32] = ACTIONS(2008), - [anon_sym_f64] = ACTIONS(2008), - [anon_sym_bool] = ACTIONS(2008), - [anon_sym_str] = ACTIONS(2008), - [anon_sym_char] = ACTIONS(2008), - [anon_sym_SQUOTE] = ACTIONS(2008), - [anon_sym_async] = ACTIONS(2008), - [anon_sym_break] = ACTIONS(2008), - [anon_sym_const] = ACTIONS(2008), - [anon_sym_continue] = ACTIONS(2008), - [anon_sym_default] = ACTIONS(2008), - [anon_sym_enum] = ACTIONS(2008), - [anon_sym_fn] = ACTIONS(2008), - [anon_sym_for] = ACTIONS(2008), - [anon_sym_if] = ACTIONS(2008), - [anon_sym_impl] = ACTIONS(2008), - [anon_sym_let] = ACTIONS(2008), - [anon_sym_loop] = ACTIONS(2008), - [anon_sym_match] = ACTIONS(2008), - [anon_sym_mod] = ACTIONS(2008), - [anon_sym_pub] = ACTIONS(2008), - [anon_sym_return] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_struct] = ACTIONS(2008), - [anon_sym_trait] = ACTIONS(2008), - [anon_sym_type] = ACTIONS(2008), - [anon_sym_union] = ACTIONS(2008), - [anon_sym_unsafe] = ACTIONS(2008), - [anon_sym_use] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2008), - [anon_sym_POUND] = ACTIONS(2006), - [anon_sym_BANG] = ACTIONS(2006), - [anon_sym_extern] = ACTIONS(2008), - [anon_sym_LT] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_DOT_DOT] = ACTIONS(2006), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_yield] = ACTIONS(2008), - [anon_sym_move] = ACTIONS(2008), - [sym_integer_literal] = ACTIONS(2006), - [aux_sym_string_literal_token1] = ACTIONS(2006), - [sym_char_literal] = ACTIONS(2006), - [anon_sym_true] = ACTIONS(2008), - [anon_sym_false] = ACTIONS(2008), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2008), - [sym_super] = ACTIONS(2008), - [sym_crate] = ACTIONS(2008), - [sym_metavariable] = ACTIONS(2006), - [sym_raw_string_literal] = ACTIONS(2006), - [sym_float_literal] = ACTIONS(2006), + [ts_builtin_sym_end] = ACTIONS(2023), + [sym_identifier] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_macro_rules_BANG] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_STAR] = ACTIONS(2023), + [anon_sym_u8] = ACTIONS(2025), + [anon_sym_i8] = ACTIONS(2025), + [anon_sym_u16] = ACTIONS(2025), + [anon_sym_i16] = ACTIONS(2025), + [anon_sym_u32] = ACTIONS(2025), + [anon_sym_i32] = ACTIONS(2025), + [anon_sym_u64] = ACTIONS(2025), + [anon_sym_i64] = ACTIONS(2025), + [anon_sym_u128] = ACTIONS(2025), + [anon_sym_i128] = ACTIONS(2025), + [anon_sym_isize] = ACTIONS(2025), + [anon_sym_usize] = ACTIONS(2025), + [anon_sym_f32] = ACTIONS(2025), + [anon_sym_f64] = ACTIONS(2025), + [anon_sym_bool] = ACTIONS(2025), + [anon_sym_str] = ACTIONS(2025), + [anon_sym_char] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_async] = ACTIONS(2025), + [anon_sym_break] = ACTIONS(2025), + [anon_sym_const] = ACTIONS(2025), + [anon_sym_continue] = ACTIONS(2025), + [anon_sym_default] = ACTIONS(2025), + [anon_sym_enum] = ACTIONS(2025), + [anon_sym_fn] = ACTIONS(2025), + [anon_sym_for] = ACTIONS(2025), + [anon_sym_if] = ACTIONS(2025), + [anon_sym_impl] = ACTIONS(2025), + [anon_sym_let] = ACTIONS(2025), + [anon_sym_loop] = ACTIONS(2025), + [anon_sym_match] = ACTIONS(2025), + [anon_sym_mod] = ACTIONS(2025), + [anon_sym_pub] = ACTIONS(2025), + [anon_sym_return] = ACTIONS(2025), + [anon_sym_static] = ACTIONS(2025), + [anon_sym_struct] = ACTIONS(2025), + [anon_sym_trait] = ACTIONS(2025), + [anon_sym_type] = ACTIONS(2025), + [anon_sym_union] = ACTIONS(2025), + [anon_sym_unsafe] = ACTIONS(2025), + [anon_sym_use] = ACTIONS(2025), + [anon_sym_while] = ACTIONS(2025), + [anon_sym_POUND] = ACTIONS(2023), + [anon_sym_BANG] = ACTIONS(2023), + [anon_sym_extern] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2023), + [anon_sym_COLON_COLON] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2023), + [anon_sym_DOT_DOT] = ACTIONS(2023), + [anon_sym_DASH] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2023), + [anon_sym_yield] = ACTIONS(2025), + [anon_sym_move] = ACTIONS(2025), + [sym_integer_literal] = ACTIONS(2023), + [aux_sym_string_literal_token1] = ACTIONS(2023), + [sym_char_literal] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(2025), + [anon_sym_false] = ACTIONS(2025), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2025), + [sym_super] = ACTIONS(2025), + [sym_crate] = ACTIONS(2025), + [sym_metavariable] = ACTIONS(2023), + [sym_raw_string_literal] = ACTIONS(2023), + [sym_float_literal] = ACTIONS(2023), [sym_block_comment] = ACTIONS(3), }, [477] = { - [ts_builtin_sym_end] = ACTIONS(2010), - [sym_identifier] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_macro_rules_BANG] = ACTIONS(2010), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_u8] = ACTIONS(2012), - [anon_sym_i8] = ACTIONS(2012), - [anon_sym_u16] = ACTIONS(2012), - [anon_sym_i16] = ACTIONS(2012), - [anon_sym_u32] = ACTIONS(2012), - [anon_sym_i32] = ACTIONS(2012), - [anon_sym_u64] = ACTIONS(2012), - [anon_sym_i64] = ACTIONS(2012), - [anon_sym_u128] = ACTIONS(2012), - [anon_sym_i128] = ACTIONS(2012), - [anon_sym_isize] = ACTIONS(2012), - [anon_sym_usize] = ACTIONS(2012), - [anon_sym_f32] = ACTIONS(2012), - [anon_sym_f64] = ACTIONS(2012), - [anon_sym_bool] = ACTIONS(2012), - [anon_sym_str] = ACTIONS(2012), - [anon_sym_char] = ACTIONS(2012), - [anon_sym_SQUOTE] = ACTIONS(2012), - [anon_sym_async] = ACTIONS(2012), - [anon_sym_break] = ACTIONS(2012), - [anon_sym_const] = ACTIONS(2012), - [anon_sym_continue] = ACTIONS(2012), - [anon_sym_default] = ACTIONS(2012), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_fn] = ACTIONS(2012), - [anon_sym_for] = ACTIONS(2012), - [anon_sym_if] = ACTIONS(2012), - [anon_sym_impl] = ACTIONS(2012), - [anon_sym_let] = ACTIONS(2012), - [anon_sym_loop] = ACTIONS(2012), - [anon_sym_match] = ACTIONS(2012), - [anon_sym_mod] = ACTIONS(2012), - [anon_sym_pub] = ACTIONS(2012), - [anon_sym_return] = ACTIONS(2012), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_struct] = ACTIONS(2012), - [anon_sym_trait] = ACTIONS(2012), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_union] = ACTIONS(2012), - [anon_sym_unsafe] = ACTIONS(2012), - [anon_sym_use] = ACTIONS(2012), - [anon_sym_while] = ACTIONS(2012), - [anon_sym_POUND] = ACTIONS(2010), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_extern] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_COLON_COLON] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2010), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_yield] = ACTIONS(2012), - [anon_sym_move] = ACTIONS(2012), - [sym_integer_literal] = ACTIONS(2010), - [aux_sym_string_literal_token1] = ACTIONS(2010), - [sym_char_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(2012), - [anon_sym_false] = ACTIONS(2012), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2012), - [sym_super] = ACTIONS(2012), - [sym_crate] = ACTIONS(2012), - [sym_metavariable] = ACTIONS(2010), - [sym_raw_string_literal] = ACTIONS(2010), - [sym_float_literal] = ACTIONS(2010), + [ts_builtin_sym_end] = ACTIONS(2027), + [sym_identifier] = ACTIONS(2029), + [anon_sym_SEMI] = ACTIONS(2027), + [anon_sym_macro_rules_BANG] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(2027), + [anon_sym_LBRACE] = ACTIONS(2027), + [anon_sym_RBRACE] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_u8] = ACTIONS(2029), + [anon_sym_i8] = ACTIONS(2029), + [anon_sym_u16] = ACTIONS(2029), + [anon_sym_i16] = ACTIONS(2029), + [anon_sym_u32] = ACTIONS(2029), + [anon_sym_i32] = ACTIONS(2029), + [anon_sym_u64] = ACTIONS(2029), + [anon_sym_i64] = ACTIONS(2029), + [anon_sym_u128] = ACTIONS(2029), + [anon_sym_i128] = ACTIONS(2029), + [anon_sym_isize] = ACTIONS(2029), + [anon_sym_usize] = ACTIONS(2029), + [anon_sym_f32] = ACTIONS(2029), + [anon_sym_f64] = ACTIONS(2029), + [anon_sym_bool] = ACTIONS(2029), + [anon_sym_str] = ACTIONS(2029), + [anon_sym_char] = ACTIONS(2029), + [anon_sym_SQUOTE] = ACTIONS(2029), + [anon_sym_async] = ACTIONS(2029), + [anon_sym_break] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2029), + [anon_sym_continue] = ACTIONS(2029), + [anon_sym_default] = ACTIONS(2029), + [anon_sym_enum] = ACTIONS(2029), + [anon_sym_fn] = ACTIONS(2029), + [anon_sym_for] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_impl] = ACTIONS(2029), + [anon_sym_let] = ACTIONS(2029), + [anon_sym_loop] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_mod] = ACTIONS(2029), + [anon_sym_pub] = ACTIONS(2029), + [anon_sym_return] = ACTIONS(2029), + [anon_sym_static] = ACTIONS(2029), + [anon_sym_struct] = ACTIONS(2029), + [anon_sym_trait] = ACTIONS(2029), + [anon_sym_type] = ACTIONS(2029), + [anon_sym_union] = ACTIONS(2029), + [anon_sym_unsafe] = ACTIONS(2029), + [anon_sym_use] = ACTIONS(2029), + [anon_sym_while] = ACTIONS(2029), + [anon_sym_POUND] = ACTIONS(2027), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_extern] = ACTIONS(2029), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_COLON_COLON] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_DOT_DOT] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_yield] = ACTIONS(2029), + [anon_sym_move] = ACTIONS(2029), + [sym_integer_literal] = ACTIONS(2027), + [aux_sym_string_literal_token1] = ACTIONS(2027), + [sym_char_literal] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(2029), + [anon_sym_false] = ACTIONS(2029), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2029), + [sym_super] = ACTIONS(2029), + [sym_crate] = ACTIONS(2029), + [sym_metavariable] = ACTIONS(2027), + [sym_raw_string_literal] = ACTIONS(2027), + [sym_float_literal] = ACTIONS(2027), [sym_block_comment] = ACTIONS(3), }, [478] = { - [ts_builtin_sym_end] = ACTIONS(2014), - [sym_identifier] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(2014), - [anon_sym_macro_rules_BANG] = ACTIONS(2014), - [anon_sym_LPAREN] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2014), - [anon_sym_u8] = ACTIONS(2016), - [anon_sym_i8] = ACTIONS(2016), - [anon_sym_u16] = ACTIONS(2016), - [anon_sym_i16] = ACTIONS(2016), - [anon_sym_u32] = ACTIONS(2016), - [anon_sym_i32] = ACTIONS(2016), - [anon_sym_u64] = ACTIONS(2016), - [anon_sym_i64] = ACTIONS(2016), - [anon_sym_u128] = ACTIONS(2016), - [anon_sym_i128] = ACTIONS(2016), - [anon_sym_isize] = ACTIONS(2016), - [anon_sym_usize] = ACTIONS(2016), - [anon_sym_f32] = ACTIONS(2016), - [anon_sym_f64] = ACTIONS(2016), - [anon_sym_bool] = ACTIONS(2016), - [anon_sym_str] = ACTIONS(2016), - [anon_sym_char] = ACTIONS(2016), - [anon_sym_SQUOTE] = ACTIONS(2016), - [anon_sym_async] = ACTIONS(2016), - [anon_sym_break] = ACTIONS(2016), - [anon_sym_const] = ACTIONS(2016), - [anon_sym_continue] = ACTIONS(2016), - [anon_sym_default] = ACTIONS(2016), - [anon_sym_enum] = ACTIONS(2016), - [anon_sym_fn] = ACTIONS(2016), - [anon_sym_for] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2016), - [anon_sym_impl] = ACTIONS(2016), - [anon_sym_let] = ACTIONS(2016), - [anon_sym_loop] = ACTIONS(2016), - [anon_sym_match] = ACTIONS(2016), - [anon_sym_mod] = ACTIONS(2016), - [anon_sym_pub] = ACTIONS(2016), - [anon_sym_return] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2016), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_trait] = ACTIONS(2016), - [anon_sym_type] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2016), - [anon_sym_unsafe] = ACTIONS(2016), - [anon_sym_use] = ACTIONS(2016), - [anon_sym_while] = ACTIONS(2016), - [anon_sym_POUND] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_extern] = ACTIONS(2016), - [anon_sym_LT] = ACTIONS(2014), - [anon_sym_COLON_COLON] = ACTIONS(2014), - [anon_sym_AMP] = ACTIONS(2014), - [anon_sym_DOT_DOT] = ACTIONS(2014), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_yield] = ACTIONS(2016), - [anon_sym_move] = ACTIONS(2016), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2014), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2016), - [anon_sym_false] = ACTIONS(2016), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2016), - [sym_super] = ACTIONS(2016), - [sym_crate] = ACTIONS(2016), - [sym_metavariable] = ACTIONS(2014), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [ts_builtin_sym_end] = ACTIONS(2031), + [sym_identifier] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_macro_rules_BANG] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_u8] = ACTIONS(2033), + [anon_sym_i8] = ACTIONS(2033), + [anon_sym_u16] = ACTIONS(2033), + [anon_sym_i16] = ACTIONS(2033), + [anon_sym_u32] = ACTIONS(2033), + [anon_sym_i32] = ACTIONS(2033), + [anon_sym_u64] = ACTIONS(2033), + [anon_sym_i64] = ACTIONS(2033), + [anon_sym_u128] = ACTIONS(2033), + [anon_sym_i128] = ACTIONS(2033), + [anon_sym_isize] = ACTIONS(2033), + [anon_sym_usize] = ACTIONS(2033), + [anon_sym_f32] = ACTIONS(2033), + [anon_sym_f64] = ACTIONS(2033), + [anon_sym_bool] = ACTIONS(2033), + [anon_sym_str] = ACTIONS(2033), + [anon_sym_char] = ACTIONS(2033), + [anon_sym_SQUOTE] = ACTIONS(2033), + [anon_sym_async] = ACTIONS(2033), + [anon_sym_break] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2033), + [anon_sym_continue] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(2033), + [anon_sym_enum] = ACTIONS(2033), + [anon_sym_fn] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_impl] = ACTIONS(2033), + [anon_sym_let] = ACTIONS(2033), + [anon_sym_loop] = ACTIONS(2033), + [anon_sym_match] = ACTIONS(2033), + [anon_sym_mod] = ACTIONS(2033), + [anon_sym_pub] = ACTIONS(2033), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_static] = ACTIONS(2033), + [anon_sym_struct] = ACTIONS(2033), + [anon_sym_trait] = ACTIONS(2033), + [anon_sym_type] = ACTIONS(2033), + [anon_sym_union] = ACTIONS(2033), + [anon_sym_unsafe] = ACTIONS(2033), + [anon_sym_use] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_POUND] = ACTIONS(2031), + [anon_sym_BANG] = ACTIONS(2031), + [anon_sym_extern] = ACTIONS(2033), + [anon_sym_LT] = ACTIONS(2031), + [anon_sym_COLON_COLON] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2031), + [anon_sym_DOT_DOT] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_yield] = ACTIONS(2033), + [anon_sym_move] = ACTIONS(2033), + [sym_integer_literal] = ACTIONS(2031), + [aux_sym_string_literal_token1] = ACTIONS(2031), + [sym_char_literal] = ACTIONS(2031), + [anon_sym_true] = ACTIONS(2033), + [anon_sym_false] = ACTIONS(2033), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2033), + [sym_super] = ACTIONS(2033), + [sym_crate] = ACTIONS(2033), + [sym_metavariable] = ACTIONS(2031), + [sym_raw_string_literal] = ACTIONS(2031), + [sym_float_literal] = ACTIONS(2031), [sym_block_comment] = ACTIONS(3), }, [479] = { - [ts_builtin_sym_end] = ACTIONS(2018), - [sym_identifier] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2018), - [anon_sym_macro_rules_BANG] = ACTIONS(2018), - [anon_sym_LPAREN] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2018), - [anon_sym_RBRACE] = ACTIONS(2018), - [anon_sym_LBRACK] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2018), - [anon_sym_u8] = ACTIONS(2020), - [anon_sym_i8] = ACTIONS(2020), - [anon_sym_u16] = ACTIONS(2020), - [anon_sym_i16] = ACTIONS(2020), - [anon_sym_u32] = ACTIONS(2020), - [anon_sym_i32] = ACTIONS(2020), - [anon_sym_u64] = ACTIONS(2020), - [anon_sym_i64] = ACTIONS(2020), - [anon_sym_u128] = ACTIONS(2020), - [anon_sym_i128] = ACTIONS(2020), - [anon_sym_isize] = ACTIONS(2020), - [anon_sym_usize] = ACTIONS(2020), - [anon_sym_f32] = ACTIONS(2020), - [anon_sym_f64] = ACTIONS(2020), - [anon_sym_bool] = ACTIONS(2020), - [anon_sym_str] = ACTIONS(2020), - [anon_sym_char] = ACTIONS(2020), - [anon_sym_SQUOTE] = ACTIONS(2020), - [anon_sym_async] = ACTIONS(2020), - [anon_sym_break] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_continue] = ACTIONS(2020), - [anon_sym_default] = ACTIONS(2020), - [anon_sym_enum] = ACTIONS(2020), - [anon_sym_fn] = ACTIONS(2020), - [anon_sym_for] = ACTIONS(2020), - [anon_sym_if] = ACTIONS(2020), - [anon_sym_impl] = ACTIONS(2020), - [anon_sym_let] = ACTIONS(2020), - [anon_sym_loop] = ACTIONS(2020), - [anon_sym_match] = ACTIONS(2020), - [anon_sym_mod] = ACTIONS(2020), - [anon_sym_pub] = ACTIONS(2020), - [anon_sym_return] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2020), - [anon_sym_struct] = ACTIONS(2020), - [anon_sym_trait] = ACTIONS(2020), - [anon_sym_type] = ACTIONS(2020), - [anon_sym_union] = ACTIONS(2020), - [anon_sym_unsafe] = ACTIONS(2020), - [anon_sym_use] = ACTIONS(2020), - [anon_sym_while] = ACTIONS(2020), - [anon_sym_POUND] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2018), - [anon_sym_extern] = ACTIONS(2020), - [anon_sym_LT] = ACTIONS(2018), - [anon_sym_COLON_COLON] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym_DOT_DOT] = ACTIONS(2018), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_PIPE] = ACTIONS(2018), - [anon_sym_yield] = ACTIONS(2020), - [anon_sym_move] = ACTIONS(2020), - [sym_integer_literal] = ACTIONS(2018), - [aux_sym_string_literal_token1] = ACTIONS(2018), - [sym_char_literal] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2020), - [sym_super] = ACTIONS(2020), - [sym_crate] = ACTIONS(2020), - [sym_metavariable] = ACTIONS(2018), - [sym_raw_string_literal] = ACTIONS(2018), - [sym_float_literal] = ACTIONS(2018), + [ts_builtin_sym_end] = ACTIONS(2035), + [sym_identifier] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2035), + [anon_sym_macro_rules_BANG] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_LBRACE] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2035), + [anon_sym_u8] = ACTIONS(2037), + [anon_sym_i8] = ACTIONS(2037), + [anon_sym_u16] = ACTIONS(2037), + [anon_sym_i16] = ACTIONS(2037), + [anon_sym_u32] = ACTIONS(2037), + [anon_sym_i32] = ACTIONS(2037), + [anon_sym_u64] = ACTIONS(2037), + [anon_sym_i64] = ACTIONS(2037), + [anon_sym_u128] = ACTIONS(2037), + [anon_sym_i128] = ACTIONS(2037), + [anon_sym_isize] = ACTIONS(2037), + [anon_sym_usize] = ACTIONS(2037), + [anon_sym_f32] = ACTIONS(2037), + [anon_sym_f64] = ACTIONS(2037), + [anon_sym_bool] = ACTIONS(2037), + [anon_sym_str] = ACTIONS(2037), + [anon_sym_char] = ACTIONS(2037), + [anon_sym_SQUOTE] = ACTIONS(2037), + [anon_sym_async] = ACTIONS(2037), + [anon_sym_break] = ACTIONS(2037), + [anon_sym_const] = ACTIONS(2037), + [anon_sym_continue] = ACTIONS(2037), + [anon_sym_default] = ACTIONS(2037), + [anon_sym_enum] = ACTIONS(2037), + [anon_sym_fn] = ACTIONS(2037), + [anon_sym_for] = ACTIONS(2037), + [anon_sym_if] = ACTIONS(2037), + [anon_sym_impl] = ACTIONS(2037), + [anon_sym_let] = ACTIONS(2037), + [anon_sym_loop] = ACTIONS(2037), + [anon_sym_match] = ACTIONS(2037), + [anon_sym_mod] = ACTIONS(2037), + [anon_sym_pub] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2037), + [anon_sym_struct] = ACTIONS(2037), + [anon_sym_trait] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2037), + [anon_sym_union] = ACTIONS(2037), + [anon_sym_unsafe] = ACTIONS(2037), + [anon_sym_use] = ACTIONS(2037), + [anon_sym_while] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(2035), + [anon_sym_BANG] = ACTIONS(2035), + [anon_sym_extern] = ACTIONS(2037), + [anon_sym_LT] = ACTIONS(2035), + [anon_sym_COLON_COLON] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2035), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PIPE] = ACTIONS(2035), + [anon_sym_yield] = ACTIONS(2037), + [anon_sym_move] = ACTIONS(2037), + [sym_integer_literal] = ACTIONS(2035), + [aux_sym_string_literal_token1] = ACTIONS(2035), + [sym_char_literal] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2037), + [anon_sym_false] = ACTIONS(2037), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2037), + [sym_super] = ACTIONS(2037), + [sym_crate] = ACTIONS(2037), + [sym_metavariable] = ACTIONS(2035), + [sym_raw_string_literal] = ACTIONS(2035), + [sym_float_literal] = ACTIONS(2035), [sym_block_comment] = ACTIONS(3), }, [480] = { - [ts_builtin_sym_end] = ACTIONS(2022), - [sym_identifier] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2022), - [anon_sym_macro_rules_BANG] = ACTIONS(2022), - [anon_sym_LPAREN] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_RBRACE] = ACTIONS(2022), - [anon_sym_LBRACK] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2022), - [anon_sym_u8] = ACTIONS(2024), - [anon_sym_i8] = ACTIONS(2024), - [anon_sym_u16] = ACTIONS(2024), - [anon_sym_i16] = ACTIONS(2024), - [anon_sym_u32] = ACTIONS(2024), - [anon_sym_i32] = ACTIONS(2024), - [anon_sym_u64] = ACTIONS(2024), - [anon_sym_i64] = ACTIONS(2024), - [anon_sym_u128] = ACTIONS(2024), - [anon_sym_i128] = ACTIONS(2024), - [anon_sym_isize] = ACTIONS(2024), - [anon_sym_usize] = ACTIONS(2024), - [anon_sym_f32] = ACTIONS(2024), - [anon_sym_f64] = ACTIONS(2024), - [anon_sym_bool] = ACTIONS(2024), - [anon_sym_str] = ACTIONS(2024), - [anon_sym_char] = ACTIONS(2024), - [anon_sym_SQUOTE] = ACTIONS(2024), - [anon_sym_async] = ACTIONS(2024), - [anon_sym_break] = ACTIONS(2024), - [anon_sym_const] = ACTIONS(2024), - [anon_sym_continue] = ACTIONS(2024), - [anon_sym_default] = ACTIONS(2024), - [anon_sym_enum] = ACTIONS(2024), - [anon_sym_fn] = ACTIONS(2024), - [anon_sym_for] = ACTIONS(2024), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_impl] = ACTIONS(2024), - [anon_sym_let] = ACTIONS(2024), - [anon_sym_loop] = ACTIONS(2024), - [anon_sym_match] = ACTIONS(2024), - [anon_sym_mod] = ACTIONS(2024), - [anon_sym_pub] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2024), - [anon_sym_static] = ACTIONS(2024), - [anon_sym_struct] = ACTIONS(2024), - [anon_sym_trait] = ACTIONS(2024), - [anon_sym_type] = ACTIONS(2024), - [anon_sym_union] = ACTIONS(2024), - [anon_sym_unsafe] = ACTIONS(2024), - [anon_sym_use] = ACTIONS(2024), - [anon_sym_while] = ACTIONS(2024), - [anon_sym_POUND] = ACTIONS(2022), - [anon_sym_BANG] = ACTIONS(2022), - [anon_sym_extern] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2022), - [anon_sym_COLON_COLON] = ACTIONS(2022), - [anon_sym_AMP] = ACTIONS(2022), - [anon_sym_DOT_DOT] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_yield] = ACTIONS(2024), - [anon_sym_move] = ACTIONS(2024), - [sym_integer_literal] = ACTIONS(2022), - [aux_sym_string_literal_token1] = ACTIONS(2022), - [sym_char_literal] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2024), - [sym_super] = ACTIONS(2024), - [sym_crate] = ACTIONS(2024), - [sym_metavariable] = ACTIONS(2022), - [sym_raw_string_literal] = ACTIONS(2022), - [sym_float_literal] = ACTIONS(2022), + [ts_builtin_sym_end] = ACTIONS(2039), + [sym_identifier] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2039), + [anon_sym_macro_rules_BANG] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2039), + [anon_sym_RBRACE] = ACTIONS(2039), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2039), + [anon_sym_u8] = ACTIONS(2041), + [anon_sym_i8] = ACTIONS(2041), + [anon_sym_u16] = ACTIONS(2041), + [anon_sym_i16] = ACTIONS(2041), + [anon_sym_u32] = ACTIONS(2041), + [anon_sym_i32] = ACTIONS(2041), + [anon_sym_u64] = ACTIONS(2041), + [anon_sym_i64] = ACTIONS(2041), + [anon_sym_u128] = ACTIONS(2041), + [anon_sym_i128] = ACTIONS(2041), + [anon_sym_isize] = ACTIONS(2041), + [anon_sym_usize] = ACTIONS(2041), + [anon_sym_f32] = ACTIONS(2041), + [anon_sym_f64] = ACTIONS(2041), + [anon_sym_bool] = ACTIONS(2041), + [anon_sym_str] = ACTIONS(2041), + [anon_sym_char] = ACTIONS(2041), + [anon_sym_SQUOTE] = ACTIONS(2041), + [anon_sym_async] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_const] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(2041), + [anon_sym_enum] = ACTIONS(2041), + [anon_sym_fn] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_impl] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2041), + [anon_sym_loop] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_mod] = ACTIONS(2041), + [anon_sym_pub] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_static] = ACTIONS(2041), + [anon_sym_struct] = ACTIONS(2041), + [anon_sym_trait] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2041), + [anon_sym_union] = ACTIONS(2041), + [anon_sym_unsafe] = ACTIONS(2041), + [anon_sym_use] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2041), + [anon_sym_POUND] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2039), + [anon_sym_extern] = ACTIONS(2041), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_COLON_COLON] = ACTIONS(2039), + [anon_sym_AMP] = ACTIONS(2039), + [anon_sym_DOT_DOT] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_PIPE] = ACTIONS(2039), + [anon_sym_yield] = ACTIONS(2041), + [anon_sym_move] = ACTIONS(2041), + [sym_integer_literal] = ACTIONS(2039), + [aux_sym_string_literal_token1] = ACTIONS(2039), + [sym_char_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2041), + [anon_sym_false] = ACTIONS(2041), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2041), + [sym_super] = ACTIONS(2041), + [sym_crate] = ACTIONS(2041), + [sym_metavariable] = ACTIONS(2039), + [sym_raw_string_literal] = ACTIONS(2039), + [sym_float_literal] = ACTIONS(2039), [sym_block_comment] = ACTIONS(3), }, [481] = { - [ts_builtin_sym_end] = ACTIONS(2026), - [sym_identifier] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym_macro_rules_BANG] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2026), - [anon_sym_RBRACE] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_u8] = ACTIONS(2028), - [anon_sym_i8] = ACTIONS(2028), - [anon_sym_u16] = ACTIONS(2028), - [anon_sym_i16] = ACTIONS(2028), - [anon_sym_u32] = ACTIONS(2028), - [anon_sym_i32] = ACTIONS(2028), - [anon_sym_u64] = ACTIONS(2028), - [anon_sym_i64] = ACTIONS(2028), - [anon_sym_u128] = ACTIONS(2028), - [anon_sym_i128] = ACTIONS(2028), - [anon_sym_isize] = ACTIONS(2028), - [anon_sym_usize] = ACTIONS(2028), - [anon_sym_f32] = ACTIONS(2028), - [anon_sym_f64] = ACTIONS(2028), - [anon_sym_bool] = ACTIONS(2028), - [anon_sym_str] = ACTIONS(2028), - [anon_sym_char] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_async] = ACTIONS(2028), - [anon_sym_break] = ACTIONS(2028), - [anon_sym_const] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(2028), - [anon_sym_default] = ACTIONS(2028), - [anon_sym_enum] = ACTIONS(2028), - [anon_sym_fn] = ACTIONS(2028), - [anon_sym_for] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(2028), - [anon_sym_impl] = ACTIONS(2028), - [anon_sym_let] = ACTIONS(2028), - [anon_sym_loop] = ACTIONS(2028), - [anon_sym_match] = ACTIONS(2028), - [anon_sym_mod] = ACTIONS(2028), - [anon_sym_pub] = ACTIONS(2028), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2028), - [anon_sym_struct] = ACTIONS(2028), - [anon_sym_trait] = ACTIONS(2028), - [anon_sym_type] = ACTIONS(2028), - [anon_sym_union] = ACTIONS(2028), - [anon_sym_unsafe] = ACTIONS(2028), - [anon_sym_use] = ACTIONS(2028), - [anon_sym_while] = ACTIONS(2028), - [anon_sym_POUND] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2028), - [anon_sym_LT] = ACTIONS(2026), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_AMP] = ACTIONS(2026), - [anon_sym_DOT_DOT] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2026), - [anon_sym_yield] = ACTIONS(2028), - [anon_sym_move] = ACTIONS(2028), - [sym_integer_literal] = ACTIONS(2026), - [aux_sym_string_literal_token1] = ACTIONS(2026), - [sym_char_literal] = ACTIONS(2026), - [anon_sym_true] = ACTIONS(2028), - [anon_sym_false] = ACTIONS(2028), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2028), - [sym_super] = ACTIONS(2028), - [sym_crate] = ACTIONS(2028), - [sym_metavariable] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2026), - [sym_float_literal] = ACTIONS(2026), + [sym__token_pattern] = STATE(379), + [sym_token_tree_pattern] = STATE(379), + [sym_token_binding_pattern] = STATE(379), + [sym_token_repetition_pattern] = STATE(379), + [sym__never_special_token] = STATE(379), + [sym__literal] = STATE(379), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(379), + [sym_identifier] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_RPAREN] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_u8] = ACTIONS(2043), + [anon_sym_i8] = ACTIONS(2043), + [anon_sym_u16] = ACTIONS(2043), + [anon_sym_i16] = ACTIONS(2043), + [anon_sym_u32] = ACTIONS(2043), + [anon_sym_i32] = ACTIONS(2043), + [anon_sym_u64] = ACTIONS(2043), + [anon_sym_i64] = ACTIONS(2043), + [anon_sym_u128] = ACTIONS(2043), + [anon_sym_i128] = ACTIONS(2043), + [anon_sym_isize] = ACTIONS(2043), + [anon_sym_usize] = ACTIONS(2043), + [anon_sym_f32] = ACTIONS(2043), + [anon_sym_f64] = ACTIONS(2043), + [anon_sym_bool] = ACTIONS(2043), + [anon_sym_str] = ACTIONS(2043), + [anon_sym_char] = ACTIONS(2043), + [aux_sym__never_special_token_token1] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_await] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_default] = ACTIONS(2043), + [anon_sym_enum] = ACTIONS(2043), + [anon_sym_fn] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_impl] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_mod] = ACTIONS(2043), + [anon_sym_pub] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_static] = ACTIONS(2043), + [anon_sym_struct] = ACTIONS(2043), + [anon_sym_trait] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_union] = ACTIONS(2043), + [anon_sym_unsafe] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_where] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [sym_mutable_specifier] = ACTIONS(2043), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2043), + [sym_super] = ACTIONS(2043), + [sym_crate] = ACTIONS(2043), + [sym_metavariable] = ACTIONS(1168), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, [482] = { - [ts_builtin_sym_end] = ACTIONS(2030), - [sym_identifier] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2030), - [anon_sym_macro_rules_BANG] = ACTIONS(2030), - [anon_sym_LPAREN] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2030), - [anon_sym_RBRACE] = ACTIONS(2030), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_u8] = ACTIONS(2032), - [anon_sym_i8] = ACTIONS(2032), - [anon_sym_u16] = ACTIONS(2032), - [anon_sym_i16] = ACTIONS(2032), - [anon_sym_u32] = ACTIONS(2032), - [anon_sym_i32] = ACTIONS(2032), - [anon_sym_u64] = ACTIONS(2032), - [anon_sym_i64] = ACTIONS(2032), - [anon_sym_u128] = ACTIONS(2032), - [anon_sym_i128] = ACTIONS(2032), - [anon_sym_isize] = ACTIONS(2032), - [anon_sym_usize] = ACTIONS(2032), - [anon_sym_f32] = ACTIONS(2032), - [anon_sym_f64] = ACTIONS(2032), - [anon_sym_bool] = ACTIONS(2032), - [anon_sym_str] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_fn] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_impl] = ACTIONS(2032), - [anon_sym_let] = ACTIONS(2032), - [anon_sym_loop] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_mod] = ACTIONS(2032), - [anon_sym_pub] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_trait] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_unsafe] = ACTIONS(2032), - [anon_sym_use] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [anon_sym_POUND] = ACTIONS(2030), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_extern] = ACTIONS(2032), - [anon_sym_LT] = ACTIONS(2030), - [anon_sym_COLON_COLON] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_DOT_DOT] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2030), - [anon_sym_yield] = ACTIONS(2032), - [anon_sym_move] = ACTIONS(2032), - [sym_integer_literal] = ACTIONS(2030), - [aux_sym_string_literal_token1] = ACTIONS(2030), - [sym_char_literal] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2032), - [anon_sym_false] = ACTIONS(2032), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2032), - [sym_super] = ACTIONS(2032), - [sym_crate] = ACTIONS(2032), - [sym_metavariable] = ACTIONS(2030), - [sym_raw_string_literal] = ACTIONS(2030), - [sym_float_literal] = ACTIONS(2030), + [ts_builtin_sym_end] = ACTIONS(2047), + [sym_identifier] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_macro_rules_BANG] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(2047), + [anon_sym_u8] = ACTIONS(2049), + [anon_sym_i8] = ACTIONS(2049), + [anon_sym_u16] = ACTIONS(2049), + [anon_sym_i16] = ACTIONS(2049), + [anon_sym_u32] = ACTIONS(2049), + [anon_sym_i32] = ACTIONS(2049), + [anon_sym_u64] = ACTIONS(2049), + [anon_sym_i64] = ACTIONS(2049), + [anon_sym_u128] = ACTIONS(2049), + [anon_sym_i128] = ACTIONS(2049), + [anon_sym_isize] = ACTIONS(2049), + [anon_sym_usize] = ACTIONS(2049), + [anon_sym_f32] = ACTIONS(2049), + [anon_sym_f64] = ACTIONS(2049), + [anon_sym_bool] = ACTIONS(2049), + [anon_sym_str] = ACTIONS(2049), + [anon_sym_char] = ACTIONS(2049), + [anon_sym_SQUOTE] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_default] = ACTIONS(2049), + [anon_sym_enum] = ACTIONS(2049), + [anon_sym_fn] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_impl] = ACTIONS(2049), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_loop] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_mod] = ACTIONS(2049), + [anon_sym_pub] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_static] = ACTIONS(2049), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_trait] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_union] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_use] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [anon_sym_POUND] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2049), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_COLON_COLON] = ACTIONS(2047), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_PIPE] = ACTIONS(2047), + [anon_sym_yield] = ACTIONS(2049), + [anon_sym_move] = ACTIONS(2049), + [sym_integer_literal] = ACTIONS(2047), + [aux_sym_string_literal_token1] = ACTIONS(2047), + [sym_char_literal] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2049), + [anon_sym_false] = ACTIONS(2049), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2049), + [sym_super] = ACTIONS(2049), + [sym_crate] = ACTIONS(2049), + [sym_metavariable] = ACTIONS(2047), + [sym_raw_string_literal] = ACTIONS(2047), + [sym_float_literal] = ACTIONS(2047), [sym_block_comment] = ACTIONS(3), }, [483] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_RPAREN] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2045), - [anon_sym_RBRACK] = ACTIONS(2040), - [anon_sym_DOLLAR] = ACTIONS(2048), - [anon_sym_u8] = ACTIONS(2034), - [anon_sym_i8] = ACTIONS(2034), - [anon_sym_u16] = ACTIONS(2034), - [anon_sym_i16] = ACTIONS(2034), - [anon_sym_u32] = ACTIONS(2034), - [anon_sym_i32] = ACTIONS(2034), - [anon_sym_u64] = ACTIONS(2034), - [anon_sym_i64] = ACTIONS(2034), - [anon_sym_u128] = ACTIONS(2034), - [anon_sym_i128] = ACTIONS(2034), - [anon_sym_isize] = ACTIONS(2034), - [anon_sym_usize] = ACTIONS(2034), - [anon_sym_f32] = ACTIONS(2034), - [anon_sym_f64] = ACTIONS(2034), - [anon_sym_bool] = ACTIONS(2034), - [anon_sym_str] = ACTIONS(2034), - [anon_sym_char] = ACTIONS(2034), - [aux_sym__non_special_token_token1] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_as] = ACTIONS(2034), - [anon_sym_async] = ACTIONS(2034), - [anon_sym_await] = ACTIONS(2034), - [anon_sym_break] = ACTIONS(2034), - [anon_sym_const] = ACTIONS(2034), - [anon_sym_continue] = ACTIONS(2034), - [anon_sym_default] = ACTIONS(2034), - [anon_sym_enum] = ACTIONS(2034), - [anon_sym_fn] = ACTIONS(2034), - [anon_sym_for] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2034), - [anon_sym_impl] = ACTIONS(2034), - [anon_sym_let] = ACTIONS(2034), - [anon_sym_loop] = ACTIONS(2034), - [anon_sym_match] = ACTIONS(2034), - [anon_sym_mod] = ACTIONS(2034), - [anon_sym_pub] = ACTIONS(2034), - [anon_sym_return] = ACTIONS(2034), - [anon_sym_static] = ACTIONS(2034), - [anon_sym_struct] = ACTIONS(2034), - [anon_sym_trait] = ACTIONS(2034), - [anon_sym_type] = ACTIONS(2034), - [anon_sym_union] = ACTIONS(2034), - [anon_sym_unsafe] = ACTIONS(2034), - [anon_sym_use] = ACTIONS(2034), - [anon_sym_where] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2034), - [sym_mutable_specifier] = ACTIONS(2034), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_SEMI] = ACTIONS(2051), + [anon_sym_macro_rules_BANG] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(2051), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_u8] = ACTIONS(2053), + [anon_sym_i8] = ACTIONS(2053), + [anon_sym_u16] = ACTIONS(2053), + [anon_sym_i16] = ACTIONS(2053), + [anon_sym_u32] = ACTIONS(2053), + [anon_sym_i32] = ACTIONS(2053), + [anon_sym_u64] = ACTIONS(2053), + [anon_sym_i64] = ACTIONS(2053), + [anon_sym_u128] = ACTIONS(2053), + [anon_sym_i128] = ACTIONS(2053), + [anon_sym_isize] = ACTIONS(2053), + [anon_sym_usize] = ACTIONS(2053), + [anon_sym_f32] = ACTIONS(2053), + [anon_sym_f64] = ACTIONS(2053), + [anon_sym_bool] = ACTIONS(2053), + [anon_sym_str] = ACTIONS(2053), + [anon_sym_char] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_default] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_impl] = ACTIONS(2053), + [anon_sym_let] = ACTIONS(2053), + [anon_sym_loop] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_mod] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_static] = ACTIONS(2053), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_trait] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_use] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(2051), + [anon_sym_BANG] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2051), + [anon_sym_COLON_COLON] = ACTIONS(2051), + [anon_sym_AMP] = ACTIONS(2051), + [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(2051), + [anon_sym_yield] = ACTIONS(2053), + [anon_sym_move] = ACTIONS(2053), [sym_integer_literal] = ACTIONS(2051), - [aux_sym_string_literal_token1] = ACTIONS(2054), + [aux_sym_string_literal_token1] = ACTIONS(2051), [sym_char_literal] = ACTIONS(2051), - [anon_sym_true] = ACTIONS(2057), - [anon_sym_false] = ACTIONS(2057), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2034), - [sym_super] = ACTIONS(2034), - [sym_crate] = ACTIONS(2034), - [sym_metavariable] = ACTIONS(2060), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2053), + [sym_super] = ACTIONS(2053), + [sym_crate] = ACTIONS(2053), + [sym_metavariable] = ACTIONS(2051), [sym_raw_string_literal] = ACTIONS(2051), [sym_float_literal] = ACTIONS(2051), [sym_block_comment] = ACTIONS(3), }, [484] = { - [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(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_pattern_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_RPAREN] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_DOLLAR] = ACTIONS(2073), - [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(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2063), - [sym_super] = ACTIONS(2063), - [sym_crate] = ACTIONS(2063), - [sym_metavariable] = ACTIONS(2081), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [ts_builtin_sym_end] = ACTIONS(2055), + [sym_identifier] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_macro_rules_BANG] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_u8] = ACTIONS(2057), + [anon_sym_i8] = ACTIONS(2057), + [anon_sym_u16] = ACTIONS(2057), + [anon_sym_i16] = ACTIONS(2057), + [anon_sym_u32] = ACTIONS(2057), + [anon_sym_i32] = ACTIONS(2057), + [anon_sym_u64] = ACTIONS(2057), + [anon_sym_i64] = ACTIONS(2057), + [anon_sym_u128] = ACTIONS(2057), + [anon_sym_i128] = ACTIONS(2057), + [anon_sym_isize] = ACTIONS(2057), + [anon_sym_usize] = ACTIONS(2057), + [anon_sym_f32] = ACTIONS(2057), + [anon_sym_f64] = ACTIONS(2057), + [anon_sym_bool] = ACTIONS(2057), + [anon_sym_str] = ACTIONS(2057), + [anon_sym_char] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [anon_sym_fn] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_impl] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_loop] = ACTIONS(2057), + [anon_sym_match] = ACTIONS(2057), + [anon_sym_mod] = ACTIONS(2057), + [anon_sym_pub] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_struct] = ACTIONS(2057), + [anon_sym_trait] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_union] = ACTIONS(2057), + [anon_sym_unsafe] = ACTIONS(2057), + [anon_sym_use] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_extern] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_COLON_COLON] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2055), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_move] = ACTIONS(2057), + [sym_integer_literal] = ACTIONS(2055), + [aux_sym_string_literal_token1] = ACTIONS(2055), + [sym_char_literal] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_crate] = ACTIONS(2057), + [sym_metavariable] = ACTIONS(2055), + [sym_raw_string_literal] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), [sym_block_comment] = ACTIONS(3), }, [485] = { - [sym__token_pattern] = STATE(491), - [sym_token_tree_pattern] = STATE(491), - [sym_token_binding_pattern] = STATE(491), - [sym_token_repetition_pattern] = STATE(491), - [sym__literal] = STATE(491), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_pattern_repeat1] = STATE(491), - [sym_identifier] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_RPAREN] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_u8] = ACTIONS(2083), - [anon_sym_i8] = ACTIONS(2083), - [anon_sym_u16] = ACTIONS(2083), - [anon_sym_i16] = ACTIONS(2083), - [anon_sym_u32] = ACTIONS(2083), - [anon_sym_i32] = ACTIONS(2083), - [anon_sym_u64] = ACTIONS(2083), - [anon_sym_i64] = ACTIONS(2083), - [anon_sym_u128] = ACTIONS(2083), - [anon_sym_i128] = ACTIONS(2083), - [anon_sym_isize] = ACTIONS(2083), - [anon_sym_usize] = ACTIONS(2083), - [anon_sym_f32] = ACTIONS(2083), - [anon_sym_f64] = ACTIONS(2083), - [anon_sym_bool] = ACTIONS(2083), - [anon_sym_str] = ACTIONS(2083), - [anon_sym_char] = ACTIONS(2083), - [aux_sym__non_special_token_token1] = ACTIONS(2083), - [anon_sym_SQUOTE] = ACTIONS(2083), - [anon_sym_as] = ACTIONS(2083), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(2083), - [anon_sym_break] = ACTIONS(2083), - [anon_sym_const] = ACTIONS(2083), - [anon_sym_continue] = ACTIONS(2083), - [anon_sym_default] = ACTIONS(2083), - [anon_sym_enum] = ACTIONS(2083), - [anon_sym_fn] = ACTIONS(2083), - [anon_sym_for] = ACTIONS(2083), - [anon_sym_if] = ACTIONS(2083), - [anon_sym_impl] = ACTIONS(2083), - [anon_sym_let] = ACTIONS(2083), - [anon_sym_loop] = ACTIONS(2083), - [anon_sym_match] = ACTIONS(2083), - [anon_sym_mod] = ACTIONS(2083), - [anon_sym_pub] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2083), - [anon_sym_static] = ACTIONS(2083), - [anon_sym_struct] = ACTIONS(2083), - [anon_sym_trait] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2083), - [anon_sym_union] = ACTIONS(2083), - [anon_sym_unsafe] = ACTIONS(2083), - [anon_sym_use] = ACTIONS(2083), - [anon_sym_where] = ACTIONS(2083), - [anon_sym_while] = ACTIONS(2083), - [sym_mutable_specifier] = ACTIONS(2083), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2083), - [sym_super] = ACTIONS(2083), - [sym_crate] = ACTIONS(2083), - [sym_metavariable] = ACTIONS(2081), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [ts_builtin_sym_end] = ACTIONS(2059), + [sym_identifier] = ACTIONS(2061), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_macro_rules_BANG] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_LBRACK] = ACTIONS(2059), + [anon_sym_STAR] = ACTIONS(2059), + [anon_sym_u8] = ACTIONS(2061), + [anon_sym_i8] = ACTIONS(2061), + [anon_sym_u16] = ACTIONS(2061), + [anon_sym_i16] = ACTIONS(2061), + [anon_sym_u32] = ACTIONS(2061), + [anon_sym_i32] = ACTIONS(2061), + [anon_sym_u64] = ACTIONS(2061), + [anon_sym_i64] = ACTIONS(2061), + [anon_sym_u128] = ACTIONS(2061), + [anon_sym_i128] = ACTIONS(2061), + [anon_sym_isize] = ACTIONS(2061), + [anon_sym_usize] = ACTIONS(2061), + [anon_sym_f32] = ACTIONS(2061), + [anon_sym_f64] = ACTIONS(2061), + [anon_sym_bool] = ACTIONS(2061), + [anon_sym_str] = ACTIONS(2061), + [anon_sym_char] = ACTIONS(2061), + [anon_sym_SQUOTE] = ACTIONS(2061), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_const] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_default] = ACTIONS(2061), + [anon_sym_enum] = ACTIONS(2061), + [anon_sym_fn] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_impl] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2061), + [anon_sym_loop] = ACTIONS(2061), + [anon_sym_match] = ACTIONS(2061), + [anon_sym_mod] = ACTIONS(2061), + [anon_sym_pub] = ACTIONS(2061), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_struct] = ACTIONS(2061), + [anon_sym_trait] = ACTIONS(2061), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_union] = ACTIONS(2061), + [anon_sym_unsafe] = ACTIONS(2061), + [anon_sym_use] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [anon_sym_POUND] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(2059), + [anon_sym_extern] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2059), + [anon_sym_COLON_COLON] = ACTIONS(2059), + [anon_sym_AMP] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(2059), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_move] = ACTIONS(2061), + [sym_integer_literal] = ACTIONS(2059), + [aux_sym_string_literal_token1] = ACTIONS(2059), + [sym_char_literal] = ACTIONS(2059), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2061), + [sym_super] = ACTIONS(2061), + [sym_crate] = ACTIONS(2061), + [sym_metavariable] = ACTIONS(2059), + [sym_raw_string_literal] = ACTIONS(2059), + [sym_float_literal] = ACTIONS(2059), [sym_block_comment] = ACTIONS(3), }, [486] = { - [sym__token_pattern] = STATE(492), - [sym_token_tree_pattern] = STATE(492), - [sym_token_binding_pattern] = STATE(492), - [sym_token_repetition_pattern] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_pattern_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(2085), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_macro_rules_BANG] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_u8] = ACTIONS(2065), + [anon_sym_i8] = ACTIONS(2065), + [anon_sym_u16] = ACTIONS(2065), + [anon_sym_i16] = ACTIONS(2065), + [anon_sym_u32] = ACTIONS(2065), + [anon_sym_i32] = ACTIONS(2065), + [anon_sym_u64] = ACTIONS(2065), + [anon_sym_i64] = ACTIONS(2065), + [anon_sym_u128] = ACTIONS(2065), + [anon_sym_i128] = ACTIONS(2065), + [anon_sym_isize] = ACTIONS(2065), + [anon_sym_usize] = ACTIONS(2065), + [anon_sym_f32] = ACTIONS(2065), + [anon_sym_f64] = ACTIONS(2065), + [anon_sym_bool] = ACTIONS(2065), + [anon_sym_str] = ACTIONS(2065), + [anon_sym_char] = ACTIONS(2065), + [anon_sym_SQUOTE] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_const] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_default] = ACTIONS(2065), + [anon_sym_enum] = ACTIONS(2065), + [anon_sym_fn] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_impl] = ACTIONS(2065), + [anon_sym_let] = ACTIONS(2065), + [anon_sym_loop] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_mod] = ACTIONS(2065), + [anon_sym_pub] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_static] = ACTIONS(2065), + [anon_sym_struct] = ACTIONS(2065), + [anon_sym_trait] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_union] = ACTIONS(2065), + [anon_sym_unsafe] = ACTIONS(2065), + [anon_sym_use] = ACTIONS(2065), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_POUND] = ACTIONS(2063), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_extern] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2063), + [anon_sym_COLON_COLON] = ACTIONS(2063), + [anon_sym_AMP] = ACTIONS(2063), + [anon_sym_DOT_DOT] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2063), + [anon_sym_PIPE] = ACTIONS(2063), + [anon_sym_yield] = ACTIONS(2065), + [anon_sym_move] = ACTIONS(2065), + [sym_integer_literal] = ACTIONS(2063), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2065), + [sym_super] = ACTIONS(2065), + [sym_crate] = ACTIONS(2065), + [sym_metavariable] = ACTIONS(2063), + [sym_raw_string_literal] = ACTIONS(2063), + [sym_float_literal] = ACTIONS(2063), + [sym_block_comment] = ACTIONS(3), + }, + [487] = { + [ts_builtin_sym_end] = ACTIONS(2067), + [sym_identifier] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_macro_rules_BANG] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_u8] = ACTIONS(2069), + [anon_sym_i8] = ACTIONS(2069), + [anon_sym_u16] = ACTIONS(2069), + [anon_sym_i16] = ACTIONS(2069), + [anon_sym_u32] = ACTIONS(2069), + [anon_sym_i32] = ACTIONS(2069), + [anon_sym_u64] = ACTIONS(2069), + [anon_sym_i64] = ACTIONS(2069), + [anon_sym_u128] = ACTIONS(2069), + [anon_sym_i128] = ACTIONS(2069), + [anon_sym_isize] = ACTIONS(2069), + [anon_sym_usize] = ACTIONS(2069), + [anon_sym_f32] = ACTIONS(2069), + [anon_sym_f64] = ACTIONS(2069), + [anon_sym_bool] = ACTIONS(2069), + [anon_sym_str] = ACTIONS(2069), + [anon_sym_char] = ACTIONS(2069), + [anon_sym_SQUOTE] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(2069), + [anon_sym_enum] = ACTIONS(2069), + [anon_sym_fn] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_impl] = ACTIONS(2069), + [anon_sym_let] = ACTIONS(2069), + [anon_sym_loop] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_mod] = ACTIONS(2069), + [anon_sym_pub] = ACTIONS(2069), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_static] = ACTIONS(2069), + [anon_sym_struct] = ACTIONS(2069), + [anon_sym_trait] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_union] = ACTIONS(2069), + [anon_sym_unsafe] = ACTIONS(2069), + [anon_sym_use] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_POUND] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_extern] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_DOT_DOT] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2069), + [anon_sym_move] = ACTIONS(2069), + [sym_integer_literal] = ACTIONS(2067), + [aux_sym_string_literal_token1] = ACTIONS(2067), + [sym_char_literal] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2069), + [sym_super] = ACTIONS(2069), + [sym_crate] = ACTIONS(2069), + [sym_metavariable] = ACTIONS(2067), + [sym_raw_string_literal] = ACTIONS(2067), + [sym_float_literal] = ACTIONS(2067), + [sym_block_comment] = ACTIONS(3), + }, + [488] = { + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_macro_rules_BANG] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_u8] = ACTIONS(2087), - [anon_sym_i8] = ACTIONS(2087), - [anon_sym_u16] = ACTIONS(2087), - [anon_sym_i16] = ACTIONS(2087), - [anon_sym_u32] = ACTIONS(2087), - [anon_sym_i32] = ACTIONS(2087), - [anon_sym_u64] = ACTIONS(2087), - [anon_sym_i64] = ACTIONS(2087), - [anon_sym_u128] = ACTIONS(2087), - [anon_sym_i128] = ACTIONS(2087), - [anon_sym_isize] = ACTIONS(2087), - [anon_sym_usize] = ACTIONS(2087), - [anon_sym_f32] = ACTIONS(2087), - [anon_sym_f64] = ACTIONS(2087), - [anon_sym_bool] = ACTIONS(2087), - [anon_sym_str] = ACTIONS(2087), - [anon_sym_char] = ACTIONS(2087), - [aux_sym__non_special_token_token1] = ACTIONS(2087), - [anon_sym_SQUOTE] = ACTIONS(2087), - [anon_sym_as] = ACTIONS(2087), - [anon_sym_async] = ACTIONS(2087), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_break] = ACTIONS(2087), - [anon_sym_const] = ACTIONS(2087), - [anon_sym_continue] = ACTIONS(2087), - [anon_sym_default] = ACTIONS(2087), - [anon_sym_enum] = ACTIONS(2087), - [anon_sym_fn] = ACTIONS(2087), - [anon_sym_for] = ACTIONS(2087), - [anon_sym_if] = ACTIONS(2087), - [anon_sym_impl] = ACTIONS(2087), - [anon_sym_let] = ACTIONS(2087), - [anon_sym_loop] = ACTIONS(2087), - [anon_sym_match] = ACTIONS(2087), - [anon_sym_mod] = ACTIONS(2087), - [anon_sym_pub] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2087), - [anon_sym_static] = ACTIONS(2087), - [anon_sym_struct] = ACTIONS(2087), - [anon_sym_trait] = ACTIONS(2087), - [anon_sym_type] = ACTIONS(2087), - [anon_sym_union] = ACTIONS(2087), - [anon_sym_unsafe] = ACTIONS(2087), - [anon_sym_use] = ACTIONS(2087), - [anon_sym_where] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2087), - [sym_mutable_specifier] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2071), + [anon_sym_u8] = ACTIONS(2073), + [anon_sym_i8] = ACTIONS(2073), + [anon_sym_u16] = ACTIONS(2073), + [anon_sym_i16] = ACTIONS(2073), + [anon_sym_u32] = ACTIONS(2073), + [anon_sym_i32] = ACTIONS(2073), + [anon_sym_u64] = ACTIONS(2073), + [anon_sym_i64] = ACTIONS(2073), + [anon_sym_u128] = ACTIONS(2073), + [anon_sym_i128] = ACTIONS(2073), + [anon_sym_isize] = ACTIONS(2073), + [anon_sym_usize] = ACTIONS(2073), + [anon_sym_f32] = ACTIONS(2073), + [anon_sym_f64] = ACTIONS(2073), + [anon_sym_bool] = ACTIONS(2073), + [anon_sym_str] = ACTIONS(2073), + [anon_sym_char] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_async] = ACTIONS(2073), + [anon_sym_break] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2073), + [anon_sym_continue] = ACTIONS(2073), + [anon_sym_default] = ACTIONS(2073), + [anon_sym_enum] = ACTIONS(2073), + [anon_sym_fn] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_if] = ACTIONS(2073), + [anon_sym_impl] = ACTIONS(2073), + [anon_sym_let] = ACTIONS(2073), + [anon_sym_loop] = ACTIONS(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_mod] = ACTIONS(2073), + [anon_sym_pub] = ACTIONS(2073), + [anon_sym_return] = ACTIONS(2073), + [anon_sym_static] = ACTIONS(2073), + [anon_sym_struct] = ACTIONS(2073), + [anon_sym_trait] = ACTIONS(2073), + [anon_sym_type] = ACTIONS(2073), + [anon_sym_union] = ACTIONS(2073), + [anon_sym_unsafe] = ACTIONS(2073), + [anon_sym_use] = ACTIONS(2073), + [anon_sym_while] = ACTIONS(2073), + [anon_sym_POUND] = ACTIONS(2071), + [anon_sym_BANG] = ACTIONS(2071), + [anon_sym_extern] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2071), + [anon_sym_COLON_COLON] = ACTIONS(2071), + [anon_sym_AMP] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_PIPE] = ACTIONS(2071), + [anon_sym_yield] = ACTIONS(2073), + [anon_sym_move] = ACTIONS(2073), + [sym_integer_literal] = ACTIONS(2071), + [aux_sym_string_literal_token1] = ACTIONS(2071), + [sym_char_literal] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2073), + [sym_super] = ACTIONS(2073), + [sym_crate] = ACTIONS(2073), + [sym_metavariable] = ACTIONS(2071), + [sym_raw_string_literal] = ACTIONS(2071), + [sym_float_literal] = ACTIONS(2071), + [sym_block_comment] = ACTIONS(3), + }, + [489] = { + [ts_builtin_sym_end] = ACTIONS(2075), + [sym_identifier] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_macro_rules_BANG] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_u8] = ACTIONS(2077), + [anon_sym_i8] = ACTIONS(2077), + [anon_sym_u16] = ACTIONS(2077), + [anon_sym_i16] = ACTIONS(2077), + [anon_sym_u32] = ACTIONS(2077), + [anon_sym_i32] = ACTIONS(2077), + [anon_sym_u64] = ACTIONS(2077), + [anon_sym_i64] = ACTIONS(2077), + [anon_sym_u128] = ACTIONS(2077), + [anon_sym_i128] = ACTIONS(2077), + [anon_sym_isize] = ACTIONS(2077), + [anon_sym_usize] = ACTIONS(2077), + [anon_sym_f32] = ACTIONS(2077), + [anon_sym_f64] = ACTIONS(2077), + [anon_sym_bool] = ACTIONS(2077), + [anon_sym_str] = ACTIONS(2077), + [anon_sym_char] = ACTIONS(2077), + [anon_sym_SQUOTE] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_default] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [anon_sym_fn] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_impl] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_loop] = ACTIONS(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_mod] = ACTIONS(2077), + [anon_sym_pub] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_struct] = ACTIONS(2077), + [anon_sym_trait] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_union] = ACTIONS(2077), + [anon_sym_unsafe] = ACTIONS(2077), + [anon_sym_use] = ACTIONS(2077), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_POUND] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2075), + [anon_sym_extern] = ACTIONS(2077), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_COLON_COLON] = ACTIONS(2075), + [anon_sym_AMP] = ACTIONS(2075), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_yield] = ACTIONS(2077), + [anon_sym_move] = ACTIONS(2077), [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), + [aux_sym_string_literal_token1] = ACTIONS(2075), [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2087), - [sym_super] = ACTIONS(2087), - [sym_crate] = ACTIONS(2087), - [sym_metavariable] = ACTIONS(2081), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2077), + [sym_super] = ACTIONS(2077), + [sym_crate] = ACTIONS(2077), + [sym_metavariable] = ACTIONS(2075), [sym_raw_string_literal] = ACTIONS(2075), [sym_float_literal] = ACTIONS(2075), [sym_block_comment] = ACTIONS(3), }, - [487] = { - [sym__token_pattern] = STATE(493), - [sym_token_tree_pattern] = STATE(493), - [sym_token_binding_pattern] = STATE(493), - [sym_token_repetition_pattern] = STATE(493), - [sym__literal] = STATE(493), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_pattern_repeat1] = STATE(493), + [490] = { + [ts_builtin_sym_end] = ACTIONS(2079), + [sym_identifier] = ACTIONS(2081), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_macro_rules_BANG] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_u8] = ACTIONS(2081), + [anon_sym_i8] = ACTIONS(2081), + [anon_sym_u16] = ACTIONS(2081), + [anon_sym_i16] = ACTIONS(2081), + [anon_sym_u32] = ACTIONS(2081), + [anon_sym_i32] = ACTIONS(2081), + [anon_sym_u64] = ACTIONS(2081), + [anon_sym_i64] = ACTIONS(2081), + [anon_sym_u128] = ACTIONS(2081), + [anon_sym_i128] = ACTIONS(2081), + [anon_sym_isize] = ACTIONS(2081), + [anon_sym_usize] = ACTIONS(2081), + [anon_sym_f32] = ACTIONS(2081), + [anon_sym_f64] = ACTIONS(2081), + [anon_sym_bool] = ACTIONS(2081), + [anon_sym_str] = ACTIONS(2081), + [anon_sym_char] = ACTIONS(2081), + [anon_sym_SQUOTE] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_default] = ACTIONS(2081), + [anon_sym_enum] = ACTIONS(2081), + [anon_sym_fn] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_impl] = ACTIONS(2081), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_loop] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_mod] = ACTIONS(2081), + [anon_sym_pub] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_static] = ACTIONS(2081), + [anon_sym_struct] = ACTIONS(2081), + [anon_sym_trait] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_union] = ACTIONS(2081), + [anon_sym_unsafe] = ACTIONS(2081), + [anon_sym_use] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_POUND] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2079), + [anon_sym_extern] = ACTIONS(2081), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_COLON_COLON] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2079), + [anon_sym_DOT_DOT] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_yield] = ACTIONS(2081), + [anon_sym_move] = ACTIONS(2081), + [sym_integer_literal] = ACTIONS(2079), + [aux_sym_string_literal_token1] = ACTIONS(2079), + [sym_char_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2081), + [sym_super] = ACTIONS(2081), + [sym_crate] = ACTIONS(2081), + [sym_metavariable] = ACTIONS(2079), + [sym_raw_string_literal] = ACTIONS(2079), + [sym_float_literal] = ACTIONS(2079), + [sym_block_comment] = ACTIONS(3), + }, + [491] = { + [ts_builtin_sym_end] = ACTIONS(2083), + [sym_identifier] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_macro_rules_BANG] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_u8] = ACTIONS(2085), + [anon_sym_i8] = ACTIONS(2085), + [anon_sym_u16] = ACTIONS(2085), + [anon_sym_i16] = ACTIONS(2085), + [anon_sym_u32] = ACTIONS(2085), + [anon_sym_i32] = ACTIONS(2085), + [anon_sym_u64] = ACTIONS(2085), + [anon_sym_i64] = ACTIONS(2085), + [anon_sym_u128] = ACTIONS(2085), + [anon_sym_i128] = ACTIONS(2085), + [anon_sym_isize] = ACTIONS(2085), + [anon_sym_usize] = ACTIONS(2085), + [anon_sym_f32] = ACTIONS(2085), + [anon_sym_f64] = ACTIONS(2085), + [anon_sym_bool] = ACTIONS(2085), + [anon_sym_str] = ACTIONS(2085), + [anon_sym_char] = ACTIONS(2085), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_async] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(2085), + [anon_sym_enum] = ACTIONS(2085), + [anon_sym_fn] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_impl] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_loop] = ACTIONS(2085), + [anon_sym_match] = ACTIONS(2085), + [anon_sym_mod] = ACTIONS(2085), + [anon_sym_pub] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_static] = ACTIONS(2085), + [anon_sym_struct] = ACTIONS(2085), + [anon_sym_trait] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_union] = ACTIONS(2085), + [anon_sym_unsafe] = ACTIONS(2085), + [anon_sym_use] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_POUND] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_extern] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_COLON_COLON] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_PIPE] = ACTIONS(2083), + [anon_sym_yield] = ACTIONS(2085), + [anon_sym_move] = ACTIONS(2085), + [sym_integer_literal] = ACTIONS(2083), + [aux_sym_string_literal_token1] = ACTIONS(2083), + [sym_char_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(2085), + [anon_sym_false] = ACTIONS(2085), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2085), + [sym_super] = ACTIONS(2085), + [sym_crate] = ACTIONS(2085), + [sym_metavariable] = ACTIONS(2083), + [sym_raw_string_literal] = ACTIONS(2083), + [sym_float_literal] = ACTIONS(2083), + [sym_block_comment] = ACTIONS(3), + }, + [492] = { + [ts_builtin_sym_end] = ACTIONS(2087), [sym_identifier] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_RBRACK] = ACTIONS(2085), - [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym_macro_rules_BANG] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(2087), + [anon_sym_RBRACE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2087), [anon_sym_u8] = ACTIONS(2089), [anon_sym_i8] = ACTIONS(2089), [anon_sym_u16] = ACTIONS(2089), @@ -59208,11 +59634,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2089), [anon_sym_str] = ACTIONS(2089), [anon_sym_char] = ACTIONS(2089), - [aux_sym__non_special_token_token1] = ACTIONS(2089), [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), [anon_sym_async] = ACTIONS(2089), - [anon_sym_await] = ACTIONS(2089), [anon_sym_break] = ACTIONS(2089), [anon_sym_const] = ACTIONS(2089), [anon_sym_continue] = ACTIONS(2089), @@ -59235,798 +59658,279 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2089), [anon_sym_unsafe] = ACTIONS(2089), [anon_sym_use] = ACTIONS(2089), - [anon_sym_where] = ACTIONS(2089), [anon_sym_while] = ACTIONS(2089), - [sym_mutable_specifier] = ACTIONS(2089), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [anon_sym_POUND] = ACTIONS(2087), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_extern] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2087), + [anon_sym_COLON_COLON] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_DOT_DOT] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_PIPE] = ACTIONS(2087), + [anon_sym_yield] = ACTIONS(2089), + [anon_sym_move] = ACTIONS(2089), + [sym_integer_literal] = ACTIONS(2087), + [aux_sym_string_literal_token1] = ACTIONS(2087), + [sym_char_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2089), [sym_super] = ACTIONS(2089), [sym_crate] = ACTIONS(2089), - [sym_metavariable] = ACTIONS(2081), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), - [sym_block_comment] = ACTIONS(3), - }, - [488] = { - [sym_attribute_item] = STATE(548), - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_macro_invocation] = STATE(2506), - [sym_scoped_identifier] = STATE(1571), - [sym_scoped_type_identifier] = STATE(1936), - [sym_match_arm] = STATE(515), - [sym_last_match_arm] = STATE(2476), - [sym_match_pattern] = STATE(2451), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1924), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_enum_variant_list_repeat1] = STATE(548), - [aux_sym_match_block_repeat1] = STATE(515), - [sym_identifier] = ACTIONS(1166), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [489] = { - [sym_attribute_item] = STATE(548), - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_macro_invocation] = STATE(2506), - [sym_scoped_identifier] = STATE(1571), - [sym_scoped_type_identifier] = STATE(1936), - [sym_match_arm] = STATE(515), - [sym_last_match_arm] = STATE(2547), - [sym_match_pattern] = STATE(2451), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1924), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_enum_variant_list_repeat1] = STATE(548), - [aux_sym_match_block_repeat1] = STATE(515), - [sym_identifier] = ACTIONS(1166), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [490] = { - [sym_attribute_item] = STATE(548), - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_macro_invocation] = STATE(2506), - [sym_scoped_identifier] = STATE(1571), - [sym_scoped_type_identifier] = STATE(1936), - [sym_match_arm] = STATE(515), - [sym_last_match_arm] = STATE(2422), - [sym_match_pattern] = STATE(2451), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1924), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_enum_variant_list_repeat1] = STATE(548), - [aux_sym_match_block_repeat1] = STATE(515), - [sym_identifier] = ACTIONS(1166), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [491] = { - [sym__token_pattern] = STATE(253), - [sym_token_tree_pattern] = STATE(253), - [sym_token_binding_pattern] = STATE(253), - [sym_token_repetition_pattern] = STATE(253), - [sym__literal] = STATE(253), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_pattern_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_RPAREN] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_u8] = ACTIONS(2091), - [anon_sym_i8] = ACTIONS(2091), - [anon_sym_u16] = ACTIONS(2091), - [anon_sym_i16] = ACTIONS(2091), - [anon_sym_u32] = ACTIONS(2091), - [anon_sym_i32] = ACTIONS(2091), - [anon_sym_u64] = ACTIONS(2091), - [anon_sym_i64] = ACTIONS(2091), - [anon_sym_u128] = ACTIONS(2091), - [anon_sym_i128] = ACTIONS(2091), - [anon_sym_isize] = ACTIONS(2091), - [anon_sym_usize] = ACTIONS(2091), - [anon_sym_f32] = ACTIONS(2091), - [anon_sym_f64] = ACTIONS(2091), - [anon_sym_bool] = ACTIONS(2091), - [anon_sym_str] = ACTIONS(2091), - [anon_sym_char] = ACTIONS(2091), - [aux_sym__non_special_token_token1] = ACTIONS(2091), - [anon_sym_SQUOTE] = ACTIONS(2091), - [anon_sym_as] = ACTIONS(2091), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_await] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_default] = ACTIONS(2091), - [anon_sym_enum] = ACTIONS(2091), - [anon_sym_fn] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_impl] = ACTIONS(2091), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_loop] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2091), - [anon_sym_mod] = ACTIONS(2091), - [anon_sym_pub] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_static] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2091), - [anon_sym_trait] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2091), - [anon_sym_union] = ACTIONS(2091), - [anon_sym_unsafe] = ACTIONS(2091), - [anon_sym_use] = ACTIONS(2091), - [anon_sym_where] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [sym_mutable_specifier] = ACTIONS(2091), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2091), - [sym_super] = ACTIONS(2091), - [sym_crate] = ACTIONS(2091), - [sym_metavariable] = ACTIONS(2081), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), - [sym_block_comment] = ACTIONS(3), - }, - [492] = { - [sym__token_pattern] = STATE(253), - [sym_token_tree_pattern] = STATE(253), - [sym_token_binding_pattern] = STATE(253), - [sym_token_repetition_pattern] = STATE(253), - [sym__literal] = STATE(253), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_pattern_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_u8] = ACTIONS(2091), - [anon_sym_i8] = ACTIONS(2091), - [anon_sym_u16] = ACTIONS(2091), - [anon_sym_i16] = ACTIONS(2091), - [anon_sym_u32] = ACTIONS(2091), - [anon_sym_i32] = ACTIONS(2091), - [anon_sym_u64] = ACTIONS(2091), - [anon_sym_i64] = ACTIONS(2091), - [anon_sym_u128] = ACTIONS(2091), - [anon_sym_i128] = ACTIONS(2091), - [anon_sym_isize] = ACTIONS(2091), - [anon_sym_usize] = ACTIONS(2091), - [anon_sym_f32] = ACTIONS(2091), - [anon_sym_f64] = ACTIONS(2091), - [anon_sym_bool] = ACTIONS(2091), - [anon_sym_str] = ACTIONS(2091), - [anon_sym_char] = ACTIONS(2091), - [aux_sym__non_special_token_token1] = ACTIONS(2091), - [anon_sym_SQUOTE] = ACTIONS(2091), - [anon_sym_as] = ACTIONS(2091), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_await] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_default] = ACTIONS(2091), - [anon_sym_enum] = ACTIONS(2091), - [anon_sym_fn] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_impl] = ACTIONS(2091), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_loop] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2091), - [anon_sym_mod] = ACTIONS(2091), - [anon_sym_pub] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_static] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2091), - [anon_sym_trait] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2091), - [anon_sym_union] = ACTIONS(2091), - [anon_sym_unsafe] = ACTIONS(2091), - [anon_sym_use] = ACTIONS(2091), - [anon_sym_where] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [sym_mutable_specifier] = ACTIONS(2091), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2091), - [sym_super] = ACTIONS(2091), - [sym_crate] = ACTIONS(2091), - [sym_metavariable] = ACTIONS(2081), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_metavariable] = ACTIONS(2087), + [sym_raw_string_literal] = ACTIONS(2087), + [sym_float_literal] = ACTIONS(2087), [sym_block_comment] = ACTIONS(3), }, [493] = { - [sym__token_pattern] = STATE(253), - [sym_token_tree_pattern] = STATE(253), - [sym_token_binding_pattern] = STATE(253), - [sym_token_repetition_pattern] = STATE(253), - [sym__literal] = STATE(253), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_pattern_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_RBRACK] = ACTIONS(2093), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_u8] = ACTIONS(2091), - [anon_sym_i8] = ACTIONS(2091), - [anon_sym_u16] = ACTIONS(2091), - [anon_sym_i16] = ACTIONS(2091), - [anon_sym_u32] = ACTIONS(2091), - [anon_sym_i32] = ACTIONS(2091), - [anon_sym_u64] = ACTIONS(2091), - [anon_sym_i64] = ACTIONS(2091), - [anon_sym_u128] = ACTIONS(2091), - [anon_sym_i128] = ACTIONS(2091), - [anon_sym_isize] = ACTIONS(2091), - [anon_sym_usize] = ACTIONS(2091), - [anon_sym_f32] = ACTIONS(2091), - [anon_sym_f64] = ACTIONS(2091), - [anon_sym_bool] = ACTIONS(2091), - [anon_sym_str] = ACTIONS(2091), - [anon_sym_char] = ACTIONS(2091), - [aux_sym__non_special_token_token1] = ACTIONS(2091), - [anon_sym_SQUOTE] = ACTIONS(2091), - [anon_sym_as] = ACTIONS(2091), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_await] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_default] = ACTIONS(2091), - [anon_sym_enum] = ACTIONS(2091), - [anon_sym_fn] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_impl] = ACTIONS(2091), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_loop] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2091), - [anon_sym_mod] = ACTIONS(2091), - [anon_sym_pub] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_static] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2091), - [anon_sym_trait] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2091), - [anon_sym_union] = ACTIONS(2091), - [anon_sym_unsafe] = ACTIONS(2091), - [anon_sym_use] = ACTIONS(2091), - [anon_sym_where] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [sym_mutable_specifier] = ACTIONS(2091), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2091), - [sym_super] = ACTIONS(2091), - [sym_crate] = ACTIONS(2091), - [sym_metavariable] = ACTIONS(2081), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [ts_builtin_sym_end] = ACTIONS(2091), + [sym_identifier] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(2091), + [anon_sym_macro_rules_BANG] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2091), + [anon_sym_RBRACE] = ACTIONS(2091), + [anon_sym_LBRACK] = ACTIONS(2091), + [anon_sym_STAR] = ACTIONS(2091), + [anon_sym_u8] = ACTIONS(2093), + [anon_sym_i8] = ACTIONS(2093), + [anon_sym_u16] = ACTIONS(2093), + [anon_sym_i16] = ACTIONS(2093), + [anon_sym_u32] = ACTIONS(2093), + [anon_sym_i32] = ACTIONS(2093), + [anon_sym_u64] = ACTIONS(2093), + [anon_sym_i64] = ACTIONS(2093), + [anon_sym_u128] = ACTIONS(2093), + [anon_sym_i128] = ACTIONS(2093), + [anon_sym_isize] = ACTIONS(2093), + [anon_sym_usize] = ACTIONS(2093), + [anon_sym_f32] = ACTIONS(2093), + [anon_sym_f64] = ACTIONS(2093), + [anon_sym_bool] = ACTIONS(2093), + [anon_sym_str] = ACTIONS(2093), + [anon_sym_char] = ACTIONS(2093), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_impl] = ACTIONS(2093), + [anon_sym_let] = ACTIONS(2093), + [anon_sym_loop] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_mod] = ACTIONS(2093), + [anon_sym_pub] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_union] = ACTIONS(2093), + [anon_sym_unsafe] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_extern] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2091), + [anon_sym_COLON_COLON] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_DASH] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(2091), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_move] = ACTIONS(2093), + [sym_integer_literal] = ACTIONS(2091), + [aux_sym_string_literal_token1] = ACTIONS(2091), + [sym_char_literal] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2093), + [sym_super] = ACTIONS(2093), + [sym_crate] = ACTIONS(2093), + [sym_metavariable] = ACTIONS(2091), + [sym_raw_string_literal] = ACTIONS(2091), + [sym_float_literal] = ACTIONS(2091), [sym_block_comment] = ACTIONS(3), }, [494] = { - [sym__token_pattern] = STATE(253), - [sym_token_tree_pattern] = STATE(253), - [sym_token_binding_pattern] = STATE(253), - [sym_token_repetition_pattern] = STATE(253), - [sym__literal] = STATE(253), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_pattern_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_RPAREN] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_u8] = ACTIONS(2091), - [anon_sym_i8] = ACTIONS(2091), - [anon_sym_u16] = ACTIONS(2091), - [anon_sym_i16] = ACTIONS(2091), - [anon_sym_u32] = ACTIONS(2091), - [anon_sym_i32] = ACTIONS(2091), - [anon_sym_u64] = ACTIONS(2091), - [anon_sym_i64] = ACTIONS(2091), - [anon_sym_u128] = ACTIONS(2091), - [anon_sym_i128] = ACTIONS(2091), - [anon_sym_isize] = ACTIONS(2091), - [anon_sym_usize] = ACTIONS(2091), - [anon_sym_f32] = ACTIONS(2091), - [anon_sym_f64] = ACTIONS(2091), - [anon_sym_bool] = ACTIONS(2091), - [anon_sym_str] = ACTIONS(2091), - [anon_sym_char] = ACTIONS(2091), - [aux_sym__non_special_token_token1] = ACTIONS(2091), - [anon_sym_SQUOTE] = ACTIONS(2091), - [anon_sym_as] = ACTIONS(2091), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_await] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_default] = ACTIONS(2091), - [anon_sym_enum] = ACTIONS(2091), - [anon_sym_fn] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_impl] = ACTIONS(2091), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_loop] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2091), - [anon_sym_mod] = ACTIONS(2091), - [anon_sym_pub] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_static] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2091), - [anon_sym_trait] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2091), - [anon_sym_union] = ACTIONS(2091), - [anon_sym_unsafe] = ACTIONS(2091), - [anon_sym_use] = ACTIONS(2091), - [anon_sym_where] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [sym_mutable_specifier] = ACTIONS(2091), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2091), - [sym_super] = ACTIONS(2091), - [sym_crate] = ACTIONS(2091), - [sym_metavariable] = ACTIONS(2081), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym__token_pattern] = STATE(268), + [sym_token_tree_pattern] = STATE(268), + [sym_token_binding_pattern] = STATE(268), + [sym_token_repetition_pattern] = STATE(268), + [sym__never_special_token] = STATE(268), + [sym__literal] = STATE(268), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(268), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_RPAREN] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_u8] = ACTIONS(2095), + [anon_sym_i8] = ACTIONS(2095), + [anon_sym_u16] = ACTIONS(2095), + [anon_sym_i16] = ACTIONS(2095), + [anon_sym_u32] = ACTIONS(2095), + [anon_sym_i32] = ACTIONS(2095), + [anon_sym_u64] = ACTIONS(2095), + [anon_sym_i64] = ACTIONS(2095), + [anon_sym_u128] = ACTIONS(2095), + [anon_sym_i128] = ACTIONS(2095), + [anon_sym_isize] = ACTIONS(2095), + [anon_sym_usize] = ACTIONS(2095), + [anon_sym_f32] = ACTIONS(2095), + [anon_sym_f64] = ACTIONS(2095), + [anon_sym_bool] = ACTIONS(2095), + [anon_sym_str] = ACTIONS(2095), + [anon_sym_char] = ACTIONS(2095), + [aux_sym__never_special_token_token1] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2095), + [anon_sym_as] = ACTIONS(2095), + [anon_sym_async] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2095), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2095), + [anon_sym_enum] = ACTIONS(2095), + [anon_sym_fn] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_impl] = ACTIONS(2095), + [anon_sym_let] = ACTIONS(2095), + [anon_sym_loop] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_mod] = ACTIONS(2095), + [anon_sym_pub] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_static] = ACTIONS(2095), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_trait] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_union] = ACTIONS(2095), + [anon_sym_unsafe] = ACTIONS(2095), + [anon_sym_use] = ACTIONS(2095), + [anon_sym_where] = ACTIONS(2095), + [anon_sym_while] = ACTIONS(2095), + [sym_mutable_specifier] = ACTIONS(2095), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2095), + [sym_super] = ACTIONS(2095), + [sym_crate] = ACTIONS(2095), + [sym_metavariable] = ACTIONS(1168), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, [495] = { - [sym__token_pattern] = STATE(253), - [sym_token_tree_pattern] = STATE(253), - [sym_token_binding_pattern] = STATE(253), - [sym_token_repetition_pattern] = STATE(253), - [sym__literal] = STATE(253), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_pattern_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_RBRACK] = ACTIONS(2097), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_u8] = ACTIONS(2091), - [anon_sym_i8] = ACTIONS(2091), - [anon_sym_u16] = ACTIONS(2091), - [anon_sym_i16] = ACTIONS(2091), - [anon_sym_u32] = ACTIONS(2091), - [anon_sym_i32] = ACTIONS(2091), - [anon_sym_u64] = ACTIONS(2091), - [anon_sym_i64] = ACTIONS(2091), - [anon_sym_u128] = ACTIONS(2091), - [anon_sym_i128] = ACTIONS(2091), - [anon_sym_isize] = ACTIONS(2091), - [anon_sym_usize] = ACTIONS(2091), - [anon_sym_f32] = ACTIONS(2091), - [anon_sym_f64] = ACTIONS(2091), - [anon_sym_bool] = ACTIONS(2091), - [anon_sym_str] = ACTIONS(2091), - [anon_sym_char] = ACTIONS(2091), - [aux_sym__non_special_token_token1] = ACTIONS(2091), - [anon_sym_SQUOTE] = ACTIONS(2091), - [anon_sym_as] = ACTIONS(2091), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_await] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_default] = ACTIONS(2091), - [anon_sym_enum] = ACTIONS(2091), - [anon_sym_fn] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_impl] = ACTIONS(2091), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_loop] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2091), - [anon_sym_mod] = ACTIONS(2091), - [anon_sym_pub] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_static] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2091), - [anon_sym_trait] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2091), - [anon_sym_union] = ACTIONS(2091), - [anon_sym_unsafe] = ACTIONS(2091), - [anon_sym_use] = ACTIONS(2091), - [anon_sym_where] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [sym_mutable_specifier] = ACTIONS(2091), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2091), - [sym_super] = ACTIONS(2091), - [sym_crate] = ACTIONS(2091), - [sym_metavariable] = ACTIONS(2081), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [ts_builtin_sym_end] = ACTIONS(2099), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SEMI] = ACTIONS(2099), + [anon_sym_macro_rules_BANG] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_RBRACE] = ACTIONS(2099), + [anon_sym_LBRACK] = ACTIONS(2099), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_u8] = ACTIONS(2101), + [anon_sym_i8] = ACTIONS(2101), + [anon_sym_u16] = ACTIONS(2101), + [anon_sym_i16] = ACTIONS(2101), + [anon_sym_u32] = ACTIONS(2101), + [anon_sym_i32] = ACTIONS(2101), + [anon_sym_u64] = ACTIONS(2101), + [anon_sym_i64] = ACTIONS(2101), + [anon_sym_u128] = ACTIONS(2101), + [anon_sym_i128] = ACTIONS(2101), + [anon_sym_isize] = ACTIONS(2101), + [anon_sym_usize] = ACTIONS(2101), + [anon_sym_f32] = ACTIONS(2101), + [anon_sym_f64] = ACTIONS(2101), + [anon_sym_bool] = ACTIONS(2101), + [anon_sym_str] = ACTIONS(2101), + [anon_sym_char] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2101), + [anon_sym_async] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(2101), + [anon_sym_continue] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(2101), + [anon_sym_enum] = ACTIONS(2101), + [anon_sym_fn] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2101), + [anon_sym_if] = ACTIONS(2101), + [anon_sym_impl] = ACTIONS(2101), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_loop] = ACTIONS(2101), + [anon_sym_match] = ACTIONS(2101), + [anon_sym_mod] = ACTIONS(2101), + [anon_sym_pub] = ACTIONS(2101), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_static] = ACTIONS(2101), + [anon_sym_struct] = ACTIONS(2101), + [anon_sym_trait] = ACTIONS(2101), + [anon_sym_type] = ACTIONS(2101), + [anon_sym_union] = ACTIONS(2101), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_use] = ACTIONS(2101), + [anon_sym_while] = ACTIONS(2101), + [anon_sym_POUND] = ACTIONS(2099), + [anon_sym_BANG] = ACTIONS(2099), + [anon_sym_extern] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2099), + [anon_sym_COLON_COLON] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2099), + [anon_sym_DASH] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_yield] = ACTIONS(2101), + [anon_sym_move] = ACTIONS(2101), + [sym_integer_literal] = ACTIONS(2099), + [aux_sym_string_literal_token1] = ACTIONS(2099), + [sym_char_literal] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(2101), + [anon_sym_false] = ACTIONS(2101), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2101), + [sym_super] = ACTIONS(2101), + [sym_crate] = ACTIONS(2101), + [sym_metavariable] = ACTIONS(2099), + [sym_raw_string_literal] = ACTIONS(2099), + [sym_float_literal] = ACTIONS(2099), [sym_block_comment] = ACTIONS(3), }, [496] = { - [sym__token_pattern] = STATE(500), - [sym_token_tree_pattern] = STATE(500), - [sym_token_binding_pattern] = STATE(500), - [sym_token_repetition_pattern] = STATE(500), - [sym__literal] = STATE(500), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_pattern_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_RPAREN] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_u8] = ACTIONS(2099), - [anon_sym_i8] = ACTIONS(2099), - [anon_sym_u16] = ACTIONS(2099), - [anon_sym_i16] = ACTIONS(2099), - [anon_sym_u32] = ACTIONS(2099), - [anon_sym_i32] = ACTIONS(2099), - [anon_sym_u64] = ACTIONS(2099), - [anon_sym_i64] = ACTIONS(2099), - [anon_sym_u128] = ACTIONS(2099), - [anon_sym_i128] = ACTIONS(2099), - [anon_sym_isize] = ACTIONS(2099), - [anon_sym_usize] = ACTIONS(2099), - [anon_sym_f32] = ACTIONS(2099), - [anon_sym_f64] = ACTIONS(2099), - [anon_sym_bool] = ACTIONS(2099), - [anon_sym_str] = ACTIONS(2099), - [anon_sym_char] = ACTIONS(2099), - [aux_sym__non_special_token_token1] = ACTIONS(2099), - [anon_sym_SQUOTE] = ACTIONS(2099), - [anon_sym_as] = ACTIONS(2099), - [anon_sym_async] = ACTIONS(2099), - [anon_sym_await] = ACTIONS(2099), - [anon_sym_break] = ACTIONS(2099), - [anon_sym_const] = ACTIONS(2099), - [anon_sym_continue] = ACTIONS(2099), - [anon_sym_default] = ACTIONS(2099), - [anon_sym_enum] = ACTIONS(2099), - [anon_sym_fn] = ACTIONS(2099), - [anon_sym_for] = ACTIONS(2099), - [anon_sym_if] = ACTIONS(2099), - [anon_sym_impl] = ACTIONS(2099), - [anon_sym_let] = ACTIONS(2099), - [anon_sym_loop] = ACTIONS(2099), - [anon_sym_match] = ACTIONS(2099), - [anon_sym_mod] = ACTIONS(2099), - [anon_sym_pub] = ACTIONS(2099), - [anon_sym_return] = ACTIONS(2099), - [anon_sym_static] = ACTIONS(2099), - [anon_sym_struct] = ACTIONS(2099), - [anon_sym_trait] = ACTIONS(2099), - [anon_sym_type] = ACTIONS(2099), - [anon_sym_union] = ACTIONS(2099), - [anon_sym_unsafe] = ACTIONS(2099), - [anon_sym_use] = ACTIONS(2099), - [anon_sym_where] = ACTIONS(2099), - [anon_sym_while] = ACTIONS(2099), - [sym_mutable_specifier] = ACTIONS(2099), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2099), - [sym_super] = ACTIONS(2099), - [sym_crate] = ACTIONS(2099), - [sym_metavariable] = ACTIONS(2081), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), - [sym_block_comment] = ACTIONS(3), - }, - [497] = { - [sym__token_pattern] = STATE(253), - [sym_token_tree_pattern] = STATE(253), - [sym_token_binding_pattern] = STATE(253), - [sym_token_repetition_pattern] = STATE(253), - [sym__literal] = STATE(253), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_pattern_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_u8] = ACTIONS(2091), - [anon_sym_i8] = ACTIONS(2091), - [anon_sym_u16] = ACTIONS(2091), - [anon_sym_i16] = ACTIONS(2091), - [anon_sym_u32] = ACTIONS(2091), - [anon_sym_i32] = ACTIONS(2091), - [anon_sym_u64] = ACTIONS(2091), - [anon_sym_i64] = ACTIONS(2091), - [anon_sym_u128] = ACTIONS(2091), - [anon_sym_i128] = ACTIONS(2091), - [anon_sym_isize] = ACTIONS(2091), - [anon_sym_usize] = ACTIONS(2091), - [anon_sym_f32] = ACTIONS(2091), - [anon_sym_f64] = ACTIONS(2091), - [anon_sym_bool] = ACTIONS(2091), - [anon_sym_str] = ACTIONS(2091), - [anon_sym_char] = ACTIONS(2091), - [aux_sym__non_special_token_token1] = ACTIONS(2091), - [anon_sym_SQUOTE] = ACTIONS(2091), - [anon_sym_as] = ACTIONS(2091), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_await] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_default] = ACTIONS(2091), - [anon_sym_enum] = ACTIONS(2091), - [anon_sym_fn] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_impl] = ACTIONS(2091), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_loop] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2091), - [anon_sym_mod] = ACTIONS(2091), - [anon_sym_pub] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_static] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2091), - [anon_sym_trait] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2091), - [anon_sym_union] = ACTIONS(2091), - [anon_sym_unsafe] = ACTIONS(2091), - [anon_sym_use] = ACTIONS(2091), - [anon_sym_where] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [sym_mutable_specifier] = ACTIONS(2091), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2091), - [sym_super] = ACTIONS(2091), - [sym_crate] = ACTIONS(2091), - [sym_metavariable] = ACTIONS(2081), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), - [sym_block_comment] = ACTIONS(3), - }, - [498] = { - [sym__token_pattern] = STATE(497), - [sym_token_tree_pattern] = STATE(497), - [sym_token_binding_pattern] = STATE(497), - [sym_token_repetition_pattern] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_pattern_repeat1] = STATE(497), + [sym__token_pattern] = STATE(271), + [sym_token_tree_pattern] = STATE(271), + [sym_token_binding_pattern] = STATE(271), + [sym_token_repetition_pattern] = STATE(271), + [sym__never_special_token] = STATE(271), + [sym__literal] = STATE(271), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(271), [sym_identifier] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_DOLLAR] = ACTIONS(1160), [anon_sym_u8] = ACTIONS(2103), [anon_sym_i8] = ACTIONS(2103), [anon_sym_u16] = ACTIONS(2103), @@ -60044,7 +59948,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2103), [anon_sym_str] = ACTIONS(2103), [anon_sym_char] = ACTIONS(2103), - [aux_sym__non_special_token_token1] = ACTIONS(2103), + [aux_sym__never_special_token_token1] = ACTIONS(2103), [anon_sym_SQUOTE] = ACTIONS(2103), [anon_sym_as] = ACTIONS(2103), [anon_sym_async] = ACTIONS(2103), @@ -60074,35 +59978,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2103), [anon_sym_while] = ACTIONS(2103), [sym_mutable_specifier] = ACTIONS(2103), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2103), [sym_super] = ACTIONS(2103), [sym_crate] = ACTIONS(2103), - [sym_metavariable] = ACTIONS(2081), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_metavariable] = ACTIONS(1168), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, - [499] = { - [sym__token_pattern] = STATE(495), - [sym_token_tree_pattern] = STATE(495), - [sym_token_binding_pattern] = STATE(495), - [sym_token_repetition_pattern] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_pattern_repeat1] = STATE(495), + [497] = { + [sym__token_pattern] = STATE(275), + [sym_token_tree_pattern] = STATE(275), + [sym_token_binding_pattern] = STATE(275), + [sym_token_repetition_pattern] = STATE(275), + [sym__never_special_token] = STATE(275), + [sym__literal] = STATE(275), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_pattern_repeat1] = STATE(275), [sym_identifier] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_RBRACK] = ACTIONS(2101), - [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_RBRACK] = ACTIONS(2097), + [anon_sym_DOLLAR] = ACTIONS(1160), [anon_sym_u8] = ACTIONS(2105), [anon_sym_i8] = ACTIONS(2105), [anon_sym_u16] = ACTIONS(2105), @@ -60120,7 +60025,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2105), [anon_sym_str] = ACTIONS(2105), [anon_sym_char] = ACTIONS(2105), - [aux_sym__non_special_token_token1] = ACTIONS(2105), + [aux_sym__never_special_token_token1] = ACTIONS(2105), [anon_sym_SQUOTE] = ACTIONS(2105), [anon_sym_as] = ACTIONS(2105), [anon_sym_async] = ACTIONS(2105), @@ -60150,110 +60055,263 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2105), [anon_sym_while] = ACTIONS(2105), [sym_mutable_specifier] = ACTIONS(2105), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2105), [sym_super] = ACTIONS(2105), [sym_crate] = ACTIONS(2105), - [sym_metavariable] = ACTIONS(2081), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_metavariable] = ACTIONS(1168), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), + [sym_block_comment] = ACTIONS(3), + }, + [498] = { + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_arm] = STATE(506), + [sym_last_match_arm] = STATE(2558), + [sym_match_pattern] = STATE(2359), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [499] = { + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_arm] = STATE(506), + [sym_last_match_arm] = STATE(2415), + [sym_match_pattern] = STATE(2359), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [500] = { - [sym__token_pattern] = STATE(253), - [sym_token_tree_pattern] = STATE(253), - [sym_token_binding_pattern] = STATE(253), - [sym_token_repetition_pattern] = STATE(253), - [sym__literal] = STATE(253), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_pattern_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_RPAREN] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_u8] = ACTIONS(2091), - [anon_sym_i8] = ACTIONS(2091), - [anon_sym_u16] = ACTIONS(2091), - [anon_sym_i16] = ACTIONS(2091), - [anon_sym_u32] = ACTIONS(2091), - [anon_sym_i32] = ACTIONS(2091), - [anon_sym_u64] = ACTIONS(2091), - [anon_sym_i64] = ACTIONS(2091), - [anon_sym_u128] = ACTIONS(2091), - [anon_sym_i128] = ACTIONS(2091), - [anon_sym_isize] = ACTIONS(2091), - [anon_sym_usize] = ACTIONS(2091), - [anon_sym_f32] = ACTIONS(2091), - [anon_sym_f64] = ACTIONS(2091), - [anon_sym_bool] = ACTIONS(2091), - [anon_sym_str] = ACTIONS(2091), - [anon_sym_char] = ACTIONS(2091), - [aux_sym__non_special_token_token1] = ACTIONS(2091), - [anon_sym_SQUOTE] = ACTIONS(2091), - [anon_sym_as] = ACTIONS(2091), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_await] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_default] = ACTIONS(2091), - [anon_sym_enum] = ACTIONS(2091), - [anon_sym_fn] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_impl] = ACTIONS(2091), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_loop] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2091), - [anon_sym_mod] = ACTIONS(2091), - [anon_sym_pub] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_static] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2091), - [anon_sym_trait] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2091), - [anon_sym_union] = ACTIONS(2091), - [anon_sym_unsafe] = ACTIONS(2091), - [anon_sym_use] = ACTIONS(2091), - [anon_sym_where] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [sym_mutable_specifier] = ACTIONS(2091), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2091), - [sym_super] = ACTIONS(2091), - [sym_crate] = ACTIONS(2091), - [sym_metavariable] = ACTIONS(2081), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_arm] = STATE(506), + [sym_last_match_arm] = STATE(2450), + [sym_match_pattern] = STATE(2359), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [501] = { - [sym_delim_token_tree] = STATE(504), - [sym__delim_tokens] = STATE(504), - [sym__non_delim_token] = STATE(504), - [sym__literal] = STATE(504), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(504), + [sym__never_special_token] = STATE(520), + [sym_delim_token_tree] = STATE(520), + [sym__delim_tokens] = STATE(520), + [sym__non_delim_token] = STATE(520), + [sym__literal] = STATE(520), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(520), [sym_identifier] = ACTIONS(2107), [anon_sym_LPAREN] = ACTIONS(2109), [anon_sym_LBRACE] = ACTIONS(2111), [anon_sym_LBRACK] = ACTIONS(2113), [anon_sym_RBRACK] = ACTIONS(2115), - [anon_sym_DOLLAR] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(2117), [anon_sym_u8] = ACTIONS(2107), [anon_sym_i8] = ACTIONS(2107), [anon_sym_u16] = ACTIONS(2107), @@ -60271,7 +60329,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2107), [anon_sym_str] = ACTIONS(2107), [anon_sym_char] = ACTIONS(2107), - [aux_sym__non_special_token_token1] = ACTIONS(2107), + [aux_sym__never_special_token_token1] = ACTIONS(2107), [anon_sym_SQUOTE] = ACTIONS(2107), [anon_sym_as] = ACTIONS(2107), [anon_sym_async] = ACTIONS(2107), @@ -60301,109 +60359,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2107), [anon_sym_while] = ACTIONS(2107), [sym_mutable_specifier] = ACTIONS(2107), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2107), [sym_super] = ACTIONS(2107), [sym_crate] = ACTIONS(2107), - [sym_metavariable] = ACTIONS(2117), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, [502] = { - [sym_delim_token_tree] = STATE(510), - [sym__delim_tokens] = STATE(510), - [sym__non_delim_token] = STATE(510), - [sym__literal] = STATE(510), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(510), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2119), - [anon_sym_u8] = ACTIONS(2119), - [anon_sym_i8] = ACTIONS(2119), - [anon_sym_u16] = ACTIONS(2119), - [anon_sym_i16] = ACTIONS(2119), - [anon_sym_u32] = ACTIONS(2119), - [anon_sym_i32] = ACTIONS(2119), - [anon_sym_u64] = ACTIONS(2119), - [anon_sym_i64] = ACTIONS(2119), - [anon_sym_u128] = ACTIONS(2119), - [anon_sym_i128] = ACTIONS(2119), - [anon_sym_isize] = ACTIONS(2119), - [anon_sym_usize] = ACTIONS(2119), - [anon_sym_f32] = ACTIONS(2119), - [anon_sym_f64] = ACTIONS(2119), - [anon_sym_bool] = ACTIONS(2119), - [anon_sym_str] = ACTIONS(2119), - [anon_sym_char] = ACTIONS(2119), - [aux_sym__non_special_token_token1] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [anon_sym_as] = ACTIONS(2119), - [anon_sym_async] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_break] = ACTIONS(2119), - [anon_sym_const] = ACTIONS(2119), - [anon_sym_continue] = ACTIONS(2119), - [anon_sym_default] = ACTIONS(2119), - [anon_sym_enum] = ACTIONS(2119), - [anon_sym_fn] = ACTIONS(2119), - [anon_sym_for] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_impl] = ACTIONS(2119), - [anon_sym_let] = ACTIONS(2119), - [anon_sym_loop] = ACTIONS(2119), - [anon_sym_match] = ACTIONS(2119), - [anon_sym_mod] = ACTIONS(2119), - [anon_sym_pub] = ACTIONS(2119), - [anon_sym_return] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2119), - [anon_sym_struct] = ACTIONS(2119), - [anon_sym_trait] = ACTIONS(2119), - [anon_sym_type] = ACTIONS(2119), - [anon_sym_union] = ACTIONS(2119), - [anon_sym_unsafe] = ACTIONS(2119), - [anon_sym_use] = ACTIONS(2119), - [anon_sym_where] = ACTIONS(2119), - [anon_sym_while] = ACTIONS(2119), - [sym_mutable_specifier] = ACTIONS(2119), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2119), - [sym_super] = ACTIONS(2119), - [sym_crate] = ACTIONS(2119), - [sym_metavariable] = ACTIONS(2123), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), - [sym_block_comment] = ACTIONS(3), - }, - [503] = { - [sym_delim_token_tree] = STATE(281), - [sym__delim_tokens] = STATE(281), - [sym__non_delim_token] = STATE(281), - [sym__literal] = STATE(281), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym__never_special_token] = STATE(303), + [sym_delim_token_tree] = STATE(303), + [sym__delim_tokens] = STATE(303), + [sym__non_delim_token] = STATE(303), + [sym__literal] = STATE(303), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(303), [sym_identifier] = ACTIONS(2125), [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2127), [anon_sym_LBRACE] = ACTIONS(2111), [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2127), - [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_DOLLAR] = ACTIONS(2129), [anon_sym_u8] = ACTIONS(2125), [anon_sym_i8] = ACTIONS(2125), [anon_sym_u16] = ACTIONS(2125), @@ -60421,7 +60404,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2125), [anon_sym_str] = ACTIONS(2125), [anon_sym_char] = ACTIONS(2125), - [aux_sym__non_special_token_token1] = ACTIONS(2125), + [aux_sym__never_special_token_token1] = ACTIONS(2125), [anon_sym_SQUOTE] = ACTIONS(2125), [anon_sym_as] = ACTIONS(2125), [anon_sym_async] = ACTIONS(2125), @@ -60451,184 +60434,184 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2125), [anon_sym_while] = ACTIONS(2125), [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2125), [sym_super] = ACTIONS(2125), [sym_crate] = ACTIONS(2125), - [sym_metavariable] = ACTIONS(2129), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [504] = { - [sym_delim_token_tree] = STATE(281), - [sym__delim_tokens] = STATE(281), - [sym__non_delim_token] = STATE(281), - [sym__literal] = STATE(281), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(281), - [sym_identifier] = ACTIONS(2125), + [503] = { + [sym__never_special_token] = STATE(509), + [sym_delim_token_tree] = STATE(509), + [sym__delim_tokens] = STATE(509), + [sym__non_delim_token] = STATE(509), + [sym__literal] = STATE(509), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(509), + [sym_identifier] = ACTIONS(2131), [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2115), [anon_sym_LBRACE] = ACTIONS(2111), [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2131), - [anon_sym_DOLLAR] = ACTIONS(2125), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [aux_sym__non_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_metavariable] = ACTIONS(2129), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [anon_sym_DOLLAR] = ACTIONS(2133), + [anon_sym_u8] = ACTIONS(2131), + [anon_sym_i8] = ACTIONS(2131), + [anon_sym_u16] = ACTIONS(2131), + [anon_sym_i16] = ACTIONS(2131), + [anon_sym_u32] = ACTIONS(2131), + [anon_sym_i32] = ACTIONS(2131), + [anon_sym_u64] = ACTIONS(2131), + [anon_sym_i64] = ACTIONS(2131), + [anon_sym_u128] = ACTIONS(2131), + [anon_sym_i128] = ACTIONS(2131), + [anon_sym_isize] = ACTIONS(2131), + [anon_sym_usize] = ACTIONS(2131), + [anon_sym_f32] = ACTIONS(2131), + [anon_sym_f64] = ACTIONS(2131), + [anon_sym_bool] = ACTIONS(2131), + [anon_sym_str] = ACTIONS(2131), + [anon_sym_char] = ACTIONS(2131), + [aux_sym__never_special_token_token1] = ACTIONS(2131), + [anon_sym_SQUOTE] = ACTIONS(2131), + [anon_sym_as] = ACTIONS(2131), + [anon_sym_async] = ACTIONS(2131), + [anon_sym_await] = ACTIONS(2131), + [anon_sym_break] = ACTIONS(2131), + [anon_sym_const] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2131), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_enum] = ACTIONS(2131), + [anon_sym_fn] = ACTIONS(2131), + [anon_sym_for] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2131), + [anon_sym_impl] = ACTIONS(2131), + [anon_sym_let] = ACTIONS(2131), + [anon_sym_loop] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2131), + [anon_sym_mod] = ACTIONS(2131), + [anon_sym_pub] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_static] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2131), + [anon_sym_trait] = ACTIONS(2131), + [anon_sym_type] = ACTIONS(2131), + [anon_sym_union] = ACTIONS(2131), + [anon_sym_unsafe] = ACTIONS(2131), + [anon_sym_use] = ACTIONS(2131), + [anon_sym_where] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2131), + [sym_mutable_specifier] = ACTIONS(2131), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2131), + [sym_super] = ACTIONS(2131), + [sym_crate] = ACTIONS(2131), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [505] = { - [sym_delim_token_tree] = STATE(281), - [sym__delim_tokens] = STATE(281), - [sym__non_delim_token] = STATE(281), - [sym__literal] = STATE(281), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(281), - [sym_identifier] = ACTIONS(2125), + [504] = { + [sym__never_special_token] = STATE(518), + [sym_delim_token_tree] = STATE(518), + [sym__delim_tokens] = STATE(518), + [sym__non_delim_token] = STATE(518), + [sym__literal] = STATE(518), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(518), + [sym_identifier] = ACTIONS(2135), [anon_sym_LPAREN] = ACTIONS(2109), [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2115), [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2125), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [aux_sym__non_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_metavariable] = ACTIONS(2129), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [anon_sym_DOLLAR] = ACTIONS(2137), + [anon_sym_u8] = ACTIONS(2135), + [anon_sym_i8] = ACTIONS(2135), + [anon_sym_u16] = ACTIONS(2135), + [anon_sym_i16] = ACTIONS(2135), + [anon_sym_u32] = ACTIONS(2135), + [anon_sym_i32] = ACTIONS(2135), + [anon_sym_u64] = ACTIONS(2135), + [anon_sym_i64] = ACTIONS(2135), + [anon_sym_u128] = ACTIONS(2135), + [anon_sym_i128] = ACTIONS(2135), + [anon_sym_isize] = ACTIONS(2135), + [anon_sym_usize] = ACTIONS(2135), + [anon_sym_f32] = ACTIONS(2135), + [anon_sym_f64] = ACTIONS(2135), + [anon_sym_bool] = ACTIONS(2135), + [anon_sym_str] = ACTIONS(2135), + [anon_sym_char] = ACTIONS(2135), + [aux_sym__never_special_token_token1] = ACTIONS(2135), + [anon_sym_SQUOTE] = ACTIONS(2135), + [anon_sym_as] = ACTIONS(2135), + [anon_sym_async] = ACTIONS(2135), + [anon_sym_await] = ACTIONS(2135), + [anon_sym_break] = ACTIONS(2135), + [anon_sym_const] = ACTIONS(2135), + [anon_sym_continue] = ACTIONS(2135), + [anon_sym_default] = ACTIONS(2135), + [anon_sym_enum] = ACTIONS(2135), + [anon_sym_fn] = ACTIONS(2135), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2135), + [anon_sym_impl] = ACTIONS(2135), + [anon_sym_let] = ACTIONS(2135), + [anon_sym_loop] = ACTIONS(2135), + [anon_sym_match] = ACTIONS(2135), + [anon_sym_mod] = ACTIONS(2135), + [anon_sym_pub] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2135), + [anon_sym_static] = ACTIONS(2135), + [anon_sym_struct] = ACTIONS(2135), + [anon_sym_trait] = ACTIONS(2135), + [anon_sym_type] = ACTIONS(2135), + [anon_sym_union] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2135), + [anon_sym_use] = ACTIONS(2135), + [anon_sym_where] = ACTIONS(2135), + [anon_sym_while] = ACTIONS(2135), + [sym_mutable_specifier] = ACTIONS(2135), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2135), + [sym_super] = ACTIONS(2135), + [sym_crate] = ACTIONS(2135), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [506] = { - [sym_delim_token_tree] = STATE(281), - [sym__delim_tokens] = STATE(281), - [sym__non_delim_token] = STATE(281), - [sym__literal] = STATE(281), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(281), + [505] = { + [sym__never_special_token] = STATE(303), + [sym_delim_token_tree] = STATE(303), + [sym__delim_tokens] = STATE(303), + [sym__non_delim_token] = STATE(303), + [sym__literal] = STATE(303), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(303), [sym_identifier] = ACTIONS(2125), [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2127), [anon_sym_LBRACE] = ACTIONS(2111), [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_RBRACK] = ACTIONS(2139), + [anon_sym_DOLLAR] = ACTIONS(2129), [anon_sym_u8] = ACTIONS(2125), [anon_sym_i8] = ACTIONS(2125), [anon_sym_u16] = ACTIONS(2125), @@ -60646,7 +60629,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2125), [anon_sym_str] = ACTIONS(2125), [anon_sym_char] = ACTIONS(2125), - [aux_sym__non_special_token_token1] = ACTIONS(2125), + [aux_sym__never_special_token_token1] = ACTIONS(2125), [anon_sym_SQUOTE] = ACTIONS(2125), [anon_sym_as] = ACTIONS(2125), [anon_sym_async] = ACTIONS(2125), @@ -60676,34 +60659,109 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2125), [anon_sym_while] = ACTIONS(2125), [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2125), [sym_super] = ACTIONS(2125), [sym_crate] = ACTIONS(2125), - [sym_metavariable] = ACTIONS(2129), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), + [sym_block_comment] = ACTIONS(3), + }, + [506] = { + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_arm] = STATE(506), + [sym_match_pattern] = STATE(2349), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(547), + [aux_sym_match_block_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2144), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_u8] = ACTIONS(2150), + [anon_sym_i8] = ACTIONS(2150), + [anon_sym_u16] = ACTIONS(2150), + [anon_sym_i16] = ACTIONS(2150), + [anon_sym_u32] = ACTIONS(2150), + [anon_sym_i32] = ACTIONS(2150), + [anon_sym_u64] = ACTIONS(2150), + [anon_sym_i64] = ACTIONS(2150), + [anon_sym_u128] = ACTIONS(2150), + [anon_sym_i128] = ACTIONS(2150), + [anon_sym_isize] = ACTIONS(2150), + [anon_sym_usize] = ACTIONS(2150), + [anon_sym_f32] = ACTIONS(2150), + [anon_sym_f64] = ACTIONS(2150), + [anon_sym_bool] = ACTIONS(2150), + [anon_sym_str] = ACTIONS(2150), + [anon_sym_char] = ACTIONS(2150), + [anon_sym_const] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [anon_sym_POUND] = ACTIONS(2159), + [anon_sym_ref] = ACTIONS(2162), + [anon_sym_LT] = ACTIONS(2165), + [anon_sym_COLON_COLON] = ACTIONS(2168), + [anon_sym__] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2174), + [sym_mutable_specifier] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2183), + [sym_integer_literal] = ACTIONS(2186), + [aux_sym_string_literal_token1] = ACTIONS(2189), + [sym_char_literal] = ACTIONS(2186), + [anon_sym_true] = ACTIONS(2192), + [anon_sym_false] = ACTIONS(2192), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_metavariable] = ACTIONS(2198), + [sym_raw_string_literal] = ACTIONS(2186), + [sym_float_literal] = ACTIONS(2186), [sym_block_comment] = ACTIONS(3), }, [507] = { - [sym_delim_token_tree] = STATE(281), - [sym__delim_tokens] = STATE(281), - [sym__non_delim_token] = STATE(281), - [sym__literal] = STATE(281), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym__never_special_token] = STATE(303), + [sym_delim_token_tree] = STATE(303), + [sym__delim_tokens] = STATE(303), + [sym__non_delim_token] = STATE(303), + [sym__literal] = STATE(303), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(303), [sym_identifier] = ACTIONS(2125), [anon_sym_LPAREN] = ACTIONS(2109), [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2139), [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2133), - [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_DOLLAR] = ACTIONS(2129), [anon_sym_u8] = ACTIONS(2125), [anon_sym_i8] = ACTIONS(2125), [anon_sym_u16] = ACTIONS(2125), @@ -60721,7 +60779,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2125), [anon_sym_str] = ACTIONS(2125), [anon_sym_char] = ACTIONS(2125), - [aux_sym__non_special_token_token1] = ACTIONS(2125), + [aux_sym__never_special_token_token1] = ACTIONS(2125), [anon_sym_SQUOTE] = ACTIONS(2125), [anon_sym_as] = ACTIONS(2125), [anon_sym_async] = ACTIONS(2125), @@ -60751,184 +60809,109 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2125), [anon_sym_while] = ACTIONS(2125), [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2125), [sym_super] = ACTIONS(2125), [sym_crate] = ACTIONS(2125), - [sym_metavariable] = ACTIONS(2129), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, [508] = { - [sym_delim_token_tree] = STATE(281), - [sym__delim_tokens] = STATE(281), - [sym__non_delim_token] = STATE(281), - [sym__literal] = STATE(281), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(281), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2125), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [aux_sym__non_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_metavariable] = ACTIONS(2129), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_token_tree] = STATE(533), + [sym_token_repetition] = STATE(533), + [sym__never_special_token] = STATE(533), + [sym__literal] = STATE(533), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_repeat1] = STATE(533), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), + [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__never_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(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2201), + [sym_super] = ACTIONS(2201), + [sym_crate] = ACTIONS(2201), + [sym_metavariable] = ACTIONS(2213), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, [509] = { - [sym_delim_token_tree] = STATE(526), - [sym__delim_tokens] = STATE(526), - [sym__non_delim_token] = STATE(526), - [sym__literal] = STATE(526), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(526), - [sym_identifier] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2135), - [anon_sym_u8] = ACTIONS(2135), - [anon_sym_i8] = ACTIONS(2135), - [anon_sym_u16] = ACTIONS(2135), - [anon_sym_i16] = ACTIONS(2135), - [anon_sym_u32] = ACTIONS(2135), - [anon_sym_i32] = ACTIONS(2135), - [anon_sym_u64] = ACTIONS(2135), - [anon_sym_i64] = ACTIONS(2135), - [anon_sym_u128] = ACTIONS(2135), - [anon_sym_i128] = ACTIONS(2135), - [anon_sym_isize] = ACTIONS(2135), - [anon_sym_usize] = ACTIONS(2135), - [anon_sym_f32] = ACTIONS(2135), - [anon_sym_f64] = ACTIONS(2135), - [anon_sym_bool] = ACTIONS(2135), - [anon_sym_str] = ACTIONS(2135), - [anon_sym_char] = ACTIONS(2135), - [aux_sym__non_special_token_token1] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_as] = ACTIONS(2135), - [anon_sym_async] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2135), - [anon_sym_break] = ACTIONS(2135), - [anon_sym_const] = ACTIONS(2135), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_default] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(2135), - [anon_sym_fn] = ACTIONS(2135), - [anon_sym_for] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_impl] = ACTIONS(2135), - [anon_sym_let] = ACTIONS(2135), - [anon_sym_loop] = ACTIONS(2135), - [anon_sym_match] = ACTIONS(2135), - [anon_sym_mod] = ACTIONS(2135), - [anon_sym_pub] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2135), - [anon_sym_static] = ACTIONS(2135), - [anon_sym_struct] = ACTIONS(2135), - [anon_sym_trait] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_union] = ACTIONS(2135), - [anon_sym_unsafe] = ACTIONS(2135), - [anon_sym_use] = ACTIONS(2135), - [anon_sym_where] = ACTIONS(2135), - [anon_sym_while] = ACTIONS(2135), - [sym_mutable_specifier] = ACTIONS(2135), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2135), - [sym_super] = ACTIONS(2135), - [sym_crate] = ACTIONS(2135), - [sym_metavariable] = ACTIONS(2139), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), - [sym_block_comment] = ACTIONS(3), - }, - [510] = { - [sym_delim_token_tree] = STATE(281), - [sym__delim_tokens] = STATE(281), - [sym__non_delim_token] = STATE(281), - [sym__literal] = STATE(281), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(281), + [sym__never_special_token] = STATE(303), + [sym_delim_token_tree] = STATE(303), + [sym__delim_tokens] = STATE(303), + [sym__non_delim_token] = STATE(303), + [sym__literal] = STATE(303), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(303), [sym_identifier] = ACTIONS(2125), [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2133), + [anon_sym_RPAREN] = ACTIONS(2215), [anon_sym_LBRACE] = ACTIONS(2111), [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_DOLLAR] = ACTIONS(2129), [anon_sym_u8] = ACTIONS(2125), [anon_sym_i8] = ACTIONS(2125), [anon_sym_u16] = ACTIONS(2125), @@ -60946,7 +60929,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2125), [anon_sym_str] = ACTIONS(2125), [anon_sym_char] = ACTIONS(2125), - [aux_sym__non_special_token_token1] = ACTIONS(2125), + [aux_sym__never_special_token_token1] = ACTIONS(2125), [anon_sym_SQUOTE] = ACTIONS(2125), [anon_sym_as] = ACTIONS(2125), [anon_sym_async] = ACTIONS(2125), @@ -60976,409 +60959,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2125), [anon_sym_while] = ACTIONS(2125), [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2125), [sym_super] = ACTIONS(2125), [sym_crate] = ACTIONS(2125), - [sym_metavariable] = ACTIONS(2129), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), - [sym_block_comment] = ACTIONS(3), - }, - [511] = { - [sym_delim_token_tree] = STATE(527), - [sym__delim_tokens] = STATE(527), - [sym__non_delim_token] = STATE(527), - [sym__literal] = STATE(527), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(527), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2141), - [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(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2143), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), - [sym_block_comment] = ACTIONS(3), - }, - [512] = { - [sym_delim_token_tree] = STATE(528), - [sym__delim_tokens] = STATE(528), - [sym__non_delim_token] = STATE(528), - [sym__literal] = STATE(528), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(528), - [sym_identifier] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2137), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_u8] = ACTIONS(2145), - [anon_sym_i8] = ACTIONS(2145), - [anon_sym_u16] = ACTIONS(2145), - [anon_sym_i16] = ACTIONS(2145), - [anon_sym_u32] = ACTIONS(2145), - [anon_sym_i32] = ACTIONS(2145), - [anon_sym_u64] = ACTIONS(2145), - [anon_sym_i64] = ACTIONS(2145), - [anon_sym_u128] = ACTIONS(2145), - [anon_sym_i128] = ACTIONS(2145), - [anon_sym_isize] = ACTIONS(2145), - [anon_sym_usize] = ACTIONS(2145), - [anon_sym_f32] = ACTIONS(2145), - [anon_sym_f64] = ACTIONS(2145), - [anon_sym_bool] = ACTIONS(2145), - [anon_sym_str] = ACTIONS(2145), - [anon_sym_char] = ACTIONS(2145), - [aux_sym__non_special_token_token1] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_as] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [anon_sym_fn] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_impl] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_loop] = ACTIONS(2145), - [anon_sym_match] = ACTIONS(2145), - [anon_sym_mod] = ACTIONS(2145), - [anon_sym_pub] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_struct] = ACTIONS(2145), - [anon_sym_trait] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_union] = ACTIONS(2145), - [anon_sym_unsafe] = ACTIONS(2145), - [anon_sym_use] = ACTIONS(2145), - [anon_sym_where] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [sym_mutable_specifier] = ACTIONS(2145), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_crate] = ACTIONS(2145), - [sym_metavariable] = ACTIONS(2147), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), - [sym_block_comment] = ACTIONS(3), - }, - [513] = { - [sym_delim_token_tree] = STATE(520), - [sym__delim_tokens] = STATE(520), - [sym__non_delim_token] = STATE(520), - [sym__literal] = STATE(520), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(520), - [sym_identifier] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2149), - [anon_sym_u8] = ACTIONS(2149), - [anon_sym_i8] = ACTIONS(2149), - [anon_sym_u16] = ACTIONS(2149), - [anon_sym_i16] = ACTIONS(2149), - [anon_sym_u32] = ACTIONS(2149), - [anon_sym_i32] = ACTIONS(2149), - [anon_sym_u64] = ACTIONS(2149), - [anon_sym_i64] = ACTIONS(2149), - [anon_sym_u128] = ACTIONS(2149), - [anon_sym_i128] = ACTIONS(2149), - [anon_sym_isize] = ACTIONS(2149), - [anon_sym_usize] = ACTIONS(2149), - [anon_sym_f32] = ACTIONS(2149), - [anon_sym_f64] = ACTIONS(2149), - [anon_sym_bool] = ACTIONS(2149), - [anon_sym_str] = ACTIONS(2149), - [anon_sym_char] = ACTIONS(2149), - [aux_sym__non_special_token_token1] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_as] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_default] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [anon_sym_fn] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_impl] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_loop] = ACTIONS(2149), - [anon_sym_match] = ACTIONS(2149), - [anon_sym_mod] = ACTIONS(2149), - [anon_sym_pub] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_struct] = ACTIONS(2149), - [anon_sym_trait] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_union] = ACTIONS(2149), - [anon_sym_unsafe] = ACTIONS(2149), - [anon_sym_use] = ACTIONS(2149), - [anon_sym_where] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [sym_mutable_specifier] = ACTIONS(2149), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_crate] = ACTIONS(2149), - [sym_metavariable] = ACTIONS(2151), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), - [sym_block_comment] = ACTIONS(3), - }, - [514] = { - [sym_delim_token_tree] = STATE(516), - [sym__delim_tokens] = STATE(516), - [sym__non_delim_token] = STATE(516), - [sym__literal] = STATE(516), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(516), - [sym_identifier] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2153), - [anon_sym_u8] = ACTIONS(2153), - [anon_sym_i8] = ACTIONS(2153), - [anon_sym_u16] = ACTIONS(2153), - [anon_sym_i16] = ACTIONS(2153), - [anon_sym_u32] = ACTIONS(2153), - [anon_sym_i32] = ACTIONS(2153), - [anon_sym_u64] = ACTIONS(2153), - [anon_sym_i64] = ACTIONS(2153), - [anon_sym_u128] = ACTIONS(2153), - [anon_sym_i128] = ACTIONS(2153), - [anon_sym_isize] = ACTIONS(2153), - [anon_sym_usize] = ACTIONS(2153), - [anon_sym_f32] = ACTIONS(2153), - [anon_sym_f64] = ACTIONS(2153), - [anon_sym_bool] = ACTIONS(2153), - [anon_sym_str] = ACTIONS(2153), - [anon_sym_char] = ACTIONS(2153), - [aux_sym__non_special_token_token1] = ACTIONS(2153), - [anon_sym_SQUOTE] = ACTIONS(2153), - [anon_sym_as] = ACTIONS(2153), - [anon_sym_async] = ACTIONS(2153), - [anon_sym_await] = ACTIONS(2153), - [anon_sym_break] = ACTIONS(2153), - [anon_sym_const] = ACTIONS(2153), - [anon_sym_continue] = ACTIONS(2153), - [anon_sym_default] = ACTIONS(2153), - [anon_sym_enum] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(2153), - [anon_sym_for] = ACTIONS(2153), - [anon_sym_if] = ACTIONS(2153), - [anon_sym_impl] = ACTIONS(2153), - [anon_sym_let] = ACTIONS(2153), - [anon_sym_loop] = ACTIONS(2153), - [anon_sym_match] = ACTIONS(2153), - [anon_sym_mod] = ACTIONS(2153), - [anon_sym_pub] = ACTIONS(2153), - [anon_sym_return] = ACTIONS(2153), - [anon_sym_static] = ACTIONS(2153), - [anon_sym_struct] = ACTIONS(2153), - [anon_sym_trait] = ACTIONS(2153), - [anon_sym_type] = ACTIONS(2153), - [anon_sym_union] = ACTIONS(2153), - [anon_sym_unsafe] = ACTIONS(2153), - [anon_sym_use] = ACTIONS(2153), - [anon_sym_where] = ACTIONS(2153), - [anon_sym_while] = ACTIONS(2153), - [sym_mutable_specifier] = ACTIONS(2153), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2153), - [sym_super] = ACTIONS(2153), - [sym_crate] = ACTIONS(2153), - [sym_metavariable] = ACTIONS(2155), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), - [sym_block_comment] = ACTIONS(3), - }, - [515] = { - [sym_attribute_item] = STATE(546), - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_macro_invocation] = STATE(2506), - [sym_scoped_identifier] = STATE(1571), - [sym_scoped_type_identifier] = STATE(1936), - [sym_match_arm] = STATE(515), - [sym_match_pattern] = STATE(2506), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1924), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_enum_variant_list_repeat1] = STATE(546), - [aux_sym_match_block_repeat1] = STATE(515), - [sym_identifier] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_u8] = ACTIONS(2166), - [anon_sym_i8] = ACTIONS(2166), - [anon_sym_u16] = ACTIONS(2166), - [anon_sym_i16] = ACTIONS(2166), - [anon_sym_u32] = ACTIONS(2166), - [anon_sym_i32] = ACTIONS(2166), - [anon_sym_u64] = ACTIONS(2166), - [anon_sym_i64] = ACTIONS(2166), - [anon_sym_u128] = ACTIONS(2166), - [anon_sym_i128] = ACTIONS(2166), - [anon_sym_isize] = ACTIONS(2166), - [anon_sym_usize] = ACTIONS(2166), - [anon_sym_f32] = ACTIONS(2166), - [anon_sym_f64] = ACTIONS(2166), - [anon_sym_bool] = ACTIONS(2166), - [anon_sym_str] = ACTIONS(2166), - [anon_sym_char] = ACTIONS(2166), - [anon_sym_const] = ACTIONS(2169), - [anon_sym_default] = ACTIONS(2172), - [anon_sym_union] = ACTIONS(2172), - [anon_sym_POUND] = ACTIONS(2175), - [anon_sym_ref] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_COLON_COLON] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2187), - [anon_sym_AMP] = ACTIONS(2190), - [sym_mutable_specifier] = ACTIONS(2193), - [anon_sym_DOT_DOT] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2199), - [sym_integer_literal] = ACTIONS(2202), - [aux_sym_string_literal_token1] = ACTIONS(2205), - [sym_char_literal] = ACTIONS(2202), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2211), - [sym_super] = ACTIONS(2211), - [sym_crate] = ACTIONS(2211), - [sym_metavariable] = ACTIONS(2214), - [sym_raw_string_literal] = ACTIONS(2202), - [sym_float_literal] = ACTIONS(2202), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [516] = { - [sym_delim_token_tree] = STATE(281), - [sym__delim_tokens] = STATE(281), - [sym__non_delim_token] = STATE(281), - [sym__literal] = STATE(281), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(281), + [510] = { + [sym__never_special_token] = STATE(303), + [sym_delim_token_tree] = STATE(303), + [sym__delim_tokens] = STATE(303), + [sym__non_delim_token] = STATE(303), + [sym__literal] = STATE(303), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(303), [sym_identifier] = ACTIONS(2125), [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2139), [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2131), [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_DOLLAR] = ACTIONS(2129), [anon_sym_u8] = ACTIONS(2125), [anon_sym_i8] = ACTIONS(2125), [anon_sym_u16] = ACTIONS(2125), @@ -61396,7 +61004,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2125), [anon_sym_str] = ACTIONS(2125), [anon_sym_char] = ACTIONS(2125), - [aux_sym__non_special_token_token1] = ACTIONS(2125), + [aux_sym__never_special_token_token1] = ACTIONS(2125), [anon_sym_SQUOTE] = ACTIONS(2125), [anon_sym_as] = ACTIONS(2125), [anon_sym_async] = ACTIONS(2125), @@ -61426,34 +61034,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2125), [anon_sym_while] = ACTIONS(2125), [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2125), [sym_super] = ACTIONS(2125), [sym_crate] = ACTIONS(2125), - [sym_metavariable] = ACTIONS(2129), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [517] = { - [sym_delim_token_tree] = STATE(529), - [sym__delim_tokens] = STATE(529), - [sym__non_delim_token] = STATE(529), - [sym__literal] = STATE(529), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(529), + [511] = { + [sym_token_tree] = STATE(540), + [sym_token_repetition] = STATE(540), + [sym__never_special_token] = STATE(540), + [sym__literal] = STATE(540), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_repeat1] = STATE(540), [sym_identifier] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2209), [anon_sym_RBRACK] = ACTIONS(2219), - [anon_sym_DOLLAR] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2211), [anon_sym_u8] = ACTIONS(2217), [anon_sym_i8] = ACTIONS(2217), [anon_sym_u16] = ACTIONS(2217), @@ -61471,7 +61078,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2217), [anon_sym_str] = ACTIONS(2217), [anon_sym_char] = ACTIONS(2217), - [aux_sym__non_special_token_token1] = ACTIONS(2217), + [aux_sym__never_special_token_token1] = ACTIONS(2217), [anon_sym_SQUOTE] = ACTIONS(2217), [anon_sym_as] = ACTIONS(2217), [anon_sym_async] = ACTIONS(2217), @@ -61501,34 +61108,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2217), [anon_sym_while] = ACTIONS(2217), [sym_mutable_specifier] = ACTIONS(2217), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2217), [sym_super] = ACTIONS(2217), [sym_crate] = ACTIONS(2217), [sym_metavariable] = ACTIONS(2221), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, - [518] = { - [sym_delim_token_tree] = STATE(525), - [sym__delim_tokens] = STATE(525), - [sym__non_delim_token] = STATE(525), - [sym__literal] = STATE(525), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(525), + [512] = { + [sym_token_tree] = STATE(545), + [sym_token_repetition] = STATE(545), + [sym__never_special_token] = STATE(545), + [sym__literal] = STATE(545), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_repeat1] = STATE(545), [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2207), [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), [anon_sym_u8] = ACTIONS(2223), [anon_sym_i8] = ACTIONS(2223), [anon_sym_u16] = ACTIONS(2223), @@ -61546,7 +61153,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2223), [anon_sym_str] = ACTIONS(2223), [anon_sym_char] = ACTIONS(2223), - [aux_sym__non_special_token_token1] = ACTIONS(2223), + [aux_sym__never_special_token_token1] = ACTIONS(2223), [anon_sym_SQUOTE] = ACTIONS(2223), [anon_sym_as] = ACTIONS(2223), [anon_sym_async] = ACTIONS(2223), @@ -61576,34 +61183,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2223), [anon_sym_while] = ACTIONS(2223), [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2223), [sym_super] = ACTIONS(2223), [sym_crate] = ACTIONS(2223), [sym_metavariable] = ACTIONS(2225), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, - [519] = { - [sym_delim_token_tree] = STATE(530), - [sym__delim_tokens] = STATE(530), - [sym__non_delim_token] = STATE(530), - [sym__literal] = STATE(530), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(530), + [513] = { + [sym__never_special_token] = STATE(502), + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(502), [sym_identifier] = ACTIONS(2227), [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2219), + [anon_sym_RPAREN] = ACTIONS(2229), [anon_sym_LBRACE] = ACTIONS(2111), [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2227), + [anon_sym_DOLLAR] = ACTIONS(2231), [anon_sym_u8] = ACTIONS(2227), [anon_sym_i8] = ACTIONS(2227), [anon_sym_u16] = ACTIONS(2227), @@ -61621,7 +61229,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2227), [anon_sym_str] = ACTIONS(2227), [anon_sym_char] = ACTIONS(2227), - [aux_sym__non_special_token_token1] = ACTIONS(2227), + [aux_sym__never_special_token_token1] = ACTIONS(2227), [anon_sym_SQUOTE] = ACTIONS(2227), [anon_sym_as] = ACTIONS(2227), [anon_sym_async] = ACTIONS(2227), @@ -61651,34 +61259,109 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2227), [anon_sym_while] = ACTIONS(2227), [sym_mutable_specifier] = ACTIONS(2227), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2227), [sym_super] = ACTIONS(2227), [sym_crate] = ACTIONS(2227), - [sym_metavariable] = ACTIONS(2229), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [520] = { - [sym_delim_token_tree] = STATE(281), - [sym__delim_tokens] = STATE(281), - [sym__non_delim_token] = STATE(281), - [sym__literal] = STATE(281), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(281), + [514] = { + [sym_token_tree] = STATE(542), + [sym_token_repetition] = STATE(542), + [sym__never_special_token] = STATE(542), + [sym__literal] = STATE(542), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_repeat1] = STATE(542), + [sym_identifier] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2233), + [anon_sym_i8] = ACTIONS(2233), + [anon_sym_u16] = ACTIONS(2233), + [anon_sym_i16] = ACTIONS(2233), + [anon_sym_u32] = ACTIONS(2233), + [anon_sym_i32] = ACTIONS(2233), + [anon_sym_u64] = ACTIONS(2233), + [anon_sym_i64] = ACTIONS(2233), + [anon_sym_u128] = ACTIONS(2233), + [anon_sym_i128] = ACTIONS(2233), + [anon_sym_isize] = ACTIONS(2233), + [anon_sym_usize] = ACTIONS(2233), + [anon_sym_f32] = ACTIONS(2233), + [anon_sym_f64] = ACTIONS(2233), + [anon_sym_bool] = ACTIONS(2233), + [anon_sym_str] = ACTIONS(2233), + [anon_sym_char] = ACTIONS(2233), + [aux_sym__never_special_token_token1] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_as] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_await] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_default] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [anon_sym_fn] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_impl] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_loop] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_mod] = ACTIONS(2233), + [anon_sym_pub] = ACTIONS(2233), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_struct] = ACTIONS(2233), + [anon_sym_trait] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_union] = ACTIONS(2233), + [anon_sym_unsafe] = ACTIONS(2233), + [anon_sym_use] = ACTIONS(2233), + [anon_sym_where] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [sym_mutable_specifier] = ACTIONS(2233), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2233), + [sym_super] = ACTIONS(2233), + [sym_crate] = ACTIONS(2233), + [sym_metavariable] = ACTIONS(2235), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), + [sym_block_comment] = ACTIONS(3), + }, + [515] = { + [sym__never_special_token] = STATE(303), + [sym_delim_token_tree] = STATE(303), + [sym__delim_tokens] = STATE(303), + [sym__non_delim_token] = STATE(303), + [sym__literal] = STATE(303), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(303), [sym_identifier] = ACTIONS(2125), [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2131), [anon_sym_LBRACE] = ACTIONS(2111), [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_RBRACK] = ACTIONS(2237), + [anon_sym_DOLLAR] = ACTIONS(2129), [anon_sym_u8] = ACTIONS(2125), [anon_sym_i8] = ACTIONS(2125), [anon_sym_u16] = ACTIONS(2125), @@ -61696,7 +61379,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2125), [anon_sym_str] = ACTIONS(2125), [anon_sym_char] = ACTIONS(2125), - [aux_sym__non_special_token_token1] = ACTIONS(2125), + [aux_sym__never_special_token_token1] = ACTIONS(2125), [anon_sym_SQUOTE] = ACTIONS(2125), [anon_sym_as] = ACTIONS(2125), [anon_sym_async] = ACTIONS(2125), @@ -61726,334 +61409,259 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2125), [anon_sym_while] = ACTIONS(2125), [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2125), [sym_super] = ACTIONS(2125), [sym_crate] = ACTIONS(2125), - [sym_metavariable] = ACTIONS(2129), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), - [sym_block_comment] = ACTIONS(3), - }, - [521] = { - [sym_delim_token_tree] = STATE(507), - [sym__delim_tokens] = STATE(507), - [sym__non_delim_token] = STATE(507), - [sym__literal] = STATE(507), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(2231), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2121), - [anon_sym_DOLLAR] = ACTIONS(2231), - [anon_sym_u8] = ACTIONS(2231), - [anon_sym_i8] = ACTIONS(2231), - [anon_sym_u16] = ACTIONS(2231), - [anon_sym_i16] = ACTIONS(2231), - [anon_sym_u32] = ACTIONS(2231), - [anon_sym_i32] = ACTIONS(2231), - [anon_sym_u64] = ACTIONS(2231), - [anon_sym_i64] = ACTIONS(2231), - [anon_sym_u128] = ACTIONS(2231), - [anon_sym_i128] = ACTIONS(2231), - [anon_sym_isize] = ACTIONS(2231), - [anon_sym_usize] = ACTIONS(2231), - [anon_sym_f32] = ACTIONS(2231), - [anon_sym_f64] = ACTIONS(2231), - [anon_sym_bool] = ACTIONS(2231), - [anon_sym_str] = ACTIONS(2231), - [anon_sym_char] = ACTIONS(2231), - [aux_sym__non_special_token_token1] = ACTIONS(2231), - [anon_sym_SQUOTE] = ACTIONS(2231), - [anon_sym_as] = ACTIONS(2231), - [anon_sym_async] = ACTIONS(2231), - [anon_sym_await] = ACTIONS(2231), - [anon_sym_break] = ACTIONS(2231), - [anon_sym_const] = ACTIONS(2231), - [anon_sym_continue] = ACTIONS(2231), - [anon_sym_default] = ACTIONS(2231), - [anon_sym_enum] = ACTIONS(2231), - [anon_sym_fn] = ACTIONS(2231), - [anon_sym_for] = ACTIONS(2231), - [anon_sym_if] = ACTIONS(2231), - [anon_sym_impl] = ACTIONS(2231), - [anon_sym_let] = ACTIONS(2231), - [anon_sym_loop] = ACTIONS(2231), - [anon_sym_match] = ACTIONS(2231), - [anon_sym_mod] = ACTIONS(2231), - [anon_sym_pub] = ACTIONS(2231), - [anon_sym_return] = ACTIONS(2231), - [anon_sym_static] = ACTIONS(2231), - [anon_sym_struct] = ACTIONS(2231), - [anon_sym_trait] = ACTIONS(2231), - [anon_sym_type] = ACTIONS(2231), - [anon_sym_union] = ACTIONS(2231), - [anon_sym_unsafe] = ACTIONS(2231), - [anon_sym_use] = ACTIONS(2231), - [anon_sym_where] = ACTIONS(2231), - [anon_sym_while] = ACTIONS(2231), - [sym_mutable_specifier] = ACTIONS(2231), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2231), - [sym_super] = ACTIONS(2231), - [sym_crate] = ACTIONS(2231), - [sym_metavariable] = ACTIONS(2233), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [522] = { - [sym_delim_token_tree] = STATE(503), - [sym__delim_tokens] = STATE(503), - [sym__non_delim_token] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(503), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2235), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [516] = { + [sym_token_tree] = STATE(302), + [sym_token_repetition] = STATE(302), + [sym__never_special_token] = STATE(302), + [sym__literal] = STATE(302), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_RBRACK] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2239), + [anon_sym_i8] = ACTIONS(2239), + [anon_sym_u16] = ACTIONS(2239), + [anon_sym_i16] = ACTIONS(2239), + [anon_sym_u32] = ACTIONS(2239), + [anon_sym_i32] = ACTIONS(2239), + [anon_sym_u64] = ACTIONS(2239), + [anon_sym_i64] = ACTIONS(2239), + [anon_sym_u128] = ACTIONS(2239), + [anon_sym_i128] = ACTIONS(2239), + [anon_sym_isize] = ACTIONS(2239), + [anon_sym_usize] = ACTIONS(2239), + [anon_sym_f32] = ACTIONS(2239), + [anon_sym_f64] = ACTIONS(2239), + [anon_sym_bool] = ACTIONS(2239), + [anon_sym_str] = ACTIONS(2239), + [anon_sym_char] = ACTIONS(2239), + [aux_sym__never_special_token_token1] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_as] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), + [anon_sym_fn] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_impl] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_loop] = ACTIONS(2239), + [anon_sym_match] = ACTIONS(2239), + [anon_sym_mod] = ACTIONS(2239), + [anon_sym_pub] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_struct] = ACTIONS(2239), + [anon_sym_trait] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_union] = ACTIONS(2239), + [anon_sym_unsafe] = ACTIONS(2239), + [anon_sym_use] = ACTIONS(2239), + [anon_sym_where] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [sym_mutable_specifier] = ACTIONS(2239), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_crate] = ACTIONS(2239), + [sym_metavariable] = ACTIONS(2243), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, - [523] = { - [sym_delim_token_tree] = STATE(505), - [sym__delim_tokens] = STATE(505), - [sym__non_delim_token] = STATE(505), - [sym__literal] = STATE(505), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(505), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2241), - [anon_sym_u8] = ACTIONS(2241), - [anon_sym_i8] = ACTIONS(2241), - [anon_sym_u16] = ACTIONS(2241), - [anon_sym_i16] = ACTIONS(2241), - [anon_sym_u32] = ACTIONS(2241), - [anon_sym_i32] = ACTIONS(2241), - [anon_sym_u64] = ACTIONS(2241), - [anon_sym_i64] = ACTIONS(2241), - [anon_sym_u128] = ACTIONS(2241), - [anon_sym_i128] = ACTIONS(2241), - [anon_sym_isize] = ACTIONS(2241), - [anon_sym_usize] = ACTIONS(2241), - [anon_sym_f32] = ACTIONS(2241), - [anon_sym_f64] = ACTIONS(2241), - [anon_sym_bool] = ACTIONS(2241), - [anon_sym_str] = ACTIONS(2241), - [anon_sym_char] = ACTIONS(2241), - [aux_sym__non_special_token_token1] = ACTIONS(2241), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_await] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_default] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [anon_sym_fn] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_impl] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_loop] = ACTIONS(2241), - [anon_sym_match] = ACTIONS(2241), - [anon_sym_mod] = ACTIONS(2241), - [anon_sym_pub] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_static] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(2241), - [anon_sym_trait] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_union] = ACTIONS(2241), - [anon_sym_unsafe] = ACTIONS(2241), - [anon_sym_use] = ACTIONS(2241), - [anon_sym_where] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [sym_mutable_specifier] = ACTIONS(2241), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2241), - [sym_super] = ACTIONS(2241), - [sym_crate] = ACTIONS(2241), + [517] = { + [sym_token_tree] = STATE(302), + [sym_token_repetition] = STATE(302), + [sym__never_special_token] = STATE(302), + [sym__literal] = STATE(302), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2239), + [anon_sym_i8] = ACTIONS(2239), + [anon_sym_u16] = ACTIONS(2239), + [anon_sym_i16] = ACTIONS(2239), + [anon_sym_u32] = ACTIONS(2239), + [anon_sym_i32] = ACTIONS(2239), + [anon_sym_u64] = ACTIONS(2239), + [anon_sym_i64] = ACTIONS(2239), + [anon_sym_u128] = ACTIONS(2239), + [anon_sym_i128] = ACTIONS(2239), + [anon_sym_isize] = ACTIONS(2239), + [anon_sym_usize] = ACTIONS(2239), + [anon_sym_f32] = ACTIONS(2239), + [anon_sym_f64] = ACTIONS(2239), + [anon_sym_bool] = ACTIONS(2239), + [anon_sym_str] = ACTIONS(2239), + [anon_sym_char] = ACTIONS(2239), + [aux_sym__never_special_token_token1] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_as] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), + [anon_sym_fn] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_impl] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_loop] = ACTIONS(2239), + [anon_sym_match] = ACTIONS(2239), + [anon_sym_mod] = ACTIONS(2239), + [anon_sym_pub] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_struct] = ACTIONS(2239), + [anon_sym_trait] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_union] = ACTIONS(2239), + [anon_sym_unsafe] = ACTIONS(2239), + [anon_sym_use] = ACTIONS(2239), + [anon_sym_where] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [sym_mutable_specifier] = ACTIONS(2239), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_crate] = ACTIONS(2239), [sym_metavariable] = ACTIONS(2243), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, - [524] = { - [sym_delim_token_tree] = STATE(506), - [sym__delim_tokens] = STATE(506), - [sym__non_delim_token] = STATE(506), - [sym__literal] = STATE(506), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2245), + [518] = { + [sym__never_special_token] = STATE(303), + [sym_delim_token_tree] = STATE(303), + [sym__delim_tokens] = STATE(303), + [sym__non_delim_token] = STATE(303), + [sym__literal] = STATE(303), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(2125), [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2237), [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2215), [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_u8] = ACTIONS(2245), - [anon_sym_i8] = ACTIONS(2245), - [anon_sym_u16] = ACTIONS(2245), - [anon_sym_i16] = ACTIONS(2245), - [anon_sym_u32] = ACTIONS(2245), - [anon_sym_i32] = ACTIONS(2245), - [anon_sym_u64] = ACTIONS(2245), - [anon_sym_i64] = ACTIONS(2245), - [anon_sym_u128] = ACTIONS(2245), - [anon_sym_i128] = ACTIONS(2245), - [anon_sym_isize] = ACTIONS(2245), - [anon_sym_usize] = ACTIONS(2245), - [anon_sym_f32] = ACTIONS(2245), - [anon_sym_f64] = ACTIONS(2245), - [anon_sym_bool] = ACTIONS(2245), - [anon_sym_str] = ACTIONS(2245), - [anon_sym_char] = ACTIONS(2245), - [aux_sym__non_special_token_token1] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_as] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [anon_sym_fn] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_impl] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_loop] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_mod] = ACTIONS(2245), - [anon_sym_pub] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_struct] = ACTIONS(2245), - [anon_sym_trait] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_union] = ACTIONS(2245), - [anon_sym_unsafe] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_where] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [sym_mutable_specifier] = ACTIONS(2245), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2245), - [sym_super] = ACTIONS(2245), - [sym_crate] = ACTIONS(2245), - [sym_metavariable] = ACTIONS(2247), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [anon_sym_DOLLAR] = ACTIONS(2129), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__never_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [525] = { - [sym_delim_token_tree] = STATE(281), - [sym__delim_tokens] = STATE(281), - [sym__non_delim_token] = STATE(281), - [sym__literal] = STATE(281), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(281), + [519] = { + [sym__never_special_token] = STATE(303), + [sym_delim_token_tree] = STATE(303), + [sym__delim_tokens] = STATE(303), + [sym__non_delim_token] = STATE(303), + [sym__literal] = STATE(303), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(303), [sym_identifier] = ACTIONS(2125), [anon_sym_LPAREN] = ACTIONS(2109), [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2237), [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_DOLLAR] = ACTIONS(2129), [anon_sym_u8] = ACTIONS(2125), [anon_sym_i8] = ACTIONS(2125), [anon_sym_u16] = ACTIONS(2125), @@ -62071,7 +61679,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2125), [anon_sym_str] = ACTIONS(2125), [anon_sym_char] = ACTIONS(2125), - [aux_sym__non_special_token_token1] = ACTIONS(2125), + [aux_sym__never_special_token_token1] = ACTIONS(2125), [anon_sym_SQUOTE] = ACTIONS(2125), [anon_sym_as] = ACTIONS(2125), [anon_sym_async] = ACTIONS(2125), @@ -62101,34 +61709,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2125), [anon_sym_while] = ACTIONS(2125), [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2125), [sym_super] = ACTIONS(2125), [sym_crate] = ACTIONS(2125), - [sym_metavariable] = ACTIONS(2129), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [526] = { - [sym_delim_token_tree] = STATE(281), - [sym__delim_tokens] = STATE(281), - [sym__non_delim_token] = STATE(281), - [sym__literal] = STATE(281), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(281), + [520] = { + [sym__never_special_token] = STATE(303), + [sym_delim_token_tree] = STATE(303), + [sym__delim_tokens] = STATE(303), + [sym__non_delim_token] = STATE(303), + [sym__literal] = STATE(303), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(303), [sym_identifier] = ACTIONS(2125), [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2251), [anon_sym_LBRACE] = ACTIONS(2111), [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_RBRACK] = ACTIONS(2215), + [anon_sym_DOLLAR] = ACTIONS(2129), [anon_sym_u8] = ACTIONS(2125), [anon_sym_i8] = ACTIONS(2125), [anon_sym_u16] = ACTIONS(2125), @@ -62146,7 +61754,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2125), [anon_sym_str] = ACTIONS(2125), [anon_sym_char] = ACTIONS(2125), - [aux_sym__non_special_token_token1] = ACTIONS(2125), + [aux_sym__never_special_token_token1] = ACTIONS(2125), [anon_sym_SQUOTE] = ACTIONS(2125), [anon_sym_as] = ACTIONS(2125), [anon_sym_async] = ACTIONS(2125), @@ -62176,34 +61784,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2125), [anon_sym_while] = ACTIONS(2125), [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2125), [sym_super] = ACTIONS(2125), [sym_crate] = ACTIONS(2125), - [sym_metavariable] = ACTIONS(2129), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [527] = { - [sym_delim_token_tree] = STATE(281), - [sym__delim_tokens] = STATE(281), - [sym__non_delim_token] = STATE(281), - [sym__literal] = STATE(281), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(281), + [521] = { + [sym__never_special_token] = STATE(303), + [sym_delim_token_tree] = STATE(303), + [sym__delim_tokens] = STATE(303), + [sym__non_delim_token] = STATE(303), + [sym__literal] = STATE(303), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(303), [sym_identifier] = ACTIONS(2125), [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2237), [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2251), [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_DOLLAR] = ACTIONS(2129), [anon_sym_u8] = ACTIONS(2125), [anon_sym_i8] = ACTIONS(2125), [anon_sym_u16] = ACTIONS(2125), @@ -62221,7 +61829,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2125), [anon_sym_str] = ACTIONS(2125), [anon_sym_char] = ACTIONS(2125), - [aux_sym__non_special_token_token1] = ACTIONS(2125), + [aux_sym__never_special_token_token1] = ACTIONS(2125), [anon_sym_SQUOTE] = ACTIONS(2125), [anon_sym_as] = ACTIONS(2125), [anon_sym_async] = ACTIONS(2125), @@ -62251,34 +61859,184 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2125), [anon_sym_while] = ACTIONS(2125), [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2125), [sym_super] = ACTIONS(2125), [sym_crate] = ACTIONS(2125), - [sym_metavariable] = ACTIONS(2129), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [528] = { - [sym_delim_token_tree] = STATE(281), - [sym__delim_tokens] = STATE(281), - [sym__non_delim_token] = STATE(281), - [sym__literal] = STATE(281), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(281), + [522] = { + [sym__never_special_token] = STATE(505), + [sym_delim_token_tree] = STATE(505), + [sym__delim_tokens] = STATE(505), + [sym__non_delim_token] = STATE(505), + [sym__literal] = STATE(505), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_RBRACK] = ACTIONS(2247), + [anon_sym_DOLLAR] = ACTIONS(2249), + [anon_sym_u8] = ACTIONS(2245), + [anon_sym_i8] = ACTIONS(2245), + [anon_sym_u16] = ACTIONS(2245), + [anon_sym_i16] = ACTIONS(2245), + [anon_sym_u32] = ACTIONS(2245), + [anon_sym_i32] = ACTIONS(2245), + [anon_sym_u64] = ACTIONS(2245), + [anon_sym_i64] = ACTIONS(2245), + [anon_sym_u128] = ACTIONS(2245), + [anon_sym_i128] = ACTIONS(2245), + [anon_sym_isize] = ACTIONS(2245), + [anon_sym_usize] = ACTIONS(2245), + [anon_sym_f32] = ACTIONS(2245), + [anon_sym_f64] = ACTIONS(2245), + [anon_sym_bool] = ACTIONS(2245), + [anon_sym_str] = ACTIONS(2245), + [anon_sym_char] = ACTIONS(2245), + [aux_sym__never_special_token_token1] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_as] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_fn] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_impl] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_loop] = ACTIONS(2245), + [anon_sym_match] = ACTIONS(2245), + [anon_sym_mod] = ACTIONS(2245), + [anon_sym_pub] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_struct] = ACTIONS(2245), + [anon_sym_trait] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_union] = ACTIONS(2245), + [anon_sym_unsafe] = ACTIONS(2245), + [anon_sym_use] = ACTIONS(2245), + [anon_sym_where] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [sym_mutable_specifier] = ACTIONS(2245), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2245), + [sym_super] = ACTIONS(2245), + [sym_crate] = ACTIONS(2245), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), + [sym_block_comment] = ACTIONS(3), + }, + [523] = { + [sym__never_special_token] = STATE(507), + [sym_delim_token_tree] = STATE(507), + [sym__delim_tokens] = STATE(507), + [sym__non_delim_token] = STATE(507), + [sym__literal] = STATE(507), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(507), + [sym_identifier] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2253), + [anon_sym_u8] = ACTIONS(2251), + [anon_sym_i8] = ACTIONS(2251), + [anon_sym_u16] = ACTIONS(2251), + [anon_sym_i16] = ACTIONS(2251), + [anon_sym_u32] = ACTIONS(2251), + [anon_sym_i32] = ACTIONS(2251), + [anon_sym_u64] = ACTIONS(2251), + [anon_sym_i64] = ACTIONS(2251), + [anon_sym_u128] = ACTIONS(2251), + [anon_sym_i128] = ACTIONS(2251), + [anon_sym_isize] = ACTIONS(2251), + [anon_sym_usize] = ACTIONS(2251), + [anon_sym_f32] = ACTIONS(2251), + [anon_sym_f64] = ACTIONS(2251), + [anon_sym_bool] = ACTIONS(2251), + [anon_sym_str] = ACTIONS(2251), + [anon_sym_char] = ACTIONS(2251), + [aux_sym__never_special_token_token1] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_as] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), + [anon_sym_fn] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_impl] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_loop] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_mod] = ACTIONS(2251), + [anon_sym_pub] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_static] = ACTIONS(2251), + [anon_sym_struct] = ACTIONS(2251), + [anon_sym_trait] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_union] = ACTIONS(2251), + [anon_sym_unsafe] = ACTIONS(2251), + [anon_sym_use] = ACTIONS(2251), + [anon_sym_where] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [sym_mutable_specifier] = ACTIONS(2251), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_crate] = ACTIONS(2251), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), + [sym_block_comment] = ACTIONS(3), + }, + [524] = { + [sym__never_special_token] = STATE(303), + [sym_delim_token_tree] = STATE(303), + [sym__delim_tokens] = STATE(303), + [sym__non_delim_token] = STATE(303), + [sym__literal] = STATE(303), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(303), [sym_identifier] = ACTIONS(2125), [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2255), [anon_sym_LBRACE] = ACTIONS(2111), [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2251), - [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_DOLLAR] = ACTIONS(2129), [anon_sym_u8] = ACTIONS(2125), [anon_sym_i8] = ACTIONS(2125), [anon_sym_u16] = ACTIONS(2125), @@ -62296,7 +62054,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2125), [anon_sym_str] = ACTIONS(2125), [anon_sym_char] = ACTIONS(2125), - [aux_sym__non_special_token_token1] = ACTIONS(2125), + [aux_sym__never_special_token_token1] = ACTIONS(2125), [anon_sym_SQUOTE] = ACTIONS(2125), [anon_sym_as] = ACTIONS(2125), [anon_sym_async] = ACTIONS(2125), @@ -62326,34 +62084,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2125), [anon_sym_while] = ACTIONS(2125), [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2125), [sym_super] = ACTIONS(2125), [sym_crate] = ACTIONS(2125), - [sym_metavariable] = ACTIONS(2129), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [529] = { - [sym_delim_token_tree] = STATE(281), - [sym__delim_tokens] = STATE(281), - [sym__non_delim_token] = STATE(281), - [sym__literal] = STATE(281), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(281), + [525] = { + [sym__never_special_token] = STATE(303), + [sym_delim_token_tree] = STATE(303), + [sym__delim_tokens] = STATE(303), + [sym__non_delim_token] = STATE(303), + [sym__literal] = STATE(303), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(303), [sym_identifier] = ACTIONS(2125), [anon_sym_LPAREN] = ACTIONS(2109), [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2255), [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2249), - [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_DOLLAR] = ACTIONS(2129), [anon_sym_u8] = ACTIONS(2125), [anon_sym_i8] = ACTIONS(2125), [anon_sym_u16] = ACTIONS(2125), @@ -62371,7 +62129,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2125), [anon_sym_str] = ACTIONS(2125), [anon_sym_char] = ACTIONS(2125), - [aux_sym__non_special_token_token1] = ACTIONS(2125), + [aux_sym__never_special_token_token1] = ACTIONS(2125), [anon_sym_SQUOTE] = ACTIONS(2125), [anon_sym_as] = ACTIONS(2125), [anon_sym_async] = ACTIONS(2125), @@ -62401,34 +62159,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2125), [anon_sym_while] = ACTIONS(2125), [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2125), [sym_super] = ACTIONS(2125), [sym_crate] = ACTIONS(2125), - [sym_metavariable] = ACTIONS(2129), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [530] = { - [sym_delim_token_tree] = STATE(281), - [sym__delim_tokens] = STATE(281), - [sym__non_delim_token] = STATE(281), - [sym__literal] = STATE(281), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(281), + [526] = { + [sym__never_special_token] = STATE(303), + [sym_delim_token_tree] = STATE(303), + [sym__delim_tokens] = STATE(303), + [sym__non_delim_token] = STATE(303), + [sym__literal] = STATE(303), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(303), [sym_identifier] = ACTIONS(2125), [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2249), [anon_sym_LBRACE] = ACTIONS(2111), [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_RBRACK] = ACTIONS(2255), + [anon_sym_DOLLAR] = ACTIONS(2129), [anon_sym_u8] = ACTIONS(2125), [anon_sym_i8] = ACTIONS(2125), [anon_sym_u16] = ACTIONS(2125), @@ -62446,7 +62204,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2125), [anon_sym_str] = ACTIONS(2125), [anon_sym_char] = ACTIONS(2125), - [aux_sym__non_special_token_token1] = ACTIONS(2125), + [aux_sym__never_special_token_token1] = ACTIONS(2125), [anon_sym_SQUOTE] = ACTIONS(2125), [anon_sym_as] = ACTIONS(2125), [anon_sym_async] = ACTIONS(2125), @@ -62476,108 +62234,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2125), [anon_sym_while] = ACTIONS(2125), [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2125), [sym_super] = ACTIONS(2125), [sym_crate] = ACTIONS(2125), - [sym_metavariable] = ACTIONS(2129), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [531] = { - [sym_delim_token_tree] = STATE(508), - [sym__delim_tokens] = STATE(508), - [sym__non_delim_token] = STATE(508), - [sym__literal] = STATE(508), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_delim_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2253), + [527] = { + [sym__never_special_token] = STATE(531), + [sym_delim_token_tree] = STATE(531), + [sym__delim_tokens] = STATE(531), + [sym__non_delim_token] = STATE(531), + [sym__literal] = STATE(531), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(531), + [sym_identifier] = ACTIONS(2257), [anon_sym_LPAREN] = ACTIONS(2109), [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2121), + [anon_sym_RBRACE] = ACTIONS(2229), [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2253), - [anon_sym_u8] = ACTIONS(2253), - [anon_sym_i8] = ACTIONS(2253), - [anon_sym_u16] = ACTIONS(2253), - [anon_sym_i16] = ACTIONS(2253), - [anon_sym_u32] = ACTIONS(2253), - [anon_sym_i32] = ACTIONS(2253), - [anon_sym_u64] = ACTIONS(2253), - [anon_sym_i64] = ACTIONS(2253), - [anon_sym_u128] = ACTIONS(2253), - [anon_sym_i128] = ACTIONS(2253), - [anon_sym_isize] = ACTIONS(2253), - [anon_sym_usize] = ACTIONS(2253), - [anon_sym_f32] = ACTIONS(2253), - [anon_sym_f64] = ACTIONS(2253), - [anon_sym_bool] = ACTIONS(2253), - [anon_sym_str] = ACTIONS(2253), - [anon_sym_char] = ACTIONS(2253), - [aux_sym__non_special_token_token1] = ACTIONS(2253), - [anon_sym_SQUOTE] = ACTIONS(2253), - [anon_sym_as] = ACTIONS(2253), - [anon_sym_async] = ACTIONS(2253), - [anon_sym_await] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_default] = ACTIONS(2253), - [anon_sym_enum] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_impl] = ACTIONS(2253), - [anon_sym_let] = ACTIONS(2253), - [anon_sym_loop] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_mod] = ACTIONS(2253), - [anon_sym_pub] = ACTIONS(2253), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_static] = ACTIONS(2253), - [anon_sym_struct] = ACTIONS(2253), - [anon_sym_trait] = ACTIONS(2253), - [anon_sym_type] = ACTIONS(2253), - [anon_sym_union] = ACTIONS(2253), - [anon_sym_unsafe] = ACTIONS(2253), - [anon_sym_use] = ACTIONS(2253), - [anon_sym_where] = ACTIONS(2253), - [anon_sym_while] = ACTIONS(2253), - [sym_mutable_specifier] = ACTIONS(2253), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2253), - [sym_super] = ACTIONS(2253), - [sym_crate] = ACTIONS(2253), - [sym_metavariable] = ACTIONS(2255), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), - [sym_block_comment] = ACTIONS(3), - }, - [532] = { - [sym_token_tree] = STATE(545), - [sym_token_repetition] = STATE(545), - [sym__literal] = STATE(545), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_repeat1] = STATE(545), - [sym_identifier] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_RPAREN] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_DOLLAR] = ACTIONS(2259), [anon_sym_u8] = ACTIONS(2257), [anon_sym_i8] = ACTIONS(2257), [anon_sym_u16] = ACTIONS(2257), @@ -62595,7 +62279,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2257), [anon_sym_str] = ACTIONS(2257), [anon_sym_char] = ACTIONS(2257), - [aux_sym__non_special_token_token1] = ACTIONS(2257), + [aux_sym__never_special_token_token1] = ACTIONS(2257), [anon_sym_SQUOTE] = ACTIONS(2257), [anon_sym_as] = ACTIONS(2257), [anon_sym_async] = ACTIONS(2257), @@ -62625,551 +62309,708 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2257), [anon_sym_while] = ACTIONS(2257), [sym_mutable_specifier] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2257), [sym_super] = ACTIONS(2257), [sym_crate] = ACTIONS(2257), - [sym_metavariable] = ACTIONS(2269), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [533] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_u8] = ACTIONS(2271), - [anon_sym_i8] = ACTIONS(2271), - [anon_sym_u16] = ACTIONS(2271), - [anon_sym_i16] = ACTIONS(2271), - [anon_sym_u32] = ACTIONS(2271), - [anon_sym_i32] = ACTIONS(2271), - [anon_sym_u64] = ACTIONS(2271), - [anon_sym_i64] = ACTIONS(2271), - [anon_sym_u128] = ACTIONS(2271), - [anon_sym_i128] = ACTIONS(2271), - [anon_sym_isize] = ACTIONS(2271), - [anon_sym_usize] = ACTIONS(2271), - [anon_sym_f32] = ACTIONS(2271), - [anon_sym_f64] = ACTIONS(2271), - [anon_sym_bool] = ACTIONS(2271), - [anon_sym_str] = ACTIONS(2271), - [anon_sym_char] = ACTIONS(2271), - [aux_sym__non_special_token_token1] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(2271), - [anon_sym_as] = ACTIONS(2271), - [anon_sym_async] = ACTIONS(2271), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_const] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_default] = ACTIONS(2271), - [anon_sym_enum] = ACTIONS(2271), - [anon_sym_fn] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_impl] = ACTIONS(2271), - [anon_sym_let] = ACTIONS(2271), - [anon_sym_loop] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2271), - [anon_sym_mod] = ACTIONS(2271), - [anon_sym_pub] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_static] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2271), - [anon_sym_trait] = ACTIONS(2271), - [anon_sym_type] = ACTIONS(2271), - [anon_sym_union] = ACTIONS(2271), - [anon_sym_unsafe] = ACTIONS(2271), - [anon_sym_use] = ACTIONS(2271), - [anon_sym_where] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [sym_mutable_specifier] = ACTIONS(2271), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2271), - [sym_super] = ACTIONS(2271), - [sym_crate] = ACTIONS(2271), - [sym_metavariable] = ACTIONS(2275), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [528] = { + [sym__never_special_token] = STATE(524), + [sym_delim_token_tree] = STATE(524), + [sym__delim_tokens] = STATE(524), + [sym__non_delim_token] = STATE(524), + [sym__literal] = STATE(524), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(524), + [sym_identifier] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2265), + [anon_sym_u8] = ACTIONS(2261), + [anon_sym_i8] = ACTIONS(2261), + [anon_sym_u16] = ACTIONS(2261), + [anon_sym_i16] = ACTIONS(2261), + [anon_sym_u32] = ACTIONS(2261), + [anon_sym_i32] = ACTIONS(2261), + [anon_sym_u64] = ACTIONS(2261), + [anon_sym_i64] = ACTIONS(2261), + [anon_sym_u128] = ACTIONS(2261), + [anon_sym_i128] = ACTIONS(2261), + [anon_sym_isize] = ACTIONS(2261), + [anon_sym_usize] = ACTIONS(2261), + [anon_sym_f32] = ACTIONS(2261), + [anon_sym_f64] = ACTIONS(2261), + [anon_sym_bool] = ACTIONS(2261), + [anon_sym_str] = ACTIONS(2261), + [anon_sym_char] = ACTIONS(2261), + [aux_sym__never_special_token_token1] = ACTIONS(2261), + [anon_sym_SQUOTE] = ACTIONS(2261), + [anon_sym_as] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + [anon_sym_fn] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_impl] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_loop] = ACTIONS(2261), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_mod] = ACTIONS(2261), + [anon_sym_pub] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_struct] = ACTIONS(2261), + [anon_sym_trait] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_union] = ACTIONS(2261), + [anon_sym_unsafe] = ACTIONS(2261), + [anon_sym_use] = ACTIONS(2261), + [anon_sym_where] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [sym_mutable_specifier] = ACTIONS(2261), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_crate] = ACTIONS(2261), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [534] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2277), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_u8] = ACTIONS(2271), - [anon_sym_i8] = ACTIONS(2271), - [anon_sym_u16] = ACTIONS(2271), - [anon_sym_i16] = ACTIONS(2271), - [anon_sym_u32] = ACTIONS(2271), - [anon_sym_i32] = ACTIONS(2271), - [anon_sym_u64] = ACTIONS(2271), - [anon_sym_i64] = ACTIONS(2271), - [anon_sym_u128] = ACTIONS(2271), - [anon_sym_i128] = ACTIONS(2271), - [anon_sym_isize] = ACTIONS(2271), - [anon_sym_usize] = ACTIONS(2271), - [anon_sym_f32] = ACTIONS(2271), - [anon_sym_f64] = ACTIONS(2271), - [anon_sym_bool] = ACTIONS(2271), - [anon_sym_str] = ACTIONS(2271), - [anon_sym_char] = ACTIONS(2271), - [aux_sym__non_special_token_token1] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(2271), - [anon_sym_as] = ACTIONS(2271), - [anon_sym_async] = ACTIONS(2271), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_const] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_default] = ACTIONS(2271), - [anon_sym_enum] = ACTIONS(2271), - [anon_sym_fn] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_impl] = ACTIONS(2271), - [anon_sym_let] = ACTIONS(2271), - [anon_sym_loop] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2271), - [anon_sym_mod] = ACTIONS(2271), - [anon_sym_pub] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_static] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2271), - [anon_sym_trait] = ACTIONS(2271), - [anon_sym_type] = ACTIONS(2271), - [anon_sym_union] = ACTIONS(2271), - [anon_sym_unsafe] = ACTIONS(2271), - [anon_sym_use] = ACTIONS(2271), - [anon_sym_where] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [sym_mutable_specifier] = ACTIONS(2271), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2271), - [sym_super] = ACTIONS(2271), - [sym_crate] = ACTIONS(2271), - [sym_metavariable] = ACTIONS(2275), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [529] = { + [sym__never_special_token] = STATE(532), + [sym_delim_token_tree] = STATE(532), + [sym__delim_tokens] = STATE(532), + [sym__non_delim_token] = STATE(532), + [sym__literal] = STATE(532), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(532), + [sym_identifier] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_RBRACK] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2269), + [anon_sym_u8] = ACTIONS(2267), + [anon_sym_i8] = ACTIONS(2267), + [anon_sym_u16] = ACTIONS(2267), + [anon_sym_i16] = ACTIONS(2267), + [anon_sym_u32] = ACTIONS(2267), + [anon_sym_i32] = ACTIONS(2267), + [anon_sym_u64] = ACTIONS(2267), + [anon_sym_i64] = ACTIONS(2267), + [anon_sym_u128] = ACTIONS(2267), + [anon_sym_i128] = ACTIONS(2267), + [anon_sym_isize] = ACTIONS(2267), + [anon_sym_usize] = ACTIONS(2267), + [anon_sym_f32] = ACTIONS(2267), + [anon_sym_f64] = ACTIONS(2267), + [anon_sym_bool] = ACTIONS(2267), + [anon_sym_str] = ACTIONS(2267), + [anon_sym_char] = ACTIONS(2267), + [aux_sym__never_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(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2267), + [sym_super] = ACTIONS(2267), + [sym_crate] = ACTIONS(2267), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [535] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_RPAREN] = ACTIONS(2277), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_u8] = ACTIONS(2271), - [anon_sym_i8] = ACTIONS(2271), - [anon_sym_u16] = ACTIONS(2271), - [anon_sym_i16] = ACTIONS(2271), - [anon_sym_u32] = ACTIONS(2271), - [anon_sym_i32] = ACTIONS(2271), - [anon_sym_u64] = ACTIONS(2271), - [anon_sym_i64] = ACTIONS(2271), - [anon_sym_u128] = ACTIONS(2271), - [anon_sym_i128] = ACTIONS(2271), - [anon_sym_isize] = ACTIONS(2271), - [anon_sym_usize] = ACTIONS(2271), - [anon_sym_f32] = ACTIONS(2271), - [anon_sym_f64] = ACTIONS(2271), - [anon_sym_bool] = ACTIONS(2271), - [anon_sym_str] = ACTIONS(2271), - [anon_sym_char] = ACTIONS(2271), - [aux_sym__non_special_token_token1] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(2271), - [anon_sym_as] = ACTIONS(2271), - [anon_sym_async] = ACTIONS(2271), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_const] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_default] = ACTIONS(2271), - [anon_sym_enum] = ACTIONS(2271), - [anon_sym_fn] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_impl] = ACTIONS(2271), - [anon_sym_let] = ACTIONS(2271), - [anon_sym_loop] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2271), - [anon_sym_mod] = ACTIONS(2271), - [anon_sym_pub] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_static] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2271), - [anon_sym_trait] = ACTIONS(2271), - [anon_sym_type] = ACTIONS(2271), - [anon_sym_union] = ACTIONS(2271), - [anon_sym_unsafe] = ACTIONS(2271), - [anon_sym_use] = ACTIONS(2271), - [anon_sym_where] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [sym_mutable_specifier] = ACTIONS(2271), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2271), - [sym_super] = ACTIONS(2271), - [sym_crate] = ACTIONS(2271), - [sym_metavariable] = ACTIONS(2275), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [530] = { + [sym_token_tree] = STATE(302), + [sym_token_repetition] = STATE(302), + [sym__never_special_token] = STATE(302), + [sym__literal] = STATE(302), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2239), + [anon_sym_i8] = ACTIONS(2239), + [anon_sym_u16] = ACTIONS(2239), + [anon_sym_i16] = ACTIONS(2239), + [anon_sym_u32] = ACTIONS(2239), + [anon_sym_i32] = ACTIONS(2239), + [anon_sym_u64] = ACTIONS(2239), + [anon_sym_i64] = ACTIONS(2239), + [anon_sym_u128] = ACTIONS(2239), + [anon_sym_i128] = ACTIONS(2239), + [anon_sym_isize] = ACTIONS(2239), + [anon_sym_usize] = ACTIONS(2239), + [anon_sym_f32] = ACTIONS(2239), + [anon_sym_f64] = ACTIONS(2239), + [anon_sym_bool] = ACTIONS(2239), + [anon_sym_str] = ACTIONS(2239), + [anon_sym_char] = ACTIONS(2239), + [aux_sym__never_special_token_token1] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_as] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), + [anon_sym_fn] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_impl] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_loop] = ACTIONS(2239), + [anon_sym_match] = ACTIONS(2239), + [anon_sym_mod] = ACTIONS(2239), + [anon_sym_pub] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_struct] = ACTIONS(2239), + [anon_sym_trait] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_union] = ACTIONS(2239), + [anon_sym_unsafe] = ACTIONS(2239), + [anon_sym_use] = ACTIONS(2239), + [anon_sym_where] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [sym_mutable_specifier] = ACTIONS(2239), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_crate] = ACTIONS(2239), + [sym_metavariable] = ACTIONS(2243), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, - [536] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_RPAREN] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_u8] = ACTIONS(2271), - [anon_sym_i8] = ACTIONS(2271), - [anon_sym_u16] = ACTIONS(2271), - [anon_sym_i16] = ACTIONS(2271), - [anon_sym_u32] = ACTIONS(2271), - [anon_sym_i32] = ACTIONS(2271), - [anon_sym_u64] = ACTIONS(2271), - [anon_sym_i64] = ACTIONS(2271), - [anon_sym_u128] = ACTIONS(2271), - [anon_sym_i128] = ACTIONS(2271), - [anon_sym_isize] = ACTIONS(2271), - [anon_sym_usize] = ACTIONS(2271), - [anon_sym_f32] = ACTIONS(2271), - [anon_sym_f64] = ACTIONS(2271), - [anon_sym_bool] = ACTIONS(2271), - [anon_sym_str] = ACTIONS(2271), - [anon_sym_char] = ACTIONS(2271), - [aux_sym__non_special_token_token1] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(2271), - [anon_sym_as] = ACTIONS(2271), - [anon_sym_async] = ACTIONS(2271), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_const] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_default] = ACTIONS(2271), - [anon_sym_enum] = ACTIONS(2271), - [anon_sym_fn] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_impl] = ACTIONS(2271), - [anon_sym_let] = ACTIONS(2271), - [anon_sym_loop] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2271), - [anon_sym_mod] = ACTIONS(2271), - [anon_sym_pub] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_static] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2271), - [anon_sym_trait] = ACTIONS(2271), - [anon_sym_type] = ACTIONS(2271), - [anon_sym_union] = ACTIONS(2271), - [anon_sym_unsafe] = ACTIONS(2271), - [anon_sym_use] = ACTIONS(2271), - [anon_sym_where] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [sym_mutable_specifier] = ACTIONS(2271), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2271), - [sym_super] = ACTIONS(2271), - [sym_crate] = ACTIONS(2271), - [sym_metavariable] = ACTIONS(2275), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [531] = { + [sym__never_special_token] = STATE(303), + [sym_delim_token_tree] = STATE(303), + [sym__delim_tokens] = STATE(303), + [sym__non_delim_token] = STATE(303), + [sym__literal] = STATE(303), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2129), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__never_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [537] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(2277), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_u8] = ACTIONS(2271), - [anon_sym_i8] = ACTIONS(2271), - [anon_sym_u16] = ACTIONS(2271), - [anon_sym_i16] = ACTIONS(2271), - [anon_sym_u32] = ACTIONS(2271), - [anon_sym_i32] = ACTIONS(2271), - [anon_sym_u64] = ACTIONS(2271), - [anon_sym_i64] = ACTIONS(2271), - [anon_sym_u128] = ACTIONS(2271), - [anon_sym_i128] = ACTIONS(2271), - [anon_sym_isize] = ACTIONS(2271), - [anon_sym_usize] = ACTIONS(2271), - [anon_sym_f32] = ACTIONS(2271), - [anon_sym_f64] = ACTIONS(2271), - [anon_sym_bool] = ACTIONS(2271), - [anon_sym_str] = ACTIONS(2271), - [anon_sym_char] = ACTIONS(2271), - [aux_sym__non_special_token_token1] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(2271), - [anon_sym_as] = ACTIONS(2271), - [anon_sym_async] = ACTIONS(2271), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_const] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_default] = ACTIONS(2271), - [anon_sym_enum] = ACTIONS(2271), - [anon_sym_fn] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_impl] = ACTIONS(2271), - [anon_sym_let] = ACTIONS(2271), - [anon_sym_loop] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2271), - [anon_sym_mod] = ACTIONS(2271), - [anon_sym_pub] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_static] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2271), - [anon_sym_trait] = ACTIONS(2271), - [anon_sym_type] = ACTIONS(2271), - [anon_sym_union] = ACTIONS(2271), - [anon_sym_unsafe] = ACTIONS(2271), - [anon_sym_use] = ACTIONS(2271), - [anon_sym_where] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [sym_mutable_specifier] = ACTIONS(2271), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2271), - [sym_super] = ACTIONS(2271), - [sym_crate] = ACTIONS(2271), - [sym_metavariable] = ACTIONS(2275), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [532] = { + [sym__never_special_token] = STATE(303), + [sym_delim_token_tree] = STATE(303), + [sym__delim_tokens] = STATE(303), + [sym__non_delim_token] = STATE(303), + [sym__literal] = STATE(303), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_RBRACK] = ACTIONS(2127), + [anon_sym_DOLLAR] = ACTIONS(2129), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [aux_sym__never_special_token_token1] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_where] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [sym_mutable_specifier] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [538] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(2273), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_u8] = ACTIONS(2271), - [anon_sym_i8] = ACTIONS(2271), - [anon_sym_u16] = ACTIONS(2271), - [anon_sym_i16] = ACTIONS(2271), - [anon_sym_u32] = ACTIONS(2271), - [anon_sym_i32] = ACTIONS(2271), - [anon_sym_u64] = ACTIONS(2271), - [anon_sym_i64] = ACTIONS(2271), - [anon_sym_u128] = ACTIONS(2271), - [anon_sym_i128] = ACTIONS(2271), - [anon_sym_isize] = ACTIONS(2271), - [anon_sym_usize] = ACTIONS(2271), - [anon_sym_f32] = ACTIONS(2271), - [anon_sym_f64] = ACTIONS(2271), - [anon_sym_bool] = ACTIONS(2271), - [anon_sym_str] = ACTIONS(2271), - [anon_sym_char] = ACTIONS(2271), - [aux_sym__non_special_token_token1] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(2271), - [anon_sym_as] = ACTIONS(2271), - [anon_sym_async] = ACTIONS(2271), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_const] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_default] = ACTIONS(2271), - [anon_sym_enum] = ACTIONS(2271), - [anon_sym_fn] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_impl] = ACTIONS(2271), - [anon_sym_let] = ACTIONS(2271), - [anon_sym_loop] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2271), - [anon_sym_mod] = ACTIONS(2271), - [anon_sym_pub] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_static] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2271), - [anon_sym_trait] = ACTIONS(2271), - [anon_sym_type] = ACTIONS(2271), - [anon_sym_union] = ACTIONS(2271), - [anon_sym_unsafe] = ACTIONS(2271), - [anon_sym_use] = ACTIONS(2271), - [anon_sym_where] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [sym_mutable_specifier] = ACTIONS(2271), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2271), - [sym_super] = ACTIONS(2271), - [sym_crate] = ACTIONS(2271), - [sym_metavariable] = ACTIONS(2275), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [533] = { + [sym_token_tree] = STATE(302), + [sym_token_repetition] = STATE(302), + [sym__never_special_token] = STATE(302), + [sym__literal] = STATE(302), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2271), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2239), + [anon_sym_i8] = ACTIONS(2239), + [anon_sym_u16] = ACTIONS(2239), + [anon_sym_i16] = ACTIONS(2239), + [anon_sym_u32] = ACTIONS(2239), + [anon_sym_i32] = ACTIONS(2239), + [anon_sym_u64] = ACTIONS(2239), + [anon_sym_i64] = ACTIONS(2239), + [anon_sym_u128] = ACTIONS(2239), + [anon_sym_i128] = ACTIONS(2239), + [anon_sym_isize] = ACTIONS(2239), + [anon_sym_usize] = ACTIONS(2239), + [anon_sym_f32] = ACTIONS(2239), + [anon_sym_f64] = ACTIONS(2239), + [anon_sym_bool] = ACTIONS(2239), + [anon_sym_str] = ACTIONS(2239), + [anon_sym_char] = ACTIONS(2239), + [aux_sym__never_special_token_token1] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_as] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), + [anon_sym_fn] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_impl] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_loop] = ACTIONS(2239), + [anon_sym_match] = ACTIONS(2239), + [anon_sym_mod] = ACTIONS(2239), + [anon_sym_pub] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_struct] = ACTIONS(2239), + [anon_sym_trait] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_union] = ACTIONS(2239), + [anon_sym_unsafe] = ACTIONS(2239), + [anon_sym_use] = ACTIONS(2239), + [anon_sym_where] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [sym_mutable_specifier] = ACTIONS(2239), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_crate] = ACTIONS(2239), + [sym_metavariable] = ACTIONS(2243), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, - [539] = { - [sym_token_tree] = STATE(537), - [sym_token_repetition] = STATE(537), - [sym__literal] = STATE(537), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_repeat1] = STATE(537), - [sym_identifier] = ACTIONS(2279), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(2281), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_u8] = ACTIONS(2279), - [anon_sym_i8] = ACTIONS(2279), - [anon_sym_u16] = ACTIONS(2279), - [anon_sym_i16] = ACTIONS(2279), - [anon_sym_u32] = ACTIONS(2279), - [anon_sym_i32] = ACTIONS(2279), - [anon_sym_u64] = ACTIONS(2279), - [anon_sym_i64] = ACTIONS(2279), - [anon_sym_u128] = ACTIONS(2279), - [anon_sym_i128] = ACTIONS(2279), - [anon_sym_isize] = ACTIONS(2279), - [anon_sym_usize] = ACTIONS(2279), - [anon_sym_f32] = ACTIONS(2279), - [anon_sym_f64] = ACTIONS(2279), - [anon_sym_bool] = ACTIONS(2279), - [anon_sym_str] = ACTIONS(2279), - [anon_sym_char] = ACTIONS(2279), - [aux_sym__non_special_token_token1] = ACTIONS(2279), - [anon_sym_SQUOTE] = ACTIONS(2279), - [anon_sym_as] = ACTIONS(2279), - [anon_sym_async] = ACTIONS(2279), - [anon_sym_await] = ACTIONS(2279), - [anon_sym_break] = ACTIONS(2279), - [anon_sym_const] = ACTIONS(2279), - [anon_sym_continue] = ACTIONS(2279), - [anon_sym_default] = ACTIONS(2279), - [anon_sym_enum] = ACTIONS(2279), - [anon_sym_fn] = ACTIONS(2279), - [anon_sym_for] = ACTIONS(2279), - [anon_sym_if] = ACTIONS(2279), - [anon_sym_impl] = ACTIONS(2279), - [anon_sym_let] = ACTIONS(2279), - [anon_sym_loop] = ACTIONS(2279), - [anon_sym_match] = ACTIONS(2279), - [anon_sym_mod] = ACTIONS(2279), - [anon_sym_pub] = ACTIONS(2279), - [anon_sym_return] = ACTIONS(2279), - [anon_sym_static] = ACTIONS(2279), - [anon_sym_struct] = ACTIONS(2279), - [anon_sym_trait] = ACTIONS(2279), - [anon_sym_type] = ACTIONS(2279), - [anon_sym_union] = ACTIONS(2279), - [anon_sym_unsafe] = ACTIONS(2279), - [anon_sym_use] = ACTIONS(2279), - [anon_sym_where] = ACTIONS(2279), - [anon_sym_while] = ACTIONS(2279), - [sym_mutable_specifier] = ACTIONS(2279), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2279), - [sym_super] = ACTIONS(2279), - [sym_crate] = ACTIONS(2279), - [sym_metavariable] = ACTIONS(2283), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [534] = { + [sym__never_special_token] = STATE(510), + [sym_delim_token_tree] = STATE(510), + [sym__delim_tokens] = STATE(510), + [sym__non_delim_token] = STATE(510), + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(510), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2275), + [anon_sym_u8] = ACTIONS(2273), + [anon_sym_i8] = ACTIONS(2273), + [anon_sym_u16] = ACTIONS(2273), + [anon_sym_i16] = ACTIONS(2273), + [anon_sym_u32] = ACTIONS(2273), + [anon_sym_i32] = ACTIONS(2273), + [anon_sym_u64] = ACTIONS(2273), + [anon_sym_i64] = ACTIONS(2273), + [anon_sym_u128] = ACTIONS(2273), + [anon_sym_i128] = ACTIONS(2273), + [anon_sym_isize] = ACTIONS(2273), + [anon_sym_usize] = ACTIONS(2273), + [anon_sym_f32] = ACTIONS(2273), + [anon_sym_f64] = ACTIONS(2273), + [anon_sym_bool] = ACTIONS(2273), + [anon_sym_str] = ACTIONS(2273), + [anon_sym_char] = ACTIONS(2273), + [aux_sym__never_special_token_token1] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_as] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [anon_sym_fn] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_impl] = ACTIONS(2273), + [anon_sym_let] = ACTIONS(2273), + [anon_sym_loop] = ACTIONS(2273), + [anon_sym_match] = ACTIONS(2273), + [anon_sym_mod] = ACTIONS(2273), + [anon_sym_pub] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(2273), + [anon_sym_trait] = ACTIONS(2273), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_unsafe] = ACTIONS(2273), + [anon_sym_use] = ACTIONS(2273), + [anon_sym_where] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [sym_mutable_specifier] = ACTIONS(2273), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2273), + [sym_super] = ACTIONS(2273), + [sym_crate] = ACTIONS(2273), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, - [540] = { - [sym_token_tree] = STATE(538), - [sym_token_repetition] = STATE(538), - [sym__literal] = STATE(538), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_repeat1] = STATE(538), + [535] = { + [sym__never_special_token] = STATE(525), + [sym_delim_token_tree] = STATE(525), + [sym__delim_tokens] = STATE(525), + [sym__non_delim_token] = STATE(525), + [sym__literal] = STATE(525), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(525), + [sym_identifier] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2279), + [anon_sym_u8] = ACTIONS(2277), + [anon_sym_i8] = ACTIONS(2277), + [anon_sym_u16] = ACTIONS(2277), + [anon_sym_i16] = ACTIONS(2277), + [anon_sym_u32] = ACTIONS(2277), + [anon_sym_i32] = ACTIONS(2277), + [anon_sym_u64] = ACTIONS(2277), + [anon_sym_i64] = ACTIONS(2277), + [anon_sym_u128] = ACTIONS(2277), + [anon_sym_i128] = ACTIONS(2277), + [anon_sym_isize] = ACTIONS(2277), + [anon_sym_usize] = ACTIONS(2277), + [anon_sym_f32] = ACTIONS(2277), + [anon_sym_f64] = ACTIONS(2277), + [anon_sym_bool] = ACTIONS(2277), + [anon_sym_str] = ACTIONS(2277), + [anon_sym_char] = ACTIONS(2277), + [aux_sym__never_special_token_token1] = ACTIONS(2277), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_as] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_await] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_default] = ACTIONS(2277), + [anon_sym_enum] = ACTIONS(2277), + [anon_sym_fn] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_impl] = ACTIONS(2277), + [anon_sym_let] = ACTIONS(2277), + [anon_sym_loop] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_mod] = ACTIONS(2277), + [anon_sym_pub] = ACTIONS(2277), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_static] = ACTIONS(2277), + [anon_sym_struct] = ACTIONS(2277), + [anon_sym_trait] = ACTIONS(2277), + [anon_sym_type] = ACTIONS(2277), + [anon_sym_union] = ACTIONS(2277), + [anon_sym_unsafe] = ACTIONS(2277), + [anon_sym_use] = ACTIONS(2277), + [anon_sym_where] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [sym_mutable_specifier] = ACTIONS(2277), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2277), + [sym_super] = ACTIONS(2277), + [sym_crate] = ACTIONS(2277), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), + [sym_block_comment] = ACTIONS(3), + }, + [536] = { + [sym__never_special_token] = STATE(526), + [sym_delim_token_tree] = STATE(526), + [sym__delim_tokens] = STATE(526), + [sym__non_delim_token] = STATE(526), + [sym__literal] = STATE(526), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(526), + [sym_identifier] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_RBRACK] = ACTIONS(2263), + [anon_sym_DOLLAR] = ACTIONS(2283), + [anon_sym_u8] = ACTIONS(2281), + [anon_sym_i8] = ACTIONS(2281), + [anon_sym_u16] = ACTIONS(2281), + [anon_sym_i16] = ACTIONS(2281), + [anon_sym_u32] = ACTIONS(2281), + [anon_sym_i32] = ACTIONS(2281), + [anon_sym_u64] = ACTIONS(2281), + [anon_sym_i64] = ACTIONS(2281), + [anon_sym_u128] = ACTIONS(2281), + [anon_sym_i128] = ACTIONS(2281), + [anon_sym_isize] = ACTIONS(2281), + [anon_sym_usize] = ACTIONS(2281), + [anon_sym_f32] = ACTIONS(2281), + [anon_sym_f64] = ACTIONS(2281), + [anon_sym_bool] = ACTIONS(2281), + [anon_sym_str] = ACTIONS(2281), + [anon_sym_char] = ACTIONS(2281), + [aux_sym__never_special_token_token1] = ACTIONS(2281), + [anon_sym_SQUOTE] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [anon_sym_fn] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_impl] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_loop] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_mod] = ACTIONS(2281), + [anon_sym_pub] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_struct] = ACTIONS(2281), + [anon_sym_trait] = ACTIONS(2281), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), + [anon_sym_unsafe] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_where] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [sym_mutable_specifier] = ACTIONS(2281), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2281), + [sym_super] = ACTIONS(2281), + [sym_crate] = ACTIONS(2281), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), + [sym_block_comment] = ACTIONS(3), + }, + [537] = { + [sym_token_tree] = STATE(516), + [sym_token_repetition] = STATE(516), + [sym__never_special_token] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_repeat1] = STATE(516), [sym_identifier] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2209), [anon_sym_RBRACK] = ACTIONS(2287), - [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_DOLLAR] = ACTIONS(2211), [anon_sym_u8] = ACTIONS(2285), [anon_sym_i8] = ACTIONS(2285), [anon_sym_u16] = ACTIONS(2285), @@ -63187,7 +63028,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2285), [anon_sym_str] = ACTIONS(2285), [anon_sym_char] = ACTIONS(2285), - [aux_sym__non_special_token_token1] = ACTIONS(2285), + [aux_sym__never_special_token_token1] = ACTIONS(2285), [anon_sym_SQUOTE] = ACTIONS(2285), [anon_sym_as] = ACTIONS(2285), [anon_sym_async] = ACTIONS(2285), @@ -63217,33 +63058,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2285), [anon_sym_while] = ACTIONS(2285), [sym_mutable_specifier] = ACTIONS(2285), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2285), [sym_super] = ACTIONS(2285), [sym_crate] = ACTIONS(2285), [sym_metavariable] = ACTIONS(2289), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, - [541] = { - [sym_token_tree] = STATE(533), - [sym_token_repetition] = STATE(533), - [sym__literal] = STATE(533), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_repeat1] = STATE(533), + [538] = { + [sym_token_tree] = STATE(530), + [sym_token_repetition] = STATE(530), + [sym__never_special_token] = STATE(530), + [sym__literal] = STATE(530), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_repeat1] = STATE(530), [sym_identifier] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2207), [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), [anon_sym_u8] = ACTIONS(2291), [anon_sym_i8] = ACTIONS(2291), [anon_sym_u16] = ACTIONS(2291), @@ -63261,7 +63103,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2291), [anon_sym_str] = ACTIONS(2291), [anon_sym_char] = ACTIONS(2291), - [aux_sym__non_special_token_token1] = ACTIONS(2291), + [aux_sym__never_special_token_token1] = ACTIONS(2291), [anon_sym_SQUOTE] = ACTIONS(2291), [anon_sym_as] = ACTIONS(2291), [anon_sym_async] = ACTIONS(2291), @@ -63291,33 +63133,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2291), [anon_sym_while] = ACTIONS(2291), [sym_mutable_specifier] = ACTIONS(2291), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2291), [sym_super] = ACTIONS(2291), [sym_crate] = ACTIONS(2291), [sym_metavariable] = ACTIONS(2293), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, - [542] = { - [sym_token_tree] = STATE(536), - [sym_token_repetition] = STATE(536), - [sym__literal] = STATE(536), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_repeat1] = STATE(536), + [539] = { + [sym_token_tree] = STATE(517), + [sym_token_repetition] = STATE(517), + [sym__never_special_token] = STATE(517), + [sym__literal] = STATE(517), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_repeat1] = STATE(517), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2203), [anon_sym_RPAREN] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), [anon_sym_u8] = ACTIONS(2295), [anon_sym_i8] = ACTIONS(2295), [anon_sym_u16] = ACTIONS(2295), @@ -63335,7 +63178,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2295), [anon_sym_str] = ACTIONS(2295), [anon_sym_char] = ACTIONS(2295), - [aux_sym__non_special_token_token1] = ACTIONS(2295), + [aux_sym__never_special_token_token1] = ACTIONS(2295), [anon_sym_SQUOTE] = ACTIONS(2295), [anon_sym_as] = ACTIONS(2295), [anon_sym_async] = ACTIONS(2295), @@ -63365,344 +63208,499 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2295), [anon_sym_while] = ACTIONS(2295), [sym_mutable_specifier] = ACTIONS(2295), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2295), [sym_super] = ACTIONS(2295), [sym_crate] = ACTIONS(2295), [sym_metavariable] = ACTIONS(2297), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), + [sym_block_comment] = ACTIONS(3), + }, + [540] = { + [sym_token_tree] = STATE(302), + [sym_token_repetition] = STATE(302), + [sym__never_special_token] = STATE(302), + [sym__literal] = STATE(302), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_RBRACK] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2239), + [anon_sym_i8] = ACTIONS(2239), + [anon_sym_u16] = ACTIONS(2239), + [anon_sym_i16] = ACTIONS(2239), + [anon_sym_u32] = ACTIONS(2239), + [anon_sym_i32] = ACTIONS(2239), + [anon_sym_u64] = ACTIONS(2239), + [anon_sym_i64] = ACTIONS(2239), + [anon_sym_u128] = ACTIONS(2239), + [anon_sym_i128] = ACTIONS(2239), + [anon_sym_isize] = ACTIONS(2239), + [anon_sym_usize] = ACTIONS(2239), + [anon_sym_f32] = ACTIONS(2239), + [anon_sym_f64] = ACTIONS(2239), + [anon_sym_bool] = ACTIONS(2239), + [anon_sym_str] = ACTIONS(2239), + [anon_sym_char] = ACTIONS(2239), + [aux_sym__never_special_token_token1] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_as] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), + [anon_sym_fn] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_impl] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_loop] = ACTIONS(2239), + [anon_sym_match] = ACTIONS(2239), + [anon_sym_mod] = ACTIONS(2239), + [anon_sym_pub] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_struct] = ACTIONS(2239), + [anon_sym_trait] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_union] = ACTIONS(2239), + [anon_sym_unsafe] = ACTIONS(2239), + [anon_sym_use] = ACTIONS(2239), + [anon_sym_where] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [sym_mutable_specifier] = ACTIONS(2239), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_crate] = ACTIONS(2239), + [sym_metavariable] = ACTIONS(2243), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), + [sym_block_comment] = ACTIONS(3), + }, + [541] = { + [sym__never_special_token] = STATE(515), + [sym_delim_token_tree] = STATE(515), + [sym__delim_tokens] = STATE(515), + [sym__non_delim_token] = STATE(515), + [sym__literal] = STATE(515), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(515), + [sym_identifier] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_RBRACK] = ACTIONS(2303), + [anon_sym_DOLLAR] = ACTIONS(2305), + [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__never_special_token_token1] = ACTIONS(2301), + [anon_sym_SQUOTE] = ACTIONS(2301), + [anon_sym_as] = ACTIONS(2301), + [anon_sym_async] = ACTIONS(2301), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_break] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2301), + [anon_sym_default] = ACTIONS(2301), + [anon_sym_enum] = ACTIONS(2301), + [anon_sym_fn] = ACTIONS(2301), + [anon_sym_for] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2301), + [anon_sym_impl] = ACTIONS(2301), + [anon_sym_let] = ACTIONS(2301), + [anon_sym_loop] = ACTIONS(2301), + [anon_sym_match] = ACTIONS(2301), + [anon_sym_mod] = ACTIONS(2301), + [anon_sym_pub] = ACTIONS(2301), + [anon_sym_return] = ACTIONS(2301), + [anon_sym_static] = ACTIONS(2301), + [anon_sym_struct] = ACTIONS(2301), + [anon_sym_trait] = ACTIONS(2301), + [anon_sym_type] = ACTIONS(2301), + [anon_sym_union] = ACTIONS(2301), + [anon_sym_unsafe] = ACTIONS(2301), + [anon_sym_use] = ACTIONS(2301), + [anon_sym_where] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2301), + [sym_mutable_specifier] = ACTIONS(2301), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2301), + [sym_super] = ACTIONS(2301), + [sym_crate] = ACTIONS(2301), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), + [sym_block_comment] = ACTIONS(3), + }, + [542] = { + [sym_token_tree] = STATE(302), + [sym_token_repetition] = STATE(302), + [sym__never_special_token] = STATE(302), + [sym__literal] = STATE(302), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_RPAREN] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2239), + [anon_sym_i8] = ACTIONS(2239), + [anon_sym_u16] = ACTIONS(2239), + [anon_sym_i16] = ACTIONS(2239), + [anon_sym_u32] = ACTIONS(2239), + [anon_sym_i32] = ACTIONS(2239), + [anon_sym_u64] = ACTIONS(2239), + [anon_sym_i64] = ACTIONS(2239), + [anon_sym_u128] = ACTIONS(2239), + [anon_sym_i128] = ACTIONS(2239), + [anon_sym_isize] = ACTIONS(2239), + [anon_sym_usize] = ACTIONS(2239), + [anon_sym_f32] = ACTIONS(2239), + [anon_sym_f64] = ACTIONS(2239), + [anon_sym_bool] = ACTIONS(2239), + [anon_sym_str] = ACTIONS(2239), + [anon_sym_char] = ACTIONS(2239), + [aux_sym__never_special_token_token1] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_as] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), + [anon_sym_fn] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_impl] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_loop] = ACTIONS(2239), + [anon_sym_match] = ACTIONS(2239), + [anon_sym_mod] = ACTIONS(2239), + [anon_sym_pub] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_struct] = ACTIONS(2239), + [anon_sym_trait] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_union] = ACTIONS(2239), + [anon_sym_unsafe] = ACTIONS(2239), + [anon_sym_use] = ACTIONS(2239), + [anon_sym_where] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [sym_mutable_specifier] = ACTIONS(2239), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_crate] = ACTIONS(2239), + [sym_metavariable] = ACTIONS(2243), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, [543] = { - [sym_token_tree] = STATE(534), - [sym_token_repetition] = STATE(534), - [sym__literal] = STATE(534), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_repeat1] = STATE(534), - [sym_identifier] = ACTIONS(2299), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_u8] = ACTIONS(2299), - [anon_sym_i8] = ACTIONS(2299), - [anon_sym_u16] = ACTIONS(2299), - [anon_sym_i16] = ACTIONS(2299), - [anon_sym_u32] = ACTIONS(2299), - [anon_sym_i32] = ACTIONS(2299), - [anon_sym_u64] = ACTIONS(2299), - [anon_sym_i64] = ACTIONS(2299), - [anon_sym_u128] = ACTIONS(2299), - [anon_sym_i128] = ACTIONS(2299), - [anon_sym_isize] = ACTIONS(2299), - [anon_sym_usize] = ACTIONS(2299), - [anon_sym_f32] = ACTIONS(2299), - [anon_sym_f64] = ACTIONS(2299), - [anon_sym_bool] = ACTIONS(2299), - [anon_sym_str] = ACTIONS(2299), - [anon_sym_char] = ACTIONS(2299), - [aux_sym__non_special_token_token1] = ACTIONS(2299), - [anon_sym_SQUOTE] = ACTIONS(2299), - [anon_sym_as] = ACTIONS(2299), - [anon_sym_async] = ACTIONS(2299), - [anon_sym_await] = ACTIONS(2299), - [anon_sym_break] = ACTIONS(2299), - [anon_sym_const] = ACTIONS(2299), - [anon_sym_continue] = ACTIONS(2299), - [anon_sym_default] = ACTIONS(2299), - [anon_sym_enum] = ACTIONS(2299), - [anon_sym_fn] = ACTIONS(2299), - [anon_sym_for] = ACTIONS(2299), - [anon_sym_if] = ACTIONS(2299), - [anon_sym_impl] = ACTIONS(2299), - [anon_sym_let] = ACTIONS(2299), - [anon_sym_loop] = ACTIONS(2299), - [anon_sym_match] = ACTIONS(2299), - [anon_sym_mod] = ACTIONS(2299), - [anon_sym_pub] = ACTIONS(2299), - [anon_sym_return] = ACTIONS(2299), - [anon_sym_static] = ACTIONS(2299), - [anon_sym_struct] = ACTIONS(2299), - [anon_sym_trait] = ACTIONS(2299), - [anon_sym_type] = ACTIONS(2299), - [anon_sym_union] = ACTIONS(2299), - [anon_sym_unsafe] = ACTIONS(2299), - [anon_sym_use] = ACTIONS(2299), - [anon_sym_where] = ACTIONS(2299), - [anon_sym_while] = ACTIONS(2299), - [sym_mutable_specifier] = ACTIONS(2299), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2299), - [sym_super] = ACTIONS(2299), - [sym_crate] = ACTIONS(2299), - [sym_metavariable] = ACTIONS(2301), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym__never_special_token] = STATE(519), + [sym_delim_token_tree] = STATE(519), + [sym__delim_tokens] = STATE(519), + [sym__non_delim_token] = STATE(519), + [sym__literal] = STATE(519), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(519), + [sym_identifier] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2309), + [anon_sym_u8] = ACTIONS(2307), + [anon_sym_i8] = ACTIONS(2307), + [anon_sym_u16] = ACTIONS(2307), + [anon_sym_i16] = ACTIONS(2307), + [anon_sym_u32] = ACTIONS(2307), + [anon_sym_i32] = ACTIONS(2307), + [anon_sym_u64] = ACTIONS(2307), + [anon_sym_i64] = ACTIONS(2307), + [anon_sym_u128] = ACTIONS(2307), + [anon_sym_i128] = ACTIONS(2307), + [anon_sym_isize] = ACTIONS(2307), + [anon_sym_usize] = ACTIONS(2307), + [anon_sym_f32] = ACTIONS(2307), + [anon_sym_f64] = ACTIONS(2307), + [anon_sym_bool] = ACTIONS(2307), + [anon_sym_str] = ACTIONS(2307), + [anon_sym_char] = ACTIONS(2307), + [aux_sym__never_special_token_token1] = ACTIONS(2307), + [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_as] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_fn] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_impl] = ACTIONS(2307), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_loop] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2307), + [anon_sym_mod] = ACTIONS(2307), + [anon_sym_pub] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_trait] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_unsafe] = ACTIONS(2307), + [anon_sym_use] = ACTIONS(2307), + [anon_sym_where] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [sym_mutable_specifier] = ACTIONS(2307), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2307), + [sym_super] = ACTIONS(2307), + [sym_crate] = ACTIONS(2307), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, [544] = { - [sym_token_tree] = STATE(535), - [sym_token_repetition] = STATE(535), - [sym__literal] = STATE(535), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_repeat1] = STATE(535), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_RPAREN] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_u8] = ACTIONS(2303), - [anon_sym_i8] = ACTIONS(2303), - [anon_sym_u16] = ACTIONS(2303), - [anon_sym_i16] = ACTIONS(2303), - [anon_sym_u32] = ACTIONS(2303), - [anon_sym_i32] = ACTIONS(2303), - [anon_sym_u64] = ACTIONS(2303), - [anon_sym_i64] = ACTIONS(2303), - [anon_sym_u128] = ACTIONS(2303), - [anon_sym_i128] = ACTIONS(2303), - [anon_sym_isize] = ACTIONS(2303), - [anon_sym_usize] = ACTIONS(2303), - [anon_sym_f32] = ACTIONS(2303), - [anon_sym_f64] = ACTIONS(2303), - [anon_sym_bool] = ACTIONS(2303), - [anon_sym_str] = ACTIONS(2303), - [anon_sym_char] = ACTIONS(2303), - [aux_sym__non_special_token_token1] = ACTIONS(2303), - [anon_sym_SQUOTE] = ACTIONS(2303), - [anon_sym_as] = ACTIONS(2303), - [anon_sym_async] = ACTIONS(2303), - [anon_sym_await] = ACTIONS(2303), - [anon_sym_break] = ACTIONS(2303), - [anon_sym_const] = ACTIONS(2303), - [anon_sym_continue] = ACTIONS(2303), - [anon_sym_default] = ACTIONS(2303), - [anon_sym_enum] = ACTIONS(2303), - [anon_sym_fn] = ACTIONS(2303), - [anon_sym_for] = ACTIONS(2303), - [anon_sym_if] = ACTIONS(2303), - [anon_sym_impl] = ACTIONS(2303), - [anon_sym_let] = ACTIONS(2303), - [anon_sym_loop] = ACTIONS(2303), - [anon_sym_match] = ACTIONS(2303), - [anon_sym_mod] = ACTIONS(2303), - [anon_sym_pub] = ACTIONS(2303), - [anon_sym_return] = ACTIONS(2303), - [anon_sym_static] = ACTIONS(2303), - [anon_sym_struct] = ACTIONS(2303), - [anon_sym_trait] = ACTIONS(2303), - [anon_sym_type] = ACTIONS(2303), - [anon_sym_union] = ACTIONS(2303), - [anon_sym_unsafe] = ACTIONS(2303), - [anon_sym_use] = ACTIONS(2303), - [anon_sym_where] = ACTIONS(2303), - [anon_sym_while] = ACTIONS(2303), - [sym_mutable_specifier] = ACTIONS(2303), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2303), - [sym_super] = ACTIONS(2303), - [sym_crate] = ACTIONS(2303), - [sym_metavariable] = ACTIONS(2305), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym__never_special_token] = STATE(521), + [sym_delim_token_tree] = STATE(521), + [sym__delim_tokens] = STATE(521), + [sym__non_delim_token] = STATE(521), + [sym__literal] = STATE(521), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2313), + [anon_sym_u8] = ACTIONS(2311), + [anon_sym_i8] = ACTIONS(2311), + [anon_sym_u16] = ACTIONS(2311), + [anon_sym_i16] = ACTIONS(2311), + [anon_sym_u32] = ACTIONS(2311), + [anon_sym_i32] = ACTIONS(2311), + [anon_sym_u64] = ACTIONS(2311), + [anon_sym_i64] = ACTIONS(2311), + [anon_sym_u128] = ACTIONS(2311), + [anon_sym_i128] = ACTIONS(2311), + [anon_sym_isize] = ACTIONS(2311), + [anon_sym_usize] = ACTIONS(2311), + [anon_sym_f32] = ACTIONS(2311), + [anon_sym_f64] = ACTIONS(2311), + [anon_sym_bool] = ACTIONS(2311), + [anon_sym_str] = ACTIONS(2311), + [anon_sym_char] = ACTIONS(2311), + [aux_sym__never_special_token_token1] = ACTIONS(2311), + [anon_sym_SQUOTE] = ACTIONS(2311), + [anon_sym_as] = ACTIONS(2311), + [anon_sym_async] = ACTIONS(2311), + [anon_sym_await] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_default] = ACTIONS(2311), + [anon_sym_enum] = ACTIONS(2311), + [anon_sym_fn] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_impl] = ACTIONS(2311), + [anon_sym_let] = ACTIONS(2311), + [anon_sym_loop] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_mod] = ACTIONS(2311), + [anon_sym_pub] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_static] = ACTIONS(2311), + [anon_sym_struct] = ACTIONS(2311), + [anon_sym_trait] = ACTIONS(2311), + [anon_sym_type] = ACTIONS(2311), + [anon_sym_union] = ACTIONS(2311), + [anon_sym_unsafe] = ACTIONS(2311), + [anon_sym_use] = ACTIONS(2311), + [anon_sym_where] = ACTIONS(2311), + [anon_sym_while] = ACTIONS(2311), + [sym_mutable_specifier] = ACTIONS(2311), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2311), + [sym_super] = ACTIONS(2311), + [sym_crate] = ACTIONS(2311), + [sym_raw_string_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), [sym_block_comment] = ACTIONS(3), }, [545] = { - [sym_token_tree] = STATE(483), - [sym_token_repetition] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(570), - [sym_boolean_literal] = STATE(570), - [aux_sym_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_RPAREN] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_u8] = ACTIONS(2271), - [anon_sym_i8] = ACTIONS(2271), - [anon_sym_u16] = ACTIONS(2271), - [anon_sym_i16] = ACTIONS(2271), - [anon_sym_u32] = ACTIONS(2271), - [anon_sym_i32] = ACTIONS(2271), - [anon_sym_u64] = ACTIONS(2271), - [anon_sym_i64] = ACTIONS(2271), - [anon_sym_u128] = ACTIONS(2271), - [anon_sym_i128] = ACTIONS(2271), - [anon_sym_isize] = ACTIONS(2271), - [anon_sym_usize] = ACTIONS(2271), - [anon_sym_f32] = ACTIONS(2271), - [anon_sym_f64] = ACTIONS(2271), - [anon_sym_bool] = ACTIONS(2271), - [anon_sym_str] = ACTIONS(2271), - [anon_sym_char] = ACTIONS(2271), - [aux_sym__non_special_token_token1] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(2271), - [anon_sym_as] = ACTIONS(2271), - [anon_sym_async] = ACTIONS(2271), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_const] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_default] = ACTIONS(2271), - [anon_sym_enum] = ACTIONS(2271), - [anon_sym_fn] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_impl] = ACTIONS(2271), - [anon_sym_let] = ACTIONS(2271), - [anon_sym_loop] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2271), - [anon_sym_mod] = ACTIONS(2271), - [anon_sym_pub] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_static] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2271), - [anon_sym_trait] = ACTIONS(2271), - [anon_sym_type] = ACTIONS(2271), - [anon_sym_union] = ACTIONS(2271), - [anon_sym_unsafe] = ACTIONS(2271), - [anon_sym_use] = ACTIONS(2271), - [anon_sym_where] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [sym_mutable_specifier] = ACTIONS(2271), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2271), - [sym_super] = ACTIONS(2271), - [sym_crate] = ACTIONS(2271), - [sym_metavariable] = ACTIONS(2275), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym_token_tree] = STATE(302), + [sym_token_repetition] = STATE(302), + [sym__never_special_token] = STATE(302), + [sym__literal] = STATE(302), + [sym_string_literal] = STATE(568), + [sym_boolean_literal] = STATE(568), + [aux_sym_token_tree_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2239), + [anon_sym_i8] = ACTIONS(2239), + [anon_sym_u16] = ACTIONS(2239), + [anon_sym_i16] = ACTIONS(2239), + [anon_sym_u32] = ACTIONS(2239), + [anon_sym_i32] = ACTIONS(2239), + [anon_sym_u64] = ACTIONS(2239), + [anon_sym_i64] = ACTIONS(2239), + [anon_sym_u128] = ACTIONS(2239), + [anon_sym_i128] = ACTIONS(2239), + [anon_sym_isize] = ACTIONS(2239), + [anon_sym_usize] = ACTIONS(2239), + [anon_sym_f32] = ACTIONS(2239), + [anon_sym_f64] = ACTIONS(2239), + [anon_sym_bool] = ACTIONS(2239), + [anon_sym_str] = ACTIONS(2239), + [anon_sym_char] = ACTIONS(2239), + [aux_sym__never_special_token_token1] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_as] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), + [anon_sym_fn] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_impl] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_loop] = ACTIONS(2239), + [anon_sym_match] = ACTIONS(2239), + [anon_sym_mod] = ACTIONS(2239), + [anon_sym_pub] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_struct] = ACTIONS(2239), + [anon_sym_trait] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_union] = ACTIONS(2239), + [anon_sym_unsafe] = ACTIONS(2239), + [anon_sym_use] = ACTIONS(2239), + [anon_sym_where] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [sym_mutable_specifier] = ACTIONS(2239), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1164), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_crate] = ACTIONS(2239), + [sym_metavariable] = ACTIONS(2243), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, [546] = { - [sym_attribute_item] = STATE(623), - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_macro_invocation] = STATE(2465), - [sym_scoped_identifier] = STATE(1571), - [sym_scoped_type_identifier] = STATE(1936), - [sym_match_pattern] = STATE(2465), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1924), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_enum_variant_list_repeat1] = STATE(623), - [sym_identifier] = ACTIONS(1166), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [547] = { - [sym_attribute_item] = STATE(558), - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym_visibility_modifier] = STATE(684), - [sym__type] = STATE(1804), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [sym_attribute_item] = STATE(557), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(685), + [sym__type] = STATE(1811), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(557), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2311), + [anon_sym_RPAREN] = ACTIONS(2317), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63722,19 +63720,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [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(2315), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(2325), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), @@ -63743,68 +63741,141 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2321), + [sym_crate] = ACTIONS(2327), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, + [547] = { + [sym_attribute_item] = STATE(600), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2448), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_pattern] = STATE(2448), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(600), + [sym_identifier] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, [548] = { - [sym_attribute_item] = STATE(623), - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_macro_invocation] = STATE(2465), - [sym_scoped_identifier] = STATE(1571), - [sym_scoped_type_identifier] = STATE(1936), - [sym_match_pattern] = STATE(2328), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1924), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [aux_sym_enum_variant_list_repeat1] = STATE(623), - [sym_identifier] = ACTIONS(1166), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), + [sym_attribute_item] = STATE(600), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2448), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_pattern] = STATE(2449), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(600), + [sym_identifier] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_union] = ACTIONS(1194), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -63812,43 +63883,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [549] = { - [sym_attribute_item] = STATE(557), - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym_visibility_modifier] = STATE(732), - [sym__type] = STATE(1975), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_enum_variant_list_repeat1] = STATE(557), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(740), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2323), + [anon_sym_RPAREN] = ACTIONS(2329), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63868,17 +63939,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [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(2315), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -63888,39 +63959,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2321), + [sym_crate] = ACTIONS(2327), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, [550] = { - [sym_attribute_item] = STATE(557), - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym_visibility_modifier] = STATE(732), - [sym__type] = STATE(1975), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_enum_variant_list_repeat1] = STATE(557), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(740), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2325), + [anon_sym_RPAREN] = ACTIONS(2331), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -63940,17 +64011,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [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(2315), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -63960,39 +64031,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2321), + [sym_crate] = ACTIONS(2327), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, [551] = { - [sym_attribute_item] = STATE(557), - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym_visibility_modifier] = STATE(732), - [sym__type] = STATE(1975), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_enum_variant_list_repeat1] = STATE(557), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(740), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2333), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -64012,17 +64083,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [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(2315), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -64032,39 +64103,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2321), + [sym_crate] = ACTIONS(2327), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, [552] = { - [sym_attribute_item] = STATE(557), - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym_visibility_modifier] = STATE(732), - [sym__type] = STATE(1975), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_enum_variant_list_repeat1] = STATE(557), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(740), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2329), + [anon_sym_RPAREN] = ACTIONS(2335), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -64084,17 +64155,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [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(2315), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -64104,39 +64175,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2321), + [sym_crate] = ACTIONS(2327), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, [553] = { - [sym_attribute_item] = STATE(557), - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym_visibility_modifier] = STATE(732), - [sym__type] = STATE(1975), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_enum_variant_list_repeat1] = STATE(557), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(740), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2331), + [anon_sym_RPAREN] = ACTIONS(2337), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -64156,17 +64227,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [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(2315), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -64176,39 +64247,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2321), + [sym_crate] = ACTIONS(2327), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, [554] = { - [sym_attribute_item] = STATE(557), - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym_visibility_modifier] = STATE(732), - [sym__type] = STATE(1975), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_enum_variant_list_repeat1] = STATE(557), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(740), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2333), + [anon_sym_RPAREN] = ACTIONS(2339), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -64228,17 +64299,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [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(2315), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -64248,37 +64319,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2321), + [sym_crate] = ACTIONS(2327), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, [555] = { - [sym_attribute_item] = STATE(557), - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym_visibility_modifier] = STATE(732), - [sym__type] = STATE(1975), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_enum_variant_list_repeat1] = STATE(557), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(740), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -64299,17 +64370,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [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(2315), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -64319,108 +64390,108 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2321), + [sym_crate] = ACTIONS(2327), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, [556] = { - [sym_identifier] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_RBRACK] = ACTIONS(2337), - [anon_sym_COLON] = ACTIONS(2339), - [anon_sym_DOLLAR] = ACTIONS(2335), - [anon_sym_u8] = ACTIONS(2335), - [anon_sym_i8] = ACTIONS(2335), - [anon_sym_u16] = ACTIONS(2335), - [anon_sym_i16] = ACTIONS(2335), - [anon_sym_u32] = ACTIONS(2335), - [anon_sym_i32] = ACTIONS(2335), - [anon_sym_u64] = ACTIONS(2335), - [anon_sym_i64] = ACTIONS(2335), - [anon_sym_u128] = ACTIONS(2335), - [anon_sym_i128] = ACTIONS(2335), - [anon_sym_isize] = ACTIONS(2335), - [anon_sym_usize] = ACTIONS(2335), - [anon_sym_f32] = ACTIONS(2335), - [anon_sym_f64] = ACTIONS(2335), - [anon_sym_bool] = ACTIONS(2335), - [anon_sym_str] = ACTIONS(2335), - [anon_sym_char] = ACTIONS(2335), - [aux_sym__non_special_token_token1] = ACTIONS(2335), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_as] = ACTIONS(2335), - [anon_sym_async] = ACTIONS(2335), - [anon_sym_await] = ACTIONS(2335), - [anon_sym_break] = ACTIONS(2335), - [anon_sym_const] = ACTIONS(2335), - [anon_sym_continue] = ACTIONS(2335), - [anon_sym_default] = ACTIONS(2335), - [anon_sym_enum] = ACTIONS(2335), - [anon_sym_fn] = ACTIONS(2335), - [anon_sym_for] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2335), - [anon_sym_impl] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2335), - [anon_sym_loop] = ACTIONS(2335), - [anon_sym_match] = ACTIONS(2335), - [anon_sym_mod] = ACTIONS(2335), - [anon_sym_pub] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2335), - [anon_sym_static] = ACTIONS(2335), - [anon_sym_struct] = ACTIONS(2335), - [anon_sym_trait] = ACTIONS(2335), - [anon_sym_type] = ACTIONS(2335), - [anon_sym_union] = ACTIONS(2335), - [anon_sym_unsafe] = ACTIONS(2335), - [anon_sym_use] = ACTIONS(2335), - [anon_sym_where] = ACTIONS(2335), - [anon_sym_while] = ACTIONS(2335), - [sym_mutable_specifier] = ACTIONS(2335), - [sym_integer_literal] = ACTIONS(2337), - [aux_sym_string_literal_token1] = ACTIONS(2337), - [sym_char_literal] = ACTIONS(2337), - [anon_sym_true] = ACTIONS(2335), - [anon_sym_false] = ACTIONS(2335), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2335), - [sym_super] = ACTIONS(2335), - [sym_crate] = ACTIONS(2335), - [sym_metavariable] = ACTIONS(2337), - [sym_raw_string_literal] = ACTIONS(2337), - [sym_float_literal] = ACTIONS(2337), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_RPAREN] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_RBRACK] = ACTIONS(2343), + [anon_sym_COLON] = ACTIONS(2345), + [anon_sym_DOLLAR] = ACTIONS(2341), + [anon_sym_u8] = ACTIONS(2341), + [anon_sym_i8] = ACTIONS(2341), + [anon_sym_u16] = ACTIONS(2341), + [anon_sym_i16] = ACTIONS(2341), + [anon_sym_u32] = ACTIONS(2341), + [anon_sym_i32] = ACTIONS(2341), + [anon_sym_u64] = ACTIONS(2341), + [anon_sym_i64] = ACTIONS(2341), + [anon_sym_u128] = ACTIONS(2341), + [anon_sym_i128] = ACTIONS(2341), + [anon_sym_isize] = ACTIONS(2341), + [anon_sym_usize] = ACTIONS(2341), + [anon_sym_f32] = ACTIONS(2341), + [anon_sym_f64] = ACTIONS(2341), + [anon_sym_bool] = ACTIONS(2341), + [anon_sym_str] = ACTIONS(2341), + [anon_sym_char] = ACTIONS(2341), + [aux_sym__never_special_token_token1] = ACTIONS(2341), + [anon_sym_SQUOTE] = ACTIONS(2341), + [anon_sym_as] = ACTIONS(2341), + [anon_sym_async] = ACTIONS(2341), + [anon_sym_await] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_default] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_fn] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_impl] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2341), + [anon_sym_loop] = ACTIONS(2341), + [anon_sym_match] = ACTIONS(2341), + [anon_sym_mod] = ACTIONS(2341), + [anon_sym_pub] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_trait] = ACTIONS(2341), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_union] = ACTIONS(2341), + [anon_sym_unsafe] = ACTIONS(2341), + [anon_sym_use] = ACTIONS(2341), + [anon_sym_where] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [sym_mutable_specifier] = ACTIONS(2341), + [sym_integer_literal] = ACTIONS(2343), + [aux_sym_string_literal_token1] = ACTIONS(2343), + [sym_char_literal] = ACTIONS(2343), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2341), + [sym_super] = ACTIONS(2341), + [sym_crate] = ACTIONS(2341), + [sym_metavariable] = ACTIONS(2343), + [sym_raw_string_literal] = ACTIONS(2343), + [sym_float_literal] = ACTIONS(2343), [sym_block_comment] = ACTIONS(3), }, [557] = { - [sym_attribute_item] = STATE(1135), - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym_visibility_modifier] = STATE(710), - [sym__type] = STATE(1905), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_enum_variant_list_repeat1] = STATE(1135), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [sym_attribute_item] = STATE(1140), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(672), + [sym__type] = STATE(1804), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(1140), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -64441,17 +64512,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [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(2315), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -64461,37 +64532,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2321), + [sym_crate] = ACTIONS(2327), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, [558] = { - [sym_attribute_item] = STATE(1135), - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym_visibility_modifier] = STATE(658), - [sym__type] = STATE(1838), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_enum_variant_list_repeat1] = STATE(1135), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [sym_attribute_item] = STATE(1140), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym_visibility_modifier] = STATE(713), + [sym__type] = STATE(2101), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_enum_variant_list_repeat1] = STATE(1140), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -64512,17 +64583,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [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(2315), + [anon_sym_pub] = ACTIONS(2321), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2323), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), @@ -64532,108 +64603,318 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(2321), + [sym_crate] = ACTIONS(2327), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, [559] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1808), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), - [anon_sym_COMMA] = ACTIONS(812), + [sym_identifier] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_RBRACK] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2347), + [anon_sym_u8] = ACTIONS(2347), + [anon_sym_i8] = ACTIONS(2347), + [anon_sym_u16] = ACTIONS(2347), + [anon_sym_i16] = ACTIONS(2347), + [anon_sym_u32] = ACTIONS(2347), + [anon_sym_i32] = ACTIONS(2347), + [anon_sym_u64] = ACTIONS(2347), + [anon_sym_i64] = ACTIONS(2347), + [anon_sym_u128] = ACTIONS(2347), + [anon_sym_i128] = ACTIONS(2347), + [anon_sym_isize] = ACTIONS(2347), + [anon_sym_usize] = ACTIONS(2347), + [anon_sym_f32] = ACTIONS(2347), + [anon_sym_f64] = ACTIONS(2347), + [anon_sym_bool] = ACTIONS(2347), + [anon_sym_str] = ACTIONS(2347), + [anon_sym_char] = ACTIONS(2347), + [aux_sym__never_special_token_token1] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2347), + [anon_sym_as] = ACTIONS(2347), + [anon_sym_async] = ACTIONS(2347), + [anon_sym_await] = ACTIONS(2347), + [anon_sym_break] = ACTIONS(2347), + [anon_sym_const] = ACTIONS(2347), + [anon_sym_continue] = ACTIONS(2347), + [anon_sym_default] = ACTIONS(2347), + [anon_sym_enum] = ACTIONS(2347), + [anon_sym_fn] = ACTIONS(2347), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_impl] = ACTIONS(2347), + [anon_sym_let] = ACTIONS(2347), + [anon_sym_loop] = ACTIONS(2347), + [anon_sym_match] = ACTIONS(2347), + [anon_sym_mod] = ACTIONS(2347), + [anon_sym_pub] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2347), + [anon_sym_static] = ACTIONS(2347), + [anon_sym_struct] = ACTIONS(2347), + [anon_sym_trait] = ACTIONS(2347), + [anon_sym_type] = ACTIONS(2347), + [anon_sym_union] = ACTIONS(2347), + [anon_sym_unsafe] = ACTIONS(2347), + [anon_sym_use] = ACTIONS(2347), + [anon_sym_where] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [sym_mutable_specifier] = ACTIONS(2347), + [sym_integer_literal] = ACTIONS(2349), + [aux_sym_string_literal_token1] = ACTIONS(2349), + [sym_char_literal] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2347), + [sym_super] = ACTIONS(2347), + [sym_crate] = ACTIONS(2347), + [sym_metavariable] = ACTIONS(2349), + [sym_raw_string_literal] = ACTIONS(2349), + [sym_float_literal] = ACTIONS(2349), + [sym_block_comment] = ACTIONS(3), + }, + [560] = { + [sym_parameter] = STATE(1986), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1817), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [sym_mutable_specifier] = ACTIONS(2355), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(2357), [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(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(2359), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [560] = { - [sym_function_modifiers] = STATE(2405), - [sym_const_parameter] = STATE(1876), - [sym_constrained_type_parameter] = STATE(1820), - [sym_optional_type_parameter] = STATE(1876), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1980), - [sym_bracketed_type] = STATE(2380), - [sym_qualified_type] = STATE(2362), - [sym_lifetime] = STATE(1686), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2347), + [561] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1821), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_RPAREN] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), + [anon_sym_COMMA] = ACTIONS(2365), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [562] = { + [sym_identifier] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2369), + [anon_sym_RPAREN] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_RBRACK] = ACTIONS(2369), + [anon_sym_DOLLAR] = ACTIONS(2367), + [anon_sym_u8] = ACTIONS(2367), + [anon_sym_i8] = ACTIONS(2367), + [anon_sym_u16] = ACTIONS(2367), + [anon_sym_i16] = ACTIONS(2367), + [anon_sym_u32] = ACTIONS(2367), + [anon_sym_i32] = ACTIONS(2367), + [anon_sym_u64] = ACTIONS(2367), + [anon_sym_i64] = ACTIONS(2367), + [anon_sym_u128] = ACTIONS(2367), + [anon_sym_i128] = ACTIONS(2367), + [anon_sym_isize] = ACTIONS(2367), + [anon_sym_usize] = ACTIONS(2367), + [anon_sym_f32] = ACTIONS(2367), + [anon_sym_f64] = ACTIONS(2367), + [anon_sym_bool] = ACTIONS(2367), + [anon_sym_str] = ACTIONS(2367), + [anon_sym_char] = ACTIONS(2367), + [aux_sym__never_special_token_token1] = ACTIONS(2367), + [anon_sym_SQUOTE] = ACTIONS(2367), + [anon_sym_as] = ACTIONS(2367), + [anon_sym_async] = ACTIONS(2367), + [anon_sym_await] = ACTIONS(2367), + [anon_sym_break] = ACTIONS(2367), + [anon_sym_const] = ACTIONS(2367), + [anon_sym_continue] = ACTIONS(2367), + [anon_sym_default] = ACTIONS(2367), + [anon_sym_enum] = ACTIONS(2367), + [anon_sym_fn] = ACTIONS(2367), + [anon_sym_for] = ACTIONS(2367), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_impl] = ACTIONS(2367), + [anon_sym_let] = ACTIONS(2367), + [anon_sym_loop] = ACTIONS(2367), + [anon_sym_match] = ACTIONS(2367), + [anon_sym_mod] = ACTIONS(2367), + [anon_sym_pub] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2367), + [anon_sym_static] = ACTIONS(2367), + [anon_sym_struct] = ACTIONS(2367), + [anon_sym_trait] = ACTIONS(2367), + [anon_sym_type] = ACTIONS(2367), + [anon_sym_union] = ACTIONS(2367), + [anon_sym_unsafe] = ACTIONS(2367), + [anon_sym_use] = ACTIONS(2367), + [anon_sym_where] = ACTIONS(2367), + [anon_sym_while] = ACTIONS(2367), + [sym_mutable_specifier] = ACTIONS(2367), + [sym_integer_literal] = ACTIONS(2369), + [aux_sym_string_literal_token1] = ACTIONS(2369), + [sym_char_literal] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(2367), + [anon_sym_false] = ACTIONS(2367), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2367), + [sym_super] = ACTIONS(2367), + [sym_crate] = ACTIONS(2367), + [sym_metavariable] = ACTIONS(2369), + [sym_raw_string_literal] = ACTIONS(2369), + [sym_float_literal] = ACTIONS(2369), + [sym_block_comment] = ACTIONS(3), + }, + [563] = { + [sym_function_modifiers] = STATE(2411), + [sym_const_parameter] = STATE(2119), + [sym_constrained_type_parameter] = STATE(1862), + [sym_optional_type_parameter] = STATE(2119), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(2068), + [sym_bracketed_type] = STATE(2370), + [sym_qualified_type] = STATE(2346), + [sym_lifetime] = STATE(1682), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2371), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -64654,9 +64935,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2373), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), [anon_sym_for] = ACTIONS(702), @@ -64673,430 +64954,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(2351), - [sym_block_comment] = ACTIONS(3), - }, - [561] = { - [sym_identifier] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_RPAREN] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_RBRACK] = ACTIONS(2355), - [anon_sym_DOLLAR] = ACTIONS(2353), - [anon_sym_u8] = ACTIONS(2353), - [anon_sym_i8] = ACTIONS(2353), - [anon_sym_u16] = ACTIONS(2353), - [anon_sym_i16] = ACTIONS(2353), - [anon_sym_u32] = ACTIONS(2353), - [anon_sym_i32] = ACTIONS(2353), - [anon_sym_u64] = ACTIONS(2353), - [anon_sym_i64] = ACTIONS(2353), - [anon_sym_u128] = ACTIONS(2353), - [anon_sym_i128] = ACTIONS(2353), - [anon_sym_isize] = ACTIONS(2353), - [anon_sym_usize] = ACTIONS(2353), - [anon_sym_f32] = ACTIONS(2353), - [anon_sym_f64] = ACTIONS(2353), - [anon_sym_bool] = ACTIONS(2353), - [anon_sym_str] = ACTIONS(2353), - [anon_sym_char] = ACTIONS(2353), - [aux_sym__non_special_token_token1] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2353), - [anon_sym_as] = ACTIONS(2353), - [anon_sym_async] = ACTIONS(2353), - [anon_sym_await] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_default] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - [anon_sym_fn] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_impl] = ACTIONS(2353), - [anon_sym_let] = ACTIONS(2353), - [anon_sym_loop] = ACTIONS(2353), - [anon_sym_match] = ACTIONS(2353), - [anon_sym_mod] = ACTIONS(2353), - [anon_sym_pub] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_struct] = ACTIONS(2353), - [anon_sym_trait] = ACTIONS(2353), - [anon_sym_type] = ACTIONS(2353), - [anon_sym_union] = ACTIONS(2353), - [anon_sym_unsafe] = ACTIONS(2353), - [anon_sym_use] = ACTIONS(2353), - [anon_sym_where] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [sym_mutable_specifier] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2355), - [aux_sym_string_literal_token1] = ACTIONS(2355), - [sym_char_literal] = ACTIONS(2355), - [anon_sym_true] = ACTIONS(2353), - [anon_sym_false] = ACTIONS(2353), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2353), - [sym_super] = ACTIONS(2353), - [sym_crate] = ACTIONS(2353), - [sym_metavariable] = ACTIONS(2355), - [sym_raw_string_literal] = ACTIONS(2355), - [sym_float_literal] = ACTIONS(2355), - [sym_block_comment] = ACTIONS(3), - }, - [562] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1817), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), - [anon_sym_COMMA] = ACTIONS(2359), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [563] = { - [sym_parameter] = STATE(1988), - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1797), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2361), - [anon_sym_union] = ACTIONS(2361), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(2365), - [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(2367), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [564] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1811), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_RBRACK] = ACTIONS(828), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), - [anon_sym_COMMA] = ACTIONS(836), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [565] = { - [sym_identifier] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_RPAREN] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2369), - [anon_sym_u8] = ACTIONS(2369), - [anon_sym_i8] = ACTIONS(2369), - [anon_sym_u16] = ACTIONS(2369), - [anon_sym_i16] = ACTIONS(2369), - [anon_sym_u32] = ACTIONS(2369), - [anon_sym_i32] = ACTIONS(2369), - [anon_sym_u64] = ACTIONS(2369), - [anon_sym_i64] = ACTIONS(2369), - [anon_sym_u128] = ACTIONS(2369), - [anon_sym_i128] = ACTIONS(2369), - [anon_sym_isize] = ACTIONS(2369), - [anon_sym_usize] = ACTIONS(2369), - [anon_sym_f32] = ACTIONS(2369), - [anon_sym_f64] = ACTIONS(2369), - [anon_sym_bool] = ACTIONS(2369), - [anon_sym_str] = ACTIONS(2369), - [anon_sym_char] = ACTIONS(2369), - [aux_sym__non_special_token_token1] = ACTIONS(2369), - [anon_sym_SQUOTE] = ACTIONS(2369), - [anon_sym_as] = ACTIONS(2369), - [anon_sym_async] = ACTIONS(2369), - [anon_sym_await] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_const] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_default] = ACTIONS(2369), - [anon_sym_enum] = ACTIONS(2369), - [anon_sym_fn] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_impl] = ACTIONS(2369), - [anon_sym_let] = ACTIONS(2369), - [anon_sym_loop] = ACTIONS(2369), - [anon_sym_match] = ACTIONS(2369), - [anon_sym_mod] = ACTIONS(2369), - [anon_sym_pub] = ACTIONS(2369), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_static] = ACTIONS(2369), - [anon_sym_struct] = ACTIONS(2369), - [anon_sym_trait] = ACTIONS(2369), - [anon_sym_type] = ACTIONS(2369), - [anon_sym_union] = ACTIONS(2369), - [anon_sym_unsafe] = ACTIONS(2369), - [anon_sym_use] = ACTIONS(2369), - [anon_sym_where] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [sym_mutable_specifier] = ACTIONS(2369), - [sym_integer_literal] = ACTIONS(2371), - [aux_sym_string_literal_token1] = ACTIONS(2371), - [sym_char_literal] = ACTIONS(2371), - [anon_sym_true] = ACTIONS(2369), - [anon_sym_false] = ACTIONS(2369), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2369), - [sym_super] = ACTIONS(2369), - [sym_crate] = ACTIONS(2369), - [sym_metavariable] = ACTIONS(2371), - [sym_raw_string_literal] = ACTIONS(2371), - [sym_float_literal] = ACTIONS(2371), - [sym_block_comment] = ACTIONS(3), - }, - [566] = { - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_RPAREN] = ACTIONS(2375), - [anon_sym_LBRACE] = ACTIONS(2375), - [anon_sym_RBRACE] = ACTIONS(2375), - [anon_sym_LBRACK] = ACTIONS(2375), - [anon_sym_RBRACK] = ACTIONS(2375), - [anon_sym_DOLLAR] = ACTIONS(2373), - [anon_sym_u8] = ACTIONS(2373), - [anon_sym_i8] = ACTIONS(2373), - [anon_sym_u16] = ACTIONS(2373), - [anon_sym_i16] = ACTIONS(2373), - [anon_sym_u32] = ACTIONS(2373), - [anon_sym_i32] = ACTIONS(2373), - [anon_sym_u64] = ACTIONS(2373), - [anon_sym_i64] = ACTIONS(2373), - [anon_sym_u128] = ACTIONS(2373), - [anon_sym_i128] = ACTIONS(2373), - [anon_sym_isize] = ACTIONS(2373), - [anon_sym_usize] = ACTIONS(2373), - [anon_sym_f32] = ACTIONS(2373), - [anon_sym_f64] = ACTIONS(2373), - [anon_sym_bool] = ACTIONS(2373), - [anon_sym_str] = ACTIONS(2373), - [anon_sym_char] = ACTIONS(2373), - [aux_sym__non_special_token_token1] = ACTIONS(2373), - [anon_sym_SQUOTE] = ACTIONS(2373), - [anon_sym_as] = ACTIONS(2373), - [anon_sym_async] = ACTIONS(2373), - [anon_sym_await] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_default] = ACTIONS(2373), - [anon_sym_enum] = ACTIONS(2373), - [anon_sym_fn] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_impl] = ACTIONS(2373), - [anon_sym_let] = ACTIONS(2373), - [anon_sym_loop] = ACTIONS(2373), - [anon_sym_match] = ACTIONS(2373), - [anon_sym_mod] = ACTIONS(2373), - [anon_sym_pub] = ACTIONS(2373), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_static] = ACTIONS(2373), - [anon_sym_struct] = ACTIONS(2373), - [anon_sym_trait] = ACTIONS(2373), - [anon_sym_type] = ACTIONS(2373), - [anon_sym_union] = ACTIONS(2373), - [anon_sym_unsafe] = ACTIONS(2373), - [anon_sym_use] = ACTIONS(2373), - [anon_sym_where] = ACTIONS(2373), - [anon_sym_while] = ACTIONS(2373), - [sym_mutable_specifier] = ACTIONS(2373), - [sym_integer_literal] = ACTIONS(2375), - [aux_sym_string_literal_token1] = ACTIONS(2375), - [sym_char_literal] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(2373), - [anon_sym_false] = ACTIONS(2373), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(2373), - [sym_super] = ACTIONS(2373), - [sym_crate] = ACTIONS(2373), [sym_metavariable] = ACTIONS(2375), - [sym_raw_string_literal] = ACTIONS(2375), - [sym_float_literal] = ACTIONS(2375), [sym_block_comment] = ACTIONS(3), }, - [567] = { + [564] = { [sym_identifier] = ACTIONS(2377), [anon_sym_LPAREN] = ACTIONS(2379), [anon_sym_RPAREN] = ACTIONS(2379), @@ -65122,7 +64983,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2377), [anon_sym_str] = ACTIONS(2377), [anon_sym_char] = ACTIONS(2377), - [aux_sym__non_special_token_token1] = ACTIONS(2377), + [aux_sym__never_special_token_token1] = ACTIONS(2377), [anon_sym_SQUOTE] = ACTIONS(2377), [anon_sym_as] = ACTIONS(2377), [anon_sym_async] = ACTIONS(2377), @@ -65157,7 +65018,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2379), [anon_sym_true] = ACTIONS(2377), [anon_sym_false] = ACTIONS(2377), - [sym_line_comment] = ACTIONS(1089), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2377), [sym_super] = ACTIONS(2377), [sym_crate] = ACTIONS(2377), @@ -65166,7 +65027,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2379), [sym_block_comment] = ACTIONS(3), }, - [568] = { + [565] = { [sym_identifier] = ACTIONS(2381), [anon_sym_LPAREN] = ACTIONS(2383), [anon_sym_RPAREN] = ACTIONS(2383), @@ -65192,7 +65053,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2381), [anon_sym_str] = ACTIONS(2381), [anon_sym_char] = ACTIONS(2381), - [aux_sym__non_special_token_token1] = ACTIONS(2381), + [aux_sym__never_special_token_token1] = ACTIONS(2381), [anon_sym_SQUOTE] = ACTIONS(2381), [anon_sym_as] = ACTIONS(2381), [anon_sym_async] = ACTIONS(2381), @@ -65227,7 +65088,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2383), [anon_sym_true] = ACTIONS(2381), [anon_sym_false] = ACTIONS(2381), - [sym_line_comment] = ACTIONS(1089), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2381), [sym_super] = ACTIONS(2381), [sym_crate] = ACTIONS(2381), @@ -65236,7 +65097,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2383), [sym_block_comment] = ACTIONS(3), }, - [569] = { + [566] = { [sym_identifier] = ACTIONS(2385), [anon_sym_LPAREN] = ACTIONS(2387), [anon_sym_RPAREN] = ACTIONS(2387), @@ -65262,7 +65123,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2385), [anon_sym_str] = ACTIONS(2385), [anon_sym_char] = ACTIONS(2385), - [aux_sym__non_special_token_token1] = ACTIONS(2385), + [aux_sym__never_special_token_token1] = ACTIONS(2385), [anon_sym_SQUOTE] = ACTIONS(2385), [anon_sym_as] = ACTIONS(2385), [anon_sym_async] = ACTIONS(2385), @@ -65297,7 +65158,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2387), [anon_sym_true] = ACTIONS(2385), [anon_sym_false] = ACTIONS(2385), - [sym_line_comment] = ACTIONS(1089), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2385), [sym_super] = ACTIONS(2385), [sym_crate] = ACTIONS(2385), @@ -65306,7 +65167,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2387), [sym_block_comment] = ACTIONS(3), }, - [570] = { + [567] = { [sym_identifier] = ACTIONS(2389), [anon_sym_LPAREN] = ACTIONS(2391), [anon_sym_RPAREN] = ACTIONS(2391), @@ -65332,7 +65193,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2389), [anon_sym_str] = ACTIONS(2389), [anon_sym_char] = ACTIONS(2389), - [aux_sym__non_special_token_token1] = ACTIONS(2389), + [aux_sym__never_special_token_token1] = ACTIONS(2389), [anon_sym_SQUOTE] = ACTIONS(2389), [anon_sym_as] = ACTIONS(2389), [anon_sym_async] = ACTIONS(2389), @@ -65367,7 +65228,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2391), [anon_sym_true] = ACTIONS(2389), [anon_sym_false] = ACTIONS(2389), - [sym_line_comment] = ACTIONS(1089), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2389), [sym_super] = ACTIONS(2389), [sym_crate] = ACTIONS(2389), @@ -65376,7 +65237,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2391), [sym_block_comment] = ACTIONS(3), }, - [571] = { + [568] = { [sym_identifier] = ACTIONS(2393), [anon_sym_LPAREN] = ACTIONS(2395), [anon_sym_RPAREN] = ACTIONS(2395), @@ -65402,7 +65263,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2393), [anon_sym_str] = ACTIONS(2393), [anon_sym_char] = ACTIONS(2393), - [aux_sym__non_special_token_token1] = ACTIONS(2393), + [aux_sym__never_special_token_token1] = ACTIONS(2393), [anon_sym_SQUOTE] = ACTIONS(2393), [anon_sym_as] = ACTIONS(2393), [anon_sym_async] = ACTIONS(2393), @@ -65437,7 +65298,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2395), [anon_sym_true] = ACTIONS(2393), [anon_sym_false] = ACTIONS(2393), - [sym_line_comment] = ACTIONS(1089), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2393), [sym_super] = ACTIONS(2393), [sym_crate] = ACTIONS(2393), @@ -65446,7 +65307,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2395), [sym_block_comment] = ACTIONS(3), }, - [572] = { + [569] = { [sym_identifier] = ACTIONS(2397), [anon_sym_LPAREN] = ACTIONS(2399), [anon_sym_RPAREN] = ACTIONS(2399), @@ -65472,7 +65333,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2397), [anon_sym_str] = ACTIONS(2397), [anon_sym_char] = ACTIONS(2397), - [aux_sym__non_special_token_token1] = ACTIONS(2397), + [aux_sym__never_special_token_token1] = ACTIONS(2397), [anon_sym_SQUOTE] = ACTIONS(2397), [anon_sym_as] = ACTIONS(2397), [anon_sym_async] = ACTIONS(2397), @@ -65507,7 +65368,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2399), [anon_sym_true] = ACTIONS(2397), [anon_sym_false] = ACTIONS(2397), - [sym_line_comment] = ACTIONS(1089), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2397), [sym_super] = ACTIONS(2397), [sym_crate] = ACTIONS(2397), @@ -65516,77 +65377,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2399), [sym_block_comment] = ACTIONS(3), }, - [573] = { - [sym_identifier] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_RPAREN] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_RBRACK] = ACTIONS(644), - [anon_sym_DOLLAR] = ACTIONS(646), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(646), - [anon_sym_SQUOTE] = ACTIONS(646), - [anon_sym_as] = ACTIONS(646), - [anon_sym_async] = ACTIONS(646), - [anon_sym_await] = 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_where] = ACTIONS(646), - [anon_sym_while] = ACTIONS(646), - [sym_mutable_specifier] = 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(1089), - [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), - }, - [574] = { + [570] = { [sym_identifier] = ACTIONS(2401), [anon_sym_LPAREN] = ACTIONS(2403), [anon_sym_RPAREN] = ACTIONS(2403), @@ -65612,7 +65403,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2401), [anon_sym_str] = ACTIONS(2401), [anon_sym_char] = ACTIONS(2401), - [aux_sym__non_special_token_token1] = ACTIONS(2401), + [aux_sym__never_special_token_token1] = ACTIONS(2401), [anon_sym_SQUOTE] = ACTIONS(2401), [anon_sym_as] = ACTIONS(2401), [anon_sym_async] = ACTIONS(2401), @@ -65647,7 +65438,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2403), [anon_sym_true] = ACTIONS(2401), [anon_sym_false] = ACTIONS(2401), - [sym_line_comment] = ACTIONS(1089), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2401), [sym_super] = ACTIONS(2401), [sym_crate] = ACTIONS(2401), @@ -65656,7 +65447,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2403), [sym_block_comment] = ACTIONS(3), }, - [575] = { + [571] = { [sym_identifier] = ACTIONS(2405), [anon_sym_LPAREN] = ACTIONS(2407), [anon_sym_RPAREN] = ACTIONS(2407), @@ -65682,7 +65473,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2405), [anon_sym_str] = ACTIONS(2405), [anon_sym_char] = ACTIONS(2405), - [aux_sym__non_special_token_token1] = ACTIONS(2405), + [aux_sym__never_special_token_token1] = ACTIONS(2405), [anon_sym_SQUOTE] = ACTIONS(2405), [anon_sym_as] = ACTIONS(2405), [anon_sym_async] = ACTIONS(2405), @@ -65717,7 +65508,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2407), [anon_sym_true] = ACTIONS(2405), [anon_sym_false] = ACTIONS(2405), - [sym_line_comment] = ACTIONS(1089), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2405), [sym_super] = ACTIONS(2405), [sym_crate] = ACTIONS(2405), @@ -65726,7 +65517,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2407), [sym_block_comment] = ACTIONS(3), }, - [576] = { + [572] = { [sym_identifier] = ACTIONS(2409), [anon_sym_LPAREN] = ACTIONS(2411), [anon_sym_RPAREN] = ACTIONS(2411), @@ -65752,7 +65543,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2409), [anon_sym_str] = ACTIONS(2409), [anon_sym_char] = ACTIONS(2409), - [aux_sym__non_special_token_token1] = ACTIONS(2409), + [aux_sym__never_special_token_token1] = ACTIONS(2409), [anon_sym_SQUOTE] = ACTIONS(2409), [anon_sym_as] = ACTIONS(2409), [anon_sym_async] = ACTIONS(2409), @@ -65787,7 +65578,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2411), [anon_sym_true] = ACTIONS(2409), [anon_sym_false] = ACTIONS(2409), - [sym_line_comment] = ACTIONS(1089), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2409), [sym_super] = ACTIONS(2409), [sym_crate] = ACTIONS(2409), @@ -65796,7 +65587,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2411), [sym_block_comment] = ACTIONS(3), }, - [577] = { + [573] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1834), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_RBRACK] = ACTIONS(810), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [574] = { [sym_identifier] = ACTIONS(2413), [anon_sym_LPAREN] = ACTIONS(2415), [anon_sym_RPAREN] = ACTIONS(2415), @@ -65822,7 +65683,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2413), [anon_sym_str] = ACTIONS(2413), [anon_sym_char] = ACTIONS(2413), - [aux_sym__non_special_token_token1] = ACTIONS(2413), + [aux_sym__never_special_token_token1] = ACTIONS(2413), [anon_sym_SQUOTE] = ACTIONS(2413), [anon_sym_as] = ACTIONS(2413), [anon_sym_async] = ACTIONS(2413), @@ -65857,7 +65718,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2415), [anon_sym_true] = ACTIONS(2413), [anon_sym_false] = ACTIONS(2413), - [sym_line_comment] = ACTIONS(1089), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2413), [sym_super] = ACTIONS(2413), [sym_crate] = ACTIONS(2413), @@ -65866,7 +65727,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2415), [sym_block_comment] = ACTIONS(3), }, - [578] = { + [575] = { [sym_identifier] = ACTIONS(2417), [anon_sym_LPAREN] = ACTIONS(2419), [anon_sym_RPAREN] = ACTIONS(2419), @@ -65892,7 +65753,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2417), [anon_sym_str] = ACTIONS(2417), [anon_sym_char] = ACTIONS(2417), - [aux_sym__non_special_token_token1] = ACTIONS(2417), + [aux_sym__never_special_token_token1] = ACTIONS(2417), [anon_sym_SQUOTE] = ACTIONS(2417), [anon_sym_as] = ACTIONS(2417), [anon_sym_async] = ACTIONS(2417), @@ -65927,7 +65788,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2419), [anon_sym_true] = ACTIONS(2417), [anon_sym_false] = ACTIONS(2417), - [sym_line_comment] = ACTIONS(1089), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2417), [sym_super] = ACTIONS(2417), [sym_crate] = ACTIONS(2417), @@ -65936,7 +65797,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2419), [sym_block_comment] = ACTIONS(3), }, - [579] = { + [576] = { [sym_identifier] = ACTIONS(2421), [anon_sym_LPAREN] = ACTIONS(2423), [anon_sym_RPAREN] = ACTIONS(2423), @@ -65962,7 +65823,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2421), [anon_sym_str] = ACTIONS(2421), [anon_sym_char] = ACTIONS(2421), - [aux_sym__non_special_token_token1] = ACTIONS(2421), + [aux_sym__never_special_token_token1] = ACTIONS(2421), [anon_sym_SQUOTE] = ACTIONS(2421), [anon_sym_as] = ACTIONS(2421), [anon_sym_async] = ACTIONS(2421), @@ -65997,7 +65858,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2423), [anon_sym_true] = ACTIONS(2421), [anon_sym_false] = ACTIONS(2421), - [sym_line_comment] = ACTIONS(1089), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2421), [sym_super] = ACTIONS(2421), [sym_crate] = ACTIONS(2421), @@ -66006,7 +65867,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2423), [sym_block_comment] = ACTIONS(3), }, - [580] = { + [577] = { [sym_identifier] = ACTIONS(2425), [anon_sym_LPAREN] = ACTIONS(2427), [anon_sym_RPAREN] = ACTIONS(2427), @@ -66032,7 +65893,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2425), [anon_sym_str] = ACTIONS(2425), [anon_sym_char] = ACTIONS(2425), - [aux_sym__non_special_token_token1] = ACTIONS(2425), + [aux_sym__never_special_token_token1] = ACTIONS(2425), [anon_sym_SQUOTE] = ACTIONS(2425), [anon_sym_as] = ACTIONS(2425), [anon_sym_async] = ACTIONS(2425), @@ -66067,7 +65928,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2427), [anon_sym_true] = ACTIONS(2425), [anon_sym_false] = ACTIONS(2425), - [sym_line_comment] = ACTIONS(1089), + [sym_line_comment] = ACTIONS(950), [sym_self] = ACTIONS(2425), [sym_super] = ACTIONS(2425), [sym_crate] = ACTIONS(2425), @@ -66076,130 +65937,338 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2427), [sym_block_comment] = ACTIONS(3), }, - [581] = { - [sym_identifier] = ACTIONS(626), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_RPAREN] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(624), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_RBRACK] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(626), - [anon_sym_u8] = ACTIONS(626), - [anon_sym_i8] = ACTIONS(626), - [anon_sym_u16] = ACTIONS(626), - [anon_sym_i16] = ACTIONS(626), - [anon_sym_u32] = ACTIONS(626), - [anon_sym_i32] = ACTIONS(626), - [anon_sym_u64] = ACTIONS(626), - [anon_sym_i64] = ACTIONS(626), - [anon_sym_u128] = ACTIONS(626), - [anon_sym_i128] = ACTIONS(626), - [anon_sym_isize] = ACTIONS(626), - [anon_sym_usize] = ACTIONS(626), - [anon_sym_f32] = ACTIONS(626), - [anon_sym_f64] = ACTIONS(626), - [anon_sym_bool] = ACTIONS(626), - [anon_sym_str] = ACTIONS(626), - [anon_sym_char] = ACTIONS(626), - [aux_sym__non_special_token_token1] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(626), - [anon_sym_as] = ACTIONS(626), - [anon_sym_async] = ACTIONS(626), - [anon_sym_await] = ACTIONS(626), - [anon_sym_break] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_continue] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_enum] = ACTIONS(626), - [anon_sym_fn] = ACTIONS(626), - [anon_sym_for] = ACTIONS(626), - [anon_sym_if] = ACTIONS(626), - [anon_sym_impl] = ACTIONS(626), - [anon_sym_let] = ACTIONS(626), - [anon_sym_loop] = ACTIONS(626), - [anon_sym_match] = ACTIONS(626), - [anon_sym_mod] = ACTIONS(626), - [anon_sym_pub] = ACTIONS(626), - [anon_sym_return] = ACTIONS(626), - [anon_sym_static] = ACTIONS(626), - [anon_sym_struct] = ACTIONS(626), - [anon_sym_trait] = ACTIONS(626), - [anon_sym_type] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [anon_sym_unsafe] = ACTIONS(626), - [anon_sym_use] = ACTIONS(626), - [anon_sym_where] = ACTIONS(626), - [anon_sym_while] = ACTIONS(626), - [sym_mutable_specifier] = ACTIONS(626), - [sym_integer_literal] = ACTIONS(624), - [aux_sym_string_literal_token1] = ACTIONS(624), - [sym_char_literal] = ACTIONS(624), - [anon_sym_true] = ACTIONS(626), - [anon_sym_false] = ACTIONS(626), - [sym_line_comment] = ACTIONS(1089), - [sym_self] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_crate] = ACTIONS(626), - [sym_metavariable] = ACTIONS(624), - [sym_raw_string_literal] = ACTIONS(624), - [sym_float_literal] = ACTIONS(624), + [578] = { + [sym_identifier] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_RPAREN] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2431), + [anon_sym_RBRACK] = ACTIONS(2431), + [anon_sym_DOLLAR] = ACTIONS(2429), + [anon_sym_u8] = ACTIONS(2429), + [anon_sym_i8] = ACTIONS(2429), + [anon_sym_u16] = ACTIONS(2429), + [anon_sym_i16] = ACTIONS(2429), + [anon_sym_u32] = ACTIONS(2429), + [anon_sym_i32] = ACTIONS(2429), + [anon_sym_u64] = ACTIONS(2429), + [anon_sym_i64] = ACTIONS(2429), + [anon_sym_u128] = ACTIONS(2429), + [anon_sym_i128] = ACTIONS(2429), + [anon_sym_isize] = ACTIONS(2429), + [anon_sym_usize] = ACTIONS(2429), + [anon_sym_f32] = ACTIONS(2429), + [anon_sym_f64] = ACTIONS(2429), + [anon_sym_bool] = ACTIONS(2429), + [anon_sym_str] = ACTIONS(2429), + [anon_sym_char] = ACTIONS(2429), + [aux_sym__never_special_token_token1] = ACTIONS(2429), + [anon_sym_SQUOTE] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_await] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_fn] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_impl] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_mod] = ACTIONS(2429), + [anon_sym_pub] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_trait] = ACTIONS(2429), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_unsafe] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_where] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [sym_mutable_specifier] = ACTIONS(2429), + [sym_integer_literal] = ACTIONS(2431), + [aux_sym_string_literal_token1] = ACTIONS(2431), + [sym_char_literal] = ACTIONS(2431), + [anon_sym_true] = ACTIONS(2429), + [anon_sym_false] = ACTIONS(2429), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2429), + [sym_super] = ACTIONS(2429), + [sym_crate] = ACTIONS(2429), + [sym_metavariable] = ACTIONS(2431), + [sym_raw_string_literal] = ACTIONS(2431), + [sym_float_literal] = ACTIONS(2431), + [sym_block_comment] = ACTIONS(3), + }, + [579] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1843), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_RPAREN] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), + [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [580] = { + [sym_function_modifiers] = STATE(2411), + [sym_higher_ranked_trait_bound] = STATE(1623), + [sym_removed_trait_bound] = STATE(1623), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1629), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1626), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2435), + [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(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(2437), + [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), + }, + [581] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_RBRACK] = ACTIONS(2439), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [582] = { - [sym_parameter] = STATE(2219), - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1879), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2361), - [anon_sym_union] = ACTIONS(2361), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_RPAREN] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -66207,68 +66276,137 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2367), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [583] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(2429), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [sym_function_modifiers] = STATE(2411), + [sym_higher_ranked_trait_bound] = STATE(1623), + [sym_removed_trait_bound] = STATE(1623), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1629), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1635), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2435), + [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(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(700), + [anon_sym_for] = ACTIONS(2437), + [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), + }, + [584] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -66276,44 +66414,113 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [584] = { - [sym_function_modifiers] = STATE(2405), - [sym_higher_ranked_trait_bound] = STATE(1588), - [sym_removed_trait_bound] = STATE(1588), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1589), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(1591), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [585] = { + [sym_parameter] = STATE(2300), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [sym_mutable_specifier] = ACTIONS(2355), + [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(2359), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [586] = { + [sym_function_modifiers] = STATE(2411), + [sym_higher_ranked_trait_bound] = STATE(1623), + [sym_removed_trait_bound] = STATE(1623), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1624), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1626), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(2435), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -66331,12 +66538,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2437), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), @@ -66353,36 +66560,174 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [585] = { - [sym_function_modifiers] = STATE(2405), - [sym_higher_ranked_trait_bound] = STATE(1588), - [sym_removed_trait_bound] = STATE(1588), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1600), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(1591), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [587] = { + [sym_identifier] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_RPAREN] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(620), + [anon_sym_RBRACK] = ACTIONS(620), + [anon_sym_DOLLAR] = ACTIONS(620), + [anon_sym_u8] = ACTIONS(622), + [anon_sym_i8] = ACTIONS(622), + [anon_sym_u16] = ACTIONS(622), + [anon_sym_i16] = ACTIONS(622), + [anon_sym_u32] = ACTIONS(622), + [anon_sym_i32] = ACTIONS(622), + [anon_sym_u64] = ACTIONS(622), + [anon_sym_i64] = ACTIONS(622), + [anon_sym_u128] = ACTIONS(622), + [anon_sym_i128] = ACTIONS(622), + [anon_sym_isize] = ACTIONS(622), + [anon_sym_usize] = ACTIONS(622), + [anon_sym_f32] = ACTIONS(622), + [anon_sym_f64] = ACTIONS(622), + [anon_sym_bool] = ACTIONS(622), + [anon_sym_str] = ACTIONS(622), + [anon_sym_char] = ACTIONS(622), + [aux_sym__never_special_token_token1] = ACTIONS(622), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_async] = ACTIONS(622), + [anon_sym_await] = ACTIONS(622), + [anon_sym_break] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_continue] = ACTIONS(622), + [anon_sym_default] = ACTIONS(622), + [anon_sym_enum] = ACTIONS(622), + [anon_sym_fn] = ACTIONS(622), + [anon_sym_for] = ACTIONS(622), + [anon_sym_if] = ACTIONS(622), + [anon_sym_impl] = ACTIONS(622), + [anon_sym_let] = ACTIONS(622), + [anon_sym_loop] = ACTIONS(622), + [anon_sym_match] = ACTIONS(622), + [anon_sym_mod] = ACTIONS(622), + [anon_sym_pub] = ACTIONS(622), + [anon_sym_return] = ACTIONS(622), + [anon_sym_static] = ACTIONS(622), + [anon_sym_struct] = ACTIONS(622), + [anon_sym_trait] = ACTIONS(622), + [anon_sym_type] = ACTIONS(622), + [anon_sym_union] = ACTIONS(622), + [anon_sym_unsafe] = ACTIONS(622), + [anon_sym_use] = ACTIONS(622), + [anon_sym_where] = ACTIONS(622), + [anon_sym_while] = ACTIONS(622), + [sym_mutable_specifier] = ACTIONS(622), + [sym_integer_literal] = ACTIONS(620), + [aux_sym_string_literal_token1] = ACTIONS(620), + [sym_char_literal] = ACTIONS(620), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(622), + [sym_super] = ACTIONS(622), + [sym_crate] = ACTIONS(622), + [sym_raw_string_literal] = ACTIONS(620), + [sym_float_literal] = ACTIONS(620), + [sym_block_comment] = ACTIONS(3), + }, + [588] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_RPAREN] = ACTIONS(2445), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [589] = { + [sym_function_modifiers] = STATE(2411), + [sym_higher_ranked_trait_bound] = STATE(1560), + [sym_removed_trait_bound] = STATE(1560), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1563), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(1564), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(2435), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -66400,12 +66745,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2437), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), @@ -66422,60 +66767,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [586] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [590] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_RBRACK] = ACTIONS(2447), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -66483,68 +66828,137 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [587] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_RBRACK] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [591] = { + [sym_identifier] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_RPAREN] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_RBRACK] = ACTIONS(2427), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_u8] = ACTIONS(2425), + [anon_sym_i8] = ACTIONS(2425), + [anon_sym_u16] = ACTIONS(2425), + [anon_sym_i16] = ACTIONS(2425), + [anon_sym_u32] = ACTIONS(2425), + [anon_sym_i32] = ACTIONS(2425), + [anon_sym_u64] = ACTIONS(2425), + [anon_sym_i64] = ACTIONS(2425), + [anon_sym_u128] = ACTIONS(2425), + [anon_sym_i128] = ACTIONS(2425), + [anon_sym_isize] = ACTIONS(2425), + [anon_sym_usize] = ACTIONS(2425), + [anon_sym_f32] = ACTIONS(2425), + [anon_sym_f64] = ACTIONS(2425), + [anon_sym_bool] = ACTIONS(2425), + [anon_sym_str] = ACTIONS(2425), + [anon_sym_char] = ACTIONS(2425), + [aux_sym__never_special_token_token1] = ACTIONS(2425), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_await] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_fn] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_impl] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_mod] = ACTIONS(2425), + [anon_sym_pub] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_trait] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_unsafe] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_where] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [sym_mutable_specifier] = ACTIONS(2425), + [sym_integer_literal] = ACTIONS(2427), + [aux_sym_string_literal_token1] = ACTIONS(2427), + [sym_char_literal] = ACTIONS(2427), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2425), + [sym_super] = ACTIONS(2425), + [sym_crate] = ACTIONS(2425), + [sym_raw_string_literal] = ACTIONS(2427), + [sym_float_literal] = ACTIONS(2427), + [sym_block_comment] = ACTIONS(3), + }, + [592] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -66552,137 +66966,343 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [588] = { - [sym_function_modifiers] = STATE(2405), - [sym_higher_ranked_trait_bound] = STATE(1588), - [sym_removed_trait_bound] = STATE(1588), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1600), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(1602), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2431), - [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(2313), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2433), - [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), + [593] = { + [sym_identifier] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_RBRACK] = ACTIONS(652), + [anon_sym_DOLLAR] = 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), + [aux_sym__never_special_token_token1] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(654), + [anon_sym_as] = ACTIONS(654), + [anon_sym_async] = ACTIONS(654), + [anon_sym_await] = 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_where] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [sym_mutable_specifier] = 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(950), + [sym_self] = ACTIONS(654), + [sym_super] = ACTIONS(654), + [sym_crate] = ACTIONS(654), + [sym_raw_string_literal] = ACTIONS(652), + [sym_float_literal] = ACTIONS(652), + [sym_block_comment] = ACTIONS(3), + }, + [594] = { + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_RBRACK] = ACTIONS(2403), + [anon_sym_DOLLAR] = ACTIONS(2403), + [anon_sym_u8] = ACTIONS(2401), + [anon_sym_i8] = ACTIONS(2401), + [anon_sym_u16] = ACTIONS(2401), + [anon_sym_i16] = ACTIONS(2401), + [anon_sym_u32] = ACTIONS(2401), + [anon_sym_i32] = ACTIONS(2401), + [anon_sym_u64] = ACTIONS(2401), + [anon_sym_i64] = ACTIONS(2401), + [anon_sym_u128] = ACTIONS(2401), + [anon_sym_i128] = ACTIONS(2401), + [anon_sym_isize] = ACTIONS(2401), + [anon_sym_usize] = ACTIONS(2401), + [anon_sym_f32] = ACTIONS(2401), + [anon_sym_f64] = ACTIONS(2401), + [anon_sym_bool] = ACTIONS(2401), + [anon_sym_str] = ACTIONS(2401), + [anon_sym_char] = ACTIONS(2401), + [aux_sym__never_special_token_token1] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_async] = ACTIONS(2401), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_default] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_impl] = ACTIONS(2401), + [anon_sym_let] = ACTIONS(2401), + [anon_sym_loop] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_mod] = ACTIONS(2401), + [anon_sym_pub] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_trait] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_union] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_use] = ACTIONS(2401), + [anon_sym_where] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [sym_mutable_specifier] = ACTIONS(2401), + [sym_integer_literal] = ACTIONS(2403), + [aux_sym_string_literal_token1] = ACTIONS(2403), + [sym_char_literal] = ACTIONS(2403), + [anon_sym_true] = ACTIONS(2401), + [anon_sym_false] = ACTIONS(2401), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2401), + [sym_super] = ACTIONS(2401), + [sym_crate] = ACTIONS(2401), + [sym_raw_string_literal] = ACTIONS(2403), + [sym_float_literal] = ACTIONS(2403), + [sym_block_comment] = ACTIONS(3), + }, + [595] = { + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_RPAREN] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_RBRACK] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2395), + [anon_sym_u8] = ACTIONS(2393), + [anon_sym_i8] = ACTIONS(2393), + [anon_sym_u16] = ACTIONS(2393), + [anon_sym_i16] = ACTIONS(2393), + [anon_sym_u32] = ACTIONS(2393), + [anon_sym_i32] = ACTIONS(2393), + [anon_sym_u64] = ACTIONS(2393), + [anon_sym_i64] = ACTIONS(2393), + [anon_sym_u128] = ACTIONS(2393), + [anon_sym_i128] = ACTIONS(2393), + [anon_sym_isize] = ACTIONS(2393), + [anon_sym_usize] = ACTIONS(2393), + [anon_sym_f32] = ACTIONS(2393), + [anon_sym_f64] = ACTIONS(2393), + [anon_sym_bool] = ACTIONS(2393), + [anon_sym_str] = ACTIONS(2393), + [anon_sym_char] = ACTIONS(2393), + [aux_sym__never_special_token_token1] = ACTIONS(2393), + [anon_sym_SQUOTE] = ACTIONS(2393), + [anon_sym_as] = ACTIONS(2393), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_await] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_default] = ACTIONS(2393), + [anon_sym_enum] = ACTIONS(2393), + [anon_sym_fn] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_impl] = ACTIONS(2393), + [anon_sym_let] = ACTIONS(2393), + [anon_sym_loop] = ACTIONS(2393), + [anon_sym_match] = ACTIONS(2393), + [anon_sym_mod] = ACTIONS(2393), + [anon_sym_pub] = ACTIONS(2393), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(2393), + [anon_sym_trait] = ACTIONS(2393), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_union] = ACTIONS(2393), + [anon_sym_unsafe] = ACTIONS(2393), + [anon_sym_use] = ACTIONS(2393), + [anon_sym_where] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [sym_mutable_specifier] = ACTIONS(2393), + [sym_integer_literal] = ACTIONS(2395), + [aux_sym_string_literal_token1] = ACTIONS(2395), + [sym_char_literal] = ACTIONS(2395), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2393), + [sym_super] = ACTIONS(2393), + [sym_crate] = ACTIONS(2393), + [sym_raw_string_literal] = ACTIONS(2395), + [sym_float_literal] = ACTIONS(2395), + [sym_block_comment] = ACTIONS(3), + }, + [596] = { + [sym_identifier] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_RBRACK] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2349), + [anon_sym_u8] = ACTIONS(2347), + [anon_sym_i8] = ACTIONS(2347), + [anon_sym_u16] = ACTIONS(2347), + [anon_sym_i16] = ACTIONS(2347), + [anon_sym_u32] = ACTIONS(2347), + [anon_sym_i32] = ACTIONS(2347), + [anon_sym_u64] = ACTIONS(2347), + [anon_sym_i64] = ACTIONS(2347), + [anon_sym_u128] = ACTIONS(2347), + [anon_sym_i128] = ACTIONS(2347), + [anon_sym_isize] = ACTIONS(2347), + [anon_sym_usize] = ACTIONS(2347), + [anon_sym_f32] = ACTIONS(2347), + [anon_sym_f64] = ACTIONS(2347), + [anon_sym_bool] = ACTIONS(2347), + [anon_sym_str] = ACTIONS(2347), + [anon_sym_char] = ACTIONS(2347), + [aux_sym__never_special_token_token1] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2347), + [anon_sym_as] = ACTIONS(2347), + [anon_sym_async] = ACTIONS(2347), + [anon_sym_await] = ACTIONS(2347), + [anon_sym_break] = ACTIONS(2347), + [anon_sym_const] = ACTIONS(2347), + [anon_sym_continue] = ACTIONS(2347), + [anon_sym_default] = ACTIONS(2347), + [anon_sym_enum] = ACTIONS(2347), + [anon_sym_fn] = ACTIONS(2347), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_impl] = ACTIONS(2347), + [anon_sym_let] = ACTIONS(2347), + [anon_sym_loop] = ACTIONS(2347), + [anon_sym_match] = ACTIONS(2347), + [anon_sym_mod] = ACTIONS(2347), + [anon_sym_pub] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2347), + [anon_sym_static] = ACTIONS(2347), + [anon_sym_struct] = ACTIONS(2347), + [anon_sym_trait] = ACTIONS(2347), + [anon_sym_type] = ACTIONS(2347), + [anon_sym_union] = ACTIONS(2347), + [anon_sym_unsafe] = ACTIONS(2347), + [anon_sym_use] = ACTIONS(2347), + [anon_sym_where] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [sym_mutable_specifier] = ACTIONS(2347), + [sym_integer_literal] = ACTIONS(2349), + [aux_sym_string_literal_token1] = ACTIONS(2349), + [sym_char_literal] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [sym_line_comment] = ACTIONS(950), + [sym_self] = ACTIONS(2347), + [sym_super] = ACTIONS(2347), + [sym_crate] = ACTIONS(2347), + [sym_raw_string_literal] = ACTIONS(2349), + [sym_float_literal] = ACTIONS(2349), [sym_block_comment] = ACTIONS(3), }, - [589] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_RBRACK] = ACTIONS(2439), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [597] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1796), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -66690,68 +67310,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [590] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [598] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2210), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -66759,44 +67378,42 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [591] = { - [sym_function_modifiers] = STATE(2405), - [sym_higher_ranked_trait_bound] = STATE(1558), - [sym_removed_trait_bound] = STATE(1558), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1545), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(1565), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [599] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1394), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(2451), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2431), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -66814,12 +67431,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(702), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), @@ -66829,6 +67446,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2453), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), @@ -66836,60 +67454,127 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [592] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [600] = { + [sym_attribute_item] = STATE(600), + [aux_sym_enum_variant_list_repeat1] = STATE(600), + [sym_identifier] = ACTIONS(2455), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_RBRACK] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_u8] = ACTIONS(2455), + [anon_sym_i8] = ACTIONS(2455), + [anon_sym_u16] = ACTIONS(2455), + [anon_sym_i16] = ACTIONS(2455), + [anon_sym_u32] = ACTIONS(2455), + [anon_sym_i32] = ACTIONS(2455), + [anon_sym_u64] = ACTIONS(2455), + [anon_sym_i64] = ACTIONS(2455), + [anon_sym_u128] = ACTIONS(2455), + [anon_sym_i128] = ACTIONS(2455), + [anon_sym_isize] = ACTIONS(2455), + [anon_sym_usize] = ACTIONS(2455), + [anon_sym_f32] = ACTIONS(2455), + [anon_sym_f64] = ACTIONS(2455), + [anon_sym_bool] = ACTIONS(2455), + [anon_sym_str] = ACTIONS(2455), + [anon_sym_char] = ACTIONS(2455), + [anon_sym_SQUOTE] = ACTIONS(2455), + [anon_sym_async] = ACTIONS(2455), + [anon_sym_break] = ACTIONS(2455), + [anon_sym_const] = ACTIONS(2455), + [anon_sym_continue] = ACTIONS(2455), + [anon_sym_default] = ACTIONS(2455), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_loop] = ACTIONS(2455), + [anon_sym_match] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2455), + [anon_sym_unsafe] = ACTIONS(2455), + [anon_sym_while] = ACTIONS(2455), + [anon_sym_POUND] = ACTIONS(2459), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_COMMA] = ACTIONS(2457), + [anon_sym_ref] = ACTIONS(2455), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_COLON_COLON] = ACTIONS(2457), + [anon_sym__] = ACTIONS(2455), + [anon_sym_AMP] = ACTIONS(2457), + [sym_mutable_specifier] = ACTIONS(2455), + [anon_sym_DOT_DOT] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_yield] = ACTIONS(2455), + [anon_sym_move] = ACTIONS(2455), + [sym_integer_literal] = ACTIONS(2457), + [aux_sym_string_literal_token1] = ACTIONS(2457), + [sym_char_literal] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(2455), + [anon_sym_false] = ACTIONS(2455), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2455), + [sym_super] = ACTIONS(2455), + [sym_crate] = ACTIONS(2455), + [sym_metavariable] = ACTIONS(2457), + [sym_raw_string_literal] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2457), + [sym_block_comment] = ACTIONS(3), + }, + [601] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2181), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -66897,67 +67582,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [593] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2181), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [602] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2199), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -66965,67 +67650,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [594] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2211), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [603] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1979), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -67033,67 +67718,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [595] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2031), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [604] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1489), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -67101,41 +67786,41 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [596] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(2192), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [605] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1394), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2451), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), @@ -67154,7 +67839,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -67169,339 +67854,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2447), + [sym_mutable_specifier] = ACTIONS(2462), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), + [sym_self] = ACTIONS(2464), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [597] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2174), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [598] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2206), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [599] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2175), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [600] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1844), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [601] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2250), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [606] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2179), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -67509,67 +67922,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [602] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1832), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [607] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2229), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -67577,67 +67990,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [603] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2180), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [608] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1488), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [sym_mutable_specifier] = ACTIONS(2466), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67645,67 +68058,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [604] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [609] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1825), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -67713,67 +68126,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [605] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1476), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [610] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1816), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [sym_mutable_specifier] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67781,67 +68194,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [606] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2313), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [611] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2193), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -67849,135 +68262,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [607] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1390), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(2445), - [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(2313), - [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(2449), - [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), - }, - [608] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1856), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [612] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1873), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(2451), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [sym_mutable_specifier] = ACTIONS(2470), + [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), [aux_sym_string_literal_token1] = ACTIONS(736), @@ -67985,135 +68330,135 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [609] = { - [sym_function_modifiers] = STATE(2384), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1099), - [sym_bracketed_type] = STATE(2473), - [sym_lifetime] = STATE(2382), - [sym_array_type] = STATE(1068), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1068), - [sym_tuple_type] = STATE(1068), - [sym_unit_type] = STATE(1068), - [sym_generic_type] = STATE(840), - [sym_generic_type_with_turbofish] = STATE(2474), - [sym_bounded_type] = STATE(1068), - [sym_reference_type] = STATE(1068), - [sym_pointer_type] = STATE(1068), - [sym_empty_type] = STATE(1068), - [sym_abstract_type] = STATE(1068), - [sym_dynamic_type] = STATE(1068), - [sym_macro_invocation] = STATE(1068), - [sym_scoped_identifier] = STATE(2304), - [sym_scoped_type_identifier] = STATE(768), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_u8] = ACTIONS(2463), - [anon_sym_i8] = ACTIONS(2463), - [anon_sym_u16] = ACTIONS(2463), - [anon_sym_i16] = ACTIONS(2463), - [anon_sym_u32] = ACTIONS(2463), - [anon_sym_i32] = ACTIONS(2463), - [anon_sym_u64] = ACTIONS(2463), - [anon_sym_i64] = ACTIONS(2463), - [anon_sym_u128] = ACTIONS(2463), - [anon_sym_i128] = ACTIONS(2463), - [anon_sym_isize] = ACTIONS(2463), - [anon_sym_usize] = ACTIONS(2463), - [anon_sym_f32] = ACTIONS(2463), - [anon_sym_f64] = ACTIONS(2463), - [anon_sym_bool] = ACTIONS(2463), - [anon_sym_str] = ACTIONS(2463), - [anon_sym_char] = ACTIONS(2463), - [anon_sym_SQUOTE] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2465), - [anon_sym_fn] = ACTIONS(2467), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2469), - [anon_sym_union] = ACTIONS(2471), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_extern] = ACTIONS(714), + [613] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1481), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), + [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2477), - [anon_sym_dyn] = ACTIONS(2479), - [sym_mutable_specifier] = ACTIONS(2481), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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(2483), - [sym_super] = ACTIONS(2483), - [sym_crate] = ACTIONS(2483), - [sym_metavariable] = ACTIONS(2485), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [610] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1455), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [614] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -68121,67 +68466,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [611] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1446), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [615] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1826), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -68189,67 +68534,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [612] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1864), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2487), - [anon_sym_union] = ACTIONS(2487), + [616] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2191), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -68257,67 +68602,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2489), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [613] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2225), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [617] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2247), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -68325,41 +68670,41 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [614] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1390), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [618] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(2297), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_PLUS] = ACTIONS(2451), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), @@ -68378,7 +68723,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -68393,67 +68738,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2491), + [sym_mutable_specifier] = ACTIONS(2472), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2493), + [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [615] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1456), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [619] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2085), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(2495), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -68461,67 +68806,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [616] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1895), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [620] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2184), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -68529,67 +68874,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [617] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [621] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2284), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -68597,67 +68942,135 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [618] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2195), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [622] = { + [sym_function_modifiers] = STATE(2376), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1059), + [sym_bracketed_type] = STATE(2479), + [sym_lifetime] = STATE(2470), + [sym_array_type] = STATE(1075), + [sym_for_lifetimes] = STATE(1207), + [sym_function_type] = STATE(1075), + [sym_tuple_type] = STATE(1075), + [sym_unit_type] = STATE(1075), + [sym_generic_type] = STATE(1007), + [sym_generic_type_with_turbofish] = STATE(2480), + [sym_bounded_type] = STATE(1075), + [sym_reference_type] = STATE(1075), + [sym_pointer_type] = STATE(1075), + [sym_empty_type] = STATE(1075), + [sym_abstract_type] = STATE(1075), + [sym_dynamic_type] = STATE(1075), + [sym_macro_invocation] = STATE(1075), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(770), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_u8] = ACTIONS(2484), + [anon_sym_i8] = ACTIONS(2484), + [anon_sym_u16] = ACTIONS(2484), + [anon_sym_i16] = ACTIONS(2484), + [anon_sym_u32] = ACTIONS(2484), + [anon_sym_i32] = ACTIONS(2484), + [anon_sym_u64] = ACTIONS(2484), + [anon_sym_i64] = ACTIONS(2484), + [anon_sym_u128] = ACTIONS(2484), + [anon_sym_i128] = ACTIONS(2484), + [anon_sym_isize] = ACTIONS(2484), + [anon_sym_usize] = ACTIONS(2484), + [anon_sym_f32] = ACTIONS(2484), + [anon_sym_f64] = ACTIONS(2484), + [anon_sym_bool] = ACTIONS(2484), + [anon_sym_str] = ACTIONS(2484), + [anon_sym_char] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2486), + [anon_sym_fn] = ACTIONS(2488), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2492), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2496), + [anon_sym_AMP] = ACTIONS(2498), + [anon_sym_dyn] = ACTIONS(2500), + [sym_mutable_specifier] = ACTIONS(2502), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2504), + [sym_super] = ACTIONS(2504), + [sym_crate] = ACTIONS(2504), + [sym_metavariable] = ACTIONS(2506), + [sym_block_comment] = ACTIONS(3), + }, + [623] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2190), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -68665,67 +69078,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [619] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1913), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [624] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2134), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -68733,67 +69146,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [620] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1461), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [625] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2212), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -68801,67 +69214,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [621] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1864), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2487), - [anon_sym_union] = ACTIONS(2487), + [626] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2185), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -68869,67 +69282,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2497), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [622] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1458), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [627] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1848), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2508), + [anon_sym_union] = ACTIONS(2508), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -68937,135 +69350,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(2510), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [623] = { - [sym_attribute_item] = STATE(623), - [aux_sym_enum_variant_list_repeat1] = STATE(623), - [sym_identifier] = ACTIONS(2499), - [anon_sym_LPAREN] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_RBRACK] = ACTIONS(2501), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_u8] = ACTIONS(2499), - [anon_sym_i8] = ACTIONS(2499), - [anon_sym_u16] = ACTIONS(2499), - [anon_sym_i16] = ACTIONS(2499), - [anon_sym_u32] = ACTIONS(2499), - [anon_sym_i32] = ACTIONS(2499), - [anon_sym_u64] = ACTIONS(2499), - [anon_sym_i64] = ACTIONS(2499), - [anon_sym_u128] = ACTIONS(2499), - [anon_sym_i128] = ACTIONS(2499), - [anon_sym_isize] = ACTIONS(2499), - [anon_sym_usize] = ACTIONS(2499), - [anon_sym_f32] = ACTIONS(2499), - [anon_sym_f64] = ACTIONS(2499), - [anon_sym_bool] = ACTIONS(2499), - [anon_sym_str] = ACTIONS(2499), - [anon_sym_char] = ACTIONS(2499), - [anon_sym_SQUOTE] = ACTIONS(2499), - [anon_sym_async] = ACTIONS(2499), - [anon_sym_break] = ACTIONS(2499), - [anon_sym_const] = ACTIONS(2499), - [anon_sym_continue] = ACTIONS(2499), - [anon_sym_default] = ACTIONS(2499), - [anon_sym_for] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2499), - [anon_sym_loop] = ACTIONS(2499), - [anon_sym_match] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2499), - [anon_sym_union] = ACTIONS(2499), - [anon_sym_unsafe] = ACTIONS(2499), - [anon_sym_while] = ACTIONS(2499), - [anon_sym_POUND] = ACTIONS(2503), - [anon_sym_BANG] = ACTIONS(2501), - [anon_sym_COMMA] = ACTIONS(2501), - [anon_sym_ref] = ACTIONS(2499), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_COLON_COLON] = ACTIONS(2501), - [anon_sym__] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2501), - [sym_mutable_specifier] = ACTIONS(2499), - [anon_sym_DOT_DOT] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_yield] = ACTIONS(2499), - [anon_sym_move] = ACTIONS(2499), - [sym_integer_literal] = ACTIONS(2501), - [aux_sym_string_literal_token1] = ACTIONS(2501), - [sym_char_literal] = ACTIONS(2501), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2499), - [sym_super] = ACTIONS(2499), - [sym_crate] = ACTIONS(2499), - [sym_metavariable] = ACTIONS(2501), - [sym_raw_string_literal] = ACTIONS(2501), - [sym_float_literal] = ACTIONS(2501), - [sym_block_comment] = ACTIONS(3), - }, - [624] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2186), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [628] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1848), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2508), + [anon_sym_union] = ACTIONS(2508), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -69073,67 +69418,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(2512), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [625] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2201), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [629] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1487), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -69141,67 +69486,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [626] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2190), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [630] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1471), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -69209,67 +69554,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [627] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(1790), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [631] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2275), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(2506), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -69277,67 +69622,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [628] = { - [sym_bracketed_type] = STATE(2434), - [sym_generic_type] = STATE(2419), - [sym_generic_type_with_turbofish] = STATE(2432), - [sym_scoped_identifier] = STATE(1355), - [sym_scoped_type_identifier] = STATE(1936), - [sym_const_block] = STATE(1449), - [sym__pattern] = STATE(2281), - [sym_tuple_pattern] = STATE(1449), - [sym_slice_pattern] = STATE(1449), - [sym_tuple_struct_pattern] = STATE(1449), - [sym_struct_pattern] = STATE(1449), - [sym_remaining_field_pattern] = STATE(1449), - [sym_mut_pattern] = STATE(1449), - [sym_range_pattern] = STATE(1449), - [sym_ref_pattern] = STATE(1449), - [sym_captured_pattern] = STATE(1449), - [sym_reference_pattern] = STATE(1449), - [sym_or_pattern] = STATE(1449), - [sym__literal_pattern] = STATE(1418), - [sym_negative_literal] = STATE(1406), - [sym_string_literal] = STATE(1406), - [sym_boolean_literal] = STATE(1406), - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), + [632] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2226), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_u8] = ACTIONS(1190), + [anon_sym_i8] = ACTIONS(1190), + [anon_sym_u16] = ACTIONS(1190), + [anon_sym_i16] = ACTIONS(1190), + [anon_sym_u32] = ACTIONS(1190), + [anon_sym_i32] = ACTIONS(1190), + [anon_sym_u64] = ACTIONS(1190), + [anon_sym_i64] = ACTIONS(1190), + [anon_sym_u128] = ACTIONS(1190), + [anon_sym_i128] = ACTIONS(1190), + [anon_sym_isize] = ACTIONS(1190), + [anon_sym_usize] = ACTIONS(1190), + [anon_sym_f32] = ACTIONS(1190), + [anon_sym_f64] = ACTIONS(1190), + [anon_sym_bool] = ACTIONS(1190), + [anon_sym_str] = ACTIONS(1190), + [anon_sym_char] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1182), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1198), + [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), @@ -69345,39 +69690,172 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1202), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [629] = { - [sym_function_modifiers] = STATE(2405), - [sym_type_parameters] = STATE(731), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1670), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1675), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1522), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2508), + [633] = { + [sym_function_modifiers] = STATE(2376), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1110), + [sym_bracketed_type] = STATE(2479), + [sym_lifetime] = STATE(622), + [sym_array_type] = STATE(1075), + [sym_for_lifetimes] = STATE(1207), + [sym_function_type] = STATE(1075), + [sym_tuple_type] = STATE(1075), + [sym_unit_type] = STATE(1075), + [sym_generic_type] = STATE(1007), + [sym_generic_type_with_turbofish] = STATE(2480), + [sym_bounded_type] = STATE(1075), + [sym_reference_type] = STATE(1075), + [sym_pointer_type] = STATE(1075), + [sym_empty_type] = STATE(1075), + [sym_abstract_type] = STATE(1075), + [sym_dynamic_type] = STATE(1075), + [sym_macro_invocation] = STATE(1075), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(770), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_u8] = ACTIONS(2484), + [anon_sym_i8] = ACTIONS(2484), + [anon_sym_u16] = ACTIONS(2484), + [anon_sym_i16] = ACTIONS(2484), + [anon_sym_u32] = ACTIONS(2484), + [anon_sym_i32] = ACTIONS(2484), + [anon_sym_u64] = ACTIONS(2484), + [anon_sym_i64] = ACTIONS(2484), + [anon_sym_u128] = ACTIONS(2484), + [anon_sym_i128] = ACTIONS(2484), + [anon_sym_isize] = ACTIONS(2484), + [anon_sym_usize] = ACTIONS(2484), + [anon_sym_f32] = ACTIONS(2484), + [anon_sym_f64] = ACTIONS(2484), + [anon_sym_bool] = ACTIONS(2484), + [anon_sym_str] = ACTIONS(2484), + [anon_sym_char] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2486), + [anon_sym_fn] = ACTIONS(2488), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2492), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2496), + [anon_sym_AMP] = ACTIONS(2498), + [anon_sym_dyn] = ACTIONS(2500), + [sym_mutable_specifier] = ACTIONS(2516), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2504), + [sym_super] = ACTIONS(2504), + [sym_crate] = ACTIONS(2504), + [sym_metavariable] = ACTIONS(2506), + [sym_block_comment] = ACTIONS(3), + }, + [634] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1800), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2518), + [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(2319), + [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), + }, + [635] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(2306), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(618), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -69398,73 +69876,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), - [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(2510), - [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), - }, - [630] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(2246), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(596), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), - [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(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69479,7 +69891,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2514), + [sym_mutable_specifier] = ACTIONS(2520), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), @@ -69487,32 +69899,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [631] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1998), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [636] = { + [sym_function_modifiers] = STATE(2411), + [sym_type_parameters] = STATE(662), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1701), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1705), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1538), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2522), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2516), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -69532,7 +69944,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69543,7 +69955,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(2524), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -69554,32 +69966,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [632] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1848), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [637] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1784), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_RPAREN] = ACTIONS(2526), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -69599,7 +70011,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69621,32 +70033,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [633] = { - [sym_function_modifiers] = STATE(2405), - [sym_type_parameters] = STATE(707), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1656), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1655), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1510), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2520), + [638] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1939), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2528), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -69666,7 +70078,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69677,7 +70089,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2510), + [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -69688,32 +70100,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [634] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1998), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [639] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1939), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2522), + [anon_sym_RPAREN] = ACTIONS(2530), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -69733,7 +70145,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69755,97 +70167,31 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [635] = { - [sym_function_modifiers] = STATE(2384), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1106), - [sym_bracketed_type] = STATE(2473), - [sym_lifetime] = STATE(609), - [sym_array_type] = STATE(1068), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1068), - [sym_tuple_type] = STATE(1068), - [sym_unit_type] = STATE(1068), - [sym_generic_type] = STATE(840), - [sym_generic_type_with_turbofish] = STATE(2474), - [sym_bounded_type] = STATE(1068), - [sym_reference_type] = STATE(1068), - [sym_pointer_type] = STATE(1068), - [sym_empty_type] = STATE(1068), - [sym_abstract_type] = STATE(1068), - [sym_dynamic_type] = STATE(1068), - [sym_macro_invocation] = STATE(1068), - [sym_scoped_identifier] = STATE(2304), - [sym_scoped_type_identifier] = STATE(768), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_u8] = ACTIONS(2463), - [anon_sym_i8] = ACTIONS(2463), - [anon_sym_u16] = ACTIONS(2463), - [anon_sym_i16] = ACTIONS(2463), - [anon_sym_u32] = ACTIONS(2463), - [anon_sym_i32] = ACTIONS(2463), - [anon_sym_u64] = ACTIONS(2463), - [anon_sym_i64] = ACTIONS(2463), - [anon_sym_u128] = ACTIONS(2463), - [anon_sym_i128] = ACTIONS(2463), - [anon_sym_isize] = ACTIONS(2463), - [anon_sym_usize] = ACTIONS(2463), - [anon_sym_f32] = ACTIONS(2463), - [anon_sym_f64] = ACTIONS(2463), - [anon_sym_bool] = ACTIONS(2463), - [anon_sym_str] = ACTIONS(2463), - [anon_sym_char] = ACTIONS(2463), - [anon_sym_SQUOTE] = ACTIONS(2512), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2465), - [anon_sym_fn] = ACTIONS(2467), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2469), - [anon_sym_union] = ACTIONS(2471), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2477), - [anon_sym_dyn] = ACTIONS(2479), - [sym_mutable_specifier] = ACTIONS(2524), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2483), - [sym_super] = ACTIONS(2483), - [sym_crate] = ACTIONS(2483), - [sym_metavariable] = ACTIONS(2485), - [sym_block_comment] = ACTIONS(3), - }, - [636] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1415), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(607), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [640] = { + [sym_function_modifiers] = STATE(2411), + [sym_type_parameters] = STATE(657), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1664), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1670), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1524), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2532), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -69866,7 +70212,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69877,11 +70223,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(2524), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2526), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), @@ -69889,32 +70234,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [637] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1998), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [641] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1939), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2528), + [anon_sym_RPAREN] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -69934,7 +70279,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69956,31 +70301,30 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [638] = { - [sym_function_modifiers] = STATE(2405), - [sym_type_parameters] = STATE(697), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1637), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1640), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1532), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2530), + [642] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1397), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(599), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -70001,7 +70345,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2514), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -70012,10 +70356,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2510), + [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(2536), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), @@ -70023,32 +70368,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [639] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1998), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [643] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1939), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2532), + [anon_sym_RPAREN] = ACTIONS(2538), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -70068,7 +70413,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -70090,32 +70435,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [640] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1815), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [644] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(2068), + [sym_bracketed_type] = STATE(2370), + [sym_qualified_type] = STATE(2346), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -70135,7 +70480,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -70157,31 +70502,31 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [641] = { - [sym_function_modifiers] = STATE(2405), - [sym_type_parameters] = STATE(654), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1643), - [sym_bracketed_type] = STATE(2380), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1644), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1517), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2536), + [645] = { + [sym_function_modifiers] = STATE(2411), + [sym_type_parameters] = STATE(705), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1711), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1641), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2540), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -70202,7 +70547,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -70213,7 +70558,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2510), + [anon_sym_LT] = ACTIONS(2524), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -70224,31 +70569,31 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [642] = { - [sym_function_modifiers] = STATE(2405), - [sym_extern_modifier] = STATE(1557), - [sym__type] = STATE(1980), - [sym_bracketed_type] = STATE(2380), - [sym_qualified_type] = STATE(2362), - [sym_lifetime] = STATE(2403), - [sym_array_type] = STATE(1393), - [sym_for_lifetimes] = STATE(1200), - [sym_function_type] = STATE(1393), - [sym_tuple_type] = STATE(1393), - [sym_unit_type] = STATE(1393), - [sym_generic_type] = STATE(1386), - [sym_generic_type_with_turbofish] = STATE(2381), - [sym_bounded_type] = STATE(1393), - [sym_reference_type] = STATE(1393), - [sym_pointer_type] = STATE(1393), - [sym_empty_type] = STATE(1393), - [sym_abstract_type] = STATE(1393), - [sym_dynamic_type] = STATE(1393), - [sym_macro_invocation] = STATE(1393), - [sym_scoped_identifier] = STATE(2314), - [sym_scoped_type_identifier] = STATE(1346), - [aux_sym_function_modifiers_repeat1] = STATE(1557), - [sym_identifier] = ACTIONS(2309), + [646] = { + [sym_function_modifiers] = STATE(2411), + [sym_type_parameters] = STATE(665), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1648), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1543), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2542), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), @@ -70269,7 +70614,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -70280,7 +70625,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(2524), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -70325,32 +70670,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1674), 1, + STATE(1657), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -70361,7 +70706,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70398,67 +70743,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2453), 1, + ACTIONS(2474), 1, sym_identifier, - ACTIONS(2455), 1, + ACTIONS(2476), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2478), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2482), 1, anon_sym_STAR, - ACTIONS(2465), 1, + ACTIONS(2486), 1, anon_sym_default, - ACTIONS(2467), 1, + ACTIONS(2488), 1, anon_sym_fn, - ACTIONS(2469), 1, + ACTIONS(2490), 1, anon_sym_impl, - ACTIONS(2471), 1, + ACTIONS(2492), 1, anon_sym_union, - ACTIONS(2473), 1, + ACTIONS(2494), 1, anon_sym_BANG, - ACTIONS(2475), 1, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(2477), 1, + ACTIONS(2498), 1, anon_sym_AMP, - ACTIONS(2479), 1, + ACTIONS(2500), 1, anon_sym_dyn, - ACTIONS(2485), 1, + ACTIONS(2506), 1, sym_metavariable, - STATE(768), 1, + STATE(770), 1, sym_scoped_type_identifier, - STATE(840), 1, + STATE(1007), 1, sym_generic_type, - STATE(1104), 1, + STATE(1059), 1, sym__type, - STATE(1196), 1, + STATE(1207), 1, sym_for_lifetimes, - STATE(2304), 1, + STATE(2318), 1, sym_scoped_identifier, - STATE(2382), 1, - sym_lifetime, - STATE(2384), 1, + STATE(2376), 1, sym_function_modifiers, - STATE(2473), 1, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, sym_bracketed_type, - STATE(2474), 1, + STATE(2480), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2483), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1068), 11, + STATE(1075), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70470,7 +70815,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2463), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70491,71 +70836,71 @@ static uint16_t ts_small_parse_table[] = { [258] = 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(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(2455), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_STAR, - ACTIONS(2465), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2467), 1, - anon_sym_fn, - ACTIONS(2469), 1, - anon_sym_impl, - ACTIONS(2471), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2473), 1, - anon_sym_BANG, - ACTIONS(2475), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2477), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2479), 1, - anon_sym_dyn, - ACTIONS(2485), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(768), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(840), 1, + STATE(1375), 1, sym_generic_type, - STATE(1124), 1, + STATE(2150), 1, sym__type, - STATE(1196), 1, - sym_for_lifetimes, - STATE(2304), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2382), 1, - sym_lifetime, - STATE(2384), 1, - sym_function_modifiers, - STATE(2473), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2474), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2483), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1068), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70567,7 +70912,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2463), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70616,32 +70961,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1634), 1, + STATE(1401), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -70652,7 +70997,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70713,32 +71058,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2191), 1, + STATE(1658), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -70749,7 +71094,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70810,32 +71155,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2024), 1, + STATE(1395), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -70846,7 +71191,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70907,32 +71252,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2148), 1, + STATE(2143), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -70943,7 +71288,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71004,32 +71349,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1712), 1, + STATE(1651), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71040,7 +71385,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71101,32 +71446,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1397), 1, + STATE(1659), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71137,7 +71482,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71168,103 +71513,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, [1161] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(2455), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_STAR, - ACTIONS(2465), 1, - anon_sym_default, - ACTIONS(2467), 1, - anon_sym_fn, - ACTIONS(2469), 1, - anon_sym_impl, - ACTIONS(2471), 1, - anon_sym_union, - ACTIONS(2473), 1, - anon_sym_BANG, - ACTIONS(2475), 1, - anon_sym_COLON_COLON, - ACTIONS(2477), 1, - anon_sym_AMP, - ACTIONS(2479), 1, - anon_sym_dyn, - ACTIONS(2485), 1, - sym_metavariable, - STATE(768), 1, - sym_scoped_type_identifier, - STATE(840), 1, - sym_generic_type, - STATE(1125), 1, - sym__type, - STATE(1196), 1, - sym_for_lifetimes, - STATE(2304), 1, - sym_scoped_identifier, - STATE(2382), 1, - sym_lifetime, - STATE(2384), 1, - sym_function_modifiers, - STATE(2473), 1, - sym_bracketed_type, - STATE(2474), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1557), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2483), 3, - sym_self, - sym_super, - sym_crate, - STATE(1068), 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(2463), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1290] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71295,32 +71543,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2041), 1, + STATE(2187), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71331,7 +71579,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71361,7 +71609,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1419] = 32, + [1290] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71392,32 +71640,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2538), 1, + ACTIONS(2544), 1, sym_identifier, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1507), 1, + STATE(1539), 1, sym_scoped_type_identifier, - STATE(1633), 1, + STATE(1724), 1, sym_generic_type, - STATE(1710), 1, + STATE(1725), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71428,7 +71676,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71458,74 +71706,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1548] = 32, + [1419] = 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(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(2455), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_STAR, - ACTIONS(2465), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2467), 1, - anon_sym_fn, - ACTIONS(2469), 1, - anon_sym_impl, - ACTIONS(2471), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2473), 1, - anon_sym_BANG, - ACTIONS(2475), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2477), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2479), 1, - anon_sym_dyn, - ACTIONS(2485), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(768), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(840), 1, + STATE(1375), 1, sym_generic_type, - STATE(1042), 1, + STATE(2089), 1, sym__type, - STATE(1196), 1, - sym_for_lifetimes, - STATE(2304), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2382), 1, - sym_lifetime, - STATE(2384), 1, - sym_function_modifiers, - STATE(2473), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2474), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2483), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1068), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71537,7 +71785,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2463), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71555,7 +71803,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1677] = 32, + [1548] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71586,32 +71834,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1964), 1, + STATE(1405), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71622,7 +71870,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71652,6 +71900,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + [1677] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, + anon_sym_LPAREN, + ACTIONS(2478), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, + anon_sym_default, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, + anon_sym_impl, + ACTIONS(2492), 1, + anon_sym_union, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, + anon_sym_COLON_COLON, + ACTIONS(2498), 1, + anon_sym_AMP, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, + sym_metavariable, + STATE(770), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_generic_type, + STATE(1112), 1, + sym__type, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, + sym_scoped_identifier, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, + sym_bracketed_type, + STATE(2480), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2504), 3, + sym_self, + sym_super, + sym_crate, + STATE(1075), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2484), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, [1806] = 32, ACTIONS(77), 1, anon_sym_LT, @@ -71683,32 +72028,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1989), 1, + STATE(1896), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71719,7 +72064,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71780,32 +72125,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + ACTIONS(2546), 1, + sym_identifier, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1517), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1709), 1, sym_generic_type, - STATE(1794), 1, + STATE(1712), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71816,7 +72161,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71877,32 +72222,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1391), 1, + STATE(1900), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -71913,7 +72258,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71974,32 +72319,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1987), 1, + STATE(2000), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72010,7 +72355,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72071,32 +72416,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + ACTIONS(2548), 1, + sym_identifier, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1546), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1653), 1, sym_generic_type, - STATE(1404), 1, + STATE(1691), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72107,7 +72452,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72168,32 +72513,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1683), 1, + STATE(2298), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72204,7 +72549,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72265,32 +72610,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1682), 1, + STATE(1717), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72301,7 +72646,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72362,32 +72707,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1639), 1, + STATE(2297), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72398,7 +72743,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72459,32 +72804,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1978), 1, + STATE(1928), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72495,7 +72840,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72556,32 +72901,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2254), 1, + STATE(1419), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72592,7 +72937,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72625,71 +72970,71 @@ static uint16_t ts_small_parse_table[] = { [3096] = 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(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(2455), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_STAR, - ACTIONS(2465), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2467), 1, - anon_sym_fn, - ACTIONS(2469), 1, - anon_sym_impl, - ACTIONS(2471), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2473), 1, - anon_sym_BANG, - ACTIONS(2475), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2477), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2479), 1, - anon_sym_dyn, - ACTIONS(2485), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(768), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(840), 1, + STATE(1375), 1, sym_generic_type, - STATE(1048), 1, + STATE(1424), 1, sym__type, - STATE(1196), 1, - sym_for_lifetimes, - STATE(2304), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2382), 1, - sym_lifetime, - STATE(2384), 1, - sym_function_modifiers, - STATE(2473), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2474), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2483), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1068), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72701,7 +73046,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2463), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72750,32 +73095,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1870), 1, + STATE(1815), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72786,7 +73131,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72847,32 +73192,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1969), 1, - sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2310), 1, + sym__type, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -72883,7 +73228,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72916,71 +73261,71 @@ static uint16_t ts_small_parse_table[] = { [3483] = 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, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2478), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, + anon_sym_impl, + ACTIONS(2492), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2498), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1346), 1, + STATE(770), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1007), 1, sym_generic_type, - STATE(1678), 1, + STATE(1058), 1, sym__type, - STATE(2314), 1, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2480), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, - sym_lifetime, - STATE(2405), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1075), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72992,7 +73337,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73041,32 +73386,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1872), 1, + STATE(1400), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73077,7 +73422,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73138,32 +73483,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1646), 1, + STATE(1420), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73174,7 +73519,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73235,32 +73580,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1688), 1, + STATE(1713), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73271,7 +73616,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73332,32 +73677,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1689), 1, + STATE(2021), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73368,7 +73713,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73429,226 +73774,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1346), 1, - sym_scoped_type_identifier, - STATE(1386), 1, - sym_generic_type, - STATE(2212), 1, - sym__type, - STATE(2314), 1, - sym_scoped_identifier, - STATE(2380), 1, - sym_bracketed_type, - STATE(2381), 1, - sym_generic_type_with_turbofish, - STATE(2403), 1, - sym_lifetime, - STATE(2405), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1557), 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(1393), 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, - [4257] = 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(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1346), 1, - sym_scoped_type_identifier, - STATE(1386), 1, - sym_generic_type, - STATE(1400), 1, - sym__type, - STATE(2314), 1, - sym_scoped_identifier, - STATE(2380), 1, - sym_bracketed_type, - STATE(2381), 1, - sym_generic_type_with_turbofish, - STATE(2403), 1, - sym_lifetime, - STATE(2405), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1557), 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(1393), 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, - [4386] = 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(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2159), 1, + STATE(2075), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73659,7 +73810,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73689,7 +73840,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4515] = 32, + [4257] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73720,32 +73871,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1926), 1, + STATE(1884), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73756,7 +73907,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73786,7 +73937,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4644] = 32, + [4386] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73817,32 +73968,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2058), 1, + STATE(1964), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73853,7 +74004,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73883,7 +74034,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4773] = 32, + [4515] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1288), 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(1290), 42, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4586] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73914,32 +74133,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1396), 1, - sym_lifetime, - STATE(1400), 1, + STATE(1997), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2405), 1, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -73950,7 +74169,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73980,7 +74199,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4902] = 32, + [4715] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74011,32 +74230,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1611), 1, + STATE(1726), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74047,7 +74266,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74077,7 +74296,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5031] = 32, + [4844] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74108,32 +74327,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1420), 1, + STATE(1804), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74144,7 +74363,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74174,7 +74393,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5160] = 32, + [4973] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74205,32 +74424,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1419), 1, + STATE(2102), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74241,7 +74460,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74271,7 +74490,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5289] = 32, + [5102] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74302,32 +74521,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1838), 1, + STATE(1882), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74338,7 +74557,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74368,74 +74587,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5418] = 32, + [5231] = 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, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2478), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, + anon_sym_impl, + ACTIONS(2492), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2498), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1346), 1, + STATE(770), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1007), 1, sym_generic_type, - STATE(1649), 1, + STATE(1100), 1, sym__type, - STATE(2314), 1, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2480), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, - sym_lifetime, - STATE(2405), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1075), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74447,7 +74666,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74465,7 +74684,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5547] = 32, + [5360] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74496,32 +74715,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2127), 1, - sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2302), 1, + sym__type, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74532,7 +74751,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74562,7 +74781,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5676] = 32, + [5489] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74593,32 +74812,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1889), 1, + STATE(2236), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74629,7 +74848,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74659,7 +74878,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5805] = 32, + [5618] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74690,32 +74909,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1679), 1, + STATE(1678), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74726,7 +74945,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74756,7 +74975,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5934] = 32, + [5747] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74787,32 +75006,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1417), 1, + STATE(1875), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -74823,7 +75042,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74853,74 +75072,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6063] = 32, + [5876] = 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, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2478), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, + anon_sym_impl, + ACTIONS(2492), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2498), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1346), 1, + STATE(770), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1007), 1, sym_generic_type, - STATE(1881), 1, + STATE(1099), 1, sym__type, - STATE(2314), 1, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2480), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, - sym_lifetime, - STATE(2405), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1075), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74932,7 +75151,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74950,7 +75169,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6192] = 32, + [6005] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74981,32 +75200,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1390), 1, + STATE(2059), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75017,7 +75236,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75047,7 +75266,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6321] = 32, + [6134] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75078,32 +75297,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2040), 1, + STATE(1679), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75114,7 +75333,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75144,7 +75363,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6450] = 32, + [6263] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75175,32 +75394,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1897), 1, + STATE(1727), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75211,7 +75430,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75241,75 +75460,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6579] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1204), 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(1206), 42, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6650] = 32, + [6392] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75340,32 +75491,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2104), 1, + STATE(1695), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75376,7 +75527,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75406,7 +75557,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6779] = 32, + [6521] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75437,129 +75588,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2067), 1, - sym__type, - STATE(2314), 1, - sym_scoped_identifier, - STATE(2380), 1, - sym_bracketed_type, - STATE(2381), 1, - sym_generic_type_with_turbofish, - STATE(2403), 1, - sym_lifetime, - STATE(2405), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1557), 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(1393), 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, - [6908] = 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(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2540), 1, - sym_identifier, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1540), 1, - sym_scoped_type_identifier, - STATE(1676), 1, + STATE(1879), 1, sym__type, - STATE(1713), 1, - sym_generic_type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75570,7 +75624,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75600,7 +75654,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7037] = 32, + [6650] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75631,32 +75685,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2301), 1, + STATE(1981), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75667,7 +75721,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75697,74 +75751,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7166] = 32, + [6779] = 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, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2478), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, + anon_sym_impl, + ACTIONS(2492), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2498), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1346), 1, + STATE(770), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1007), 1, sym_generic_type, - STATE(2115), 1, + STATE(1095), 1, sym__type, - STATE(2314), 1, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2480), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, - sym_lifetime, - STATE(2405), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1075), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75776,7 +75830,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75794,7 +75848,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7295] = 32, + [6908] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75825,32 +75879,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2010), 1, + STATE(1601), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75861,7 +75915,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75891,7 +75945,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7424] = 32, + [7037] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75922,32 +75976,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1597), 1, + STATE(2171), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -75958,7 +76012,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75988,7 +76042,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7553] = 32, + [7166] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76019,32 +76073,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1661), 1, + STATE(2288), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76055,7 +76109,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76085,7 +76139,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7682] = 32, + [7295] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76116,32 +76170,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2125), 1, + STATE(1681), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76152,7 +76206,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76182,7 +76236,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7811] = 32, + [7424] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76213,32 +76267,129 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2550), 1, sym_identifier, - ACTIONS(2313), 1, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1529), 1, + sym_scoped_type_identifier, + STATE(1647), 1, + sym__type, + STATE(1694), 1, + sym_generic_type, + STATE(2301), 1, + sym_scoped_identifier, + STATE(2370), 1, + sym_bracketed_type, + STATE(2371), 1, + sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 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(1410), 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, + [7553] = 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(2315), 1, + sym_identifier, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2028), 1, + STATE(1418), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76249,7 +76400,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76279,7 +76430,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7940] = 32, + [7682] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76310,32 +76461,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2167), 1, + STATE(1415), 1, + sym_lifetime, + STATE(1418), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, - sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76346,7 +76497,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76376,7 +76527,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8069] = 32, + [7811] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76407,32 +76558,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1709), 1, + STATE(1640), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76443,7 +76594,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76473,7 +76624,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8198] = 32, + [7940] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76504,32 +76655,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2542), 1, + ACTIONS(2315), 1, sym_identifier, - STATE(1200), 1, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, sym_for_lifetimes, - STATE(1529), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1641), 1, - sym__type, - STATE(1647), 1, + STATE(1375), 1, sym_generic_type, - STATE(2314), 1, + STATE(2138), 1, + sym__type, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76540,7 +76691,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76570,7 +76721,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8327] = 32, + [8069] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76601,32 +76752,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2059), 1, + STATE(1627), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76637,7 +76788,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76667,7 +76818,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8456] = 32, + [8198] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76698,32 +76849,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1708), 1, + STATE(1685), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76734,7 +76885,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76764,7 +76915,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8585] = 32, + [8327] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76795,32 +76946,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1896), 1, + STATE(1939), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76831,7 +76982,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76861,7 +77012,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8714] = 32, + [8456] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76892,32 +77043,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2057), 1, + STATE(2132), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -76928,7 +77079,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76958,7 +77109,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8843] = 32, + [8585] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76989,32 +77140,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1412), 1, + STATE(1661), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77025,7 +77176,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77055,7 +77206,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8972] = 32, + [8714] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77086,32 +77237,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1409), 1, + STATE(2261), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77122,7 +77273,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77152,7 +77303,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9101] = 32, + [8843] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77183,32 +77334,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1690), 1, + STATE(1956), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77219,7 +77370,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77249,7 +77400,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9230] = 32, + [8972] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77280,32 +77431,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2226), 1, + STATE(2120), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77316,7 +77467,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77346,7 +77497,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9359] = 32, + [9101] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77377,32 +77528,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1673), 1, + STATE(1394), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77413,7 +77564,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77443,7 +77594,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9488] = 32, + [9230] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77474,32 +77625,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1653), 1, + STATE(1708), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77510,7 +77661,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77540,7 +77691,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9617] = 32, + [9359] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77571,32 +77722,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1692), 1, + STATE(1680), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77607,7 +77758,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77637,7 +77788,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9746] = 32, + [9488] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77668,32 +77819,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1685), 1, + STATE(1894), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77704,7 +77855,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77734,7 +77885,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9875] = 32, + [9617] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77765,32 +77916,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1671), 1, + STATE(2108), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77801,7 +77952,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77831,7 +77982,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10004] = 32, + [9746] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77862,32 +78013,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1405), 1, + STATE(1784), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -77898,7 +78049,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77928,74 +78079,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10133] = 32, + [9875] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2453), 1, + ACTIONS(2474), 1, sym_identifier, - ACTIONS(2455), 1, + ACTIONS(2476), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2478), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2482), 1, anon_sym_STAR, - ACTIONS(2465), 1, + ACTIONS(2486), 1, anon_sym_default, - ACTIONS(2467), 1, + ACTIONS(2488), 1, anon_sym_fn, - ACTIONS(2469), 1, + ACTIONS(2490), 1, anon_sym_impl, - ACTIONS(2471), 1, + ACTIONS(2492), 1, anon_sym_union, - ACTIONS(2473), 1, + ACTIONS(2494), 1, anon_sym_BANG, - ACTIONS(2475), 1, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(2477), 1, + ACTIONS(2498), 1, anon_sym_AMP, - ACTIONS(2479), 1, + ACTIONS(2500), 1, anon_sym_dyn, - ACTIONS(2485), 1, + ACTIONS(2506), 1, sym_metavariable, - STATE(768), 1, + STATE(770), 1, sym_scoped_type_identifier, - STATE(840), 1, + STATE(1007), 1, sym_generic_type, - STATE(1071), 1, + STATE(1109), 1, sym__type, - STATE(1196), 1, + STATE(1207), 1, sym_for_lifetimes, - STATE(2304), 1, + STATE(2318), 1, sym_scoped_identifier, - STATE(2382), 1, - sym_lifetime, - STATE(2384), 1, + STATE(2376), 1, sym_function_modifiers, - STATE(2473), 1, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, sym_bracketed_type, - STATE(2474), 1, + STATE(2480), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2483), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1068), 11, + STATE(1075), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78007,7 +78158,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2463), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78025,7 +78176,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10262] = 33, + [10004] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78056,44 +78207,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2544), 1, - sym_self, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1397), 1, + STATE(2061), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(906), 2, - sym_super, - sym_crate, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - STATE(1393), 11, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78123,74 +78273,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10393] = 32, + [10133] = 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(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(2455), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_STAR, - ACTIONS(2465), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2467), 1, - anon_sym_fn, - ACTIONS(2469), 1, - anon_sym_impl, - ACTIONS(2471), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2473), 1, - anon_sym_BANG, - ACTIONS(2475), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2477), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2479), 1, - anon_sym_dyn, - ACTIONS(2485), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(768), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(840), 1, + STATE(1375), 1, sym_generic_type, - STATE(1099), 1, + STATE(1409), 1, sym__type, - STATE(1196), 1, - sym_for_lifetimes, - STATE(2304), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2382), 1, - sym_lifetime, - STATE(2384), 1, - sym_function_modifiers, - STATE(2473), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2474), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2483), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1068), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78202,7 +78352,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2463), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78220,7 +78370,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10522] = 32, + [10262] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78251,32 +78401,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2192), 1, + STATE(1649), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78287,7 +78437,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78317,7 +78467,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10651] = 32, + [10391] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78348,32 +78498,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1822), 1, + STATE(1683), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78384,7 +78534,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78414,7 +78564,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10780] = 32, + [10520] = 33, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78445,43 +78595,141 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + ACTIONS(2552), 1, + sym_self, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1645), 1, + STATE(1401), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + ACTIONS(906), 2, + sym_super, + sym_crate, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + STATE(1410), 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(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, + anon_sym_LPAREN, + ACTIONS(2478), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, + anon_sym_default, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, + anon_sym_impl, + ACTIONS(2492), 1, + anon_sym_union, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, + anon_sym_COLON_COLON, + ACTIONS(2498), 1, + anon_sym_AMP, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, + sym_metavariable, + STATE(770), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_generic_type, + STATE(1060), 1, + sym__type, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, + sym_scoped_identifier, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, + sym_bracketed_type, + STATE(2480), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1075), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78493,7 +78741,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78511,7 +78759,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10909] = 32, + [10780] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78542,32 +78790,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1672), 1, + STATE(1660), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78578,7 +78826,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78608,7 +78856,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11038] = 32, + [10909] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78639,32 +78887,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1824), 1, + STATE(1412), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78675,7 +78923,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78705,74 +78953,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11167] = 32, + [11038] = 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, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2478), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, + anon_sym_impl, + ACTIONS(2492), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2498), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1346), 1, + STATE(770), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1007), 1, sym_generic_type, - STATE(1714), 1, + STATE(1103), 1, sym__type, - STATE(2314), 1, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2480), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, - sym_lifetime, - STATE(2405), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1075), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78784,7 +79032,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78802,7 +79050,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11296] = 32, + [11167] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78833,32 +79081,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2546), 1, + ACTIONS(2315), 1, sym_identifier, - STATE(1200), 1, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, sym_for_lifetimes, - STATE(1513), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1680), 1, + STATE(1375), 1, sym_generic_type, - STATE(1681), 1, + STATE(2090), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -78869,7 +79117,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78899,74 +79147,171 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11425] = 32, + [11296] = 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, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, + anon_sym_LPAREN, + ACTIONS(2478), 1, + anon_sym_LBRACK, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, + anon_sym_default, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(2492), 1, + anon_sym_union, + ACTIONS(2494), 1, anon_sym_BANG, + ACTIONS(2496), 1, + anon_sym_COLON_COLON, + ACTIONS(2498), 1, + anon_sym_AMP, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, + sym_metavariable, + STATE(770), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_generic_type, + STATE(1098), 1, + sym__type, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, + sym_scoped_identifier, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, + sym_bracketed_type, + STATE(2480), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2504), 3, + sym_self, + sym_super, + sym_crate, + STATE(1075), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2484), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [11425] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(886), 1, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2478), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, + anon_sym_impl, + ACTIONS(2492), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2498), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1346), 1, + STATE(770), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1007), 1, sym_generic_type, - STATE(1905), 1, + STATE(1101), 1, sym__type, - STATE(2314), 1, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2480), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, - sym_lifetime, - STATE(2405), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1075), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78978,7 +79323,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79027,32 +79372,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2090), 1, + STATE(2221), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79063,7 +79408,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79096,71 +79441,71 @@ static uint16_t ts_small_parse_table[] = { [11683] = 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(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(2455), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_STAR, - ACTIONS(2465), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2467), 1, - anon_sym_fn, - ACTIONS(2469), 1, - anon_sym_impl, - ACTIONS(2471), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2473), 1, - anon_sym_BANG, - ACTIONS(2475), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2477), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2479), 1, - anon_sym_dyn, - ACTIONS(2485), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(768), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(840), 1, + STATE(1375), 1, sym_generic_type, - STATE(1098), 1, + STATE(1646), 1, sym__type, - STATE(1196), 1, - sym_for_lifetimes, - STATE(2304), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2382), 1, - sym_lifetime, - STATE(2384), 1, - sym_function_modifiers, - STATE(2473), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2474), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2483), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1068), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79172,7 +79517,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2463), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79221,32 +79566,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2183), 1, + STATE(2223), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79257,7 +79602,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79318,32 +79663,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2142), 1, + STATE(2101), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79354,7 +79699,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79387,71 +79732,71 @@ static uint16_t ts_small_parse_table[] = { [12070] = 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(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(2455), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_STAR, - ACTIONS(2465), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2467), 1, - anon_sym_fn, - ACTIONS(2469), 1, - anon_sym_impl, - ACTIONS(2471), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2473), 1, - anon_sym_BANG, - ACTIONS(2475), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2477), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2479), 1, - anon_sym_dyn, - ACTIONS(2485), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(768), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(840), 1, + STATE(1375), 1, sym_generic_type, - STATE(1078), 1, + STATE(2094), 1, sym__type, - STATE(1196), 1, - sym_for_lifetimes, - STATE(2304), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2382), 1, - sym_lifetime, - STATE(2384), 1, - sym_function_modifiers, - STATE(2473), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2474), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2483), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1068), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79463,7 +79808,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2463), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79484,71 +79829,71 @@ static uint16_t ts_small_parse_table[] = { [12199] = 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(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(2455), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_STAR, - ACTIONS(2465), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2467), 1, - anon_sym_fn, - ACTIONS(2469), 1, - anon_sym_impl, - ACTIONS(2471), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2473), 1, - anon_sym_BANG, - ACTIONS(2475), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2477), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2479), 1, - anon_sym_dyn, - ACTIONS(2485), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(768), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(840), 1, + STATE(1375), 1, sym_generic_type, - STATE(1137), 1, + STATE(2056), 1, sym__type, - STATE(1196), 1, - sym_for_lifetimes, - STATE(2304), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2382), 1, - sym_lifetime, - STATE(2384), 1, - sym_function_modifiers, - STATE(2473), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2474), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2483), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1068), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79560,7 +79905,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2463), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79609,32 +79954,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1815), 1, + STATE(1675), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79645,7 +79990,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79706,32 +80051,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2314), 1, - sym_scoped_identifier, - STATE(2317), 1, + STATE(2197), 1, sym__type, - STATE(2380), 1, + STATE(2301), 1, + sym_scoped_identifier, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -79742,7 +80087,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79775,71 +80120,71 @@ static uint16_t ts_small_parse_table[] = { [12586] = 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(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(2455), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_STAR, - ACTIONS(2465), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2467), 1, - anon_sym_fn, - ACTIONS(2469), 1, - anon_sym_impl, - ACTIONS(2471), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2473), 1, - anon_sym_BANG, - ACTIONS(2475), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2477), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2479), 1, - anon_sym_dyn, - ACTIONS(2485), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(768), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(840), 1, + STATE(1375), 1, sym_generic_type, - STATE(1140), 1, + STATE(1674), 1, sym__type, - STATE(1196), 1, - sym_for_lifetimes, - STATE(2304), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2382), 1, - sym_lifetime, - STATE(2384), 1, - sym_function_modifiers, - STATE(2473), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2474), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2483), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1068), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79851,7 +80196,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2463), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79872,71 +80217,71 @@ static uint16_t ts_small_parse_table[] = { [12715] = 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(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(2455), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_STAR, - ACTIONS(2465), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2467), 1, - anon_sym_fn, - ACTIONS(2469), 1, - anon_sym_impl, - ACTIONS(2471), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2473), 1, - anon_sym_BANG, - ACTIONS(2475), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2477), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2479), 1, - anon_sym_dyn, - ACTIONS(2485), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(768), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(840), 1, + STATE(1375), 1, sym_generic_type, - STATE(1119), 1, + STATE(2037), 1, sym__type, - STATE(1196), 1, - sym_for_lifetimes, - STATE(2304), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2382), 1, - sym_lifetime, - STATE(2384), 1, - sym_function_modifiers, - STATE(2473), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2474), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2483), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1068), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79948,7 +80293,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2463), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79997,32 +80342,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1908), 1, + STATE(2137), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80033,7 +80378,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80094,32 +80439,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1706), 1, + STATE(1854), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80130,7 +80475,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80191,32 +80536,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2098), 1, + STATE(1676), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80227,7 +80572,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80288,32 +80633,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1705), 1, + STATE(1856), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80324,7 +80669,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80385,32 +80730,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1704), 1, + STATE(1723), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80421,7 +80766,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80482,32 +80827,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2094), 1, + STATE(1895), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80518,7 +80863,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80579,32 +80924,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1998), 1, + STATE(1722), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80615,7 +80960,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80676,32 +81021,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(1891), 1, + STATE(1637), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80712,7 +81057,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80773,32 +81118,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2309), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1200), 1, + STATE(1201), 1, sym_for_lifetimes, - STATE(1346), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1375), 1, sym_generic_type, - STATE(2196), 1, + STATE(1673), 1, sym__type, - STATE(2314), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2409), 1, sym_lifetime, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -80809,7 +81154,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80842,71 +81187,71 @@ static uint16_t ts_small_parse_table[] = { [14005] = 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, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2474), 1, + sym_identifier, + ACTIONS(2476), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2478), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2482), 1, + anon_sym_STAR, + ACTIONS(2486), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2490), 1, + anon_sym_impl, + ACTIONS(2492), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2494), 1, + anon_sym_BANG, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2498), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2500), 1, + anon_sym_dyn, + ACTIONS(2506), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1346), 1, + STATE(770), 1, sym_scoped_type_identifier, - STATE(1386), 1, + STATE(1007), 1, sym_generic_type, - STATE(1703), 1, + STATE(1062), 1, sym__type, - STATE(2314), 1, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, sym_scoped_identifier, - STATE(2380), 1, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2480), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, - sym_lifetime, - STATE(2405), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(1393), 11, + STATE(1075), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80918,7 +81263,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2484), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80940,7 +81285,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(880), 17, + ACTIONS(2556), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -80958,7 +81303,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(878), 40, + ACTIONS(2554), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81003,25 +81348,26 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 17, + ACTIONS(406), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, - anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2548), 40, + ACTIONS(2558), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81053,7 +81399,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, - anon_sym_DASH, anon_sym_yield, anon_sym_move, anon_sym_true, @@ -81066,26 +81411,25 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(404), 18, + ACTIONS(880), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, + anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2552), 39, + ACTIONS(878), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81117,6 +81461,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, + anon_sym_DASH, anon_sym_yield, anon_sym_move, anon_sym_true, @@ -81129,7 +81474,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2556), 17, + ACTIONS(2562), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -81147,7 +81492,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2554), 40, + ACTIONS(2560), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81192,7 +81537,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1204), 15, + ACTIONS(1288), 15, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -81208,7 +81553,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1206), 38, + ACTIONS(1290), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81248,22 +81593,81 @@ static uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [14460] = 9, - ACTIONS(2560), 1, + ACTIONS(2566), 1, anon_sym_LPAREN, - ACTIONS(2564), 1, + ACTIONS(2570), 1, anon_sym_BANG, + ACTIONS(2572), 1, + anon_sym_COLON_COLON, + ACTIONS(2574), 1, + anon_sym_LT2, + STATE(813), 1, + sym_type_arguments, + STATE(858), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2568), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + 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(2564), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14530] = 8, ACTIONS(2566), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, anon_sym_COLON_COLON, - ACTIONS(2568), 1, + ACTIONS(2574), 1, anon_sym_LT2, - STATE(893), 1, + STATE(813), 1, sym_type_arguments, - STATE(979), 1, + STATE(858), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2562), 17, + ACTIONS(2578), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81281,7 +81685,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2558), 26, + ACTIONS(2576), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -81308,21 +81712,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14530] = 8, - ACTIONS(2560), 1, - anon_sym_LPAREN, + [14597] = 8, ACTIONS(2566), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, anon_sym_COLON_COLON, - ACTIONS(2568), 1, + ACTIONS(2574), 1, anon_sym_LT2, - STATE(893), 1, + STATE(813), 1, sym_type_arguments, - STATE(979), 1, + STATE(858), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 17, + ACTIONS(2582), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81340,7 +81744,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2570), 26, + ACTIONS(2580), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -81367,21 +81771,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14597] = 8, - ACTIONS(2560), 1, - anon_sym_LPAREN, + [14664] = 7, ACTIONS(2566), 1, - anon_sym_COLON_COLON, - ACTIONS(2568), 1, + anon_sym_LPAREN, + ACTIONS(2574), 1, anon_sym_LT2, - STATE(893), 1, + STATE(814), 1, sym_type_arguments, - STATE(979), 1, + STATE(866), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2576), 17, + ACTIONS(2586), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81399,7 +81801,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2574), 26, + ACTIONS(2584), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -81426,11 +81828,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14664] = 3, + [14728] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1866), 9, + ACTIONS(1459), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81440,7 +81842,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1868), 38, + ACTIONS(1461), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81479,74 +81881,25 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14720] = 3, + [14784] = 6, + ACTIONS(2594), 1, + anon_sym_BANG, + ACTIONS(2596), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1458), 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(1460), 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, + ACTIONS(2592), 6, 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, - [14776] = 7, - ACTIONS(2560), 1, - anon_sym_LPAREN, - ACTIONS(2568), 1, - anon_sym_LT2, - STATE(905), 1, - sym_type_arguments, - STATE(988), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2580), 17, + ACTIONS(2590), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -81555,30 +81908,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2578), 26, + ACTIONS(2588), 23, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_LPAREN, 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, @@ -81588,12 +81935,13 @@ static 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, - [14840] = 3, + [14846] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1588), 9, + ACTIONS(1383), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81603,7 +81951,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1590), 38, + ACTIONS(1385), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81642,72 +81990,15 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14896] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1270), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, + [14902] = 5, + ACTIONS(2602), 1, + anon_sym_BANG, + ACTIONS(2604), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1272), 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, - [14952] = 7, - ACTIONS(2560), 1, - anon_sym_LPAREN, - ACTIONS(2568), 1, - anon_sym_LT2, - STATE(905), 1, - sym_type_arguments, - STATE(988), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 17, + ACTIONS(2600), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81725,8 +82016,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2582), 26, + ACTIONS(2598), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -81737,6 +82029,7 @@ static 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, @@ -81752,75 +82045,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15016] = 6, - ACTIONS(2592), 1, - anon_sym_BANG, - ACTIONS(2594), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2590), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(2588), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2586), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15078] = 7, - ACTIONS(2560), 1, + [14962] = 7, + ACTIONS(2566), 1, anon_sym_LPAREN, - ACTIONS(2568), 1, + ACTIONS(2574), 1, anon_sym_LT2, - STATE(905), 1, + STATE(814), 1, sym_type_arguments, - STATE(988), 1, + STATE(866), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 17, + ACTIONS(2608), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81838,7 +82075,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2596), 26, + ACTIONS(2606), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -81865,125 +82102,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15142] = 5, - ACTIONS(2604), 1, - anon_sym_BANG, - ACTIONS(2606), 1, - anon_sym_COLON_COLON, + [15026] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2600), 28, + ACTIONS(1735), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_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, - [15202] = 5, - ACTIONS(2612), 1, - anon_sym_BANG, - ACTIONS(2614), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2610), 17, - anon_sym_PLUS, - anon_sym_STAR, + anon_sym_POUND, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2608), 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, - [15262] = 5, - ACTIONS(2620), 1, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1737), 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, + [15082] = 5, + ACTIONS(2614), 1, anon_sym_BANG, - ACTIONS(2622), 1, + ACTIONS(2616), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 17, + ACTIONS(2612), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82001,7 +82181,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2616), 28, + ACTIONS(2610), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82030,11 +82210,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15322] = 3, + [15142] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1534), 9, + ACTIONS(1595), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82044,7 +82224,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1536), 38, + ACTIONS(1597), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82083,19 +82263,15 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15378] = 7, - ACTIONS(2564), 1, + [15198] = 5, + ACTIONS(2622), 1, anon_sym_BANG, ACTIONS(2624), 1, - anon_sym_LBRACE, - ACTIONS(2626), 1, anon_sym_COLON_COLON, - STATE(1111), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(572), 15, + ACTIONS(2620), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82106,15 +82282,18 @@ static 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(570), 28, + ACTIONS(2618), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -82123,12 +82302,12 @@ static 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, @@ -82138,17 +82317,16 @@ static 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(2632), 1, + [15258] = 5, + ACTIONS(2630), 1, anon_sym_BANG, - ACTIONS(2634), 1, + ACTIONS(2632), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 17, + ACTIONS(2628), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82166,7 +82344,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2628), 28, + ACTIONS(2626), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82195,123 +82373,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15502] = 4, - ACTIONS(2636), 1, - anon_sym_LBRACE, + [15318] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2632), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2634), 29, + ACTIONS(1875), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_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, - [15559] = 5, - ACTIONS(2638), 1, - anon_sym_else, - STATE(1090), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(392), 15, - anon_sym_PLUS, - anon_sym_STAR, + anon_sym_POUND, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(390), 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, - [15618] = 4, - ACTIONS(2640), 1, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1877), 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, + [15374] = 7, + ACTIONS(2570), 1, + anon_sym_BANG, + ACTIONS(2634), 1, anon_sym_LBRACE, + ACTIONS(2636), 1, + anon_sym_COLON_COLON, + STATE(1117), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 16, + ACTIONS(562), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -82325,7 +82454,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2614), 29, + ACTIONS(564), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82336,7 +82465,6 @@ static 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, @@ -82355,15 +82483,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15675] = 5, - ACTIONS(2646), 1, - anon_sym_SQUOTE, - STATE(1069), 1, - sym_loop_label, + [15438] = 7, + ACTIONS(2566), 1, + anon_sym_LPAREN, + ACTIONS(2574), 1, + anon_sym_LT2, + STATE(814), 1, + sym_type_arguments, + STATE(866), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2644), 15, + ACTIONS(2640), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82374,12 +82506,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2642), 29, + ACTIONS(2638), 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, + [15502] = 5, + ACTIONS(2642), 1, + anon_sym_else, + STATE(1067), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(502), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(500), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82409,11 +82594,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15734] = 3, + [15561] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 16, + ACTIONS(2622), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -82430,7 +82615,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2606), 30, + ACTIONS(2624), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82461,17 +82646,124 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15789] = 5, - ACTIONS(2638), 1, + [15616] = 5, + ACTIONS(2648), 1, + anon_sym_SQUOTE, + STATE(1066), 1, + sym_loop_label, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + 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), 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, + [15675] = 5, + ACTIONS(2642), 1, anon_sym_else, - STATE(1091), 1, + STATE(1055), 1, sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(498), 15, + ACTIONS(396), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(394), 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, + [15734] = 4, + ACTIONS(2650), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2622), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -82485,11 +82777,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(496), 29, + ACTIONS(2624), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15791] = 4, + ACTIONS(2652), 1, anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2602), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2604), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -82497,6 +82841,7 @@ static 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, @@ -82516,12 +82861,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [15848] = 4, - ACTIONS(2648), 1, + ACTIONS(2654), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 16, + ACTIONS(2630), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -82538,7 +82883,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2606), 29, + ACTIONS(2632), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82569,12 +82914,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [15905] = 4, - ACTIONS(2650), 1, + ACTIONS(2656), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 16, + ACTIONS(2614), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -82591,7 +82936,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2622), 29, + ACTIONS(2616), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82625,7 +82970,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1754), 7, + ACTIONS(1479), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82633,7 +82978,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1756), 38, + ACTIONS(1481), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82676,7 +83021,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1568), 7, + ACTIONS(1687), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82684,7 +83029,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1570), 38, + ACTIONS(1689), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82727,7 +83072,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1826), 7, + ACTIONS(1907), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82735,7 +83080,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1828), 38, + ACTIONS(1909), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82778,7 +83123,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1786), 7, + ACTIONS(1867), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82786,7 +83131,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1788), 38, + ACTIONS(1869), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82829,7 +83174,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1758), 7, + ACTIONS(1899), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82837,7 +83182,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1760), 38, + ACTIONS(1901), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82880,7 +83225,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1730), 7, + ACTIONS(1863), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82888,7 +83233,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1732), 38, + ACTIONS(1865), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82931,7 +83276,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1822), 7, + ACTIONS(1855), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82939,7 +83284,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1824), 38, + ACTIONS(1857), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82982,7 +83327,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1710), 7, + ACTIONS(1843), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82990,7 +83335,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1712), 38, + ACTIONS(1845), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83033,7 +83378,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1814), 7, + ACTIONS(1931), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83041,7 +83386,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1816), 38, + ACTIONS(1933), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83084,7 +83429,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1694), 7, + ACTIONS(1831), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83092,7 +83437,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1696), 38, + ACTIONS(1833), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83135,58 +83480,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1690), 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(1692), 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, - [16556] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1682), 7, + ACTIONS(1827), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83194,7 +83488,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1684), 38, + ACTIONS(1829), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83233,11 +83527,64 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16610] = 3, + [16556] = 5, + ACTIONS(2596), 1, + anon_sym_COLON_COLON, + ACTIONS(2658), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1806), 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), 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, + [16614] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1927), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83245,7 +83592,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1808), 38, + ACTIONS(1929), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83284,11 +83631,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16664] = 3, + [16668] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1678), 7, + ACTIONS(1823), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83296,7 +83643,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1680), 38, + ACTIONS(1825), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83335,11 +83682,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16718] = 3, + [16722] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1674), 7, + ACTIONS(1891), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83347,7 +83694,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1676), 38, + ACTIONS(1893), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83386,15 +83733,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16772] = 5, - ACTIONS(2654), 1, - anon_sym_LPAREN, - STATE(1115), 1, - sym_arguments, + [16776] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2656), 15, + ACTIONS(546), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83410,8 +83753,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2652), 28, + ACTIONS(544), 30, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83439,11 +83783,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_else, [16830] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1818), 7, + ACTIONS(1208), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83451,7 +83796,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1820), 38, + ACTIONS(1210), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83494,7 +83839,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1670), 7, + ACTIONS(1815), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83502,7 +83847,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1672), 38, + ACTIONS(1817), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83541,167 +83886,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16938] = 4, - ACTIONS(2658), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(572), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(570), 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, - [16994] = 5, - ACTIONS(2594), 1, - anon_sym_COLON_COLON, - ACTIONS(2660), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2588), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2586), 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, - [17052] = 3, + [16938] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(848), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(850), 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, - [17106] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1666), 7, + ACTIONS(1923), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83709,7 +83898,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1668), 38, + ACTIONS(1925), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83748,11 +83937,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17160] = 3, + [16992] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1846), 7, + ACTIONS(1919), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83760,7 +83949,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1848), 38, + ACTIONS(1921), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83799,11 +83988,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17214] = 3, + [17046] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1798), 7, + ACTIONS(1883), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83811,7 +84000,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1800), 38, + ACTIONS(1885), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83850,64 +84039,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17268] = 5, - ACTIONS(2564), 1, - anon_sym_BANG, - ACTIONS(2662), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(572), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(570), 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, - [17326] = 3, + [17100] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1654), 7, + ACTIONS(1811), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83915,7 +84051,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1656), 38, + ACTIONS(1813), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83954,11 +84090,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17380] = 3, + [17154] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1636), 7, + ACTIONS(1807), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83966,7 +84102,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1638), 38, + ACTIONS(1809), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84005,11 +84141,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17434] = 3, + [17208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1580), 7, + ACTIONS(1879), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84017,7 +84153,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1582), 38, + ACTIONS(1881), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84056,11 +84192,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17488] = 3, + [17262] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(554), 7, + ACTIONS(1240), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84068,7 +84204,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(556), 38, + ACTIONS(1242), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84107,11 +84243,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17542] = 3, + [17316] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(516), 7, + ACTIONS(1935), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84119,7 +84255,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(518), 38, + ACTIONS(1937), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84158,113 +84294,113 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17596] = 3, + [17370] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1850), 7, + ACTIONS(2662), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2660), 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(1852), 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, - [17650] = 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, + [17424] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1858), 7, + ACTIONS(2666), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2664), 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(1860), 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, - [17704] = 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, + [17478] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1098), 7, + ACTIONS(1799), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84272,7 +84408,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1100), 38, + ACTIONS(1801), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84311,11 +84447,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17758] = 3, + [17532] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1862), 7, + ACTIONS(1791), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84323,7 +84459,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1864), 38, + ACTIONS(1793), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84362,11 +84498,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17812] = 3, + [17586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1558), 7, + ACTIONS(1771), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84374,7 +84510,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1560), 38, + ACTIONS(1773), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84413,11 +84549,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17866] = 3, + [17640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(546), 7, + ACTIONS(1763), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84425,7 +84561,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(548), 38, + ACTIONS(1765), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84464,11 +84600,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17920] = 3, + [17694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(644), 7, + ACTIONS(1747), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84476,7 +84612,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(646), 38, + ACTIONS(1749), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84515,11 +84651,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17974] = 3, + [17748] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(624), 7, + ACTIONS(1947), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84527,7 +84663,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(626), 38, + ACTIONS(1949), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84566,11 +84702,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18028] = 3, + [17802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1874), 7, + ACTIONS(1979), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84578,7 +84714,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1876), 38, + ACTIONS(1981), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84617,11 +84753,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18082] = 3, + [17856] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1526), 7, + ACTIONS(1731), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84629,7 +84765,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1528), 38, + ACTIONS(1733), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84668,11 +84804,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18136] = 3, + [17910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1510), 7, + ACTIONS(1987), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84680,7 +84816,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1512), 38, + ACTIONS(1989), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84719,114 +84855,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18190] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(548), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(546), 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, - [18244] = 4, - ACTIONS(2664), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2598), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2596), 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, - [18300] = 3, + [17964] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1878), 7, + ACTIONS(544), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84834,7 +84867,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1880), 38, + ACTIONS(546), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84873,11 +84906,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18354] = 3, + [18018] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1204), 7, + ACTIONS(550), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84885,7 +84918,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1206), 38, + ACTIONS(552), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84924,11 +84957,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18408] = 3, + [18072] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1882), 7, + ACTIONS(2051), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84936,7 +84969,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1884), 38, + ACTIONS(2053), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84975,11 +85008,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18462] = 3, + [18126] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1898), 7, + ACTIONS(552), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(550), 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, + [18180] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2083), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84987,7 +85071,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1900), 38, + ACTIONS(2085), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85026,11 +85110,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18516] = 3, + [18234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(656), 7, + ACTIONS(2059), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85038,7 +85122,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(658), 38, + ACTIONS(2061), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85077,13 +85161,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18570] = 4, - ACTIONS(2666), 1, - anon_sym_COLON_COLON, + [18288] = 4, + ACTIONS(2672), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 15, + ACTIONS(2670), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85099,7 +85183,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2596), 29, + ACTIONS(2668), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85129,14 +85213,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18626] = 4, + [18344] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2670), 2, - anon_sym_LBRACE, + ACTIONS(620), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(2672), 15, + sym_metavariable, + ACTIONS(622), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18398] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2676), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85152,10 +85284,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2668), 28, + ACTIONS(2674), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85163,6 +85296,7 @@ static 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, @@ -85181,11 +85315,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18682] = 3, + [18452] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(608), 7, + ACTIONS(1859), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85193,7 +85327,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(610), 38, + ACTIONS(1861), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85232,11 +85366,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18736] = 3, + [18506] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1922), 7, + ACTIONS(1851), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85244,7 +85378,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1924), 38, + ACTIONS(1853), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85283,11 +85417,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18790] = 3, + [18560] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1094), 7, + ACTIONS(1835), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85295,7 +85429,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1096), 38, + ACTIONS(1837), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85334,11 +85468,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18844] = 3, + [18614] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1926), 7, + ACTIONS(1819), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85346,7 +85480,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1928), 38, + ACTIONS(1821), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85385,11 +85519,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18898] = 3, + [18668] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2676), 15, + ACTIONS(2680), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85405,7 +85539,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2674), 30, + ACTIONS(2678), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85417,7 +85551,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85436,62 +85570,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18952] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1958), 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(1960), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19006] = 3, + [18722] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1970), 7, + ACTIONS(652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85499,7 +85582,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1972), 38, + ACTIONS(654), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85538,13 +85621,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19060] = 4, - ACTIONS(2678), 1, + [18776] = 4, + ACTIONS(2682), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 15, + ACTIONS(2586), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85560,7 +85643,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2596), 29, + ACTIONS(2584), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85590,113 +85673,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19116] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1486), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1488), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19170] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1478), 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(1480), 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, - [19224] = 3, + [18832] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1546), 7, + ACTIONS(1399), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85704,7 +85685,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1548), 38, + ACTIONS(1401), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85743,63 +85724,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19278] = 4, - ACTIONS(2684), 1, - anon_sym_DASH_GT, + [18886] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2682), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2680), 29, + ACTIONS(1288), 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, - [19334] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1290), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18940] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1974), 7, + ACTIONS(1679), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85807,7 +85787,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1976), 38, + ACTIONS(1681), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85846,11 +85826,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19388] = 3, + [18994] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1462), 7, + ACTIONS(1663), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85858,7 +85838,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1464), 38, + ACTIONS(1665), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85897,11 +85877,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19442] = 3, + [19048] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1982), 7, + ACTIONS(676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85909,7 +85889,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1984), 38, + ACTIONS(678), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85948,11 +85928,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19496] = 3, + [19102] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1454), 7, + ACTIONS(1659), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85960,7 +85940,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1456), 38, + ACTIONS(1661), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85999,11 +85979,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19550] = 3, + [19156] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1474), 7, + ACTIONS(1655), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86011,7 +85991,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1476), 38, + ACTIONS(1657), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86050,113 +86030,65 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19604] = 3, + [19210] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2686), 30, + ACTIONS(1471), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19658] = 3, + sym_metavariable, + ACTIONS(1473), 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, + [19264] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2692), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2690), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2686), 2, anon_sym_LBRACE, - 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, - [19712] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2696), 15, + ACTIONS(2688), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86172,11 +86104,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2694), 30, + ACTIONS(2684), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -86184,7 +86115,6 @@ static 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, @@ -86203,11 +86133,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19766] = 3, + [19320] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1450), 7, + ACTIONS(574), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86215,7 +86145,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1452), 38, + ACTIONS(576), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86254,14 +86184,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19820] = 4, + [19374] = 4, + ACTIONS(2694), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2698), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2672), 15, + ACTIONS(2692), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86277,10 +86206,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2668), 28, + ACTIONS(2690), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -86306,11 +86236,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19876] = 3, + [19430] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1386), 7, + ACTIONS(2015), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86318,7 +86248,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1388), 38, + ACTIONS(2017), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86357,11 +86287,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19930] = 3, + [19484] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1350), 7, + ACTIONS(2031), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86369,7 +86299,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1352), 38, + ACTIONS(2033), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86408,11 +86338,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19984] = 3, + [19538] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1446), 7, + ACTIONS(1635), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86420,7 +86350,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1448), 38, + ACTIONS(1637), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86459,11 +86389,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20038] = 3, + [19592] = 4, + ACTIONS(2682), 1, + anon_sym_COLON_COLON, + 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, + [19648] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1498), 7, + ACTIONS(2071), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86471,7 +86453,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1500), 38, + ACTIONS(2073), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86510,11 +86492,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20092] = 3, + [19702] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1346), 7, + ACTIONS(2091), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86522,7 +86504,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1348), 38, + ACTIONS(2093), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86561,11 +86543,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20146] = 3, + [19756] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1298), 7, + ACTIONS(1631), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86573,7 +86555,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1300), 38, + ACTIONS(1633), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86612,62 +86594,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20200] = 3, + [19810] = 4, + ACTIONS(2700), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1274), 7, + ACTIONS(2698), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2696), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1276), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20254] = 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, + [19866] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1494), 7, + ACTIONS(1525), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86675,7 +86658,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1496), 38, + ACTIONS(1527), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86714,11 +86697,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20308] = 3, + [19920] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1216), 7, + ACTIONS(2039), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86726,7 +86709,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1218), 38, + ACTIONS(2041), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86765,11 +86748,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20362] = 3, + [19974] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1212), 7, + ACTIONS(1533), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86777,7 +86760,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1214), 38, + ACTIONS(1535), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86816,11 +86799,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20416] = 3, + [20028] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1102), 7, + ACTIONS(2023), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86828,7 +86811,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1104), 38, + ACTIONS(2025), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86867,62 +86850,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20470] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2702), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2700), 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, - [20524] = 3, + [20082] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1334), 7, + ACTIONS(1615), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86930,7 +86862,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1336), 38, + ACTIONS(1617), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86969,11 +86901,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20578] = 3, + [20136] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1122), 7, + ACTIONS(1603), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86981,7 +86913,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1124), 38, + ACTIONS(1605), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87020,62 +86952,114 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20632] = 3, + [20190] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1258), 7, + ACTIONS(848), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(850), 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_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, + [20244] = 4, + ACTIONS(2706), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2704), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_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, - [20686] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2702), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20300] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1330), 7, + ACTIONS(1569), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87083,7 +87067,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1332), 38, + ACTIONS(1571), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87122,11 +87106,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20740] = 3, + [20354] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1624), 7, + ACTIONS(1991), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87134,7 +87118,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1626), 38, + ACTIONS(1993), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87173,11 +87157,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20794] = 3, + [20408] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1310), 7, + ACTIONS(1983), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87185,7 +87169,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1312), 38, + ACTIONS(1985), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87224,11 +87208,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20848] = 3, + [20462] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1266), 7, + ACTIONS(1583), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87236,7 +87220,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1268), 38, + ACTIONS(1585), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87275,11 +87259,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20902] = 3, + [20516] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1522), 7, + ACTIONS(1587), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87287,7 +87271,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1524), 38, + ACTIONS(1589), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87326,11 +87310,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20956] = 3, + [20570] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1286), 7, + ACTIONS(1611), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87338,7 +87322,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1288), 38, + ACTIONS(1613), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87377,11 +87361,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21010] = 3, + [20624] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1142), 7, + ACTIONS(1955), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87389,7 +87373,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1144), 38, + ACTIONS(1957), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87428,11 +87412,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21064] = 3, + [20678] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1134), 7, + ACTIONS(1723), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87440,7 +87424,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1136), 38, + ACTIONS(1725), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87479,11 +87463,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21118] = 3, + [20732] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2706), 15, + ACTIONS(2710), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87499,7 +87483,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2704), 30, + ACTIONS(2708), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87511,7 +87495,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -87530,11 +87514,164 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21172] = 3, + [20786] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1507), 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(1509), 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, + [20840] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1577), 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(1579), 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, + [20894] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1503), 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(1505), 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, + [20948] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1612), 7, + ACTIONS(1487), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87542,7 +87679,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1614), 38, + ACTIONS(1489), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87581,11 +87718,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21226] = 3, + [21002] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1616), 7, + ACTIONS(1573), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87593,7 +87730,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1618), 38, + ACTIONS(1575), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87632,11 +87769,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21280] = 3, + [21056] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, + ACTIONS(1463), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87644,7 +87781,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1256), 38, + ACTIONS(1465), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87683,11 +87820,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21334] = 3, + [21110] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(1541), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87695,7 +87832,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1912), 38, + ACTIONS(1543), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87734,11 +87871,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21388] = 3, + [21164] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1246), 7, + ACTIONS(1407), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87746,7 +87883,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1248), 38, + ACTIONS(1409), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87785,11 +87922,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21442] = 3, + [21218] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(518), 15, + ACTIONS(2714), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87805,7 +87942,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(516), 30, + ACTIONS(2712), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87817,6 +87954,7 @@ static 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, @@ -87835,12 +87973,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_else, - [21496] = 3, + [21272] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1208), 7, + ACTIONS(1292), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87848,7 +87985,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1210), 38, + ACTIONS(1294), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87887,11 +88024,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21550] = 3, + [21326] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1196), 7, + ACTIONS(1391), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87899,7 +88036,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1198), 38, + ACTIONS(1393), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87938,11 +88075,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21604] = 3, + [21380] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2030), 7, + ACTIONS(1915), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87950,7 +88087,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2032), 38, + ACTIONS(1917), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87989,11 +88126,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21658] = 3, + [21434] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1188), 7, + ACTIONS(1367), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88001,7 +88138,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1190), 38, + ACTIONS(1369), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88040,11 +88177,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21712] = 3, + [21488] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1250), 7, + ACTIONS(1623), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88052,7 +88189,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1252), 38, + ACTIONS(1625), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88091,11 +88228,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21766] = 3, + [21542] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2006), 7, + ACTIONS(1228), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88103,7 +88240,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2008), 38, + ACTIONS(1230), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88142,11 +88279,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21820] = 3, + [21596] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1192), 7, + ACTIONS(1296), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88154,7 +88291,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1194), 38, + ACTIONS(1298), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88193,11 +88330,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21874] = 3, + [21650] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(1216), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88205,7 +88342,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1844), 38, + ACTIONS(1218), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88244,62 +88381,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21928] = 3, + [21704] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2710), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2708), 30, + ACTIONS(1102), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [21982] = 3, + sym_metavariable, + ACTIONS(1104), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21758] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1118), 7, + ACTIONS(1212), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88307,7 +88444,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1120), 38, + ACTIONS(1214), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88346,11 +88483,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22036] = 3, + [21812] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1126), 7, + ACTIONS(1174), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88358,7 +88495,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1128), 38, + ACTIONS(1176), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88397,11 +88534,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22090] = 3, + [21866] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1130), 7, + ACTIONS(1106), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88409,7 +88546,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1132), 38, + ACTIONS(1108), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88448,11 +88585,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22144] = 3, + [21920] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1138), 7, + ACTIONS(1639), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88460,7 +88597,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1140), 38, + ACTIONS(1641), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88499,11 +88636,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22198] = 3, + [21974] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1794), 7, + ACTIONS(1110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88511,7 +88648,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1796), 38, + ACTIONS(1112), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88550,11 +88687,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22252] = 3, + [22028] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1306), 7, + ACTIONS(1651), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88562,7 +88699,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1308), 38, + ACTIONS(1653), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88601,11 +88738,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22306] = 3, + [22082] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1790), 7, + ACTIONS(1170), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88613,7 +88750,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1792), 38, + ACTIONS(1172), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88652,11 +88789,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22360] = 3, + [22136] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1150), 7, + ACTIONS(1114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88664,7 +88801,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1152), 38, + ACTIONS(1116), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88703,11 +88840,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22414] = 3, + [22190] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1154), 7, + ACTIONS(1118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88715,7 +88852,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1156), 38, + ACTIONS(1120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88754,11 +88891,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22468] = 3, + [22244] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1782), 7, + ACTIONS(1308), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88766,7 +88903,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1784), 38, + ACTIONS(1310), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88805,11 +88942,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22522] = 3, + [22298] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1158), 7, + ACTIONS(1122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88817,7 +88954,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1160), 38, + ACTIONS(1124), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88856,11 +88993,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22576] = 3, + [22352] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2714), 15, + ACTIONS(2718), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88876,7 +89013,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2712), 30, + ACTIONS(2716), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88907,11 +89044,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22630] = 3, + [22406] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1162), 7, + ACTIONS(1126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88919,7 +89056,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1164), 38, + ACTIONS(1128), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88958,11 +89095,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22684] = 3, + [22460] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1200), 7, + ACTIONS(1130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88970,7 +89107,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1202), 38, + ACTIONS(1132), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89009,11 +89146,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22738] = 3, + [22514] = 4, + ACTIONS(2720), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1466), 7, + 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), 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, + [22570] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89021,7 +89210,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1468), 38, + ACTIONS(1136), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89060,11 +89249,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22792] = 3, + [22624] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1778), 7, + ACTIONS(1395), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89072,7 +89261,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1780), 38, + ACTIONS(1397), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89111,11 +89300,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22846] = 3, + [22678] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1762), 7, + ACTIONS(1138), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89123,7 +89312,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1764), 38, + ACTIONS(1140), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89162,62 +89351,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22900] = 3, + [22732] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1302), 7, + ACTIONS(2724), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2722), 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(1304), 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, - [22954] = 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, + [22786] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1632), 7, + ACTIONS(1146), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89225,7 +89414,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1634), 38, + ACTIONS(1148), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89264,11 +89453,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23008] = 3, + [22840] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1314), 7, + ACTIONS(1272), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89276,7 +89465,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1316), 38, + ACTIONS(1274), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89315,11 +89504,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23062] = 3, + [22894] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1322), 7, + ACTIONS(1599), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89327,7 +89516,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1324), 38, + ACTIONS(1601), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89366,11 +89555,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23116] = 3, + [22948] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1342), 7, + ACTIONS(1415), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89378,7 +89567,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1344), 38, + ACTIONS(1417), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89417,11 +89606,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23170] = 3, + [23002] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1358), 7, + ACTIONS(1427), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89429,7 +89618,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1360), 38, + ACTIONS(1429), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89468,11 +89657,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23224] = 3, + [23056] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1370), 7, + ACTIONS(1431), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89480,7 +89669,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1372), 38, + ACTIONS(1433), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89519,11 +89708,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23278] = 3, + [23110] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1374), 7, + ACTIONS(2726), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2688), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2684), 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, + [23166] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1475), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89531,7 +89772,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1376), 38, + ACTIONS(1477), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89570,11 +89811,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23332] = 3, + [23220] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1698), 7, + ACTIONS(1607), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89582,7 +89823,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1700), 38, + ACTIONS(1609), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89621,11 +89862,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23386] = 3, + [23274] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1382), 7, + ACTIONS(1491), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89633,7 +89874,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1384), 38, + ACTIONS(1493), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89672,11 +89913,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23440] = 3, + [23328] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1394), 7, + ACTIONS(1671), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89684,7 +89925,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1396), 38, + ACTIONS(1673), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89723,11 +89964,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23494] = 3, + [23382] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1398), 7, + ACTIONS(1683), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89735,7 +89976,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1400), 38, + ACTIONS(1685), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89774,11 +90015,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23548] = 3, + [23436] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1706), 7, + ACTIONS(1495), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89786,7 +90027,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1708), 38, + ACTIONS(1497), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89825,11 +90066,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23602] = 3, + [23490] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1746), 7, + ACTIONS(1515), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89837,7 +90078,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1748), 38, + ACTIONS(1517), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89876,11 +90117,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23656] = 3, + [23544] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1414), 7, + ACTIONS(1775), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89888,7 +90129,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1416), 38, + ACTIONS(1777), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89927,11 +90168,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23710] = 3, + [23598] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1426), 7, + ACTIONS(1521), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89939,7 +90180,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1428), 38, + ACTIONS(1523), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89978,11 +90219,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23764] = 3, + [23652] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1742), 7, + ACTIONS(1779), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89990,7 +90231,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1744), 38, + ACTIONS(1781), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90029,11 +90270,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23818] = 3, + [23706] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1434), 7, + ACTIONS(1783), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90041,7 +90282,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1436), 38, + ACTIONS(1785), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90080,11 +90321,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23872] = 3, + [23760] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1722), 7, + ACTIONS(1529), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90092,7 +90333,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1724), 38, + ACTIONS(1531), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90131,11 +90372,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23926] = 3, + [23814] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1718), 7, + ACTIONS(1795), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90143,7 +90384,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1720), 38, + ACTIONS(1797), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90182,11 +90423,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23980] = 3, + [23868] = 4, + ACTIONS(2728), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(562), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(564), 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, + [23924] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1442), 7, + ACTIONS(1839), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90194,7 +90487,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1444), 38, + ACTIONS(1841), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90233,11 +90526,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24034] = 3, + [23978] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1714), 7, + ACTIONS(1887), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90245,7 +90538,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1716), 38, + ACTIONS(1889), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90284,11 +90577,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24088] = 3, + [24032] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1750), 7, + ACTIONS(1939), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90296,7 +90589,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1752), 38, + ACTIONS(1941), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90335,11 +90628,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24142] = 3, + [24086] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1766), 7, + ACTIONS(1545), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90347,7 +90640,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1768), 38, + ACTIONS(1547), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90386,11 +90679,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24196] = 3, + [24140] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1834), 7, + ACTIONS(1094), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90398,7 +90691,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1836), 38, + ACTIONS(1096), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90437,11 +90730,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24250] = 3, + [24194] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1686), 7, + ACTIONS(1557), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90449,7 +90742,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1688), 38, + ACTIONS(1559), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90488,11 +90781,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24304] = 3, + [24248] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1620), 7, + ACTIONS(2047), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90500,7 +90793,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1622), 38, + ACTIONS(2049), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90539,11 +90832,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24358] = 3, + [24302] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1838), 7, + ACTIONS(2067), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90551,7 +90844,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1840), 38, + ACTIONS(2069), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90590,63 +90883,113 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24412] = 4, - ACTIONS(2720), 1, - anon_sym_DASH_GT, + [24356] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2079), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2716), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2081), 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, + [24410] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2035), 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, - [24468] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(2037), 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, + [24464] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1894), 7, + ACTIONS(2027), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90654,7 +90997,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1896), 38, + ACTIONS(2029), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90693,11 +91036,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24522] = 3, + [24518] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1542), 7, + ACTIONS(2019), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90705,7 +91048,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1544), 38, + ACTIONS(2021), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90744,13 +91087,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24576] = 4, - ACTIONS(2678), 1, + [24572] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2007), 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(2009), 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, + [24626] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 15, + ACTIONS(2732), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90766,7 +91158,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2578), 29, + ACTIONS(2730), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90778,6 +91170,7 @@ static 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, @@ -90796,11 +91189,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24632] = 3, + [24680] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1518), 7, + ACTIONS(1565), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90808,7 +91201,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1520), 38, + ACTIONS(1567), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90847,11 +91240,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24686] = 3, + [24734] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1502), 7, + ACTIONS(1304), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90859,7 +91252,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1504), 38, + ACTIONS(1306), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90898,11 +91291,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24740] = 3, + [24788] = 4, + ACTIONS(2734), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1482), 7, + 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), 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, + [24844] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1847), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90910,7 +91355,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1484), 38, + ACTIONS(1849), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90949,11 +91394,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24794] = 3, + [24898] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1470), 7, + ACTIONS(1667), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90961,7 +91406,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1472), 38, + ACTIONS(1669), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91000,11 +91445,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24848] = 3, + [24952] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1438), 7, + ACTIONS(1803), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91012,7 +91457,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1440), 38, + ACTIONS(1805), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91051,11 +91496,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24902] = 3, + [25006] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1584), 7, + ACTIONS(1743), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91063,7 +91508,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1586), 38, + ACTIONS(1745), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91102,11 +91547,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24956] = 3, + [25060] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1430), 7, + ACTIONS(524), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91114,7 +91559,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1432), 38, + ACTIONS(526), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91153,63 +91598,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25010] = 4, - ACTIONS(2726), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2724), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2722), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25066] = 3, + [25114] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1422), 7, + ACTIONS(1787), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91217,7 +91610,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1424), 38, + ACTIONS(1789), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91256,11 +91649,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25120] = 3, + [25168] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1914), 7, + ACTIONS(2738), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2736), 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, + [25222] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1675), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91268,7 +91712,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1916), 38, + ACTIONS(1677), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91307,11 +91751,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25174] = 3, + [25276] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1938), 7, + ACTIONS(2063), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91319,7 +91763,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1940), 38, + ACTIONS(2065), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91358,11 +91802,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25228] = 3, + [25330] = 4, + ACTIONS(2744), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1418), 7, + ACTIONS(2742), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2740), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25386] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2075), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91370,7 +91866,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1420), 38, + ACTIONS(2077), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91409,13 +91905,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25282] = 4, - ACTIONS(2732), 1, + [25440] = 4, + ACTIONS(2750), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2730), 15, + ACTIONS(2748), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91431,7 +91927,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2728), 29, + ACTIONS(2746), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91461,11 +91957,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25338] = 3, + [25496] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1410), 7, + ACTIONS(1715), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91473,7 +91969,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1412), 38, + ACTIONS(1717), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91512,11 +92008,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25392] = 3, + [25550] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1406), 7, + ACTIONS(1711), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91524,7 +92020,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1408), 38, + ACTIONS(1713), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91563,11 +92059,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25446] = 3, + [25604] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1592), 7, + ACTIONS(1707), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91575,7 +92071,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1594), 38, + ACTIONS(1709), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91614,11 +92110,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25500] = 3, + [25658] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1600), 7, + ACTIONS(1871), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91626,7 +92122,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1602), 38, + ACTIONS(1873), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91665,11 +92161,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25554] = 3, + [25712] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1990), 7, + ACTIONS(1691), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91677,7 +92173,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1992), 38, + ACTIONS(1693), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91716,11 +92212,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25608] = 3, + [25766] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2026), 7, + ACTIONS(1643), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91728,7 +92224,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2028), 38, + ACTIONS(1645), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91767,11 +92263,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25662] = 3, + [25820] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1930), 7, + ACTIONS(2011), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91779,7 +92275,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1932), 38, + ACTIONS(2013), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91818,11 +92314,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25716] = 3, + [25874] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1390), 7, + ACTIONS(1703), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91830,7 +92326,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1392), 38, + ACTIONS(1705), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91869,11 +92365,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25770] = 3, + [25928] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1378), 7, + ACTIONS(2003), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91881,7 +92377,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1380), 38, + ACTIONS(2005), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91920,11 +92416,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25824] = 3, + [25982] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1402), 7, + ACTIONS(1695), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91932,7 +92428,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1404), 38, + ACTIONS(1697), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91971,11 +92467,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25878] = 3, + [26036] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1646), 7, + ACTIONS(1098), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91983,7 +92479,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1648), 38, + ACTIONS(1100), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92022,11 +92518,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25932] = 3, + [26090] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1650), 7, + ACTIONS(1699), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92034,7 +92530,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1652), 38, + ACTIONS(1701), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92073,13 +92569,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25986] = 4, - ACTIONS(2738), 1, + [26144] = 4, + ACTIONS(2756), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2736), 15, + ACTIONS(2754), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92095,7 +92591,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2734), 29, + ACTIONS(2752), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92125,11 +92621,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26042] = 3, + [26200] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1326), 7, + ACTIONS(1591), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92137,7 +92633,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1328), 38, + ACTIONS(1593), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92176,63 +92672,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26096] = 4, - ACTIONS(2678), 1, - anon_sym_COLON_COLON, + [26254] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2582), 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, - [26152] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1294), 7, + ACTIONS(1561), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92240,7 +92684,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1296), 38, + ACTIONS(1563), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92279,11 +92723,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26206] = 3, + [26308] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1146), 7, + ACTIONS(1439), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92291,7 +92735,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1148), 38, + ACTIONS(1441), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92330,11 +92774,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26260] = 3, + [26362] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1338), 7, + ACTIONS(1435), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92342,7 +92786,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1340), 38, + ACTIONS(1437), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92381,11 +92825,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26314] = 3, + [26416] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1554), 7, + ACTIONS(1423), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92393,7 +92837,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1556), 38, + ACTIONS(1425), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92432,11 +92876,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26368] = 3, + [26470] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1870), 7, + ACTIONS(1419), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92444,7 +92888,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1872), 38, + ACTIONS(1421), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92483,11 +92927,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26422] = 3, + [26524] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1114), 7, + ACTIONS(1411), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92495,7 +92939,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1116), 38, + ACTIONS(1413), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92534,11 +92978,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26476] = 3, + [26578] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1726), 7, + ACTIONS(1387), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92546,7 +92990,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1728), 38, + ACTIONS(1389), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92585,11 +93029,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26530] = 3, + [26632] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1110), 7, + ACTIONS(1379), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92597,7 +93041,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1112), 38, + ACTIONS(1381), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92636,114 +93080,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26584] = 4, - ACTIONS(2744), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2742), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2740), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26640] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2748), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2746), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_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, - [26694] = 3, + [26686] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1290), 7, + ACTIONS(1967), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92751,7 +93092,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1292), 38, + ACTIONS(1969), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92790,11 +93131,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26748] = 3, + [26740] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1318), 7, + ACTIONS(1375), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92802,7 +93143,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1320), 38, + ACTIONS(1377), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92841,11 +93182,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26802] = 3, + [26794] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1506), 7, + ACTIONS(1371), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92853,7 +93194,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1508), 38, + ACTIONS(1373), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92892,11 +93233,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26856] = 3, + [26848] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1514), 7, + ACTIONS(1300), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92904,7 +93245,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1516), 38, + ACTIONS(1302), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92943,62 +93284,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26910] = 3, + [26902] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2752), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2750), 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, - [26964] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1354), 7, + ACTIONS(1284), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93006,7 +93296,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1356), 38, + ACTIONS(1286), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93045,11 +93335,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27018] = 3, + [26956] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1366), 7, + ACTIONS(1280), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93057,7 +93347,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1368), 38, + ACTIONS(1282), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93096,114 +93386,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27072] = 4, - ACTIONS(2758), 1, - anon_sym_DASH_GT, + [27010] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2756), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2754), 29, + ACTIONS(1268), 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, - [27128] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2762), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2760), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_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, - [27182] = 3, + sym_metavariable, + ACTIONS(1270), 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, + [27064] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1550), 7, + ACTIONS(1963), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93211,7 +93449,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1552), 38, + ACTIONS(1965), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93250,11 +93488,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27236] = 3, + [27118] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1770), 7, + ACTIONS(1260), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93262,7 +93500,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1772), 38, + ACTIONS(1262), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93301,11 +93539,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27290] = 3, + [27172] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1774), 7, + ACTIONS(1256), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93313,7 +93551,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1776), 38, + ACTIONS(1258), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93352,11 +93590,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27344] = 3, + [27226] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1802), 7, + ACTIONS(1252), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93364,7 +93602,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1804), 38, + ACTIONS(1254), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93403,11 +93641,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27398] = 3, + [27280] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1830), 7, + ACTIONS(1142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93415,7 +93653,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1832), 38, + ACTIONS(1144), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93454,62 +93692,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27452] = 3, + [27334] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2600), 28, + ACTIONS(1248), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [27506] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1250), 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, + [27388] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1854), 7, + ACTIONS(1244), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93517,7 +93755,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1856), 38, + ACTIONS(1246), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93556,11 +93794,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27560] = 3, + [27442] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1942), 7, + ACTIONS(1959), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93568,7 +93806,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1944), 38, + ACTIONS(1961), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93607,11 +93845,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27614] = 3, + [27496] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1950), 7, + ACTIONS(1236), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93619,7 +93857,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1952), 38, + ACTIONS(1238), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93658,62 +93896,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27668] = 3, + [27550] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2766), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2764), 30, + ACTIONS(1951), 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, - [27722] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1953), 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, + [27604] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1994), 7, + ACTIONS(1895), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93721,7 +93959,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1996), 38, + ACTIONS(1897), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93760,11 +93998,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27776] = 3, + [27658] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2620), 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(2618), 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, + [27712] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1998), 7, + ACTIONS(1232), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93772,7 +94061,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2000), 38, + ACTIONS(1234), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93811,11 +94100,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27830] = 3, + [27766] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2018), 7, + ACTIONS(1971), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93823,7 +94112,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2020), 38, + ACTIONS(1973), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93862,11 +94151,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27884] = 3, + [27820] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1890), 7, + ACTIONS(1220), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93874,7 +94163,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1892), 38, + ACTIONS(1222), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93913,11 +94202,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27938] = 3, + [27874] = 4, + ACTIONS(2682), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(556), 15, + ACTIONS(2608), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93933,7 +94224,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(554), 30, + ACTIONS(2606), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93963,12 +94254,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_else, - [27992] = 3, + [27930] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1490), 7, + ACTIONS(1903), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93976,7 +94266,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1492), 38, + ACTIONS(1905), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94015,11 +94305,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28046] = 3, + [27984] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1262), 7, + ACTIONS(1911), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94027,7 +94317,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1264), 38, + ACTIONS(1913), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94066,11 +94356,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28100] = 3, + [28038] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1604), 7, + ACTIONS(1204), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94078,7 +94368,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1606), 38, + ACTIONS(1206), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94117,11 +94407,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28154] = 3, + [28092] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2022), 7, + ACTIONS(1178), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94129,7 +94419,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2024), 38, + ACTIONS(1180), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94168,113 +94458,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28208] = 3, + [28146] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2010), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2760), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(2012), 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, - [28262] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2002), 7, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2758), 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(2004), 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, - [28316] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28200] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1986), 7, + ACTIONS(1975), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94282,7 +94521,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1988), 38, + ACTIONS(1977), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94321,11 +94560,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28370] = 3, + [28254] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1978), 7, + ACTIONS(1995), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94333,7 +94572,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1980), 38, + ACTIONS(1997), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94372,11 +94611,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28424] = 3, + [28308] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1954), 7, + ACTIONS(1999), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94384,7 +94623,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1956), 38, + ACTIONS(2001), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94423,11 +94662,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28478] = 3, + [28362] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1946), 7, + ACTIONS(2055), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94435,7 +94674,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1948), 38, + ACTIONS(2057), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94474,11 +94713,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28532] = 3, + [28416] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1934), 7, + ACTIONS(1943), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94486,7 +94725,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1936), 38, + ACTIONS(1945), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94525,11 +94764,117 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, + [28470] = 5, + ACTIONS(2570), 1, + anon_sym_BANG, + ACTIONS(2762), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(562), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(564), 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, + [28528] = 5, + ACTIONS(2766), 1, + anon_sym_LPAREN, + STATE(1132), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2768), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2764), 28, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, [28586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1906), 7, + ACTIONS(1755), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94537,7 +94882,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1908), 38, + ACTIONS(1757), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94580,58 +94925,58 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1902), 7, + ACTIONS(526), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(524), 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(1904), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, + anon_sym_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, [28694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1966), 7, + ACTIONS(2087), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94639,7 +94984,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1968), 38, + ACTIONS(2089), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94682,58 +95027,58 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1962), 7, + ACTIONS(2772), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2770), 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(1964), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, + 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, [28802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1886), 7, + ACTIONS(2099), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94741,7 +95086,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1888), 38, + ACTIONS(2101), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94784,7 +95129,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1810), 7, + ACTIONS(1276), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94792,7 +95137,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1812), 38, + ACTIONS(1278), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94835,7 +95180,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1738), 7, + ACTIONS(1264), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94843,7 +95188,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1740), 38, + ACTIONS(1266), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94886,7 +95231,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1702), 7, + ACTIONS(1751), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94894,7 +95239,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1704), 38, + ACTIONS(1753), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94937,7 +95282,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1662), 7, + ACTIONS(1224), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94945,7 +95290,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1664), 38, + ACTIONS(1226), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94988,7 +95333,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1734), 7, + ACTIONS(1549), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94996,7 +95341,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1736), 38, + ACTIONS(1551), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95039,7 +95384,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2014), 7, + ACTIONS(1443), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95047,7 +95392,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2016), 38, + ACTIONS(1445), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95090,7 +95435,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1576), 7, + ACTIONS(1447), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95098,7 +95443,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1578), 38, + ACTIONS(1449), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95141,7 +95486,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1658), 7, + ACTIONS(1451), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95149,7 +95494,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1660), 38, + ACTIONS(1453), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95192,7 +95537,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1564), 7, + ACTIONS(1767), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95200,7 +95545,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1566), 38, + ACTIONS(1769), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95243,7 +95588,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1538), 7, + ACTIONS(1455), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95251,7 +95596,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1540), 38, + ACTIONS(1457), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95294,7 +95639,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1530), 7, + ACTIONS(1467), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95302,7 +95647,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1532), 38, + ACTIONS(1469), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95345,7 +95690,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1362), 7, + ACTIONS(1483), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95353,7 +95698,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1364), 38, + ACTIONS(1485), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95396,7 +95741,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1278), 7, + ACTIONS(1499), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95404,7 +95749,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1280), 38, + ACTIONS(1501), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95447,7 +95792,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1642), 7, + ACTIONS(1511), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95455,7 +95800,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1644), 38, + ACTIONS(1513), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95498,7 +95843,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1628), 7, + ACTIONS(1759), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95506,7 +95851,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1630), 38, + ACTIONS(1761), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95549,7 +95894,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1608), 7, + ACTIONS(1537), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95557,7 +95902,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1610), 38, + ACTIONS(1539), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95600,7 +95945,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1106), 7, + ACTIONS(1739), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95608,7 +95953,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1108), 38, + ACTIONS(1741), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95651,7 +95996,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1596), 7, + ACTIONS(1553), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95659,7 +96004,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1598), 38, + ACTIONS(1555), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95702,7 +96047,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1918), 7, + ACTIONS(1719), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95710,7 +96055,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1920), 38, + ACTIONS(1721), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95753,7 +96098,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1572), 7, + ACTIONS(1727), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95761,7 +96106,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1574), 38, + ACTIONS(1729), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95800,11 +96145,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29936] = 3, + [29936] = 4, + ACTIONS(2774), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(662), 15, + ACTIONS(562), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95820,11 +96167,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(660), 29, + ACTIONS(564), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -95850,11 +96196,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29989] = 3, + [29991] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 15, + ACTIONS(2401), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95870,7 +96216,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2768), 29, + ACTIONS(2403), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95900,62 +96246,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30042] = 4, - ACTIONS(2594), 1, - anon_sym_COLON_COLON, + [30044] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2586), 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, - [30097] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2774), 15, + ACTIONS(654), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95971,7 +96266,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2772), 29, + ACTIONS(652), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96001,7 +96296,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30150] = 3, + [30097] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -96051,11 +96346,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30203] = 3, + [30150] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(642), 15, + ACTIONS(646), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96071,7 +96366,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(640), 29, + ACTIONS(644), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96101,7 +96396,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30256] = 3, + [30203] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -96151,211 +96446,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30309] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2786), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2784), 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, - [30362] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2790), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2788), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - 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, - [30415] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2369), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2371), 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, - [30468] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(618), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(616), 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, - [30521] = 3, + [30256] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(658), 15, + ACTIONS(630), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96371,7 +96466,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(656), 29, + ACTIONS(628), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96401,11 +96496,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30574] = 3, + [30309] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2401), 15, + ACTIONS(662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96421,7 +96516,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2403), 29, + ACTIONS(660), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96451,11 +96546,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30627] = 3, + [30362] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2794), 15, + ACTIONS(642), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96471,7 +96566,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2792), 29, + ACTIONS(640), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96501,13 +96596,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30680] = 4, - ACTIONS(2796), 1, - anon_sym_COLON_COLON, + [30415] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(572), 15, + ACTIONS(2786), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96523,10 +96616,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(570), 28, + ACTIONS(2784), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -96552,11 +96646,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30735] = 3, + [30468] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(622), 15, + ACTIONS(638), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96572,7 +96666,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(620), 29, + ACTIONS(636), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96602,11 +96696,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30788] = 3, + [30521] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2800), 15, + ACTIONS(2790), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96622,7 +96716,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2798), 29, + ACTIONS(2788), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96652,11 +96746,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30841] = 3, + [30574] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2804), 15, + ACTIONS(2794), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96672,7 +96766,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2802), 29, + ACTIONS(2792), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96702,11 +96796,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30894] = 3, + [30627] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(670), 15, + ACTIONS(2798), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96722,7 +96816,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(668), 29, + ACTIONS(2796), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96752,11 +96846,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30947] = 3, + [30680] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2656), 15, + ACTIONS(2802), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96772,7 +96866,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2652), 29, + ACTIONS(2800), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96802,11 +96896,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31000] = 3, + [30733] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2808), 15, + ACTIONS(2806), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96822,7 +96916,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2806), 29, + ACTIONS(2804), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96852,11 +96946,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31053] = 3, + [30786] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2812), 15, + ACTIONS(678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96872,7 +96966,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2810), 29, + ACTIONS(676), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96902,11 +96996,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31106] = 3, + [30839] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2816), 15, + ACTIONS(2810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96922,7 +97016,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2814), 29, + ACTIONS(2808), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96952,11 +97046,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31159] = 3, + [30892] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2820), 15, + ACTIONS(2810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96972,7 +97066,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2818), 29, + ACTIONS(2808), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97002,11 +97096,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31212] = 3, + [30945] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2824), 15, + ACTIONS(2768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97022,7 +97116,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2822), 29, + ACTIONS(2764), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97052,11 +97146,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31265] = 3, + [30998] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2814), 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(2812), 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, + [31051] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2828), 15, + ACTIONS(2818), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97072,7 +97216,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2826), 29, + ACTIONS(2816), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97102,11 +97246,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31318] = 3, + [31104] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(580), 15, + ACTIONS(618), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97122,7 +97266,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(578), 29, + ACTIONS(616), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97152,11 +97296,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31371] = 3, + [31157] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 15, + ACTIONS(2822), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97172,7 +97316,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2596), 29, + ACTIONS(2820), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97202,11 +97346,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31424] = 3, + [31210] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2832), 15, + ACTIONS(2826), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97222,7 +97366,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2830), 29, + ACTIONS(2824), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97252,62 +97396,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31477] = 4, - ACTIONS(2838), 1, - anon_sym_RBRACE, + [31263] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2836), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2834), 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, - [31532] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2842), 15, + ACTIONS(634), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97323,7 +97416,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2840), 29, + ACTIONS(632), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97353,11 +97446,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31585] = 3, + [31316] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(638), 15, + ACTIONS(2830), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97373,7 +97466,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(636), 29, + ACTIONS(2828), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97403,11 +97496,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31638] = 3, + [31369] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(626), 15, + ACTIONS(670), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97423,7 +97516,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(624), 29, + ACTIONS(668), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97453,11 +97546,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31691] = 3, + [31422] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(560), 15, + ACTIONS(2834), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2832), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31475] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2393), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97473,7 +97616,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(558), 29, + ACTIONS(2395), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97503,11 +97646,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31744] = 3, + [31528] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2389), 15, + ACTIONS(2608), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97523,7 +97666,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2391), 29, + ACTIONS(2606), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97553,11 +97696,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31797] = 3, + [31581] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2846), 15, + ACTIONS(2838), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97573,7 +97716,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2844), 29, + ACTIONS(2836), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97603,11 +97746,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31850] = 3, + [31634] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2850), 15, + ACTIONS(2842), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97623,7 +97766,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2848), 29, + ACTIONS(2840), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97653,11 +97796,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31903] = 3, + [31687] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2854), 15, + ACTIONS(2846), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97673,7 +97816,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2852), 29, + ACTIONS(2844), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97703,11 +97846,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31956] = 3, + [31740] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2858), 15, + ACTIONS(2850), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97723,7 +97866,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2856), 29, + ACTIONS(2848), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97753,11 +97896,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32009] = 3, + [31793] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2862), 15, + ACTIONS(2854), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97773,7 +97916,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2860), 29, + ACTIONS(2852), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97803,79 +97946,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32062] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2864), 1, - sym_identifier, - ACTIONS(2868), 1, - anon_sym_LPAREN, - ACTIONS(2870), 1, - anon_sym_STAR, - ACTIONS(2876), 1, - anon_sym_for, - ACTIONS(2878), 1, - anon_sym_AMP, - ACTIONS(2880), 1, - sym_metavariable, - STATE(1851), 1, - sym_scoped_type_identifier, - STATE(1983), 1, - sym_generic_type, - STATE(2066), 1, - sym_where_predicate, - STATE(2380), 1, - sym_bracketed_type, - STATE(2381), 1, - sym_generic_type_with_turbofish, - STATE(2539), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2866), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(2874), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, - STATE(2316), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2872), 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, - [32151] = 3, + [31846] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2884), 15, + ACTIONS(2688), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97891,7 +97966,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2882), 29, + ACTIONS(2684), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97921,11 +97996,111 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32204] = 3, + [31899] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(634), 15, + ACTIONS(2858), 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(2856), 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, + [31952] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2862), 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(2860), 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, + [32005] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(580), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97941,7 +98116,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(632), 29, + ACTIONS(578), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97971,11 +98146,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32257] = 3, + [32058] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2888), 15, + ACTIONS(674), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97991,7 +98166,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2886), 29, + ACTIONS(672), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98021,11 +98196,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32310] = 3, + [32111] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2892), 15, + ACTIONS(626), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98041,7 +98216,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2890), 29, + ACTIONS(624), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98071,11 +98246,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32363] = 3, + [32164] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2896), 15, + ACTIONS(622), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98091,7 +98266,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2894), 29, + ACTIONS(620), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98121,11 +98296,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32416] = 3, + [32217] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(654), 15, + ACTIONS(614), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98141,7 +98316,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(652), 29, + ACTIONS(612), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98171,11 +98346,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32469] = 3, + [32270] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2900), 15, + ACTIONS(2866), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98191,7 +98366,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2898), 29, + ACTIONS(2864), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98221,11 +98396,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32522] = 3, + [32323] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 15, + ACTIONS(666), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98241,7 +98416,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2668), 29, + ACTIONS(664), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98271,11 +98446,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32575] = 3, + [32376] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(678), 15, + ACTIONS(610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98291,7 +98466,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(676), 29, + ACTIONS(608), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98321,11 +98496,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32628] = 3, + [32429] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(564), 15, + ACTIONS(650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98341,7 +98516,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(562), 29, + ACTIONS(648), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98371,11 +98546,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32681] = 3, + [32482] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2904), 15, + ACTIONS(2870), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98391,7 +98566,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2902), 29, + ACTIONS(2868), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98421,96 +98596,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32734] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2908), 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(2906), 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, - [32787] = 21, + [32535] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2864), 1, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2868), 1, + ACTIONS(2876), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2878), 1, anon_sym_STAR, - ACTIONS(2876), 1, + ACTIONS(2884), 1, anon_sym_for, - ACTIONS(2878), 1, + ACTIONS(2886), 1, anon_sym_AMP, - ACTIONS(2880), 1, + ACTIONS(2888), 1, sym_metavariable, - STATE(1851), 1, + STATE(1855), 1, sym_scoped_type_identifier, - STATE(1983), 1, + STATE(1923), 1, sym_generic_type, - STATE(2066), 1, + STATE(1958), 1, sym_where_predicate, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2539), 1, + STATE(2550), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(2874), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(2910), 2, anon_sym_SEMI, anon_sym_LBRACE, + ACTIONS(2882), 2, + anon_sym_default, + anon_sym_union, ACTIONS(906), 3, sym_self, sym_super, @@ -98521,7 +98646,7 @@ static uint16_t ts_small_parse_table[] = { sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(2872), 17, + ACTIONS(2880), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98539,11 +98664,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [32876] = 3, + [32624] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2892), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2890), 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, + [32677] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2914), 15, + ACTIONS(2896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98559,7 +98734,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2912), 29, + ACTIONS(2894), 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, + [32730] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2900), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2898), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98589,112 +98814,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32929] = 3, + [32783] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2918), 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(2916), 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, - [32982] = 4, - ACTIONS(2924), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2922), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2920), 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, - [33037] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2928), 15, + ACTIONS(2904), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98710,7 +98834,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2926), 29, + ACTIONS(2902), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98740,11 +98864,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33090] = 3, + [32836] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2932), 15, + ACTIONS(2908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98760,7 +98884,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2930), 29, + ACTIONS(2906), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98790,11 +98914,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33143] = 3, + [32889] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2936), 15, + ACTIONS(2912), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98810,7 +98934,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2934), 29, + ACTIONS(2910), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98840,11 +98964,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33196] = 3, + [32942] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 15, + ACTIONS(2916), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98860,7 +98984,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2582), 29, + ACTIONS(2914), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98890,11 +99014,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33249] = 3, + [32995] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2940), 15, + ACTIONS(2920), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98910,7 +99034,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2938), 29, + ACTIONS(2918), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98940,11 +99064,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33302] = 3, + [33048] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2944), 15, + ACTIONS(2924), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98960,7 +99084,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2942), 29, + ACTIONS(2922), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98990,11 +99114,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33355] = 3, + [33101] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2948), 15, + ACTIONS(2928), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99010,7 +99134,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2946), 29, + ACTIONS(2926), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99040,11 +99164,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33408] = 3, + [33154] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(338), 15, + ACTIONS(322), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99060,7 +99184,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(336), 29, + ACTIONS(320), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99090,11 +99214,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33461] = 3, + [33207] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2952), 15, + ACTIONS(572), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99110,7 +99234,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2950), 29, + ACTIONS(570), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99140,11 +99264,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33514] = 3, + [33260] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2948), 15, + ACTIONS(2640), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99160,7 +99284,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2946), 29, + ACTIONS(2638), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99190,11 +99314,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33567] = 3, + [33313] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2872), 1, + sym_identifier, + ACTIONS(2876), 1, + anon_sym_LPAREN, + ACTIONS(2878), 1, + anon_sym_STAR, + ACTIONS(2884), 1, + anon_sym_for, + ACTIONS(2886), 1, + anon_sym_AMP, + ACTIONS(2888), 1, + sym_metavariable, + STATE(1855), 1, + sym_scoped_type_identifier, + STATE(1923), 1, + sym_generic_type, + STATE(1958), 1, + sym_where_predicate, + STATE(2370), 1, + sym_bracketed_type, + STATE(2371), 1, + sym_generic_type_with_turbofish, + STATE(2550), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2956), 15, + ACTIONS(2882), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(2930), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(2316), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2880), 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, + [33402] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2934), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99210,7 +99402,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2954), 29, + ACTIONS(2932), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99240,11 +99432,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33620] = 3, + [33455] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2385), 15, + ACTIONS(2938), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99260,7 +99452,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2387), 29, + ACTIONS(2936), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99290,11 +99482,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33673] = 3, + [33508] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 15, + ACTIONS(2347), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99310,7 +99502,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2578), 29, + ACTIONS(2349), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99340,11 +99532,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33726] = 3, + [33561] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2960), 15, + ACTIONS(2942), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99360,7 +99552,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2958), 29, + ACTIONS(2940), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99390,11 +99582,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33779] = 3, + [33614] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2964), 15, + ACTIONS(606), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99410,7 +99602,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2962), 29, + ACTIONS(604), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99440,11 +99632,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33832] = 3, + [33667] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(666), 15, + ACTIONS(2946), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99460,7 +99652,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(664), 29, + ACTIONS(2944), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99490,61 +99682,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33885] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2968), 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(2966), 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, - [33938] = 3, + [33720] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2972), 15, + ACTIONS(2425), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99560,7 +99702,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2970), 29, + ACTIONS(2427), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99590,11 +99732,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33991] = 3, + [33773] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2976), 15, + ACTIONS(2950), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99610,7 +99752,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2974), 29, + ACTIONS(2948), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99640,11 +99782,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34044] = 3, + [33826] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2980), 15, + ACTIONS(2954), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99660,7 +99802,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2978), 29, + ACTIONS(2952), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99690,61 +99832,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34097] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2984), 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(2982), 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, - [34150] = 3, + [33879] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2988), 15, + ACTIONS(2586), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99760,7 +99852,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2986), 29, + ACTIONS(2584), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99790,11 +99882,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34203] = 3, + [33932] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2992), 15, + ACTIONS(2958), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99810,7 +99902,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2990), 29, + ACTIONS(2956), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99840,111 +99932,111 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34256] = 3, + [33985] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(2962), 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(2994), 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, - [34309] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3000), 12, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2960), 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, + [34038] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2966), 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(2998), 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, - [34362] = 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(2964), 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, + [34091] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3004), 15, + ACTIONS(2970), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99960,7 +100052,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3002), 29, + ACTIONS(2968), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99990,11 +100082,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34415] = 3, + [34144] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3008), 15, + ACTIONS(2974), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100010,7 +100102,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3006), 29, + ACTIONS(2972), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100040,11 +100132,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34468] = 3, + [34197] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3012), 15, + ACTIONS(584), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100060,7 +100152,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3010), 29, + ACTIONS(582), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100090,11 +100182,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34521] = 3, + [34250] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3016), 15, + ACTIONS(2978), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100110,7 +100202,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3014), 29, + ACTIONS(2976), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100140,11 +100232,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34574] = 3, + [34303] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3020), 15, + ACTIONS(2982), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100160,7 +100252,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3018), 29, + ACTIONS(2980), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100190,11 +100282,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34627] = 3, + [34356] = 4, + ACTIONS(2988), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(610), 15, + ACTIONS(2986), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2984), 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, + [34411] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2992), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100210,7 +100353,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(608), 29, + ACTIONS(2990), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100240,11 +100383,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34680] = 3, + [34464] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3024), 15, + ACTIONS(2996), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100260,7 +100403,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3022), 29, + ACTIONS(2994), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100290,11 +100433,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34733] = 3, + [34517] = 4, + ACTIONS(2596), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(606), 15, + ACTIONS(2590), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100310,11 +100455,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(604), 29, + ACTIONS(2588), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -100340,11 +100484,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34786] = 3, + [34572] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(602), 15, + ACTIONS(3000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100360,7 +100504,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(600), 29, + ACTIONS(2998), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100390,11 +100534,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34839] = 3, + [34625] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(650), 15, + ACTIONS(3004), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100410,7 +100554,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(648), 29, + ACTIONS(3002), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100440,11 +100584,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34892] = 3, + [34678] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(674), 15, + ACTIONS(3008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100460,7 +100604,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(672), 29, + ACTIONS(3006), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100490,11 +100634,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34945] = 3, + [34731] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(630), 15, + ACTIONS(576), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100510,7 +100654,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(628), 29, + ACTIONS(574), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100540,26 +100684,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34998] = 5, - ACTIONS(3026), 1, - anon_sym_POUND, + [34784] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1135), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2501), 9, + ACTIONS(3012), 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(2499), 32, + ACTIONS(3010), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100583,20 +100725,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_for, anon_sym_impl, - anon_sym_pub, anon_sym_union, anon_sym_unsafe, + anon_sym_where, anon_sym_extern, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [35055] = 3, + [34837] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3016), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(3014), 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, + [34890] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3031), 15, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100612,7 +100804,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3029), 29, + ACTIONS(566), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100642,11 +100834,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35108] = 3, + [34943] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3035), 15, + ACTIONS(3020), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100662,7 +100854,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3033), 29, + ACTIONS(3018), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100692,11 +100884,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35161] = 3, + [34996] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(614), 15, + ACTIONS(3024), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100712,7 +100904,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(612), 29, + ACTIONS(3022), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100742,11 +100934,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35214] = 3, + [35049] = 5, + ACTIONS(3026), 1, + anon_sym_POUND, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(646), 15, + STATE(1140), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2457), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2455), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35106] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3031), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100762,7 +101006,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(644), 29, + ACTIONS(3029), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100792,11 +101036,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35267] = 3, + [35159] = 4, + ACTIONS(3037), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3035), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3033), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35214] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3039), 15, + ACTIONS(3041), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100812,7 +101107,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3037), 29, + ACTIONS(3039), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100842,48 +101137,100 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35320] = 16, - ACTIONS(3043), 1, + [35267] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3045), 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(3043), 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, + [35320] = 17, ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(3055), 1, anon_sym_EQ, - ACTIONS(3053), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3057), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(3059), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3041), 20, + ACTIONS(3047), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100893,7 +101240,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -100904,34 +101250,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35398] = 7, - ACTIONS(3043), 1, + [35400] = 17, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3057), 1, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3063), 1, anon_sym_DOT_DOT, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, anon_sym_DOT, + ACTIONS(3081), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3073), 13, + ACTIONS(3051), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3061), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3053), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3071), 25, + ACTIONS(3073), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3079), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100941,12 +101303,6 @@ static 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, @@ -100957,54 +101313,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35458] = 20, - ACTIONS(3043), 1, + [35480] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3057), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(3059), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3075), 7, + ACTIONS(3083), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101012,7 +101368,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101023,19 +101379,117 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35544] = 7, - ACTIONS(2624), 1, + [35566] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2986), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2984), 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, + [35618] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3035), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3033), 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, + [35670] = 7, + ACTIONS(2634), 1, anon_sym_LBRACE, - ACTIONS(2626), 1, + ACTIONS(2636), 1, anon_sym_COLON_COLON, - ACTIONS(3087), 1, + ACTIONS(3093), 1, anon_sym_BANG, - STATE(1111), 1, + STATE(1117), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(572), 15, + ACTIONS(562), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101051,7 +101505,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(570), 24, + ACTIONS(564), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -101076,20 +101530,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35604] = 7, - ACTIONS(3043), 1, + [35730] = 7, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3057), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3091), 13, + ACTIONS(3097), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101103,7 +101557,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3089), 25, + ACTIONS(3095), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101129,59 +101583,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35664] = 17, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(3043), 1, + [35790] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3057), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(3059), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 19, + ACTIONS(3099), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101192,35 +101649,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35744] = 8, - ACTIONS(3043), 1, + [35876] = 17, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3057), 1, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3063), 1, anon_sym_DOT_DOT, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, anon_sym_DOT, + ACTIONS(3103), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3049), 10, + ACTIONS(3051), 2, anon_sym_PLUS, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3061), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3041), 25, + ACTIONS(3053), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3073), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3101), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101230,12 +101702,6 @@ static 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, @@ -101246,62 +101712,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35806] = 20, - ACTIONS(3043), 1, + [35956] = 9, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3057), 1, - anon_sym_DOT_DOT, - ACTIONS(3059), 1, - anon_sym_AMP_AMP, - ACTIONS(3061), 1, - anon_sym_PIPE, ACTIONS(3063), 1, - anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, + anon_sym_DOT_DOT, ACTIONS(3077), 1, - anon_sym_QMARK, - ACTIONS(3079), 1, - anon_sym_as, - ACTIONS(3081), 1, - anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3093), 7, + ACTIONS(3107), 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(3105), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3085), 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101312,69 +101767,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35892] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2836), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2834), 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, - [35944] = 7, - ACTIONS(3043), 1, + [36020] = 7, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3057), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3049), 13, + ACTIONS(3111), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101388,7 +101794,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3041), 25, + ACTIONS(3109), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101414,50 +101820,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36004] = 17, - ACTIONS(3043), 1, + [36080] = 7, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3057), 1, - anon_sym_DOT_DOT, - ACTIONS(3059), 1, - anon_sym_AMP_AMP, - ACTIONS(3061), 1, - anon_sym_PIPE, ACTIONS(3063), 1, - anon_sym_CARET, - ACTIONS(3069), 1, + anon_sym_DOT_DOT, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3097), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3061), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3115), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3051), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3047), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3095), 19, + ACTIONS(3113), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101467,6 +101857,12 @@ static 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, @@ -101477,50 +101873,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36084] = 17, - ACTIONS(3043), 1, + [36140] = 17, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3057), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(3059), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3101), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3099), 19, + ACTIONS(282), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101540,34 +101936,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36164] = 7, - ACTIONS(3043), 1, + [36220] = 11, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3057), 1, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3055), 2, + ACTIONS(3051), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3105), 13, - anon_sym_PLUS, + ACTIONS(3075), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3053), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3107), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3103), 25, + ACTIONS(3105), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101593,50 +101993,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36224] = 17, - ACTIONS(3043), 1, + [36288] = 8, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3057), 1, - anon_sym_DOT_DOT, - ACTIONS(3059), 1, - anon_sym_AMP_AMP, - ACTIONS(3061), 1, - anon_sym_PIPE, ACTIONS(3063), 1, - anon_sym_CARET, - ACTIONS(3069), 1, + anon_sym_DOT_DOT, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3109), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3051), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3107), 19, + ACTIONS(3107), 10, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3105), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101646,6 +102031,12 @@ static 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, @@ -101656,40 +102047,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36304] = 13, - ACTIONS(3043), 1, + [36350] = 7, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3057), 1, - anon_sym_DOT_DOT, - ACTIONS(3061), 1, - anon_sym_PIPE, ACTIONS(3063), 1, - anon_sym_CARET, - ACTIONS(3069), 1, + anon_sym_DOT_DOT, + ACTIONS(3077), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3055), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3047), 3, + ACTIONS(3107), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3049), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3041), 25, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3105), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101715,99 +102100,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36376] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2922), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2920), 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, - [36428] = 17, - ACTIONS(3043), 1, + [36410] = 17, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3057), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(3059), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3113), 1, + ACTIONS(3119), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3111), 19, + ACTIONS(3117), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101827,37 +102163,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36508] = 10, - ACTIONS(3043), 1, + [36490] = 13, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3057), 1, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3063), 1, anon_sym_DOT_DOT, ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3055), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 6, + ACTIONS(3107), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3041), 25, + ACTIONS(3105), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101883,46 +102222,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36574] = 15, - ACTIONS(3043), 1, - anon_sym_LBRACK, + [36562] = 10, ACTIONS(3049), 1, - anon_sym_EQ, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3057), 1, - anon_sym_DOT_DOT, - ACTIONS(3061), 1, - anon_sym_PIPE, + anon_sym_LBRACK, ACTIONS(3063), 1, - anon_sym_CARET, - ACTIONS(3069), 1, + anon_sym_DOT_DOT, + ACTIONS(3077), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3041), 21, + ACTIONS(3107), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3105), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101934,6 +102264,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101944,50 +102278,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36650] = 17, - ACTIONS(3043), 1, + [36628] = 17, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3057), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(3059), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3117), 1, + ACTIONS(3123), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3115), 19, + ACTIONS(3121), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102007,36 +102341,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36730] = 9, - ACTIONS(3043), 1, + [36708] = 12, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3057), 1, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3063), 1, anon_sym_DOT_DOT, - ACTIONS(3069), 1, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3055), 2, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3075), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 8, + ACTIONS(3107), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3041), 25, + ACTIONS(3105), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102062,38 +102399,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36794] = 11, - ACTIONS(3043), 1, + [36778] = 15, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3057), 1, + ACTIONS(3063), 1, anon_sym_DOT_DOT, ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, anon_sym_DOT, + ACTIONS(3107), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3055), 2, + ACTIONS(3057), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3041), 25, + ACTIONS(3073), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3105), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102105,10 +102450,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102119,39 +102460,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36862] = 12, - ACTIONS(3043), 1, + [36854] = 16, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3057), 1, - anon_sym_DOT_DOT, ACTIONS(3063), 1, - anon_sym_CARET, + anon_sym_DOT_DOT, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, anon_sym_DOT, + ACTIONS(3107), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3055), 2, + ACTIONS(3057), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3061), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(3041), 25, + ACTIONS(3073), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3105), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102161,38 +102511,65 @@ static 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, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36932] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2974), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36932] = 20, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(900), 1, anon_sym_COLON_COLON, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2872), 1, + sym_identifier, + ACTIONS(2876), 1, + anon_sym_LPAREN, + ACTIONS(2878), 1, + anon_sym_STAR, + ACTIONS(2884), 1, + anon_sym_for, + ACTIONS(2886), 1, anon_sym_AMP, + ACTIONS(2888), 1, sym_metavariable, - ACTIONS(2976), 32, + STATE(1855), 1, + sym_scoped_type_identifier, + STATE(1859), 1, + sym_where_predicate, + STATE(1923), 1, + sym_generic_type, + STATE(2370), 1, + sym_bracketed_type, + STATE(2371), 1, + sym_generic_type_with_turbofish, + STATE(2550), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2882), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, + STATE(2316), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2880), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102210,37 +102587,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, + [37017] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(700), 1, anon_sym_fn, + ACTIONS(702), 1, anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, + ACTIONS(714), 1, anon_sym_extern, - anon_sym_dyn, - sym_mutable_specifier, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(2888), 1, + sym_metavariable, + ACTIONS(3125), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [36983] = 3, + ACTIONS(3127), 1, + anon_sym_default, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1349), 1, + sym_scoped_type_identifier, + STATE(1380), 1, + sym_generic_type, + STATE(1396), 1, + sym_function_type, + STATE(2370), 1, + sym_bracketed_type, + STATE(2371), 1, + sym_generic_type_with_turbofish, + STATE(2411), 1, + sym_function_modifiers, + STATE(2550), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1204), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(1206), 32, + STATE(1575), 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(2882), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102258,32 +102652,83 @@ static 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, + [37104] = 20, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(900), 1, + anon_sym_COLON_COLON, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2872), 1, sym_identifier, + ACTIONS(2876), 1, + anon_sym_LPAREN, + ACTIONS(2878), 1, + anon_sym_STAR, + ACTIONS(2884), 1, + anon_sym_for, + ACTIONS(2886), 1, + anon_sym_AMP, + ACTIONS(2888), 1, + sym_metavariable, + STATE(1855), 1, + sym_scoped_type_identifier, + STATE(1923), 1, + sym_generic_type, + STATE(1958), 1, + sym_where_predicate, + STATE(2370), 1, + sym_bracketed_type, + STATE(2371), 1, + sym_generic_type_with_turbofish, + STATE(2550), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2882), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - [37034] = 6, - ACTIONS(2592), 1, - anon_sym_BANG, + STATE(2316), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2880), 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, + [37189] = 6, ACTIONS(2594), 1, + anon_sym_BANG, + ACTIONS(2596), 1, anon_sym_COLON_COLON, - ACTIONS(3119), 1, + ACTIONS(3129), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 16, + ACTIONS(2590), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_as, @@ -102300,7 +102745,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2586), 23, + ACTIONS(2588), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -102324,54 +102769,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37091] = 20, + [37246] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(900), 1, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2864), 1, + ACTIONS(3131), 1, sym_identifier, - ACTIONS(2868), 1, - anon_sym_LPAREN, - ACTIONS(2870), 1, - anon_sym_STAR, - ACTIONS(2876), 1, - anon_sym_for, - ACTIONS(2878), 1, - anon_sym_AMP, - ACTIONS(2880), 1, + ACTIONS(3135), 1, + anon_sym_default, + ACTIONS(3137), 1, sym_metavariable, - STATE(1851), 1, + STATE(778), 1, sym_scoped_type_identifier, - STATE(1854), 1, - sym_where_predicate, - STATE(1983), 1, + STATE(854), 1, sym_generic_type, - STATE(2380), 1, + STATE(1107), 1, + sym_function_type, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2376), 1, + sym_function_modifiers, + STATE(2401), 1, + sym_scoped_identifier, + STATE(2479), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2480), 1, sym_generic_type_with_turbofish, - STATE(2539), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2874), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(906), 3, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - STATE(2316), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2872), 17, + ACTIONS(3133), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102389,54 +102834,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37176] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2467), 1, - anon_sym_fn, - ACTIONS(2475), 1, - anon_sym_COLON_COLON, - ACTIONS(3121), 1, - sym_identifier, - ACTIONS(3125), 1, - anon_sym_default, - ACTIONS(3127), 1, - sym_metavariable, - STATE(766), 1, - sym_scoped_type_identifier, - STATE(970), 1, - sym_generic_type, - STATE(1101), 1, - sym_function_type, - STATE(1196), 1, - sym_for_lifetimes, - STATE(2384), 1, - sym_function_modifiers, - STATE(2399), 1, - sym_scoped_identifier, - STATE(2473), 1, - sym_bracketed_type, - STATE(2474), 1, - sym_generic_type_with_turbofish, + anon_sym_union, + [37333] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2483), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3123), 18, + ACTIONS(1288), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(1290), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102454,8 +102868,22 @@ static 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, - [37263] = 21, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [37384] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(700), 1, @@ -102466,32 +102894,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2880), 1, + ACTIONS(2888), 1, sym_metavariable, - ACTIONS(3129), 1, - sym_identifier, - ACTIONS(3131), 1, + ACTIONS(3127), 1, anon_sym_default, - STATE(1200), 1, + ACTIONS(3139), 1, + sym_identifier, + STATE(1201), 1, sym_for_lifetimes, - STATE(1347), 1, + STATE(1348), 1, sym_scoped_type_identifier, - STATE(1372), 1, + STATE(1381), 1, sym_generic_type, - STATE(1416), 1, + STATE(1399), 1, sym_function_type, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2405), 1, + STATE(2411), 1, sym_function_modifiers, - STATE(2539), 1, + STATE(2550), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -102502,7 +102930,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - ACTIONS(2874), 18, + ACTIONS(2882), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102521,54 +102949,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37350] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2467), 1, - anon_sym_fn, - ACTIONS(2475), 1, - anon_sym_COLON_COLON, - ACTIONS(3125), 1, - anon_sym_default, - ACTIONS(3127), 1, - sym_metavariable, - ACTIONS(3133), 1, - sym_identifier, - STATE(763), 1, - sym_scoped_type_identifier, - STATE(942), 1, - sym_generic_type, - STATE(1110), 1, - sym_function_type, - STATE(1196), 1, - sym_for_lifetimes, - STATE(2384), 1, - sym_function_modifiers, - STATE(2399), 1, - sym_scoped_identifier, - STATE(2473), 1, - sym_bracketed_type, - STATE(2474), 1, - sym_generic_type_with_turbofish, + [37471] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2483), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3123), 18, + ACTIONS(2972), 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(2974), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102586,55 +102982,64 @@ static 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, - [37437] = 20, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_mutable_specifier, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [37522] = 17, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(900), 1, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(997), 1, anon_sym_COLON_COLON, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2864), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(2868), 1, - anon_sym_LPAREN, - ACTIONS(2870), 1, - anon_sym_STAR, - ACTIONS(2876), 1, - anon_sym_for, - ACTIONS(2878), 1, - anon_sym_AMP, - ACTIONS(2880), 1, + ACTIONS(3143), 1, + anon_sym_RPAREN, + ACTIONS(3147), 1, + anon_sym_COMMA, + ACTIONS(3151), 1, sym_metavariable, - STATE(1851), 1, - sym_scoped_type_identifier, - STATE(1983), 1, - sym_generic_type, - STATE(2066), 1, - sym_where_predicate, - STATE(2380), 1, - sym_bracketed_type, - STATE(2381), 1, - sym_generic_type_with_turbofish, - STATE(2539), 1, + STATE(1597), 1, sym_scoped_identifier, + STATE(2357), 1, + sym_generic_type_with_turbofish, + STATE(2476), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2874), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(906), 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1074), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1913), 2, + sym_meta_item, + sym__literal, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - STATE(2316), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2872), 17, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102652,54 +103057,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37522] = 21, + anon_sym_default, + anon_sym_union, + [37601] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(700), 1, - anon_sym_fn, ACTIONS(702), 1, anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(900), 1, + ACTIONS(2488), 1, + anon_sym_fn, + ACTIONS(2496), 1, anon_sym_COLON_COLON, - ACTIONS(2880), 1, - sym_metavariable, - ACTIONS(3131), 1, - anon_sym_default, ACTIONS(3135), 1, + anon_sym_default, + ACTIONS(3137), 1, + sym_metavariable, + ACTIONS(3153), 1, sym_identifier, - STATE(1200), 1, - sym_for_lifetimes, - STATE(1348), 1, + STATE(765), 1, sym_scoped_type_identifier, - STATE(1378), 1, + STATE(839), 1, sym_generic_type, - STATE(1398), 1, + STATE(1118), 1, sym_function_type, - STATE(2380), 1, - sym_bracketed_type, - STATE(2381), 1, - sym_generic_type_with_turbofish, - STATE(2405), 1, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2376), 1, sym_function_modifiers, - STATE(2539), 1, + STATE(2401), 1, sym_scoped_identifier, + STATE(2479), 1, + sym_bracketed_type, + STATE(2480), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2504), 3, sym_self, sym_super, sym_crate, - ACTIONS(2874), 18, + ACTIONS(3133), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102718,26 +103125,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37609] = 17, + [37688] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, - ACTIONS(966), 1, + ACTIONS(997), 1, anon_sym_COLON_COLON, - ACTIONS(3137), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3139), 1, - anon_sym_RPAREN, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3147), 1, + ACTIONS(3151), 1, sym_metavariable, - STATE(1590), 1, + ACTIONS(3155), 1, + anon_sym_RPAREN, + STATE(1597), 1, sym_scoped_identifier, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2470), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -102745,13 +103150,13 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1075), 2, + STATE(1074), 2, sym_string_literal, sym_boolean_literal, - STATE(2128), 2, + STATE(2213), 2, sym_meta_item, sym__literal, - ACTIONS(3145), 3, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, @@ -102760,7 +103165,7 @@ static uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3141), 19, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102780,75 +103185,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37688] = 5, - ACTIONS(2662), 1, - anon_sym_COLON_COLON, - ACTIONS(3087), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(572), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(570), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37742] = 16, + [37764] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(732), 1, anon_sym_DASH, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(966), 1, + ACTIONS(997), 1, anon_sym_COLON_COLON, - ACTIONS(3149), 1, + ACTIONS(3157), 1, sym_identifier, - ACTIONS(3155), 1, + ACTIONS(3163), 1, sym_metavariable, STATE(1442), 1, sym_scoped_identifier, - STATE(1459), 1, + STATE(1451), 1, sym__literal_pattern, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2375), 1, + STATE(2362), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -102856,11 +103212,11 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(738), 2, anon_sym_true, anon_sym_false, - ACTIONS(3153), 3, + ACTIONS(3161), 3, sym_self, sym_super, sym_crate, - STATE(1406), 3, + STATE(1421), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, @@ -102869,7 +103225,7 @@ static uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3151), 19, + ACTIONS(3159), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102889,17 +103245,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37818] = 6, - ACTIONS(2564), 1, + [37840] = 6, + ACTIONS(2570), 1, anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3165), 1, anon_sym_COLON_COLON, - STATE(1111), 1, + STATE(1117), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(572), 15, + ACTIONS(562), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102915,7 +103271,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(570), 23, + ACTIONS(564), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -102939,107 +103295,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37874] = 16, + [37896] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(732), 1, anon_sym_DASH, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(966), 1, + ACTIONS(997), 1, anon_sym_COLON_COLON, - ACTIONS(3159), 1, + ACTIONS(3167), 1, sym_identifier, - ACTIONS(3165), 1, + ACTIONS(3173), 1, sym_metavariable, - STATE(1426), 1, + STATE(1445), 1, sym_scoped_identifier, - STATE(1486), 1, + STATE(1462), 1, sym__literal_pattern, - STATE(2372), 1, - sym_generic_type_with_turbofish, - STATE(2375), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(738), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3163), 3, - sym_self, - sym_super, - sym_crate, - STATE(1406), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(734), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3161), 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, - [37950] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(966), 1, - anon_sym_COLON_COLON, - ACTIONS(3137), 1, - sym_identifier, - ACTIONS(3147), 1, - sym_metavariable, - ACTIONS(3167), 1, - anon_sym_RPAREN, - STATE(1590), 1, - sym_scoped_identifier, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2470), 1, + STATE(2362), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, + ACTIONS(738), 2, anon_sym_true, anon_sym_false, - STATE(1075), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2158), 2, - sym_meta_item, - sym__literal, - ACTIONS(3145), 3, + ACTIONS(3171), 3, sym_self, sym_super, sym_crate, - ACTIONS(91), 4, + STATE(1421), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(734), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3141), 19, + ACTIONS(3169), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103059,24 +103355,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, + [37972] = 5, + ACTIONS(2762), 1, + anon_sym_COLON_COLON, + ACTIONS(3093), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(562), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(564), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, [38026] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, - ACTIONS(966), 1, + ACTIONS(997), 1, anon_sym_COLON_COLON, - ACTIONS(3137), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3151), 1, sym_metavariable, - ACTIONS(3169), 1, + ACTIONS(3175), 1, anon_sym_RPAREN, - STATE(1590), 1, + STATE(1597), 1, sym_scoped_identifier, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2470), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -103084,13 +103429,13 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1075), 2, + STATE(1074), 2, sym_string_literal, sym_boolean_literal, - STATE(2158), 2, + STATE(2213), 2, sym_meta_item, sym__literal, - ACTIONS(3145), 3, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, @@ -103099,7 +103444,7 @@ static uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3141), 19, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103123,7 +103468,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 16, + ACTIONS(2602), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -103140,7 +103485,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2614), 24, + ACTIONS(2604), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -103165,58 +103510,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38151] = 4, - ACTIONS(3175), 1, - anon_sym_COLON_COLON, + [38151] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3173), 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(3171), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38202] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2632), 16, + ACTIONS(2622), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -103233,7 +103531,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2634), 24, + ACTIONS(2624), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -103258,14 +103556,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38251] = 3, + [38200] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(997), 1, + anon_sym_COLON_COLON, + ACTIONS(3141), 1, + sym_identifier, + ACTIONS(3151), 1, + sym_metavariable, + STATE(1597), 1, + sym_scoped_identifier, + STATE(2357), 1, + sym_generic_type_with_turbofish, + STATE(2476), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1074), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2213), 2, + sym_meta_item, + sym__literal, + ACTIONS(3149), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3145), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + [38273] = 5, + ACTIONS(2570), 1, + anon_sym_BANG, + ACTIONS(3177), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 16, + ACTIONS(562), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103279,13 +103638,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2622), 24, + ACTIONS(564), 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, @@ -103304,11 +103662,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38300] = 3, + [38326] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 9, + ACTIONS(3181), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -103318,7 +103676,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2994), 31, + ACTIONS(3179), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103350,12 +103708,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38349] = 3, + [38375] = 4, + ACTIONS(3185), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3179), 9, - anon_sym_LPAREN, + ACTIONS(3187), 8, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -103364,7 +103723,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3177), 31, + ACTIONS(3183), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103396,69 +103755,59 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38398] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(966), 1, + [38426] = 5, + ACTIONS(2658), 1, + anon_sym_BANG, + ACTIONS(3189), 1, anon_sym_COLON_COLON, - ACTIONS(3137), 1, - sym_identifier, - ACTIONS(3147), 1, - sym_metavariable, - STATE(1590), 1, - sym_scoped_identifier, - STATE(2372), 1, - sym_generic_type_with_turbofish, - STATE(2470), 1, - sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1075), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2158), 2, - sym_meta_item, - sym__literal, - ACTIONS(3145), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3141), 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, - [38471] = 3, + ACTIONS(2590), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2588), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38479] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2918), 9, + ACTIONS(3193), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -103468,7 +103817,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2916), 31, + ACTIONS(3191), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103500,21 +103849,22 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38520] = 3, + [38528] = 4, + ACTIONS(3195), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3183), 9, + ACTIONS(3187), 8, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, anon_sym_LT, - anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3181), 31, + ACTIONS(3183), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103546,109 +103896,154 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38569] = 4, - ACTIONS(3185), 1, - anon_sym_LPAREN, + [38579] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3173), 8, - anon_sym_LBRACK, + ACTIONS(2614), 16, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2616), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38628] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2630), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(3171), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38620] = 23, - ACTIONS(368), 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(2632), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38677] = 23, + ACTIONS(374), 1, anon_sym_RBRACK, - ACTIONS(3043), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3187), 1, + ACTIONS(3197), 1, anon_sym_SEMI, - ACTIONS(3189), 1, + ACTIONS(3199), 1, anon_sym_COMMA, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - STATE(2108), 1, + STATE(2064), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103659,62 +104054,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38709] = 23, - ACTIONS(520), 1, - anon_sym_RBRACK, - ACTIONS(3043), 1, + [38766] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2858), 9, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3053), 1, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, + sym_metavariable, + ACTIONS(2856), 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, + [38815] = 23, + ACTIONS(554), 1, + anon_sym_RBRACK, + ACTIONS(3049), 1, + anon_sym_LBRACK, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3195), 1, + ACTIONS(3205), 1, anon_sym_SEMI, - ACTIONS(3197), 1, + ACTIONS(3207), 1, anon_sym_COMMA, - STATE(1920), 1, + STATE(2014), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103725,11 +104166,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38798] = 3, + [38904] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3201), 9, + ACTIONS(2834), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -103739,7 +104180,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3199), 31, + ACTIONS(2832), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103771,44 +104212,106 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38847] = 5, - ACTIONS(2660), 1, + [38953] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3211), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, anon_sym_BANG, - ACTIONS(3203), 1, + anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3209), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [39002] = 22, + ACTIONS(386), 1, + anon_sym_RPAREN, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_EQ, + ACTIONS(3203), 1, + anon_sym_DOT_DOT, + ACTIONS(3213), 1, + anon_sym_COMMA, + STATE(1943), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 15, + ACTIONS(3051), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2586), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3053), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103819,15 +104322,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38900] = 5, - ACTIONS(2564), 1, - anon_sym_BANG, - ACTIONS(3205), 1, + [39088] = 18, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(900), 1, anon_sym_COLON_COLON, + ACTIONS(2888), 1, + sym_metavariable, + ACTIONS(3127), 1, + anon_sym_default, + ACTIONS(3215), 1, + sym_identifier, + ACTIONS(3217), 1, + anon_sym_fn, + STATE(1835), 1, + sym_scoped_type_identifier, + STATE(2370), 1, + sym_bracketed_type, + STATE(2371), 1, + sym_generic_type_with_turbofish, + STATE(2425), 1, + sym_generic_type, + STATE(2542), 1, + sym_function_modifiers, + STATE(2550), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(572), 15, + STATE(1575), 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(2882), 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, + [39166] = 4, + ACTIONS(2726), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2688), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103843,7 +104404,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(570), 23, + ACTIONS(2684), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -103867,14 +104428,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38953] = 3, + [39216] = 4, + ACTIONS(3189), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 16, + ACTIONS(2590), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -103888,13 +104450,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2606), 24, + ACTIONS(2588), 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, @@ -103913,120 +104474,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39002] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(900), 1, - anon_sym_COLON_COLON, - ACTIONS(2880), 1, - sym_metavariable, - ACTIONS(3131), 1, - anon_sym_default, - ACTIONS(3207), 1, - sym_identifier, - ACTIONS(3209), 1, - anon_sym_fn, - STATE(1845), 1, - sym_scoped_type_identifier, - STATE(2380), 1, - sym_bracketed_type, - STATE(2381), 1, - sym_generic_type_with_turbofish, - STATE(2401), 1, - sym_function_modifiers, - STATE(2419), 1, - sym_generic_type, - STATE(2539), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1557), 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(2874), 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, - [39080] = 22, - ACTIONS(384), 1, - anon_sym_RPAREN, - ACTIONS(3043), 1, + [39266] = 22, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3211), 1, + ACTIONS(3219), 1, + anon_sym_RPAREN, + ACTIONS(3221), 1, anon_sym_COMMA, - STATE(2107), 1, + STATE(2052), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104037,13 +104538,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39166] = 4, - ACTIONS(2670), 1, + [39352] = 4, + ACTIONS(2686), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 15, + ACTIONS(2688), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104059,7 +104560,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2668), 23, + ACTIONS(2684), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104083,13 +104584,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39216] = 4, - ACTIONS(2698), 1, + [39402] = 4, + ACTIONS(3223), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 15, + ACTIONS(562), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104105,7 +104606,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2668), 23, + ACTIONS(564), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104129,37 +104630,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39266] = 18, + [39452] = 18, ACTIONS(77), 1, anon_sym_LT, ACTIONS(714), 1, anon_sym_extern, ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2880), 1, + ACTIONS(2888), 1, sym_metavariable, - ACTIONS(3131), 1, + ACTIONS(3127), 1, anon_sym_default, - ACTIONS(3213), 1, + ACTIONS(3225), 1, sym_identifier, - ACTIONS(3215), 1, + ACTIONS(3227), 1, anon_sym_fn, - STATE(1831), 1, + STATE(1797), 1, sym_scoped_type_identifier, - STATE(2380), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2381), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2419), 1, - sym_generic_type, - STATE(2505), 1, + STATE(2403), 1, sym_function_modifiers, - STATE(2539), 1, + STATE(2425), 1, + sym_generic_type, + STATE(2550), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(694), 3, @@ -104170,7 +104671,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - ACTIONS(2874), 18, + ACTIONS(2882), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104189,60 +104690,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [39344] = 22, - ACTIONS(3043), 1, + [39530] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3059), 1, - anon_sym_AMP_AMP, - ACTIONS(3061), 1, - anon_sym_PIPE, - ACTIONS(3063), 1, - anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3217), 1, - anon_sym_RPAREN, - ACTIONS(3219), 1, - anon_sym_COMMA, - STATE(1918), 1, - aux_sym_arguments_repeat1, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(1088), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104253,88 +104752,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39430] = 4, - ACTIONS(3203), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2588), 15, - anon_sym_PLUS, - anon_sym_STAR, + [39613] = 21, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3233), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3237), 1, anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - anon_sym_DASH, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, anon_sym_PIPE, + ACTIONS(3249), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2586), 23, - anon_sym_LPAREN, + ACTIONS(3257), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39480] = 4, - ACTIONS(3221), 1, - anon_sym_COLON_COLON, + STATE(239), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(572), 15, + ACTIONS(3229), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3239), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3231), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(570), 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(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104345,58 +104814,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39530] = 21, - ACTIONS(107), 1, - anon_sym_RBRACE, - ACTIONS(3043), 1, + [39696] = 21, + ACTIONS(586), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3059), 1, - anon_sym_AMP_AMP, - ACTIONS(3061), 1, - anon_sym_PIPE, - ACTIONS(3063), 1, - anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3223), 1, - anon_sym_SEMI, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(244), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104407,58 +104876,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39613] = 21, - ACTIONS(3043), 1, + [39779] = 7, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3059), 1, - anon_sym_AMP_AMP, - ACTIONS(3061), 1, - anon_sym_PIPE, - ACTIONS(3063), 1, - anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, - anon_sym_QMARK, - ACTIONS(3079), 1, - anon_sym_as, - ACTIONS(3081), 1, - anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + anon_sym_DOT, + ACTIONS(3261), 1, anon_sym_DOT_DOT, - ACTIONS(3223), 1, - anon_sym_SEMI, - ACTIONS(3225), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3259), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3107), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3051), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3105), 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(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104469,58 +104924,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39696] = 21, - ACTIONS(3043), 1, + [39834] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3227), 1, - anon_sym_RBRACE, - ACTIONS(3229), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3263), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104531,58 +104985,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39779] = 21, - ACTIONS(15), 1, + [39915] = 21, + ACTIONS(586), 1, anon_sym_LBRACE, - ACTIONS(3043), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - STATE(99), 1, + STATE(216), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104593,119 +105047,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39862] = 20, - ACTIONS(3043), 1, + [39998] = 21, + ACTIONS(586), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3059), 1, - anon_sym_AMP_AMP, - ACTIONS(3061), 1, - anon_sym_PIPE, - ACTIONS(3063), 1, - anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, - anon_sym_QMARK, - ACTIONS(3079), 1, - anon_sym_as, - ACTIONS(3081), 1, - anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3045), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3051), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3191), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3047), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3065), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3085), 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, - [39943] = 21, - ACTIONS(3043), 1, - anon_sym_LBRACK, - ACTIONS(3069), 1, anon_sym_DOT, - ACTIONS(3077), 1, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3261), 1, - anon_sym_LBRACE, - STATE(164), 1, - sym_match_block, + STATE(231), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104716,57 +105109,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40026] = 20, - ACTIONS(3043), 1, + [40081] = 21, + ACTIONS(264), 1, + anon_sym_RBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, + ACTIONS(3265), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3263), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104777,58 +105171,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40107] = 21, - ACTIONS(502), 1, - anon_sym_RPAREN, - ACTIONS(3043), 1, + [40164] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, + ACTIONS(3267), 1, + anon_sym_RBRACE, + ACTIONS(3269), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104839,54 +105233,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40190] = 17, - ACTIONS(3043), 1, + [40247] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3097), 1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3245), 1, + ACTIONS(3241), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3269), 1, - anon_sym_DOT_DOT, + STATE(167), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3267), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3233), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3095), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104897,25 +105295,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40265] = 8, - ACTIONS(3043), 1, + [40330] = 7, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3269), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3267), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3233), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3049), 10, + ACTIONS(3097), 13, anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104925,7 +105320,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3041), 20, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3095), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -104946,7 +105343,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40322] = 15, + [40385] = 15, ACTIONS(77), 1, anon_sym_LT, ACTIONS(3271), 1, @@ -104963,11 +105360,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3287), 1, sym_metavariable, - STATE(1727), 1, + STATE(1773), 1, sym_scoped_identifier, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2470), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -104976,7 +105373,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1981), 5, + STATE(1985), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -105002,58 +105399,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [40393] = 21, - ACTIONS(396), 1, - anon_sym_RPAREN, - ACTIONS(3043), 1, + [40456] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3289), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105064,58 +105460,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40476] = 21, - ACTIONS(3043), 1, + [40537] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3059), 1, - anon_sym_AMP_AMP, - ACTIONS(3061), 1, - anon_sym_PIPE, - ACTIONS(3063), 1, - anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, - anon_sym_RBRACE, - ACTIONS(3291), 1, - anon_sym_COMMA, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(1049), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105126,58 +105522,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40559] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3043), 1, + [40620] = 21, + ACTIONS(272), 1, + anon_sym_RBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, ACTIONS(3069), 1, - anon_sym_DOT, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, - anon_sym_AMP_AMP, - ACTIONS(3247), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, - anon_sym_PIPE, - ACTIONS(3251), 1, - anon_sym_CARET, - STATE(179), 1, - sym_block, + ACTIONS(3265), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3201), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105188,44 +105584,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40642] = 7, - ACTIONS(3043), 1, + [40703] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3269), 1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(46), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3267), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3091), 13, + ACTIONS(3229), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3239), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3231), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3089), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105236,50 +105646,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40697] = 17, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(3043), 1, + [40786] = 17, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3103), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3245), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3269), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3255), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3267), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 14, + ACTIONS(3101), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -105294,58 +105704,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40772] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3043), 1, + [40861] = 7, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, - anon_sym_QMARK, - ACTIONS(3079), 1, - anon_sym_as, - ACTIONS(3235), 1, - anon_sym_EQ, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3243), 1, + anon_sym_DOT, + ACTIONS(3261), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, - anon_sym_AMP_AMP, - ACTIONS(3247), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, - anon_sym_PIPE, - ACTIONS(3251), 1, - anon_sym_CARET, - STATE(780), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3259), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3115), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3237), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3113), 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(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105356,58 +105752,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40855] = 21, - ACTIONS(3043), 1, + [40916] = 21, + ACTIONS(392), 1, + anon_sym_RPAREN, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3223), 1, - anon_sym_SEMI, - ACTIONS(3293), 1, - anon_sym_RBRACE, + ACTIONS(3291), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105418,58 +105814,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40938] = 21, - ACTIONS(268), 1, - anon_sym_RBRACE, - ACTIONS(3043), 1, + [40999] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3059), 1, - anon_sym_AMP_AMP, - ACTIONS(3061), 1, - anon_sym_PIPE, - ACTIONS(3063), 1, - anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3223), 1, - anon_sym_SEMI, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(1072), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105480,58 +105876,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41021] = 21, - ACTIONS(3043), 1, + [41082] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3295), 1, - anon_sym_LBRACE, - STATE(1087), 1, - sym_match_block, + STATE(99), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105542,50 +105938,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41104] = 17, - ACTIONS(3043), 1, + [41165] = 17, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, - ACTIONS(3117), 1, + ACTIONS(3055), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3245), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3269), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3255), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3267), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3115), 14, + ACTIONS(3047), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -105600,54 +105996,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41179] = 17, - ACTIONS(3043), 1, + [41240] = 21, + ACTIONS(586), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3109), 1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3245), 1, + ACTIONS(3241), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3269), 1, - anon_sym_DOT_DOT, + STATE(224), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3267), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3233), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3107), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105658,58 +106058,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41254] = 21, - ACTIONS(3043), 1, + [41323] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3223), 1, - anon_sym_SEMI, - ACTIONS(3297), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3293), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105720,58 +106119,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41337] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3043), 1, + [41404] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - STATE(1059), 1, - sym_block, + ACTIONS(3295), 1, + anon_sym_LBRACE, + STATE(1092), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105782,44 +106181,119 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41420] = 7, - ACTIONS(3043), 1, + [41487] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3269), 1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3261), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3267), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3105), 13, + ACTIONS(3083), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3229), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3259), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3231), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3103), 20, - anon_sym_LPAREN, + ACTIONS(3251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3255), 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, + [41568] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, + ACTIONS(3049), 1, + anon_sym_LBRACK, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, + ACTIONS(3087), 1, anon_sym_as, + ACTIONS(3233), 1, + anon_sym_EQ, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, anon_sym_AMP_AMP, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(1051), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3239), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105830,58 +106304,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41475] = 21, - ACTIONS(109), 1, - anon_sym_RBRACE, - ACTIONS(3043), 1, + [41651] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3223), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3297), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105892,57 +106365,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41558] = 20, - ACTIONS(3043), 1, + [41732] = 16, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3059), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, - ACTIONS(3077), 1, - anon_sym_QMARK, - ACTIONS(3079), 1, - anon_sym_as, - ACTIONS(3081), 1, - anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3299), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3047), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3105), 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, @@ -105953,54 +106422,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41639] = 17, - ACTIONS(3043), 1, + [41805] = 21, + ACTIONS(107), 1, + anon_sym_RBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, - ACTIONS(3101), 1, - anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3245), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3269), 1, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_EQ, + ACTIONS(3203), 1, anon_sym_DOT_DOT, + ACTIONS(3265), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3255), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3267), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3233), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3099), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106011,27 +106484,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41714] = 9, - ACTIONS(3043), 1, + [41888] = 9, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3269), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3267), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 8, + ACTIONS(3107), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106040,7 +106513,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3041), 20, + ACTIONS(3105), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -106061,58 +106534,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41773] = 21, - ACTIONS(284), 1, + [41947] = 21, + ACTIONS(586), 1, anon_sym_LBRACE, - ACTIONS(3043), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - STATE(1083), 1, + STATE(232), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106123,57 +106596,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41856] = 20, - ACTIONS(3043), 1, + [42030] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3059), 1, - anon_sym_AMP_AMP, - ACTIONS(3061), 1, - anon_sym_PIPE, - ACTIONS(3063), 1, - anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(782), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3301), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3047), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106184,44 +106658,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41937] = 7, - ACTIONS(3043), 1, + [42113] = 17, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3269), 1, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3261), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3267), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3073), 13, + ACTIONS(3229), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3259), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3231), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3071), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3251), 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, @@ -106232,44 +106716,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41992] = 7, - ACTIONS(3043), 1, + [42188] = 15, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3269), 1, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3261), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3267), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3049), 13, + ACTIONS(3229), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3259), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3231), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3041), 20, + ACTIONS(3251), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3105), 16, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106280,57 +106772,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42047] = 20, - ACTIONS(3043), 1, + [42259] = 10, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3059), 1, - anon_sym_AMP_AMP, - ACTIONS(3061), 1, - anon_sym_PIPE, - ACTIONS(3063), 1, - anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, - anon_sym_QMARK, - ACTIONS(3079), 1, - anon_sym_as, - ACTIONS(3081), 1, - anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + anon_sym_DOT, + ACTIONS(3261), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3303), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3047), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3107), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3105), 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(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106341,58 +106823,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42128] = 21, - ACTIONS(3043), 1, + [42320] = 7, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3059), 1, - anon_sym_AMP_AMP, - ACTIONS(3061), 1, - anon_sym_PIPE, - ACTIONS(3063), 1, - anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, - anon_sym_QMARK, - ACTIONS(3079), 1, - anon_sym_as, - ACTIONS(3081), 1, - anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + anon_sym_DOT, + ACTIONS(3261), 1, anon_sym_DOT_DOT, - ACTIONS(3223), 1, - anon_sym_SEMI, - ACTIONS(3305), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3259), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3111), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3051), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3109), 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(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106403,57 +106871,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42211] = 20, - ACTIONS(3043), 1, + [42375] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3245), 1, + ACTIONS(3241), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3269), 1, - anon_sym_DOT_DOT, + STATE(1085), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3075), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3267), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3233), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106464,58 +106933,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42292] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3043), 1, + [42458] = 13, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, - anon_sym_QMARK, - ACTIONS(3079), 1, - anon_sym_as, - ACTIONS(3235), 1, - anon_sym_EQ, - ACTIONS(3239), 1, + anon_sym_DOT, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3243), 1, - anon_sym_DOT_DOT, - ACTIONS(3245), 1, - anon_sym_AMP_AMP, ACTIONS(3247), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - STATE(1133), 1, - sym_block, + ACTIONS(3261), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3259), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3107), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3105), 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(3257), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106526,58 +106987,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42375] = 21, - ACTIONS(276), 1, + [42525] = 21, + ACTIONS(270), 1, anon_sym_RBRACE, - ACTIONS(3043), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3223), 1, + ACTIONS(3265), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106588,58 +107049,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42458] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3043), 1, + [42608] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, ACTIONS(3069), 1, - anon_sym_DOT, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, - anon_sym_AMP_AMP, - ACTIONS(3247), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, - anon_sym_PIPE, - ACTIONS(3251), 1, - anon_sym_CARET, - STATE(1067), 1, - sym_block, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3299), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3201), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106650,110 +107111,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42541] = 21, - ACTIONS(582), 1, + [42691] = 21, + ACTIONS(586), 1, anon_sym_LBRACE, - ACTIONS(3043), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - STATE(244), 1, + STATE(215), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3233), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3253), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3257), 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, - [42624] = 11, - ACTIONS(3043), 1, - anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3269), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3231), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3255), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3267), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3041), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106764,58 +107173,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42687] = 21, - ACTIONS(582), 1, + [42774] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3043), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - STATE(242), 1, + STATE(113), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106826,58 +107235,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42770] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3043), 1, + [42857] = 17, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, - anon_sym_QMARK, - ACTIONS(3079), 1, - anon_sym_as, - ACTIONS(3235), 1, + anon_sym_DOT, + ACTIONS(3123), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, ACTIONS(3243), 1, - anon_sym_DOT_DOT, - ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - STATE(174), 1, - sym_block, + ACTIONS(3261), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3259), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3121), 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, @@ -106888,58 +107293,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42853] = 21, + [42932] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3043), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - STATE(776), 1, + STATE(779), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106950,49 +107355,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42936] = 12, - ACTIONS(3043), 1, + [43015] = 17, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3119), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3251), 1, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3269), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3255), 2, + ACTIONS(3235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3267), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(3041), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3117), 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, @@ -107003,58 +107413,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43001] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3043), 1, + [43090] = 21, + ACTIONS(276), 1, + anon_sym_RBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, ACTIONS(3069), 1, - anon_sym_DOT, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, - anon_sym_AMP_AMP, - ACTIONS(3247), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, - anon_sym_PIPE, - ACTIONS(3251), 1, - anon_sym_CARET, - STATE(44), 1, - sym_block, + ACTIONS(3265), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3201), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107065,58 +107475,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43084] = 21, - ACTIONS(3043), 1, + [43173] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3307), 1, - anon_sym_RPAREN, - ACTIONS(3309), 1, - anon_sym_COMMA, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3301), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107127,58 +107537,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43167] = 21, - ACTIONS(582), 1, + [43256] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3043), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - STATE(229), 1, + STATE(1124), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107189,57 +107599,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43250] = 20, - ACTIONS(3043), 1, + [43339] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3059), 1, - anon_sym_AMP_AMP, - ACTIONS(3061), 1, - anon_sym_PIPE, - ACTIONS(3063), 1, - anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + ACTIONS(3303), 1, + anon_sym_LBRACE, + STATE(154), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3311), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3047), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107250,58 +107661,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43331] = 21, - ACTIONS(284), 1, + [43422] = 21, + ACTIONS(586), 1, anon_sym_LBRACE, - ACTIONS(3043), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - STATE(1041), 1, + STATE(220), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107312,58 +107723,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43414] = 21, - ACTIONS(111), 1, - anon_sym_RBRACE, - ACTIONS(3043), 1, + [43505] = 12, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3059), 1, - anon_sym_AMP_AMP, - ACTIONS(3061), 1, - anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, - ACTIONS(3077), 1, - anon_sym_QMARK, - ACTIONS(3079), 1, - anon_sym_as, - ACTIONS(3081), 1, - anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, - ACTIONS(3223), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3107), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3105), 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(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107374,58 +107776,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43497] = 21, - ACTIONS(3043), 1, + [43570] = 11, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3059), 1, - anon_sym_AMP_AMP, - ACTIONS(3061), 1, - anon_sym_PIPE, - ACTIONS(3063), 1, - anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, - anon_sym_QMARK, - ACTIONS(3079), 1, - anon_sym_as, - ACTIONS(3081), 1, - anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + anon_sym_DOT, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3261), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, - anon_sym_COMMA, - ACTIONS(3313), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3107), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3105), 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(3085), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107436,53 +107828,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43580] = 16, - ACTIONS(3043), 1, - anon_sym_LBRACK, + [43633] = 8, ACTIONS(3049), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + anon_sym_LBRACK, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3245), 1, - anon_sym_AMP_AMP, - ACTIONS(3249), 1, - anon_sym_PIPE, - ACTIONS(3251), 1, - anon_sym_CARET, - ACTIONS(3269), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3237), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3267), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3041), 15, + ACTIONS(3107), 10, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3105), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107493,58 +107877,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43653] = 21, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(3043), 1, + [43690] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, ACTIONS(3069), 1, - anon_sym_DOT, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, - anon_sym_AMP_AMP, - ACTIONS(3247), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, - anon_sym_PIPE, - ACTIONS(3251), 1, - anon_sym_CARET, - STATE(215), 1, - sym_block, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3305), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3201), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107555,58 +107939,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43736] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3043), 1, + [43773] = 21, + ACTIONS(260), 1, + anon_sym_RBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, ACTIONS(3069), 1, - anon_sym_DOT, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, - anon_sym_AMP_AMP, - ACTIONS(3247), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, - anon_sym_PIPE, - ACTIONS(3251), 1, - anon_sym_CARET, - STATE(86), 1, - sym_block, + ACTIONS(3265), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3201), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107617,58 +108001,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43819] = 21, - ACTIONS(582), 1, + [43856] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3043), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - STATE(222), 1, + STATE(168), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107679,58 +108063,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43902] = 21, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(3043), 1, + [43939] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, ACTIONS(3069), 1, - anon_sym_DOT, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, - anon_sym_AMP_AMP, - ACTIONS(3247), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, - anon_sym_PIPE, - ACTIONS(3251), 1, - anon_sym_CARET, - STATE(225), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3201), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3307), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107741,58 +108124,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43985] = 21, - ACTIONS(3043), 1, + [44020] = 21, + ACTIONS(498), 1, + anon_sym_RPAREN, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3223), 1, - anon_sym_SEMI, - ACTIONS(3315), 1, - anon_sym_RBRACE, + ACTIONS(3291), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107803,52 +108186,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44068] = 15, - ACTIONS(3043), 1, - anon_sym_LBRACK, + [44103] = 21, ACTIONS(3049), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_DOT, - ACTIONS(3239), 1, + anon_sym_LBRACK, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3249), 1, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3269), 1, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_EQ, + ACTIONS(3203), 1, anon_sym_DOT_DOT, + ACTIONS(3309), 1, + anon_sym_RPAREN, + ACTIONS(3311), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3255), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3267), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3233), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3041), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107859,47 +108248,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44139] = 10, - ACTIONS(3043), 1, + [44186] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, ACTIONS(3069), 1, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3269), 1, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_EQ, + ACTIONS(3203), 1, anon_sym_DOT_DOT, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3313), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3255), 2, + ACTIONS(3057), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3267), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3233), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3041), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107910,58 +108310,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44200] = 21, + [44269] = 21, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3043), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - STATE(180), 1, + STATE(130), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107972,57 +108372,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44283] = 20, - ACTIONS(3043), 1, + [44352] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3315), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3317), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108033,57 +108434,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44364] = 20, - ACTIONS(3043), 1, + [44435] = 21, + ACTIONS(586), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3059), 1, - anon_sym_AMP_AMP, - ACTIONS(3061), 1, - anon_sym_PIPE, - ACTIONS(3063), 1, - anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3237), 1, + anon_sym_AMP, + ACTIONS(3241), 1, anon_sym_DOT_DOT, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, + anon_sym_PIPE, + ACTIONS(3249), 1, + anon_sym_CARET, + STATE(238), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3319), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3047), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108094,54 +108496,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44445] = 17, - ACTIONS(3043), 1, + [44518] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, - ACTIONS(3113), 1, - anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3245), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3269), 1, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_EQ, + ACTIONS(3203), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3255), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3267), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3233), 3, + ACTIONS(3317), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3111), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108152,58 +108557,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44520] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3043), 1, + [44599] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, - ACTIONS(3077), 1, - anon_sym_QMARK, - ACTIONS(3079), 1, - anon_sym_as, - ACTIONS(3235), 1, - anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3059), 1, anon_sym_AMP, - ACTIONS(3243), 1, - anon_sym_DOT_DOT, - ACTIONS(3245), 1, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3067), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3071), 1, anon_sym_CARET, - STATE(47), 1, - sym_block, + ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, + anon_sym_QMARK, + ACTIONS(3087), 1, + anon_sym_as, + ACTIONS(3089), 1, + anon_sym_EQ, + ACTIONS(3203), 1, + anon_sym_DOT_DOT, + ACTIONS(3319), 1, + anon_sym_RBRACE, + ACTIONS(3321), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3201), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108214,58 +108619,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44603] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3043), 1, + [44682] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, ACTIONS(3069), 1, - anon_sym_DOT, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, - anon_sym_AMP_AMP, - ACTIONS(3247), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, - anon_sym_PIPE, - ACTIONS(3251), 1, - anon_sym_CARET, - STATE(142), 1, - sym_block, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3323), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3201), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108276,50 +108681,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44686] = 13, - ACTIONS(3043), 1, + [44765] = 17, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, + ACTIONS(3077), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3081), 1, + anon_sym_EQ, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3249), 1, + ACTIONS(3243), 1, + anon_sym_AMP_AMP, + ACTIONS(3245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3269), 1, + ACTIONS(3261), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3255), 2, + ACTIONS(3235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3267), 2, + ACTIONS(3259), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3049), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3041), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3079), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108330,58 +108739,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44753] = 21, - ACTIONS(284), 1, + [44840] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3043), 1, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3241), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - STATE(1138), 1, + STATE(50), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108392,57 +108801,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44836] = 20, - ACTIONS(3043), 1, + [44923] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3321), 2, - anon_sym_RBRACK, + ACTIONS(3325), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108453,57 +108862,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44917] = 20, - ACTIONS(3043), 1, + [45004] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3323), 2, + ACTIONS(3327), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108514,57 +108923,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44998] = 20, - ACTIONS(3043), 1, + [45085] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, - ACTIONS(3245), 1, + ACTIONS(3241), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - ACTIONS(3269), 1, - anon_sym_DOT_DOT, + STATE(150), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3093), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3231), 2, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3267), 2, + ACTIONS(3239), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3233), 3, + ACTIONS(3253), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108575,58 +108985,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45079] = 21, - ACTIONS(272), 1, - anon_sym_RBRACE, - ACTIONS(3043), 1, + [45168] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3223), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3329), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108637,58 +109046,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45162] = 21, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(3043), 1, + [45249] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3233), 1, anon_sym_EQ, - ACTIONS(3239), 1, + ACTIONS(3237), 1, anon_sym_AMP, ACTIONS(3243), 1, - anon_sym_DOT_DOT, - ACTIONS(3245), 1, anon_sym_AMP_AMP, - ACTIONS(3247), 1, + ACTIONS(3245), 1, anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_PIPE, - ACTIONS(3251), 1, + ACTIONS(3249), 1, anon_sym_CARET, - STATE(216), 1, - sym_block, + ACTIONS(3261), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3099), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3229), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3253), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3259), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3231), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3251), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3255), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108699,58 +109107,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45245] = 21, - ACTIONS(3043), 1, + [45330] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, ACTIONS(3069), 1, - anon_sym_DOT, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, - anon_sym_AMP_AMP, - ACTIONS(3247), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, - anon_sym_PIPE, - ACTIONS(3251), 1, - anon_sym_CARET, - ACTIONS(3325), 1, - anon_sym_LBRACE, - STATE(233), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3201), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3331), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108761,58 +109168,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45328] = 21, - ACTIONS(582), 1, - anon_sym_LBRACE, - ACTIONS(3043), 1, + [45411] = 21, + ACTIONS(3049), 1, anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, + anon_sym_AMP_AMP, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, ACTIONS(3069), 1, - anon_sym_DOT, + anon_sym_PIPE, + ACTIONS(3071), 1, + anon_sym_CARET, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3235), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3243), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3245), 1, - anon_sym_AMP_AMP, - ACTIONS(3247), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3249), 1, - anon_sym_PIPE, - ACTIONS(3251), 1, - anon_sym_CARET, - STATE(232), 1, - sym_block, + ACTIONS(3291), 1, + anon_sym_COMMA, + ACTIONS(3333), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3237), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3241), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3233), 3, + ACTIONS(3201), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3253), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3257), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108823,58 +109230,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45411] = 21, - ACTIONS(3043), 1, + [45494] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3223), 1, + ACTIONS(3335), 1, anon_sym_SEMI, - ACTIONS(3327), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108885,56 +109290,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45494] = 20, - ACTIONS(3043), 1, + [45574] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3329), 1, - anon_sym_SEMI, + ACTIONS(3337), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108945,56 +109350,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45574] = 20, - ACTIONS(3043), 1, + [45654] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3331), 1, + ACTIONS(3339), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109005,56 +109410,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45654] = 20, - ACTIONS(3043), 1, + [45734] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3333), 1, + ACTIONS(3341), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109065,56 +109470,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45734] = 20, - ACTIONS(3043), 1, + [45814] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3335), 1, - anon_sym_RBRACK, + ACTIONS(3343), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109125,56 +109530,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45814] = 20, - ACTIONS(3043), 1, + [45894] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3337), 1, - anon_sym_SEMI, + ACTIONS(3345), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109185,56 +109590,110 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45894] = 20, - ACTIONS(3043), 1, + [45974] = 14, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3271), 1, + sym_identifier, + ACTIONS(3273), 1, + anon_sym_LBRACE, + ACTIONS(3277), 1, + anon_sym_STAR, + ACTIONS(3283), 1, + anon_sym_COLON_COLON, + ACTIONS(3287), 1, + sym_metavariable, + ACTIONS(3347), 1, + anon_sym_RBRACE, + STATE(1773), 1, + sym_scoped_identifier, + STATE(2357), 1, + sym_generic_type_with_turbofish, + STATE(2476), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3285), 3, + sym_self, + sym_super, + sym_crate, + STATE(2250), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3279), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [46042] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3339), 1, - anon_sym_SEMI, + ACTIONS(3291), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109245,56 +109704,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45974] = 20, - ACTIONS(3043), 1, + [46122] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3341), 1, - anon_sym_SEMI, + ACTIONS(3349), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109305,56 +109764,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46054] = 20, - ACTIONS(3043), 1, + [46202] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3343), 1, - anon_sym_RBRACK, + ACTIONS(3351), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109365,56 +109824,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46134] = 20, - ACTIONS(3043), 1, + [46282] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3345), 1, + ACTIONS(3353), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109425,56 +109884,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46214] = 20, - ACTIONS(3043), 1, + [46362] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3347), 1, - anon_sym_COMMA, + ACTIONS(3355), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109485,56 +109944,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46294] = 20, - ACTIONS(3043), 1, + [46442] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3349), 1, + ACTIONS(3357), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109545,56 +110004,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46374] = 20, - ACTIONS(3043), 1, + [46522] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, - anon_sym_COMMA, + ACTIONS(3359), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109605,56 +110064,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46454] = 20, - ACTIONS(3043), 1, + [46602] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3351), 1, + ACTIONS(3361), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109665,56 +110124,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46534] = 20, - ACTIONS(3043), 1, + [46682] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3353), 1, + ACTIONS(3265), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109725,56 +110184,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46614] = 20, - ACTIONS(3043), 1, + [46762] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3355), 1, - anon_sym_SEMI, + ACTIONS(3363), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109785,56 +110244,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46694] = 20, - ACTIONS(3043), 1, + [46842] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3357), 1, - anon_sym_SEMI, + ACTIONS(3365), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109845,56 +110304,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46774] = 20, - ACTIONS(3043), 1, + [46922] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3359), 1, - anon_sym_SEMI, + ACTIONS(3367), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109905,56 +110364,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46854] = 20, - ACTIONS(3043), 1, + [47002] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3361), 1, - anon_sym_EQ_GT, + ACTIONS(3369), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109965,56 +110424,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46934] = 20, - ACTIONS(3043), 1, + [47082] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3363), 1, + ACTIONS(3371), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110025,56 +110484,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47014] = 20, - ACTIONS(3043), 1, + [47162] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3223), 1, + ACTIONS(3373), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110085,56 +110544,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47094] = 20, - ACTIONS(3043), 1, + [47242] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3365), 1, + ACTIONS(3375), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110145,56 +110604,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47174] = 20, - ACTIONS(3043), 1, + [47322] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3367), 1, - anon_sym_RBRACK, + ACTIONS(3377), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110205,56 +110664,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47254] = 20, - ACTIONS(3043), 1, + [47402] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3369), 1, + ACTIONS(3379), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110265,56 +110724,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47334] = 20, - ACTIONS(3043), 1, + [47482] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3371), 1, + ACTIONS(3381), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110325,110 +110784,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47414] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3283), 1, - anon_sym_COLON_COLON, - ACTIONS(3287), 1, - sym_metavariable, - ACTIONS(3373), 1, - anon_sym_RBRACE, - STATE(1727), 1, - sym_scoped_identifier, - STATE(2372), 1, - sym_generic_type_with_turbofish, - STATE(2470), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3285), 3, - sym_self, - sym_super, - sym_crate, - STATE(2178), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3279), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [47482] = 20, - ACTIONS(3043), 1, + [47562] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3375), 1, + ACTIONS(3383), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110439,56 +110844,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47562] = 20, - ACTIONS(3043), 1, + [47642] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3377), 1, + ACTIONS(3385), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110499,56 +110904,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47642] = 20, - ACTIONS(3043), 1, + [47722] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3379), 1, - anon_sym_SEMI, + ACTIONS(3387), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110559,56 +110964,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47722] = 20, - ACTIONS(3043), 1, + [47802] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3381), 1, - anon_sym_COMMA, + ACTIONS(3389), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110619,56 +111024,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47802] = 20, - ACTIONS(3043), 1, + [47882] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3383), 1, - anon_sym_RBRACK, + ACTIONS(3391), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110679,56 +111084,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47882] = 20, - ACTIONS(3043), 1, + [47962] = 20, + ACTIONS(3049), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, ACTIONS(3059), 1, + anon_sym_AMP, + ACTIONS(3065), 1, anon_sym_AMP_AMP, - ACTIONS(3061), 1, + ACTIONS(3067), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_PIPE, - ACTIONS(3063), 1, + ACTIONS(3071), 1, anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, ACTIONS(3077), 1, + anon_sym_DOT, + ACTIONS(3085), 1, anon_sym_QMARK, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_as, - ACTIONS(3081), 1, + ACTIONS(3089), 1, anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3385), 1, - anon_sym_COMMA, + ACTIONS(3393), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3045), 2, + ACTIONS(3051), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3051), 2, + ACTIONS(3057), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3067), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3191), 2, + ACTIONS(3201), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, + ACTIONS(3053), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3065), 4, + ACTIONS(3073), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 10, + ACTIONS(3091), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110739,7 +111144,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47962] = 14, + [48042] = 14, ACTIONS(77), 1, anon_sym_LT, ACTIONS(3271), 1, @@ -110752,13 +111157,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3287), 1, sym_metavariable, - ACTIONS(3387), 1, + ACTIONS(3395), 1, anon_sym_RBRACE, - STATE(1727), 1, + STATE(1773), 1, sym_scoped_identifier, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2470), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -110767,7 +111172,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2178), 5, + STATE(2250), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -110793,66 +111198,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48030] = 20, - ACTIONS(3043), 1, - anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3059), 1, - anon_sym_AMP_AMP, - ACTIONS(3061), 1, - anon_sym_PIPE, - ACTIONS(3063), 1, - anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_DOT, - ACTIONS(3077), 1, - anon_sym_QMARK, - ACTIONS(3079), 1, - anon_sym_as, - ACTIONS(3081), 1, - anon_sym_EQ, - ACTIONS(3083), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3193), 1, - anon_sym_DOT_DOT, - ACTIONS(3389), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3045), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3051), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3067), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3191), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3047), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3065), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3085), 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, @@ -110866,11 +111211,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3287), 1, sym_metavariable, - STATE(1727), 1, + STATE(1773), 1, sym_scoped_identifier, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2470), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -110879,7 +111224,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2514), 5, + STATE(2428), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -110918,11 +111263,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3287), 1, sym_metavariable, - STATE(1727), 1, + STATE(1773), 1, sym_scoped_identifier, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2470), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -110931,7 +111276,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2371), 5, + STATE(2358), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -110970,11 +111315,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3287), 1, sym_metavariable, - STATE(1727), 1, + STATE(1773), 1, sym_scoped_identifier, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2470), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -110983,7 +111328,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2178), 5, + STATE(2250), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -111022,11 +111367,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3287), 1, sym_metavariable, - STATE(1727), 1, + STATE(1773), 1, sym_scoped_identifier, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2470), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -111035,7 +111380,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2373), 5, + STATE(2521), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -111074,11 +111419,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3287), 1, sym_metavariable, - STATE(1727), 1, + STATE(1773), 1, sym_scoped_identifier, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2470), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -111087,7 +111432,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2329), 5, + STATE(2474), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -111117,11 +111462,11 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3393), 3, + ACTIONS(3399), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3391), 28, + ACTIONS(3397), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111154,11 +111499,11 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3397), 3, + ACTIONS(3403), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3395), 28, + ACTIONS(3401), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111191,11 +111536,11 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3401), 3, + ACTIONS(3407), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3399), 28, + ACTIONS(3405), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111227,28 +111572,28 @@ static uint16_t ts_small_parse_table[] = { [48555] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, + ACTIONS(997), 1, anon_sym_COLON_COLON, - ACTIONS(3137), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3151), 1, sym_metavariable, - STATE(1590), 1, + STATE(1597), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_meta_item, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2470), 1, + STATE(2382), 1, + sym_meta_item, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3145), 3, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - ACTIONS(3141), 19, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111271,28 +111616,28 @@ static uint16_t ts_small_parse_table[] = { [48610] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, + ACTIONS(997), 1, anon_sym_COLON_COLON, - ACTIONS(3137), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3151), 1, sym_metavariable, - STATE(1590), 1, + STATE(1597), 1, sym_scoped_identifier, - STATE(2372), 1, - sym_generic_type_with_turbofish, - STATE(2428), 1, + STATE(2336), 1, sym_meta_item, - STATE(2470), 1, + STATE(2357), 1, + sym_generic_type_with_turbofish, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3145), 3, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - ACTIONS(3141), 19, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111315,28 +111660,28 @@ static uint16_t ts_small_parse_table[] = { [48665] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, + ACTIONS(997), 1, anon_sym_COLON_COLON, - ACTIONS(3137), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3151), 1, sym_metavariable, - STATE(1590), 1, + STATE(1597), 1, sym_scoped_identifier, - STATE(2349), 1, - sym_meta_item, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2470), 1, + STATE(2476), 1, sym_bracketed_type, + STATE(2564), 1, + sym_meta_item, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3145), 3, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - ACTIONS(3141), 19, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111359,28 +111704,28 @@ static uint16_t ts_small_parse_table[] = { [48720] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, + ACTIONS(997), 1, anon_sym_COLON_COLON, - ACTIONS(3137), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3151), 1, sym_metavariable, - STATE(1590), 1, + STATE(1597), 1, sym_scoped_identifier, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, + STATE(2427), 1, sym_meta_item, - STATE(2470), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3145), 3, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - ACTIONS(3141), 19, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111403,28 +111748,28 @@ static uint16_t ts_small_parse_table[] = { [48775] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, + ACTIONS(997), 1, anon_sym_COLON_COLON, - ACTIONS(3137), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3151), 1, sym_metavariable, - STATE(1590), 1, + STATE(1597), 1, sym_scoped_identifier, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2441), 1, + STATE(2402), 1, sym_meta_item, - STATE(2470), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3145), 3, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - ACTIONS(3141), 19, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111447,28 +111792,28 @@ static uint16_t ts_small_parse_table[] = { [48830] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, + ACTIONS(997), 1, anon_sym_COLON_COLON, - ACTIONS(3137), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3151), 1, sym_metavariable, - STATE(1590), 1, + STATE(1597), 1, sym_scoped_identifier, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2433), 1, - sym_meta_item, - STATE(2470), 1, + STATE(2476), 1, sym_bracketed_type, + STATE(2520), 1, + sym_meta_item, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3145), 3, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - ACTIONS(3141), 19, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111491,28 +111836,28 @@ static uint16_t ts_small_parse_table[] = { [48885] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, + ACTIONS(997), 1, anon_sym_COLON_COLON, - ACTIONS(3137), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(3151), 1, sym_metavariable, - STATE(1590), 1, + STATE(1597), 1, sym_scoped_identifier, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2470), 1, - sym_bracketed_type, - STATE(2536), 1, + STATE(2454), 1, sym_meta_item, + STATE(2476), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3145), 3, + ACTIONS(3149), 3, sym_self, sym_super, sym_crate, - ACTIONS(3141), 19, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111535,26 +111880,26 @@ static uint16_t ts_small_parse_table[] = { [48940] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, + ACTIONS(997), 1, anon_sym_COLON_COLON, - ACTIONS(3403), 1, - sym_identifier, ACTIONS(3409), 1, + sym_identifier, + ACTIONS(3415), 1, sym_metavariable, - STATE(2204), 1, + STATE(2322), 1, sym_scoped_identifier, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2470), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3407), 3, + ACTIONS(3413), 3, sym_self, sym_super, sym_crate, - ACTIONS(3405), 19, + ACTIONS(3411), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111577,26 +111922,26 @@ static uint16_t ts_small_parse_table[] = { [48992] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(966), 1, + ACTIONS(997), 1, anon_sym_COLON_COLON, - ACTIONS(3411), 1, - sym_identifier, ACTIONS(3417), 1, + sym_identifier, + ACTIONS(3423), 1, sym_metavariable, - STATE(2209), 1, + STATE(2173), 1, sym_scoped_identifier, - STATE(2372), 1, + STATE(2357), 1, sym_generic_type_with_turbofish, - STATE(2470), 1, + STATE(2476), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3415), 3, + ACTIONS(3421), 3, sym_self, sym_super, sym_crate, - ACTIONS(3413), 19, + ACTIONS(3419), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111617,12 +111962,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_union, [49044] = 3, - ACTIONS(2385), 1, + ACTIONS(2347), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2387), 20, + ACTIONS(2349), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111644,12 +111989,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [49074] = 3, - ACTIONS(2401), 1, + ACTIONS(2425), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2403), 20, + ACTIONS(2427), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111670,29 +112015,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49104] = 10, - ACTIONS(3421), 1, + [49104] = 9, + ACTIONS(2568), 1, + anon_sym_COLON, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3423), 1, - anon_sym_LBRACE, ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3429), 1, anon_sym_COLON_COLON, ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3433), 1, + STATE(1364), 1, + sym_type_arguments, + STATE(1382), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2564), 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, + [49144] = 10, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3437), 1, + anon_sym_LBRACE, + ACTIONS(3441), 1, + anon_sym_COLON_COLON, + ACTIONS(3445), 1, anon_sym_AT, - STATE(1359), 1, + STATE(1364), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, + ACTIONS(3439), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3429), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 9, + ACTIONS(3433), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -111702,25 +112078,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [49146] = 9, - ACTIONS(2562), 1, + [49186] = 4, + ACTIONS(2628), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2632), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2626), 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, + [49215] = 4, + ACTIONS(2600), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2604), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2598), 15, + anon_sym_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, + [49244] = 8, + ACTIONS(2578), 1, anon_sym_COLON, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3429), 1, + anon_sym_COLON_COLON, ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3435), 1, + STATE(1364), 1, + sym_type_arguments, + STATE(1382), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2576), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [49281] = 8, + ACTIONS(2582), 1, + anon_sym_COLON, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, + ACTIONS(3429), 1, anon_sym_COLON_COLON, - STATE(1359), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + STATE(1364), 1, sym_type_arguments, - STATE(1374), 1, + STATE(1382), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2558), 12, + ACTIONS(2580), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111733,17 +112186,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49186] = 4, + [49318] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 2, + ACTIONS(2610), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2604), 2, + ACTIONS(2614), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2606), 14, + ACTIONS(2616), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111758,17 +112211,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49215] = 4, + [49347] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, + ACTIONS(2626), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2612), 2, + ACTIONS(2630), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2614), 14, + ACTIONS(2632), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111783,17 +112236,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49244] = 4, + [49376] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 2, + ACTIONS(2618), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2620), 2, + ACTIONS(2622), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2622), 14, + ACTIONS(2624), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111808,99 +112261,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49273] = 8, - ACTIONS(2572), 1, + [49405] = 4, + ACTIONS(2612), 1, anon_sym_COLON, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3439), 1, - anon_sym_COLON_COLON, - STATE(1359), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 12, + ACTIONS(2616), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2610), 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_PIPE, - [49310] = 8, - ACTIONS(2576), 1, - anon_sym_COLON, - ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3439), 1, - anon_sym_COLON_COLON, - STATE(1359), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, + anon_sym_PIPE, + [49434] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 12, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2598), 2, 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, - [49347] = 4, - ACTIONS(2602), 1, + anon_sym_LT2, + ACTIONS(2602), 2, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2606), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2600), 15, + anon_sym_EQ, + ACTIONS(2604), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49376] = 4, - ACTIONS(2618), 1, + [49463] = 4, + ACTIONS(2620), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 2, + ACTIONS(2624), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2616), 15, + ACTIONS(2618), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111916,194 +112336,145 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [49405] = 4, - ACTIONS(2630), 1, - anon_sym_COLON, + [49492] = 6, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_LT2, + STATE(1358), 1, + sym_type_arguments, + STATE(1383), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2628), 15, + ACTIONS(2638), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_LT2, anon_sym_PIPE, - [49434] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2628), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2632), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2634), 14, - anon_sym_SEMI, + [49524] = 6, + ACTIONS(3425), 1, 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, - [49463] = 4, - ACTIONS(2610), 1, - anon_sym_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + STATE(1358), 1, + sym_type_arguments, + STATE(1383), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2608), 15, + ACTIONS(2584), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_LT2, anon_sym_PIPE, - [49492] = 17, - ACTIONS(3443), 1, + [49556] = 17, + ACTIONS(3449), 1, anon_sym_const, - ACTIONS(3445), 1, + ACTIONS(3451), 1, anon_sym_enum, - ACTIONS(3447), 1, + ACTIONS(3453), 1, anon_sym_fn, - ACTIONS(3449), 1, + ACTIONS(3455), 1, anon_sym_mod, - ACTIONS(3451), 1, + ACTIONS(3457), 1, anon_sym_static, - ACTIONS(3453), 1, + ACTIONS(3459), 1, anon_sym_struct, - ACTIONS(3455), 1, + ACTIONS(3461), 1, anon_sym_trait, - ACTIONS(3457), 1, + ACTIONS(3463), 1, anon_sym_type, - ACTIONS(3459), 1, + ACTIONS(3465), 1, anon_sym_union, - ACTIONS(3461), 1, + ACTIONS(3467), 1, anon_sym_unsafe, - ACTIONS(3463), 1, + ACTIONS(3469), 1, anon_sym_use, - ACTIONS(3465), 1, + ACTIONS(3471), 1, anon_sym_extern, - STATE(1521), 1, + STATE(1528), 1, sym_extern_modifier, - STATE(1557), 1, + STATE(1575), 1, aux_sym_function_modifiers_repeat1, - STATE(2406), 1, + STATE(2397), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, + ACTIONS(3447), 2, anon_sym_async, anon_sym_default, - [49546] = 17, - ACTIONS(3467), 1, + [49610] = 17, + ACTIONS(3473), 1, anon_sym_const, - ACTIONS(3469), 1, + ACTIONS(3475), 1, anon_sym_enum, - ACTIONS(3471), 1, + ACTIONS(3477), 1, anon_sym_fn, - ACTIONS(3473), 1, + ACTIONS(3479), 1, anon_sym_mod, - ACTIONS(3475), 1, + ACTIONS(3481), 1, anon_sym_static, - ACTIONS(3477), 1, + ACTIONS(3483), 1, anon_sym_struct, - ACTIONS(3479), 1, + ACTIONS(3485), 1, anon_sym_trait, - ACTIONS(3481), 1, + ACTIONS(3487), 1, anon_sym_type, - ACTIONS(3483), 1, + ACTIONS(3489), 1, anon_sym_union, - ACTIONS(3485), 1, + ACTIONS(3491), 1, anon_sym_unsafe, - ACTIONS(3487), 1, + ACTIONS(3493), 1, anon_sym_use, - ACTIONS(3489), 1, + ACTIONS(3495), 1, anon_sym_extern, - STATE(1523), 1, + STATE(1513), 1, sym_extern_modifier, - STATE(1557), 1, + STATE(1575), 1, aux_sym_function_modifiers_repeat1, - STATE(2550), 1, + STATE(2556), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, + ACTIONS(3447), 2, anon_sym_async, anon_sym_default, - [49600] = 6, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, + [49664] = 6, + ACTIONS(3425), 1, anon_sym_LPAREN, - STATE(1360), 1, - sym_type_arguments, - STATE(1377), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2596), 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, - [49632] = 6, ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - STATE(1360), 1, + STATE(1358), 1, sym_type_arguments, - STATE(1377), 1, + STATE(1383), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 13, + ACTIONS(2606), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112117,20 +112488,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49664] = 6, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - STATE(1360), 1, - sym_type_arguments, - STATE(1377), 1, - sym_parameters, + [49696] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 13, + ACTIONS(2618), 16, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112138,18 +112502,20 @@ static 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, - [49696] = 3, - ACTIONS(3491), 1, + [49719] = 3, + ACTIONS(3497), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3171), 15, + ACTIONS(3183), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112165,13 +112531,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [49721] = 2, + [49744] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 16, + ACTIONS(2972), 15, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112179,93 +112544,61 @@ static 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, - [49744] = 3, - ACTIONS(2688), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2686), 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, - [49768] = 13, - ACTIONS(3419), 1, + sym_mutable_specifier, anon_sym_PIPE, - ACTIONS(3423), 1, - anon_sym_LBRACE, - ACTIONS(3425), 1, - anon_sym_COLON, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3433), 1, - anon_sym_AT, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3493), 1, - anon_sym_LPAREN, - ACTIONS(3495), 1, - anon_sym_COLON_COLON, - STATE(1359), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, + sym_self, + [49766] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2558), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [49812] = 3, + ACTIONS(3191), 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, + [49788] = 3, + ACTIONS(2680), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2622), 13, + ACTIONS(2678), 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_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_COLON_COLON, - anon_sym_in, anon_sym_PIPE, - [49836] = 3, - ACTIONS(2702), 1, + [49812] = 3, + ACTIONS(2666), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2700), 14, + ACTIONS(2664), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112280,56 +112613,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [49860] = 6, - ACTIONS(3421), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, - anon_sym_COLON_COLON, + [49836] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, + ACTIONS(2630), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 9, + ACTIONS(2632), 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, - [49890] = 3, - ACTIONS(2762), 1, - anon_sym_COLON, + [49860] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2760), 14, + ACTIONS(2602), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2604), 13, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [49914] = 2, + [49884] = 3, + ACTIONS(3499), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3181), 15, + ACTIONS(3187), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112344,35 +112676,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [49936] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2632), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2634), 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, - [49960] = 3, - ACTIONS(2710), 1, + [49908] = 3, + ACTIONS(2738), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 14, + ACTIONS(2736), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112387,55 +112697,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [49984] = 3, - ACTIONS(2714), 1, - anon_sym_COLON, + [49932] = 13, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3437), 1, + anon_sym_LBRACE, + ACTIONS(3445), 1, + anon_sym_AT, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + anon_sym_RBRACK, + ACTIONS(3506), 1, + anon_sym_COLON_COLON, + STATE(1364), 1, + sym_type_arguments, + STATE(1382), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 14, + ACTIONS(2564), 2, 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, + ACTIONS(3433), 2, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, anon_sym_PIPE, - [50008] = 2, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [49976] = 3, + ACTIONS(2662), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2974), 15, + ACTIONS(2660), 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, - [50030] = 3, + [50000] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 2, + ACTIONS(2614), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2614), 13, + ACTIONS(2616), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112449,76 +112770,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [50054] = 13, - ACTIONS(3423), 1, - anon_sym_LBRACE, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3433), 1, - anon_sym_AT, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3499), 1, - anon_sym_LPAREN, - ACTIONS(3501), 1, - anon_sym_RBRACK, - ACTIONS(3504), 1, + [50024] = 3, + ACTIONS(2774), 1, anon_sym_COLON_COLON, - STATE(1359), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2558), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3419), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [50098] = 14, - ACTIONS(2558), 1, + 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, + [50048] = 14, + ACTIONS(2564), 1, anon_sym_PLUS, - ACTIONS(3419), 1, - anon_sym_PIPE, - ACTIONS(3423), 1, - anon_sym_LBRACE, - ACTIONS(3425), 1, - anon_sym_COLON, + ACTIONS(3427), 1, + anon_sym_BANG, ACTIONS(3431), 1, anon_sym_LT2, ACTIONS(3433), 1, - anon_sym_AT, + anon_sym_PIPE, ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3506), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3439), 1, + anon_sym_COLON, + ACTIONS(3445), 1, + anon_sym_AT, ACTIONS(3508), 1, + anon_sym_LPAREN, + ACTIONS(3510), 1, anon_sym_COLON_COLON, - STATE(1359), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1374), 1, + STATE(1382), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3501), 2, + ACTIONS(3503), 2, anon_sym_RPAREN, anon_sym_COMMA, - [50144] = 3, - ACTIONS(2796), 1, - anon_sym_COLON_COLON, + [50094] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3173), 14, + ACTIONS(3179), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112533,11 +112842,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [50168] = 2, + sym_identifier, + [50116] = 6, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3512), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3439), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3433), 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, + [50146] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3177), 15, + ACTIONS(3209), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112553,54 +112887,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [50190] = 3, - ACTIONS(3510), 1, + [50168] = 13, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3433), 1, + anon_sym_PIPE, + ACTIONS(3437), 1, + anon_sym_LBRACE, + ACTIONS(3439), 1, + anon_sym_COLON, + ACTIONS(3445), 1, + anon_sym_AT, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, anon_sym_COLON_COLON, + STATE(1364), 1, + sym_type_arguments, + STATE(1382), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3173), 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, - [50214] = 2, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2564), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [50212] = 3, + ACTIONS(2710), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 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, - [50236] = 3, - ACTIONS(3512), 1, - anon_sym_DASH_GT, + ACTIONS(2708), 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, + [50236] = 5, + ACTIONS(3522), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3520), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3518), 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, + [50263] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2728), 13, + ACTIONS(2712), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112612,67 +112977,109 @@ static 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, - [50259] = 2, + [50284] = 4, + ACTIONS(2608), 1, + anon_sym_COLON, + ACTIONS(3526), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2746), 14, + ACTIONS(2606), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50280] = 14, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, + [50309] = 14, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, + ACTIONS(3427), 1, anon_sym_BANG, - ACTIONS(3439), 1, + ACTIONS(3429), 1, anon_sym_COLON_COLON, - ACTIONS(3514), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3528), 1, anon_sym_COLON, - ACTIONS(3516), 1, + ACTIONS(3530), 1, anon_sym_EQ, - ACTIONS(3518), 1, + ACTIONS(3532), 1, anon_sym_COMMA, - ACTIONS(3520), 1, + ACTIONS(3534), 1, anon_sym_GT, - STATE(1359), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1374), 1, + STATE(1382), 1, sym_parameters, - STATE(1929), 1, - aux_sym_type_parameters_repeat1, - STATE(1932), 1, + STATE(2038), 1, sym_trait_bounds, + STATE(2044), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2558), 2, + ACTIONS(2564), 2, anon_sym_PLUS, anon_sym_as, - [50325] = 4, - ACTIONS(2584), 1, + [50354] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2758), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(3522), 1, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_PIPE, + [50375] = 3, + ACTIONS(3536), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2690), 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, + [50398] = 4, + ACTIONS(2608), 1, + anon_sym_COLON, + ACTIONS(3538), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 12, + ACTIONS(2606), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112685,15 +113092,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50350] = 4, - ACTIONS(2598), 1, + [50423] = 4, + ACTIONS(2586), 1, anon_sym_COLON, - ACTIONS(3175), 1, + ACTIONS(3526), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 12, + ACTIONS(2584), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112706,13 +113113,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50375] = 3, - ACTIONS(3524), 1, + [50448] = 4, + ACTIONS(2640), 1, + anon_sym_COLON, + ACTIONS(3526), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2638), 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, + [50473] = 3, + ACTIONS(3540), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2740), 13, + ACTIONS(2696), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112726,11 +113154,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50398] = 2, + [50496] = 3, + ACTIONS(3542), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2674), 14, + ACTIONS(2702), 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, + [50519] = 3, + ACTIONS(3544), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2746), 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, + [50542] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2730), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112745,15 +113213,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50419] = 4, - ACTIONS(3528), 1, + [50563] = 3, + ACTIONS(3546), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2668), 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, + [50586] = 3, + ACTIONS(2401), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2403), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50609] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2770), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_PIPE, + [50630] = 4, + ACTIONS(3550), 1, anon_sym_pat, - STATE(580), 1, + STATE(576), 1, sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3526), 12, + ACTIONS(3548), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -112766,13 +113293,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [50444] = 3, - ACTIONS(3530), 1, + [50655] = 3, + ACTIONS(3552), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2754), 13, + ACTIONS(2740), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112786,15 +113313,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50467] = 4, - ACTIONS(2580), 1, + [50678] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2674), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(3522), 1, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_PIPE, + [50699] = 3, + ACTIONS(3554), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2752), 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, + [50722] = 4, + ACTIONS(2608), 1, + anon_sym_COLON, + ACTIONS(3195), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 12, + ACTIONS(2606), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112807,11 +113373,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50492] = 2, + [50747] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2750), 14, + ACTIONS(2800), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112823,16 +113389,13 @@ static 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, - [50513] = 3, - ACTIONS(3532), 1, - anon_sym_DASH_GT, + [50767] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2734), 13, + ACTIONS(2910), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112846,13 +113409,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50536] = 3, - ACTIONS(3534), 1, - anon_sym_DASH_GT, + [50787] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2722), 13, + ACTIONS(2584), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112866,11 +113427,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50559] = 2, + [50807] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2704), 14, + ACTIONS(2936), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112882,16 +113443,13 @@ static 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, - [50580] = 3, - ACTIONS(3536), 1, - anon_sym_DASH_GT, + [50827] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2716), 13, + ACTIONS(620), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112905,11 +113463,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50603] = 2, + [50847] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2764), 14, + ACTIONS(2638), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112921,57 +113479,13 @@ static 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, - [50624] = 3, - ACTIONS(2369), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2371), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50647] = 4, - ACTIONS(2598), 1, - anon_sym_COLON, - ACTIONS(3522), 1, - anon_sym_COLON_COLON, + [50867] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 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, - [50672] = 3, - ACTIONS(3538), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2680), 13, + ACTIONS(2890), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112985,42 +113499,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50695] = 5, - ACTIONS(3544), 1, - anon_sym_COLON_COLON, + [50887] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3542), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3546), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3540), 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, - [50722] = 4, - ACTIONS(2598), 1, - anon_sym_COLON, - ACTIONS(3548), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2596), 12, + ACTIONS(2906), 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, @@ -113028,11 +113517,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50747] = 2, + [50907] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2930), 13, + ACTIONS(2980), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113046,47 +113535,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50767] = 2, + [50927] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2784), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2622), 2, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50787] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(624), 13, + ACTIONS(2624), 11, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [50807] = 2, + [50949] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 13, + ACTIONS(574), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113100,30 +113572,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50827] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2604), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2606), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, - anon_sym_PIPE, - [50849] = 2, + [50969] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2990), 13, + ACTIONS(2940), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113137,11 +113590,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50869] = 2, + [50989] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2946), 13, + ACTIONS(2788), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113155,11 +113608,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50889] = 2, + [51009] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3006), 13, + ACTIONS(2868), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113173,11 +113626,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50909] = 2, + [51029] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 13, + ACTIONS(2792), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113191,11 +113644,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50929] = 2, + [51049] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(656), 13, + ACTIONS(2804), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113209,11 +113662,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50949] = 2, + [51069] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2946), 13, + ACTIONS(2606), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113227,13 +113680,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50969] = 3, - ACTIONS(3552), 1, + [51089] = 3, + ACTIONS(3558), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3550), 12, + ACTIONS(3556), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113246,11 +113699,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50991] = 2, + [51111] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2902), 13, + ACTIONS(2796), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113264,11 +113717,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51011] = 2, + [51131] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(608), 13, + ACTIONS(676), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113282,11 +113735,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51031] = 2, + [51151] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3010), 13, + ACTIONS(652), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113300,11 +113753,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51051] = 2, + [51171] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2840), 13, + ACTIONS(2808), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113318,30 +113771,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51071] = 3, - ACTIONS(3556), 1, - anon_sym_EQ, + [51191] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51093] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3018), 13, + ACTIONS(2956), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113355,11 +113789,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51113] = 2, + [51211] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2802), 13, + ACTIONS(2948), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113373,11 +113807,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51133] = 2, + [51231] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2926), 13, + ACTIONS(2808), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113391,11 +113825,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51153] = 2, + [51251] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2912), 13, + ACTIONS(2914), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113409,11 +113843,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51173] = 2, + [51271] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(644), 13, + ACTIONS(2932), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113427,47 +113861,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51193] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2768), 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, + [51291] = 3, + ACTIONS(3562), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [51213] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2894), 13, + ACTIONS(3560), 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, - [51233] = 2, + [51313] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 13, + ACTIONS(2840), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113481,29 +113898,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51253] = 2, + [51333] = 4, + ACTIONS(3439), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2950), 13, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3433), 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, - [51273] = 2, + [51357] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 13, + ACTIONS(2922), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113517,34 +113936,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51293] = 2, + [51377] = 5, + ACTIONS(2614), 1, + anon_sym_COLON, + ACTIONS(3564), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3033), 13, - anon_sym_SEMI, + ACTIONS(2610), 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(2616), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51313] = 4, - ACTIONS(3425), 1, + [51402] = 3, + ACTIONS(526), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 10, + ACTIONS(524), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113553,324 +113971,276 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51337] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3037), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + [51423] = 5, + ACTIONS(2630), 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, - [51357] = 2, + ACTIONS(3567), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2986), 13, - anon_sym_SEMI, + ACTIONS(2626), 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(2632), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51377] = 3, - ACTIONS(518), 1, - anon_sym_EQ, + [51448] = 10, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3437), 1, + anon_sym_LBRACE, + ACTIONS(3441), 1, + anon_sym_COLON_COLON, + ACTIONS(3445), 1, + anon_sym_AT, + ACTIONS(3570), 1, + anon_sym_BANG, + STATE(1364), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(516), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3433), 3, 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, - [51398] = 5, - ACTIONS(2620), 1, + [51483] = 5, + ACTIONS(2622), 1, anon_sym_COLON, + ACTIONS(3572), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 3, + ACTIONS(2618), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3558), 3, + ACTIONS(2624), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51508] = 5, + ACTIONS(2602), 1, + anon_sym_COLON, + ACTIONS(3575), 1, anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 5, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, - ACTIONS(2622), 5, + anon_sym_LT2, + ACTIONS(2604), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51423] = 4, + [51533] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3561), 2, + ACTIONS(3575), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2628), 4, + ACTIONS(2598), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2634), 6, + ACTIONS(2604), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51446] = 4, + [51556] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3564), 2, + ACTIONS(3572), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2608), 4, + ACTIONS(2618), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2614), 6, + ACTIONS(2624), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51469] = 5, - ACTIONS(2604), 1, - anon_sym_COLON, + [51579] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 3, + ACTIONS(3567), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2626), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3567), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2606), 5, + ACTIONS(2632), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51494] = 4, - ACTIONS(3574), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3572), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3570), 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, - [51517] = 4, + [51602] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3567), 2, + ACTIONS(3564), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2600), 4, + ACTIONS(2610), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2606), 6, + ACTIONS(2616), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51540] = 4, + [51625] = 5, + ACTIONS(2602), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3558), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2616), 4, - anon_sym_SEMI, + ACTIONS(2598), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2622), 6, - anon_sym_BANG, + ACTIONS(3575), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2604), 5, + anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51563] = 4, - ACTIONS(3510), 1, - anon_sym_COLON_COLON, + [51650] = 3, + ACTIONS(546), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3572), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3570), 9, + ACTIONS(544), 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, - [51586] = 5, - ACTIONS(2612), 1, - anon_sym_COLON, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2608), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2614), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51611] = 4, - ACTIONS(3580), 1, - anon_sym_COLON_COLON, + [51671] = 3, + ACTIONS(552), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3578), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3576), 9, + ACTIONS(550), 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, - [51634] = 5, - ACTIONS(2632), 1, + [51692] = 5, + ACTIONS(2622), 1, anon_sym_COLON, - ACTIONS(3561), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 5, - anon_sym_RPAREN, + ACTIONS(2618), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2634), 5, + ACTIONS(3572), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2624), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51659] = 5, - ACTIONS(2612), 1, + [51717] = 5, + ACTIONS(2630), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 3, + ACTIONS(2626), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3564), 3, + ACTIONS(3567), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2614), 5, + ACTIONS(2632), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51684] = 4, + [51742] = 4, ACTIONS(3582), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3572), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3570), 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, - [51707] = 4, - ACTIONS(3580), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3586), 2, + ACTIONS(3580), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3584), 9, + ACTIONS(3578), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113880,94 +114250,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51730] = 5, - ACTIONS(2632), 1, + [51765] = 5, + ACTIONS(2614), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 3, + ACTIONS(2610), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3561), 3, + ACTIONS(3564), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2634), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51755] = 5, - ACTIONS(2620), 1, - anon_sym_COLON, - ACTIONS(3558), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, ACTIONS(2616), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2622), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51780] = 5, - ACTIONS(2604), 1, - anon_sym_COLON, - ACTIONS(3567), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2600), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2606), 5, - anon_sym_BANG, + [51790] = 4, + ACTIONS(3588), 1, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51805] = 3, - ACTIONS(548), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(546), 11, + ACTIONS(3586), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3584), 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, - [51826] = 4, - ACTIONS(3582), 1, + [51813] = 4, + ACTIONS(3499), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3590), 2, + ACTIONS(3586), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3588), 9, + ACTIONS(3584), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113977,16 +114308,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51849] = 4, - ACTIONS(3510), 1, + [51836] = 4, + ACTIONS(3590), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3590), 2, + ACTIONS(3586), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3588), 9, + ACTIONS(3584), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113996,16 +114327,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51872] = 4, - ACTIONS(3574), 1, + [51859] = 4, + ACTIONS(3588), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3590), 2, + ACTIONS(3594), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3588), 9, + ACTIONS(3592), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114015,124 +114346,93 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51895] = 3, - ACTIONS(556), 1, - anon_sym_EQ, + [51882] = 4, + ACTIONS(3582), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(554), 11, + ACTIONS(3598), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3596), 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, - [51916] = 10, - ACTIONS(3421), 1, - anon_sym_LPAREN, - ACTIONS(3423), 1, - anon_sym_LBRACE, - ACTIONS(3427), 1, + [51905] = 4, + ACTIONS(3499), 1, anon_sym_COLON_COLON, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3433), 1, - anon_sym_AT, - ACTIONS(3592), 1, - anon_sym_BANG, - STATE(1359), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [51951] = 3, - ACTIONS(3596), 1, + ACTIONS(3594), 2, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3594), 10, + ACTIONS(3592), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51971] = 3, - ACTIONS(3600), 1, - anon_sym_EQ, + [51928] = 4, + ACTIONS(3590), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3598), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + ACTIONS(3594), 2, anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51991] = 3, - ACTIONS(3604), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3602), 10, + ACTIONS(3592), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52011] = 3, - ACTIONS(3608), 1, - anon_sym_EQ, + [51951] = 9, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3429), 1, + anon_sym_COLON_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3600), 1, + anon_sym_for, + STATE(1364), 1, + sym_type_arguments, + STATE(1382), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3606), 10, + ACTIONS(2564), 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, - [52031] = 3, - ACTIONS(3425), 1, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [51983] = 3, + ACTIONS(3604), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3419), 10, + ACTIONS(3602), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114143,13 +114443,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52051] = 3, - ACTIONS(3612), 1, + [52003] = 3, + ACTIONS(3586), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3610), 10, + ACTIONS(3584), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114160,36 +114460,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52071] = 9, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, + [52023] = 9, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, + ACTIONS(3427), 1, anon_sym_BANG, - ACTIONS(3439), 1, + ACTIONS(3429), 1, anon_sym_COLON_COLON, - ACTIONS(3614), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3606), 1, anon_sym_for, - STATE(1359), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1374), 1, + STATE(1382), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2558), 4, + ACTIONS(2564), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52103] = 3, - ACTIONS(3618), 1, + [52055] = 3, + ACTIONS(3610), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3616), 10, + ACTIONS(3608), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114200,59 +114500,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52123] = 9, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, + [52075] = 9, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, + ACTIONS(3427), 1, anon_sym_BANG, - ACTIONS(3439), 1, + ACTIONS(3429), 1, anon_sym_COLON_COLON, - ACTIONS(3620), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3612), 1, anon_sym_for, - STATE(1359), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1374), 1, + STATE(1382), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2558), 4, + ACTIONS(2564), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52155] = 9, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, + [52107] = 9, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, + ACTIONS(3427), 1, anon_sym_BANG, - ACTIONS(3439), 1, + ACTIONS(3429), 1, anon_sym_COLON_COLON, - ACTIONS(3622), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3614), 1, anon_sym_for, - STATE(1359), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1374), 1, + STATE(1382), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2558), 4, + ACTIONS(2564), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52187] = 3, - ACTIONS(3626), 1, + [52139] = 3, + ACTIONS(3618), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3624), 10, + ACTIONS(3616), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114263,13 +114563,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52207] = 3, - ACTIONS(3630), 1, + [52159] = 3, + ACTIONS(3622), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3628), 10, + ACTIONS(3620), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114280,36 +114580,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52227] = 9, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, - anon_sym_COLON_COLON, - ACTIONS(3632), 1, - anon_sym_for, - STATE(1359), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, + [52179] = 3, + ACTIONS(3626), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2558), 4, + ACTIONS(3624), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52259] = 3, - ACTIONS(3636), 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, + [52199] = 3, + ACTIONS(3630), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3634), 10, + ACTIONS(3628), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114320,13 +114614,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52279] = 3, - ACTIONS(3590), 1, + [52219] = 3, + ACTIONS(3634), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3588), 10, + ACTIONS(3632), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114337,33 +114631,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52299] = 6, - ACTIONS(3638), 1, - anon_sym_COLON, - ACTIONS(3640), 1, + [52239] = 9, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, anon_sym_BANG, - ACTIONS(3642), 1, + ACTIONS(3429), 1, anon_sym_COLON_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3636), 1, + anon_sym_for, + STATE(1364), 1, + sym_type_arguments, + STATE(1382), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3546), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2590), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52325] = 3, - ACTIONS(3646), 1, + ACTIONS(2564), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52271] = 3, + ACTIONS(3594), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3644), 10, + ACTIONS(3592), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114374,13 +114671,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52345] = 3, - ACTIONS(622), 1, + [52291] = 3, + ACTIONS(3640), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(620), 10, + ACTIONS(3638), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114391,36 +114688,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52365] = 9, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, + [52311] = 3, + ACTIONS(3644), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3642), 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, + [52331] = 9, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, + ACTIONS(3427), 1, anon_sym_BANG, - ACTIONS(3439), 1, + ACTIONS(3429), 1, anon_sym_COLON_COLON, - ACTIONS(3648), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3646), 1, anon_sym_for, - STATE(1359), 1, + STATE(1364), 1, sym_type_arguments, - STATE(1374), 1, + STATE(1382), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2558), 4, + ACTIONS(2564), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52397] = 3, - ACTIONS(3652), 1, + [52363] = 3, + ACTIONS(3650), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 10, + ACTIONS(3648), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114431,13 +114745,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52417] = 3, + [52383] = 6, + ACTIONS(3652), 1, + anon_sym_COLON, + ACTIONS(3654), 1, + anon_sym_BANG, ACTIONS(3656), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52409] = 3, + ACTIONS(3660), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 10, + ACTIONS(3658), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114448,26 +114782,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52437] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3660), 1, - sym_crate, - STATE(1580), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3658), 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, - [52461] = 3, + [52429] = 3, ACTIONS(3664), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -114484,7 +114799,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52481] = 3, + [52449] = 3, ACTIONS(3668), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -114501,7 +114816,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52501] = 3, + [52469] = 3, ACTIONS(3672), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -114518,13 +114833,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52521] = 3, + [52489] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, ACTIONS(3676), 1, + sym_crate, + STATE(1574), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3674), 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, + [52513] = 3, + ACTIONS(3439), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3674), 10, + ACTIONS(3433), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114535,36 +114869,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52541] = 9, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, - anon_sym_COLON_COLON, - ACTIONS(3678), 1, - anon_sym_for, - STATE(1359), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2558), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52573] = 3, - ACTIONS(3682), 1, + [52533] = 3, + ACTIONS(3680), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3680), 10, + ACTIONS(3678), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114575,7 +114886,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52593] = 3, + [52553] = 6, + ACTIONS(3652), 1, + anon_sym_COLON, + ACTIONS(3654), 1, + anon_sym_BANG, + ACTIONS(3682), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52579] = 3, ACTIONS(3686), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -114592,7 +114923,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52613] = 3, + [52599] = 3, ACTIONS(3690), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -114609,13 +114940,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52633] = 3, - ACTIONS(3694), 1, + [52619] = 3, + ACTIONS(580), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3692), 10, + ACTIONS(578), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114626,13 +114957,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52653] = 3, - ACTIONS(3698), 1, + [52639] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3692), 1, + sym_crate, + STATE(1574), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3674), 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, + [52663] = 3, + ACTIONS(3696), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3696), 10, + ACTIONS(3694), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114643,13 +114993,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52673] = 3, - ACTIONS(3702), 1, + [52683] = 3, + ACTIONS(3700), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3700), 10, + ACTIONS(3698), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114660,13 +115010,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52693] = 3, - ACTIONS(3706), 1, + [52703] = 3, + ACTIONS(3704), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3704), 10, + ACTIONS(3702), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114677,53 +115027,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52713] = 9, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, - anon_sym_COLON_COLON, - ACTIONS(3708), 1, - anon_sym_for, - STATE(1359), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, + [52723] = 5, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + ACTIONS(3706), 1, + sym_crate, + STATE(1574), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2558), 4, + ACTIONS(3674), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52745] = 3, - ACTIONS(3712), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3710), 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, - [52765] = 3, - ACTIONS(3716), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52747] = 3, + ACTIONS(3710), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3714), 10, + ACTIONS(3708), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114734,17 +115063,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52785] = 5, + [52767] = 5, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(3718), 1, + ACTIONS(3712), 1, sym_crate, - STATE(1580), 1, + STATE(1574), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3658), 8, + ACTIONS(3674), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -114753,32 +115082,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52809] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3720), 1, - sym_crate, - STATE(1580), 1, - sym_string_literal, + [52791] = 9, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3429), 1, + anon_sym_COLON_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3714), 1, + anon_sym_for, + STATE(1364), 1, + sym_type_arguments, + STATE(1382), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2564), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52823] = 3, + ACTIONS(3718), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3658), 8, + ACTIONS(3716), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52833] = 3, - ACTIONS(3724), 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, + [52843] = 3, + ACTIONS(3722), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3722), 10, + ACTIONS(3720), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114789,36 +115139,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52853] = 9, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, - anon_sym_COLON_COLON, + [52863] = 3, ACTIONS(3726), 1, - anon_sym_for, - STATE(1359), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2558), 4, + ACTIONS(3724), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52885] = 3, - ACTIONS(3572), 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, + [52883] = 3, + ACTIONS(3730), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3570), 10, + ACTIONS(3728), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114829,33 +115173,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52905] = 6, - ACTIONS(3638), 1, - anon_sym_COLON, - ACTIONS(3640), 1, - anon_sym_BANG, - ACTIONS(3728), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3546), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2590), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52931] = 3, - ACTIONS(3732), 1, + [52903] = 3, + ACTIONS(3734), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3730), 10, + ACTIONS(3732), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114866,2239 +115190,2068 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52951] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3734), 1, - sym_crate, - STATE(1580), 1, - sym_string_literal, + [52923] = 3, + ACTIONS(3738), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3658), 8, + ACTIONS(3736), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52975] = 8, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3736), 1, - sym_identifier, - ACTIONS(3738), 1, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(3740), 1, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - ACTIONS(3742), 1, - anon_sym_DOT_DOT, + anon_sym_in, + anon_sym_PIPE, + [52943] = 9, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3429), 1, + anon_sym_COLON_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3740), 1, + anon_sym_for, + STATE(1364), 1, + sym_type_arguments, + STATE(1382), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1871), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1917), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [53004] = 10, + ACTIONS(2564), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52975] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3744), 1, + ACTIONS(3742), 1, sym_identifier, - ACTIONS(3746), 1, + ACTIONS(3744), 1, anon_sym_RBRACE, - ACTIONS(3748), 1, + ACTIONS(3746), 1, anon_sym_COMMA, - ACTIONS(3750), 1, + ACTIONS(3748), 1, sym_crate, - STATE(2100), 1, - sym_field_declaration, - STATE(2447), 1, + STATE(2066), 1, + sym_enum_variant, + STATE(2436), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1561), 2, + STATE(1586), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53037] = 5, - ACTIONS(3640), 1, + [53008] = 5, + ACTIONS(3654), 1, anon_sym_BANG, - ACTIONS(3642), 1, + ACTIONS(3750), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3546), 2, + ACTIONS(3524), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2590), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53060] = 6, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - STATE(2133), 1, - sym__literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3752), 2, - anon_sym_true, - anon_sym_false, - STATE(1075), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [53085] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3750), 1, - sym_crate, - ACTIONS(3754), 1, - sym_identifier, - ACTIONS(3756), 1, - anon_sym_RBRACE, - ACTIONS(3758), 1, - anon_sym_COMMA, - STATE(2062), 1, - sym_enum_variant, - STATE(2395), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1566), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53118] = 5, - ACTIONS(3640), 1, - anon_sym_BANG, - ACTIONS(3728), 1, - anon_sym_COLON_COLON, + [53031] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3461), 1, + anon_sym_trait, + ACTIONS(3752), 1, + anon_sym_impl, + STATE(163), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3546), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2590), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53141] = 5, - ACTIONS(3640), 1, + [53056] = 5, + ACTIONS(3654), 1, anon_sym_BANG, - ACTIONS(3760), 1, + ACTIONS(3656), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3546), 2, + ACTIONS(3524), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2590), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53164] = 10, + [53079] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3744), 1, - sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3748), 1, sym_crate, - ACTIONS(3762), 1, + ACTIONS(3754), 1, + sym_identifier, + ACTIONS(3756), 1, anon_sym_RBRACE, - ACTIONS(3764), 1, + ACTIONS(3758), 1, anon_sym_COMMA, - STATE(2037), 1, + STATE(2104), 1, sym_field_declaration, - STATE(2447), 1, + STATE(2378), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1556), 2, + STATE(1570), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53197] = 6, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - STATE(2129), 1, - sym__literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3752), 2, - anon_sym_true, - anon_sym_false, - STATE(1075), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [53222] = 9, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, + [53112] = 9, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, + ACTIONS(3427), 1, anon_sym_BANG, - ACTIONS(3439), 1, + ACTIONS(3429), 1, anon_sym_COLON_COLON, - ACTIONS(3766), 1, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3760), 1, anon_sym_EQ, - STATE(1374), 1, + STATE(1382), 1, sym_parameters, - STATE(1771), 1, + STATE(1754), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2558), 3, + ACTIONS(2564), 3, anon_sym_PLUS, anon_sym_COMMA, anon_sym_GT, - [53253] = 6, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - anon_sym_trait, - ACTIONS(3768), 1, - anon_sym_impl, - STATE(75), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2590), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53278] = 7, + [53143] = 7, + ACTIONS(3425), 1, + anon_sym_LPAREN, ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3770), 1, + ACTIONS(3762), 1, anon_sym_LBRACE, - STATE(1360), 1, + STATE(1358), 1, sym_type_arguments, - STATE(1377), 1, + STATE(1383), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 5, + ACTIONS(2606), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_COMMA, - [53305] = 10, + [53170] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3750), 1, - sym_crate, - ACTIONS(3754), 1, + ACTIONS(3742), 1, sym_identifier, - ACTIONS(3772), 1, + ACTIONS(3748), 1, + sym_crate, + ACTIONS(3764), 1, anon_sym_RBRACE, - ACTIONS(3774), 1, + ACTIONS(3766), 1, anon_sym_COMMA, - STATE(1933), 1, + STATE(1910), 1, sym_enum_variant, - STATE(2395), 1, + STATE(2436), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1556), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53338] = 10, - ACTIONS(3776), 1, - anon_sym_SEMI, - ACTIONS(3778), 1, - anon_sym_LPAREN, - ACTIONS(3780), 1, - anon_sym_LBRACE, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3784), 1, - anon_sym_LT, - STATE(1036), 1, - sym_field_declaration_list, - STATE(1625), 1, - sym_type_parameters, - STATE(2025), 1, - sym_ordered_field_declaration_list, - STATE(2286), 1, - sym_where_clause, + [53203] = 5, + ACTIONS(3654), 1, + anon_sym_BANG, + ACTIONS(3682), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53370] = 10, - ACTIONS(3778), 1, - anon_sym_LPAREN, - ACTIONS(3780), 1, - anon_sym_LBRACE, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3784), 1, - anon_sym_LT, - ACTIONS(3786), 1, - anon_sym_SEMI, - STATE(896), 1, - sym_field_declaration_list, - STATE(1593), 1, - sym_type_parameters, - STATE(2119), 1, - sym_ordered_field_declaration_list, - STATE(2169), 1, - sym_where_clause, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53226] = 6, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + STATE(1916), 1, + sym__literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3768), 2, + anon_sym_true, + anon_sym_false, + STATE(1074), 2, + sym_string_literal, + sym_boolean_literal, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + [53251] = 6, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + STATE(1915), 1, + sym__literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3768), 2, + anon_sym_true, + anon_sym_false, + STATE(1074), 2, + sym_string_literal, + sym_boolean_literal, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + [53276] = 8, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(3770), 1, + sym_identifier, + ACTIONS(3772), 1, + anon_sym_RBRACE, + ACTIONS(3774), 1, + anon_sym_COMMA, + ACTIONS(3776), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53402] = 9, + STATE(1857), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1925), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53305] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3744), 1, - sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3748), 1, sym_crate, - ACTIONS(3788), 1, + ACTIONS(3754), 1, + sym_identifier, + ACTIONS(3778), 1, anon_sym_RBRACE, - STATE(2303), 1, + ACTIONS(3780), 1, + anon_sym_COMMA, + STATE(2081), 1, sym_field_declaration, - STATE(2447), 1, + STATE(2378), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1546), 2, + STATE(1557), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53432] = 7, - ACTIONS(2317), 1, + [53338] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3736), 1, - sym_identifier, ACTIONS(3742), 1, - anon_sym_DOT_DOT, - ACTIONS(3790), 1, + sym_identifier, + ACTIONS(3748), 1, + sym_crate, + ACTIONS(3782), 1, anon_sym_RBRACE, + STATE(2222), 1, + sym_enum_variant, + STATE(2436), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1871), 2, + STATE(1566), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2150), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [53458] = 7, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3792), 1, - anon_sym_for, - STATE(1360), 1, - sym_type_arguments, - STATE(1377), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2596), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53484] = 9, + [53368] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3748), 1, sym_crate, ACTIONS(3754), 1, sym_identifier, - ACTIONS(3794), 1, + ACTIONS(3784), 1, anon_sym_RBRACE, - STATE(2213), 1, - sym_enum_variant, - STATE(2395), 1, + STATE(2203), 1, + sym_field_declaration, + STATE(2378), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1560), 2, + STATE(1562), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53514] = 9, + [53398] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3744), 1, - sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3748), 1, sym_crate, - ACTIONS(3796), 1, + ACTIONS(3754), 1, + sym_identifier, + ACTIONS(3786), 1, anon_sym_RBRACE, - STATE(2303), 1, + STATE(2203), 1, sym_field_declaration, - STATE(2447), 1, + STATE(2378), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1546), 2, + STATE(1562), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53544] = 7, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3798), 1, - anon_sym_for, - STATE(1360), 1, - sym_type_arguments, - STATE(1377), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2596), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53570] = 9, - ACTIONS(2313), 1, + [53428] = 9, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(3800), 1, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3802), 1, + ACTIONS(3790), 1, anon_sym_const, - ACTIONS(3804), 1, + ACTIONS(3792), 1, anon_sym_GT, - ACTIONS(3806), 1, + ACTIONS(3794), 1, sym_metavariable, - STATE(1840), 1, + STATE(1871), 1, sym_lifetime, - STATE(2035), 1, + STATE(1919), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2283), 2, + STATE(2267), 2, sym_const_parameter, sym_optional_type_parameter, - [53600] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, + [53458] = 10, + ACTIONS(3796), 1, + anon_sym_SEMI, + ACTIONS(3798), 1, + anon_sym_LPAREN, ACTIONS(3800), 1, - sym_identifier, + anon_sym_LBRACE, ACTIONS(3802), 1, - anon_sym_const, - ACTIONS(3806), 1, - sym_metavariable, - ACTIONS(3808), 1, - anon_sym_GT, - STATE(1840), 1, - sym_lifetime, - STATE(2035), 1, - sym_constrained_type_parameter, + anon_sym_where, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(261), 1, + sym_field_declaration_list, + STATE(1606), 1, + sym_type_parameters, + STATE(2067), 1, + sym_ordered_field_declaration_list, + STATE(2293), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2283), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53630] = 7, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_for, - STATE(1360), 1, - sym_type_arguments, - STATE(1377), 1, - sym_parameters, + [53490] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(3742), 1, + sym_identifier, + ACTIONS(3748), 1, + sym_crate, + ACTIONS(3806), 1, + anon_sym_RBRACE, + STATE(2222), 1, + sym_enum_variant, + STATE(2436), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 4, + STATE(1566), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53520] = 5, + ACTIONS(3808), 1, anon_sym_SEMI, + ACTIONS(3810), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53656] = 9, - ACTIONS(2313), 1, + STATE(1013), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53542] = 9, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(3800), 1, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3802), 1, + ACTIONS(3790), 1, anon_sym_const, - ACTIONS(3806), 1, + ACTIONS(3794), 1, sym_metavariable, ACTIONS(3812), 1, anon_sym_GT, - STATE(1840), 1, + STATE(1865), 1, sym_lifetime, - STATE(2035), 1, + STATE(1919), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2283), 2, + STATE(2267), 2, sym_const_parameter, sym_optional_type_parameter, - [53686] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3800), 1, + [53572] = 7, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(3770), 1, sym_identifier, - ACTIONS(3802), 1, - anon_sym_const, - ACTIONS(3806), 1, - sym_metavariable, + ACTIONS(3776), 1, + anon_sym_DOT_DOT, ACTIONS(3814), 1, - anon_sym_GT, - STATE(1777), 1, - sym_lifetime, - STATE(2035), 1, - sym_constrained_type_parameter, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2283), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53716] = 5, + STATE(1857), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2240), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53598] = 9, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(3788), 1, + sym_identifier, + ACTIONS(3790), 1, + anon_sym_const, + ACTIONS(3794), 1, + sym_metavariable, ACTIONS(3816), 1, - anon_sym_SEMI, - ACTIONS(3818), 1, - anon_sym_LBRACE, - STATE(849), 1, - sym_declaration_list, + anon_sym_GT, + STATE(1865), 1, + sym_lifetime, + STATE(1919), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53738] = 7, + STATE(2267), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53628] = 7, + ACTIONS(3425), 1, + anon_sym_LPAREN, ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, + ACTIONS(3818), 1, anon_sym_for, - STATE(1360), 1, + STATE(1358), 1, sym_type_arguments, - STATE(1377), 1, + STATE(1383), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53764] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, + [53654] = 7, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3744), 1, + ACTIONS(3770), 1, sym_identifier, - ACTIONS(3750), 1, - sym_crate, - ACTIONS(3822), 1, + ACTIONS(3776), 1, + anon_sym_DOT_DOT, + ACTIONS(3820), 1, anon_sym_RBRACE, - STATE(2303), 1, - sym_field_declaration, - STATE(2447), 1, - sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1546), 2, + STATE(1857), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53794] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, + STATE(2240), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53680] = 7, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3439), 1, + anon_sym_COLON, + ACTIONS(3822), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3433), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [53706] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(3742), 1, + sym_identifier, + ACTIONS(3748), 1, + sym_crate, ACTIONS(3824), 1, - anon_sym_move, - STATE(101), 1, - sym_block, + anon_sym_RBRACE, + STATE(2222), 1, + sym_enum_variant, + STATE(2436), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53816] = 10, - ACTIONS(3778), 1, + STATE(1566), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53736] = 10, + ACTIONS(3798), 1, anon_sym_LPAREN, - ACTIONS(3782), 1, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3784), 1, + ACTIONS(3804), 1, anon_sym_LT, ACTIONS(3826), 1, anon_sym_SEMI, ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(373), 1, + STATE(889), 1, sym_field_declaration_list, - STATE(1610), 1, + STATE(1622), 1, sym_type_parameters, - STATE(2051), 1, + STATE(2029), 1, sym_ordered_field_declaration_list, - STATE(2176), 1, + STATE(2215), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53848] = 5, - ACTIONS(3830), 1, - anon_sym_SEMI, - ACTIONS(3832), 1, - anon_sym_LBRACE, - STATE(466), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2590), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53870] = 7, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3834), 1, - anon_sym_for, - STATE(1360), 1, - sym_type_arguments, - STATE(1377), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2596), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53896] = 5, - ACTIONS(3818), 1, - anon_sym_LBRACE, - ACTIONS(3836), 1, - anon_sym_SEMI, - STATE(1018), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2590), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53918] = 5, - ACTIONS(3832), 1, - anon_sym_LBRACE, - ACTIONS(3838), 1, - anon_sym_SEMI, - STATE(339), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2590), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53940] = 9, + [53768] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3748), 1, sym_crate, ACTIONS(3754), 1, sym_identifier, - ACTIONS(3840), 1, + ACTIONS(3830), 1, anon_sym_RBRACE, - STATE(2213), 1, - sym_enum_variant, - STATE(2395), 1, + STATE(2203), 1, + sym_field_declaration, + STATE(2378), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1560), 2, + STATE(1562), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53970] = 9, - ACTIONS(2313), 1, + [53798] = 9, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(3800), 1, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3802), 1, + ACTIONS(3790), 1, anon_sym_const, - ACTIONS(3806), 1, + ACTIONS(3794), 1, sym_metavariable, - ACTIONS(3842), 1, + ACTIONS(3832), 1, anon_sym_GT, - STATE(1840), 1, + STATE(1865), 1, sym_lifetime, - STATE(2035), 1, + STATE(1919), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2283), 2, + STATE(2267), 2, sym_const_parameter, sym_optional_type_parameter, - [54000] = 7, - ACTIONS(3421), 1, - anon_sym_LPAREN, + [53828] = 7, ACTIONS(3425), 1, - anon_sym_COLON, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3844), 1, - anon_sym_COLON_COLON, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3834), 1, + anon_sym_for, + STATE(1358), 1, + sym_type_arguments, + STATE(1383), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [54026] = 9, + ACTIONS(2606), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53854] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3744), 1, - sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3748), 1, sym_crate, - ACTIONS(3846), 1, + ACTIONS(3754), 1, + sym_identifier, + ACTIONS(3836), 1, anon_sym_RBRACE, - STATE(2303), 1, + STATE(2203), 1, sym_field_declaration, - STATE(2447), 1, + STATE(2378), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1546), 2, + STATE(1562), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54056] = 7, + [53884] = 7, + ACTIONS(3425), 1, + anon_sym_LPAREN, ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3848), 1, + ACTIONS(3838), 1, anon_sym_for, - STATE(1360), 1, + STATE(1358), 1, sym_type_arguments, - STATE(1377), 1, + STATE(1383), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54082] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3750), 1, - sym_crate, - ACTIONS(3754), 1, - sym_identifier, - ACTIONS(3850), 1, - anon_sym_RBRACE, - STATE(2213), 1, - sym_enum_variant, - STATE(2395), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1560), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54112] = 9, - ACTIONS(2313), 1, + [53910] = 9, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(3800), 1, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3802), 1, + ACTIONS(3790), 1, anon_sym_const, - ACTIONS(3806), 1, + ACTIONS(3794), 1, sym_metavariable, - ACTIONS(3852), 1, + ACTIONS(3840), 1, anon_sym_GT, - STATE(1840), 1, + STATE(1865), 1, sym_lifetime, - STATE(2035), 1, + STATE(1919), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2283), 2, + STATE(2267), 2, sym_const_parameter, sym_optional_type_parameter, - [54142] = 7, + [53940] = 5, + ACTIONS(3842), 1, + anon_sym_SEMI, + ACTIONS(3844), 1, + anon_sym_LBRACE, + STATE(464), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53962] = 7, + ACTIONS(3425), 1, + anon_sym_LPAREN, ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3854), 1, + ACTIONS(3846), 1, anon_sym_for, - STATE(1360), 1, + STATE(1358), 1, sym_type_arguments, - STATE(1377), 1, + STATE(1383), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54168] = 7, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3736), 1, + [53988] = 9, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3742), 1, - anon_sym_DOT_DOT, - ACTIONS(3856), 1, - anon_sym_RBRACE, + ACTIONS(3790), 1, + anon_sym_const, + ACTIONS(3794), 1, + sym_metavariable, + ACTIONS(3848), 1, + anon_sym_GT, + STATE(1865), 1, + sym_lifetime, + STATE(1919), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1871), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2150), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [54194] = 9, + STATE(2267), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54018] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3750), 1, - sym_crate, - ACTIONS(3754), 1, + ACTIONS(3742), 1, sym_identifier, - ACTIONS(3858), 1, + ACTIONS(3748), 1, + sym_crate, + ACTIONS(3850), 1, anon_sym_RBRACE, - STATE(2213), 1, + STATE(2222), 1, sym_enum_variant, - STATE(2395), 1, + STATE(2436), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1560), 2, + STATE(1566), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54224] = 9, + [54048] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3744), 1, - sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3748), 1, sym_crate, - ACTIONS(3860), 1, + ACTIONS(3754), 1, + sym_identifier, + ACTIONS(3852), 1, anon_sym_RBRACE, - STATE(2303), 1, + STATE(2203), 1, sym_field_declaration, - STATE(2447), 1, + STATE(2378), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1546), 2, + STATE(1562), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54254] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3750), 1, - sym_crate, - ACTIONS(3754), 1, + [54078] = 5, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(3854), 1, + anon_sym_SEMI, + STATE(1039), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54100] = 9, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3862), 1, - anon_sym_RBRACE, - STATE(2213), 1, - sym_enum_variant, - STATE(2395), 1, - sym_visibility_modifier, + ACTIONS(3790), 1, + anon_sym_const, + ACTIONS(3794), 1, + sym_metavariable, + ACTIONS(3856), 1, + anon_sym_GT, + STATE(1865), 1, + sym_lifetime, + STATE(1919), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1560), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54284] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3750), 1, - sym_crate, - ACTIONS(3754), 1, + STATE(2267), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54130] = 9, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(3788), 1, sym_identifier, - ACTIONS(3864), 1, - anon_sym_RBRACE, - STATE(2213), 1, - sym_enum_variant, - STATE(2395), 1, - sym_visibility_modifier, + ACTIONS(3790), 1, + anon_sym_const, + ACTIONS(3794), 1, + sym_metavariable, + ACTIONS(3858), 1, + anon_sym_GT, + STATE(1865), 1, + sym_lifetime, + STATE(1919), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1560), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54314] = 10, - ACTIONS(3778), 1, + STATE(2267), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54160] = 10, + ACTIONS(3798), 1, anon_sym_LPAREN, - ACTIONS(3782), 1, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3784), 1, + ACTIONS(3804), 1, anon_sym_LT, - ACTIONS(3828), 1, - anon_sym_LBRACE, - ACTIONS(3866), 1, + ACTIONS(3860), 1, anon_sym_SEMI, - STATE(263), 1, + STATE(371), 1, sym_field_declaration_list, - STATE(1626), 1, + STATE(1616), 1, sym_type_parameters, - STATE(1903), 1, + STATE(2015), 1, sym_ordered_field_declaration_list, - STATE(2233), 1, + STATE(2204), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54346] = 9, + [54192] = 9, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(3788), 1, + sym_identifier, + ACTIONS(3790), 1, + anon_sym_const, + ACTIONS(3794), 1, + sym_metavariable, + ACTIONS(3862), 1, + anon_sym_GT, + STATE(1865), 1, + sym_lifetime, + STATE(1919), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2267), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54222] = 7, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3864), 1, + anon_sym_for, + STATE(1358), 1, + sym_type_arguments, + STATE(1383), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54248] = 7, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3866), 1, + anon_sym_for, + STATE(1358), 1, + sym_type_arguments, + STATE(1383), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [54274] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3868), 1, + anon_sym_move, + STATE(95), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54296] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3744), 1, + ACTIONS(3742), 1, sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3748), 1, sym_crate, - ACTIONS(3868), 1, + ACTIONS(3870), 1, anon_sym_RBRACE, - STATE(2303), 1, + STATE(2222), 1, + sym_enum_variant, + STATE(2436), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1566), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54326] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(3748), 1, + sym_crate, + ACTIONS(3754), 1, + sym_identifier, + ACTIONS(3872), 1, + anon_sym_RBRACE, + STATE(2203), 1, sym_field_declaration, - STATE(2447), 1, + STATE(2378), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1546), 2, + STATE(1562), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54376] = 7, + [54356] = 7, + ACTIONS(3425), 1, + anon_sym_LPAREN, ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3870), 1, + ACTIONS(3874), 1, anon_sym_for, - STATE(1360), 1, + STATE(1358), 1, sym_type_arguments, - STATE(1377), 1, + STATE(1383), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54402] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3800), 1, - sym_identifier, - ACTIONS(3802), 1, - anon_sym_const, - ACTIONS(3806), 1, - sym_metavariable, - ACTIONS(3872), 1, - anon_sym_GT, - STATE(1840), 1, - sym_lifetime, - STATE(2035), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2283), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54432] = 5, + [54382] = 5, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3874), 1, + ACTIONS(3876), 1, sym_identifier, - STATE(104), 1, + STATE(98), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3876), 6, + ACTIONS(3878), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54454] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3800), 1, - sym_identifier, + [54404] = 10, + ACTIONS(3798), 1, + anon_sym_LPAREN, ACTIONS(3802), 1, - anon_sym_const, - ACTIONS(3806), 1, - sym_metavariable, - ACTIONS(3878), 1, - anon_sym_GT, - STATE(1840), 1, - sym_lifetime, - STATE(2035), 1, - sym_constrained_type_parameter, + anon_sym_where, + ACTIONS(3804), 1, + anon_sym_LT, + ACTIONS(3828), 1, + anon_sym_LBRACE, + ACTIONS(3880), 1, + anon_sym_SEMI, + STATE(904), 1, + sym_field_declaration_list, + STATE(1617), 1, + sym_type_parameters, + STATE(2123), 1, + sym_ordered_field_declaration_list, + STATE(2156), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2283), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54484] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3800), 1, - sym_identifier, - ACTIONS(3802), 1, - anon_sym_const, - ACTIONS(3806), 1, - sym_metavariable, - ACTIONS(3880), 1, - anon_sym_GT, - STATE(1840), 1, - sym_lifetime, - STATE(2035), 1, - sym_constrained_type_parameter, + [54436] = 7, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3882), 1, + anon_sym_for, + STATE(1358), 1, + sym_type_arguments, + STATE(1383), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2283), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54514] = 4, - ACTIONS(3884), 1, + ACTIONS(2606), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - STATE(1577), 1, - aux_sym_trait_bounds_repeat1, + anon_sym_where, + [54462] = 5, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(3884), 1, + anon_sym_SEMI, + STATE(407), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3882), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54533] = 8, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54484] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3744), 1, + ACTIONS(3742), 1, sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3748), 1, sym_crate, - STATE(2223), 1, - sym_field_declaration, - STATE(2447), 1, + ACTIONS(3886), 1, + anon_sym_RBRACE, + STATE(2222), 1, + sym_enum_variant, + STATE(2436), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1135), 2, + STATE(1566), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54560] = 6, - ACTIONS(3760), 1, + [54514] = 6, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3888), 1, anon_sym_COLON_COLON, - ACTIONS(3886), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3540), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3546), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [54583] = 4, - ACTIONS(3479), 1, - anon_sym_trait, - ACTIONS(3889), 1, - anon_sym_impl, + ACTIONS(3433), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [54537] = 8, + ACTIONS(3890), 1, + anon_sym_LPAREN, + ACTIONS(3895), 1, + anon_sym_LBRACE, + ACTIONS(3898), 1, + anon_sym_LBRACK, + STATE(1550), 1, + aux_sym_macro_definition_repeat1, + STATE(2408), 1, + sym_token_tree_pattern, + STATE(2503), 1, + sym_macro_rule, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54602] = 4, - ACTIONS(3580), 1, - anon_sym_COLON_COLON, - ACTIONS(3891), 1, - anon_sym_BANG, + ACTIONS(3893), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [54564] = 4, + ACTIONS(888), 1, + anon_sym_LBRACE, + STATE(1478), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54621] = 9, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3832), 1, - anon_sym_LBRACE, - ACTIONS(3893), 1, + [54583] = 6, + ACTIONS(3518), 1, + anon_sym_PIPE, + ACTIONS(3520), 1, anon_sym_COLON, - ACTIONS(3895), 1, - anon_sym_LT, - STATE(443), 1, - sym_declaration_list, - STATE(1691), 1, - sym_type_parameters, - STATE(1819), 1, - sym_trait_bounds, - STATE(2168), 1, - sym_where_clause, + ACTIONS(3682), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54650] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3750), 1, - sym_crate, - ACTIONS(3754), 1, - sym_identifier, - STATE(1947), 1, - sym_enum_variant, - STATE(2395), 1, - sym_visibility_modifier, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2606), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [54606] = 4, + ACTIONS(736), 1, + aux_sym_string_literal_token1, + STATE(1574), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1135), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54677] = 8, - ACTIONS(2313), 1, + ACTIONS(3674), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54625] = 8, + ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(3802), 1, + ACTIONS(3790), 1, anon_sym_const, - ACTIONS(3897), 1, + ACTIONS(3901), 1, sym_identifier, - ACTIONS(3899), 1, + ACTIONS(3903), 1, sym_metavariable, - STATE(1734), 1, + STATE(1772), 1, sym_lifetime, - STATE(1820), 1, + STATE(1799), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1876), 2, + STATE(2016), 2, sym_const_parameter, sym_optional_type_parameter, - [54704] = 9, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3832), 1, - anon_sym_LBRACE, - ACTIONS(3893), 1, - anon_sym_COLON, - ACTIONS(3895), 1, - anon_sym_LT, - STATE(296), 1, - sym_declaration_list, - STATE(1721), 1, - sym_type_parameters, - STATE(1833), 1, - sym_trait_bounds, - STATE(2214), 1, - sym_where_clause, + [54652] = 4, + ACTIONS(3907), 1, + anon_sym_PLUS, + STATE(1555), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54733] = 8, + ACTIONS(3905), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54671] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3744), 1, + ACTIONS(3742), 1, sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3748), 1, sym_crate, - STATE(2303), 1, - sym_field_declaration, - STATE(2447), 1, + STATE(2023), 1, + sym_enum_variant, + STATE(2436), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1546), 2, + STATE(1140), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54760] = 6, - ACTIONS(3421), 1, - anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3901), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [54783] = 8, + [54698] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3744), 1, - sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3748), 1, sym_crate, - STATE(2072), 1, + ACTIONS(3754), 1, + sym_identifier, + STATE(1891), 1, sym_field_declaration, - STATE(2447), 1, + STATE(2378), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1135), 2, + STATE(1140), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54810] = 5, - ACTIONS(3905), 1, - anon_sym_fn, - ACTIONS(3907), 1, - anon_sym_extern, + [54725] = 8, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3910), 1, + sym_identifier, + ACTIONS(3912), 1, + anon_sym_RBRACE, + ACTIONS(3914), 1, + anon_sym_COMMA, + ACTIONS(3916), 1, + anon_sym_ref, + ACTIONS(3918), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1572), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3903), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [54831] = 4, - ACTIONS(3909), 1, + STATE(2009), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [54752] = 6, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(3770), 1, + sym_identifier, + ACTIONS(3776), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1857), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2240), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [54775] = 4, + ACTIONS(3922), 1, anon_sym_PLUS, - STATE(1577), 1, + STATE(1583), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3882), 6, + ACTIONS(3920), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54850] = 9, - ACTIONS(3782), 1, + [54794] = 9, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3818), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(3893), 1, + ACTIONS(3924), 1, anon_sym_COLON, - ACTIONS(3895), 1, + ACTIONS(3926), 1, anon_sym_LT, - STATE(911), 1, + STATE(916), 1, sym_declaration_list, - STATE(1677), 1, + STATE(1692), 1, sym_type_parameters, - STATE(1827), 1, + STATE(1864), 1, sym_trait_bounds, - STATE(2188), 1, + STATE(2153), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54879] = 8, + [54823] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3748), 1, sym_crate, ACTIONS(3754), 1, sym_identifier, - STATE(2218), 1, - sym_enum_variant, - STATE(2395), 1, + STATE(2168), 1, + sym_field_declaration, + STATE(2378), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1135), 2, + STATE(1140), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54906] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3744), 1, - sym_identifier, - ACTIONS(3750), 1, - sym_crate, - STATE(2120), 1, - sym_field_declaration, - STATE(2447), 1, - sym_visibility_modifier, + [54850] = 4, + ACTIONS(3928), 1, + anon_sym_PLUS, + STATE(1583), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1135), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54933] = 8, + ACTIONS(3920), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54869] = 4, + ACTIONS(3930), 1, + anon_sym_PLUS, + STATE(1583), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3920), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54888] = 9, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(3926), 1, + anon_sym_LT, + STATE(376), 1, + sym_declaration_list, + STATE(1652), 1, + sym_type_parameters, + STATE(1791), 1, + sym_trait_bounds, + STATE(2207), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54917] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3750), 1, - sym_crate, - ACTIONS(3754), 1, + ACTIONS(3742), 1, sym_identifier, - STATE(2213), 1, + ACTIONS(3748), 1, + sym_crate, + STATE(2154), 1, sym_enum_variant, - STATE(2395), 1, + STATE(2436), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1560), 2, + STATE(1140), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54960] = 4, - ACTIONS(3548), 1, + [54944] = 9, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(3926), 1, + anon_sym_LT, + STATE(821), 1, + sym_declaration_list, + STATE(1669), 1, + sym_type_parameters, + STATE(1829), 1, + sym_trait_bounds, + STATE(2189), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54973] = 4, + ACTIONS(2720), 1, anon_sym_COLON_COLON, - ACTIONS(3640), 1, + ACTIONS(3932), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54979] = 8, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3911), 1, - sym_identifier, - ACTIONS(3913), 1, - anon_sym_RBRACE, - ACTIONS(3915), 1, - anon_sym_COMMA, - ACTIONS(3917), 1, - anon_sym_ref, - ACTIONS(3919), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1986), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55006] = 4, - ACTIONS(3921), 1, - anon_sym_PLUS, - STATE(1577), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3882), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55025] = 8, + [54992] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2317), 1, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3750), 1, - sym_crate, - ACTIONS(3754), 1, + ACTIONS(3742), 1, sym_identifier, - STATE(2135), 1, + ACTIONS(3748), 1, + sym_crate, + STATE(2222), 1, sym_enum_variant, - STATE(2395), 1, + STATE(2436), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1135), 2, + STATE(1566), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55052] = 6, - ACTIONS(2317), 1, + [55019] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2323), 1, anon_sym_POUND, - ACTIONS(3736), 1, + ACTIONS(3748), 1, + sym_crate, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3742), 1, - anon_sym_DOT_DOT, + STATE(2103), 1, + sym_field_declaration, + STATE(2378), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1871), 2, + STATE(1140), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2150), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [55075] = 8, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3802), 1, - anon_sym_const, - ACTIONS(3923), 1, - sym_identifier, - ACTIONS(3925), 1, - sym_metavariable, - STATE(1764), 1, - sym_lifetime, - STATE(1847), 1, - sym_constrained_type_parameter, + [55046] = 6, + ACTIONS(3750), 1, + anon_sym_COLON_COLON, + ACTIONS(3934), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2012), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55102] = 9, - ACTIONS(3782), 1, + ACTIONS(2606), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3518), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55069] = 9, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3832), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(3893), 1, + ACTIONS(3924), 1, anon_sym_COLON, - ACTIONS(3895), 1, + ACTIONS(3926), 1, anon_sym_LT, - STATE(378), 1, + STATE(316), 1, sym_declaration_list, - STATE(1636), 1, + STATE(1715), 1, sym_type_parameters, - STATE(1839), 1, + STATE(1845), 1, sym_trait_bounds, - STATE(2261), 1, + STATE(2303), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55131] = 9, - ACTIONS(3782), 1, + [55098] = 9, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3818), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(3893), 1, + ACTIONS(3924), 1, anon_sym_COLON, - ACTIONS(3895), 1, + ACTIONS(3926), 1, anon_sym_LT, - STATE(1035), 1, + STATE(897), 1, sym_declaration_list, - STATE(1638), 1, + STATE(1644), 1, sym_type_parameters, - STATE(1843), 1, + STATE(1795), 1, sym_trait_bounds, - STATE(2284), 1, + STATE(2214), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55160] = 6, - ACTIONS(3421), 1, - anon_sym_LPAREN, - ACTIONS(3497), 1, - anon_sym_COLON_COLON, - ACTIONS(3592), 1, - anon_sym_BANG, + [55127] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3419), 3, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PIPE, - [55183] = 5, - ACTIONS(3930), 1, + ACTIONS(3937), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, anon_sym_fn, - ACTIONS(3932), 1, + anon_sym_unsafe, + anon_sym_extern, + [55142] = 5, + ACTIONS(3941), 1, + anon_sym_fn, + ACTIONS(3943), 1, anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1572), 2, + STATE(1576), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(3927), 4, + ACTIONS(3939), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - [55204] = 8, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3802), 1, - anon_sym_const, - ACTIONS(3897), 1, - sym_identifier, - ACTIONS(3899), 1, - sym_metavariable, - STATE(1699), 1, - sym_lifetime, - STATE(1820), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1876), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55231] = 8, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3800), 1, - sym_identifier, - ACTIONS(3802), 1, - anon_sym_const, - ACTIONS(3806), 1, - sym_metavariable, - STATE(1840), 1, - sym_lifetime, - STATE(2035), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2283), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55258] = 4, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - STATE(1580), 1, - sym_string_literal, + [55163] = 5, + ACTIONS(3948), 1, + anon_sym_fn, + ACTIONS(3950), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3658), 6, + STATE(1576), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3945), 4, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_unsafe, - anon_sym_extern, - [55277] = 8, - ACTIONS(3935), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACE, - ACTIONS(3943), 1, - anon_sym_LBRACK, - STATE(1576), 1, - aux_sym_macro_definition_repeat1, - STATE(2518), 1, - sym_macro_rule, - STATE(2548), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3938), 2, - anon_sym_RPAREN, + [55184] = 8, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3910), 1, + sym_identifier, + ACTIONS(3916), 1, + anon_sym_ref, + ACTIONS(3918), 1, + sym_mutable_specifier, + ACTIONS(3953), 1, anon_sym_RBRACE, - [55304] = 4, - ACTIONS(3909), 1, - anon_sym_PLUS, - STATE(1581), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3946), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3955), 1, anon_sym_COMMA, - anon_sym_GT, - [55323] = 9, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3818), 1, - anon_sym_LBRACE, - ACTIONS(3893), 1, - anon_sym_COLON, - ACTIONS(3895), 1, - anon_sym_LT, - STATE(828), 1, - sym_declaration_list, - STATE(1701), 1, - sym_type_parameters, - STATE(1816), 1, - sym_trait_bounds, - STATE(2185), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55352] = 7, - ACTIONS(2596), 1, - anon_sym_PLUS, - ACTIONS(3540), 1, - anon_sym_PIPE, - ACTIONS(3542), 1, - anon_sym_COLON, - ACTIONS(3642), 1, + STATE(1983), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55211] = 6, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3512), 1, anon_sym_COLON_COLON, + ACTIONS(3570), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3546), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3886), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [55377] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3948), 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, - [55392] = 4, - ACTIONS(3952), 1, + ACTIONS(3433), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + [55234] = 7, + ACTIONS(2606), 1, anon_sym_PLUS, - STATE(1581), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3950), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55411] = 6, - ACTIONS(3540), 1, + ACTIONS(3518), 1, anon_sym_PIPE, - ACTIONS(3542), 1, + ACTIONS(3520), 1, anon_sym_COLON, - ACTIONS(3728), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3546), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2596), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [55434] = 4, - ACTIONS(888), 1, - anon_sym_LBRACE, - STATE(1462), 1, - sym_block, + ACTIONS(3656), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 6, - anon_sym_async, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3934), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55259] = 8, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(3790), 1, anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55453] = 8, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3911), 1, - sym_identifier, - ACTIONS(3917), 1, - anon_sym_ref, - ACTIONS(3919), 1, - sym_mutable_specifier, - ACTIONS(3955), 1, - anon_sym_RBRACE, ACTIONS(3957), 1, - anon_sym_COMMA, + sym_identifier, + ACTIONS(3959), 1, + sym_metavariable, + STATE(1645), 1, + sym_lifetime, + STATE(1862), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2047), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55480] = 4, - ACTIONS(2664), 1, + STATE(2119), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55286] = 4, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(3959), 1, + ACTIONS(3961), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55499] = 6, - ACTIONS(3778), 1, - anon_sym_LPAREN, - ACTIONS(3780), 1, - anon_sym_LBRACE, + [55305] = 4, + ACTIONS(3485), 1, + anon_sym_trait, ACTIONS(3963), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3961), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2085), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [55521] = 3, - ACTIONS(2664), 1, - anon_sym_COLON_COLON, + anon_sym_impl, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55537] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3950), 7, - anon_sym_SEMI, - anon_sym_LBRACE, + [55324] = 4, + ACTIONS(3922), 1, anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55551] = 2, + STATE(1555), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3950), 7, + ACTIONS(3965), 6, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55565] = 6, - ACTIONS(3965), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_EQ, - ACTIONS(3971), 1, - anon_sym_COLON_COLON, - STATE(1966), 1, - sym_meta_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3967), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [55587] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3950), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + [55343] = 9, + ACTIONS(3802), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55601] = 6, - ACTIONS(3778), 1, - anon_sym_LPAREN, - ACTIONS(3780), 1, - anon_sym_LBRACE, - ACTIONS(3975), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3973), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1939), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [55623] = 8, - ACTIONS(3778), 1, - anon_sym_LPAREN, - ACTIONS(3780), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3977), 1, - anon_sym_SEMI, - STATE(816), 1, - sym_field_declaration_list, - STATE(2112), 1, - sym_ordered_field_declaration_list, - STATE(2182), 1, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(3926), 1, + anon_sym_LT, + STATE(465), 1, + sym_declaration_list, + STATE(1716), 1, + sym_type_parameters, + STATE(1841), 1, + sym_trait_bounds, + STATE(2234), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55649] = 6, - ACTIONS(3965), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_COLON_COLON, - STATE(1966), 1, - sym_meta_arguments, + [55372] = 8, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(3788), 1, + sym_identifier, + ACTIONS(3790), 1, + anon_sym_const, + ACTIONS(3794), 1, + sym_metavariable, + STATE(1865), 1, + sym_lifetime, + STATE(1919), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3967), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [55671] = 6, - ACTIONS(3965), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_EQ, - ACTIONS(3981), 1, - anon_sym_COLON_COLON, - STATE(1966), 1, - sym_meta_arguments, + STATE(2267), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55399] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(3742), 1, + sym_identifier, + ACTIONS(3748), 1, + sym_crate, + STATE(2140), 1, + sym_enum_variant, + STATE(2436), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3967), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [55693] = 3, - ACTIONS(3983), 1, + STATE(1140), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [55426] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(3748), 1, + sym_crate, + ACTIONS(3754), 1, sym_identifier, + STATE(2203), 1, + sym_field_declaration, + STATE(2378), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3876), 6, - anon_sym_async, + STATE(1562), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [55453] = 8, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(3790), 1, anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55709] = 2, + ACTIONS(3957), 1, + sym_identifier, + ACTIONS(3959), 1, + sym_metavariable, + STATE(1747), 1, + sym_lifetime, + STATE(1862), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3985), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55723] = 6, - ACTIONS(3580), 1, + STATE(2119), 2, + sym_const_parameter, + sym_optional_type_parameter, + [55480] = 4, + ACTIONS(3538), 1, anon_sym_COLON_COLON, - ACTIONS(3965), 1, - anon_sym_LPAREN, - ACTIONS(3989), 1, - anon_sym_EQ, - STATE(1912), 1, - sym_meta_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3987), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [55745] = 3, - ACTIONS(3991), 1, - anon_sym_trait, + ACTIONS(3654), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55761] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3950), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55775] = 7, - ACTIONS(820), 1, + [55499] = 7, + ACTIONS(828), 1, anon_sym_DOT_DOT, - ACTIONS(3911), 1, + ACTIONS(3910), 1, sym_identifier, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_ref, - ACTIONS(3919), 1, + ACTIONS(3918), 1, sym_mutable_specifier, - ACTIONS(3993), 1, + ACTIONS(3967), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2279), 2, + STATE(2211), 2, sym_field_pattern, sym_remaining_field_pattern, - [55799] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3950), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55813] = 8, - ACTIONS(3995), 1, + [55523] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3997), 1, - anon_sym_RPAREN, - ACTIONS(3999), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, + ACTIONS(3973), 1, + anon_sym_RBRACE, + ACTIONS(3975), 1, anon_sym_LBRACK, - STATE(1628), 1, + STATE(1550), 1, aux_sym_macro_definition_repeat1, STATE(2160), 1, sym_macro_rule, - STATE(2548), 1, + STATE(2408), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55839] = 8, - ACTIONS(3995), 1, + [55549] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3999), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(4003), 1, - anon_sym_RPAREN, - STATE(1612), 1, + ACTIONS(3977), 1, + anon_sym_RBRACE, + STATE(1591), 1, aux_sym_macro_definition_repeat1, - STATE(2298), 1, + STATE(2202), 1, sym_macro_rule, - STATE(2548), 1, + STATE(2408), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55865] = 8, - ACTIONS(3995), 1, + [55575] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3999), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(4005), 1, - anon_sym_RPAREN, - STATE(1613), 1, + ACTIONS(3979), 1, + anon_sym_RBRACE, + STATE(1611), 1, aux_sym_macro_definition_repeat1, - STATE(2296), 1, + STATE(2305), 1, sym_macro_rule, - STATE(2548), 1, + STATE(2408), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55891] = 8, - ACTIONS(3995), 1, + [55601] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3999), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(4007), 1, - anon_sym_RBRACE, - STATE(1620), 1, + ACTIONS(3981), 1, + anon_sym_RPAREN, + STATE(1607), 1, aux_sym_macro_definition_repeat1, - STATE(2146), 1, + STATE(2304), 1, sym_macro_rule, - STATE(2548), 1, + STATE(2408), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55917] = 8, - ACTIONS(3995), 1, + [55627] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3999), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(4009), 1, + ACTIONS(3983), 1, anon_sym_RBRACE, - STATE(1576), 1, + STATE(1605), 1, aux_sym_macro_definition_repeat1, - STATE(2147), 1, + STATE(2299), 1, sym_macro_rule, - STATE(2548), 1, + STATE(2408), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55943] = 8, + [55653] = 6, + ACTIONS(3798), 1, + anon_sym_LPAREN, + ACTIONS(3828), 1, + anon_sym_LBRACE, + ACTIONS(3987), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3985), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1998), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [55675] = 6, + ACTIONS(3989), 1, + anon_sym_LPAREN, + ACTIONS(3993), 1, + anon_sym_EQ, ACTIONS(3995), 1, + anon_sym_COLON_COLON, + STATE(2124), 1, + sym_meta_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3991), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [55697] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3999), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(4011), 1, - anon_sym_RBRACE, - STATE(1576), 1, + ACTIONS(3997), 1, + anon_sym_RPAREN, + STATE(1604), 1, aux_sym_macro_definition_repeat1, - STATE(2157), 1, + STATE(2292), 1, sym_macro_rule, - STATE(2548), 1, + STATE(2408), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55969] = 7, - ACTIONS(3419), 1, - anon_sym_PIPE, - ACTIONS(3421), 1, + [55723] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3425), 1, - anon_sym_COLON, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(4013), 1, - anon_sym_COLON_COLON, + ACTIONS(3971), 1, + anon_sym_LBRACE, + ACTIONS(3975), 1, + anon_sym_LBRACK, + ACTIONS(3999), 1, + anon_sym_RPAREN, + STATE(1550), 1, + aux_sym_macro_definition_repeat1, + STATE(2264), 1, + sym_macro_rule, + STATE(2408), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [55993] = 8, - ACTIONS(3778), 1, + [55749] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3828), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(4015), 1, - anon_sym_SEMI, - STATE(324), 1, - sym_field_declaration_list, - STATE(2103), 1, - sym_ordered_field_declaration_list, - STATE(2173), 1, - sym_where_clause, + ACTIONS(3975), 1, + anon_sym_LBRACK, + ACTIONS(4001), 1, + anon_sym_RPAREN, + STATE(1550), 1, + aux_sym_macro_definition_repeat1, + STATE(2266), 1, + sym_macro_rule, + STATE(2408), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56019] = 2, + [55775] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4017), 7, + ACTIONS(4003), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -117106,2121 +117259,2317 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [56033] = 8, - ACTIONS(3995), 1, + [55789] = 3, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3878), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55805] = 7, + ACTIONS(828), 1, + anon_sym_DOT_DOT, + ACTIONS(3910), 1, + sym_identifier, + ACTIONS(3916), 1, + anon_sym_ref, + ACTIONS(3918), 1, + sym_mutable_specifier, + ACTIONS(4007), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2211), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55829] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3999), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(4019), 1, + ACTIONS(4009), 1, anon_sym_RPAREN, - STATE(1576), 1, + STATE(1550), 1, aux_sym_macro_definition_repeat1, - STATE(2272), 1, + STATE(2283), 1, sym_macro_rule, - STATE(2548), 1, + STATE(2408), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56059] = 8, - ACTIONS(3995), 1, + [55855] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3999), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, + ACTIONS(4011), 1, + anon_sym_RBRACE, + STATE(1550), 1, + aux_sym_macro_definition_repeat1, + STATE(2281), 1, + sym_macro_rule, + STATE(2408), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55881] = 8, + ACTIONS(3798), 1, + anon_sym_LPAREN, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4013), 1, + anon_sym_SEMI, + STATE(453), 1, + sym_field_declaration_list, + STATE(1932), 1, + sym_ordered_field_declaration_list, + STATE(2237), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55907] = 8, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACE, + ACTIONS(3975), 1, + anon_sym_LBRACK, + ACTIONS(4015), 1, anon_sym_RPAREN, - STATE(1576), 1, + STATE(1550), 1, aux_sym_macro_definition_repeat1, - STATE(2271), 1, + STATE(2277), 1, sym_macro_rule, - STATE(2548), 1, + STATE(2408), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56085] = 8, - ACTIONS(3995), 1, + [55933] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3999), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(4023), 1, + ACTIONS(4017), 1, anon_sym_RPAREN, - STATE(1622), 1, + STATE(1600), 1, aux_sym_macro_definition_repeat1, - STATE(2275), 1, + STATE(2291), 1, sym_macro_rule, - STATE(2548), 1, + STATE(2408), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56111] = 8, - ACTIONS(3995), 1, + [55959] = 3, + ACTIONS(3538), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55975] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3999), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(4025), 1, + ACTIONS(4019), 1, anon_sym_RBRACE, - STATE(1607), 1, + STATE(1550), 1, aux_sym_macro_definition_repeat1, - STATE(2245), 1, + STATE(2162), 1, sym_macro_rule, - STATE(2548), 1, + STATE(2408), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56137] = 8, - ACTIONS(3995), 1, + [56001] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3999), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(4027), 1, + ACTIONS(4021), 1, anon_sym_RBRACE, - STATE(1627), 1, + STATE(1550), 1, aux_sym_macro_definition_repeat1, - STATE(2248), 1, + STATE(2274), 1, sym_macro_rule, - STATE(2548), 1, + STATE(2408), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56163] = 3, - ACTIONS(4029), 1, + [56027] = 7, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(3433), 1, + anon_sym_PIPE, + ACTIONS(3435), 1, + anon_sym_LPAREN, + ACTIONS(3439), 1, + anon_sym_COLON, + ACTIONS(4023), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [56051] = 3, + ACTIONS(4025), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3876), 6, + ACTIONS(3878), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56179] = 7, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3911), 1, - sym_identifier, - ACTIONS(3917), 1, - anon_sym_ref, - ACTIONS(3919), 1, - sym_mutable_specifier, - ACTIONS(4031), 1, + [56067] = 8, + ACTIONS(3969), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_LBRACE, + ACTIONS(3975), 1, + anon_sym_LBRACK, + ACTIONS(4027), 1, anon_sym_RBRACE, + STATE(1610), 1, + aux_sym_macro_definition_repeat1, + STATE(2200), 1, + sym_macro_rule, + STATE(2408), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2279), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [56203] = 8, - ACTIONS(3995), 1, + [56093] = 6, + ACTIONS(3798), 1, + anon_sym_LPAREN, + ACTIONS(3828), 1, + anon_sym_LBRACE, + ACTIONS(4031), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4029), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2036), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [56115] = 8, + ACTIONS(3798), 1, anon_sym_LPAREN, - ACTIONS(3999), 1, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, - anon_sym_LBRACK, + ACTIONS(3802), 1, + anon_sym_where, ACTIONS(4033), 1, - anon_sym_RBRACE, - STATE(1608), 1, - aux_sym_macro_definition_repeat1, - STATE(2249), 1, - sym_macro_rule, - STATE(2548), 1, - sym_token_tree_pattern, + anon_sym_SEMI, + STATE(351), 1, + sym_field_declaration_list, + STATE(2082), 1, + sym_ordered_field_declaration_list, + STATE(2317), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56229] = 8, - ACTIONS(3995), 1, + [56141] = 8, + ACTIONS(3798), 1, anon_sym_LPAREN, - ACTIONS(3999), 1, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3828), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, - anon_sym_LBRACK, ACTIONS(4035), 1, - anon_sym_RBRACE, - STATE(1576), 1, - aux_sym_macro_definition_repeat1, - STATE(2265), 1, - sym_macro_rule, - STATE(2548), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56255] = 3, - ACTIONS(4037), 1, - sym_identifier, + anon_sym_SEMI, + STATE(795), 1, + sym_field_declaration_list, + STATE(2071), 1, + sym_ordered_field_declaration_list, + STATE(2186), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3876), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56271] = 8, - ACTIONS(3995), 1, + [56167] = 8, + ACTIONS(3969), 1, anon_sym_LPAREN, - ACTIONS(3999), 1, + ACTIONS(3971), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(4039), 1, + ACTIONS(4037), 1, anon_sym_RPAREN, - STATE(1576), 1, + STATE(1599), 1, aux_sym_macro_definition_repeat1, - STATE(2277), 1, + STATE(2289), 1, sym_macro_rule, - STATE(2548), 1, + STATE(2408), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56297] = 7, - ACTIONS(820), 1, + [56193] = 6, + ACTIONS(3989), 1, + anon_sym_LPAREN, + ACTIONS(3993), 1, + anon_sym_EQ, + ACTIONS(4039), 1, + anon_sym_COLON_COLON, + STATE(2124), 1, + sym_meta_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3991), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [56215] = 7, + ACTIONS(828), 1, anon_sym_DOT_DOT, - ACTIONS(3911), 1, + ACTIONS(3910), 1, sym_identifier, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_ref, - ACTIONS(3919), 1, + ACTIONS(3918), 1, sym_mutable_specifier, ACTIONS(4041), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2279), 2, + STATE(2211), 2, sym_field_pattern, sym_remaining_field_pattern, - [56321] = 3, + [56239] = 6, + ACTIONS(3989), 1, + anon_sym_LPAREN, + ACTIONS(3993), 1, + anon_sym_EQ, ACTIONS(4043), 1, - sym_identifier, + anon_sym_COLON_COLON, + STATE(2124), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3876), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56337] = 8, - ACTIONS(3778), 1, + ACTIONS(3991), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [56261] = 8, + ACTIONS(3798), 1, anon_sym_LPAREN, - ACTIONS(3780), 1, - anon_sym_LBRACE, - ACTIONS(3782), 1, + ACTIONS(3802), 1, anon_sym_where, + ACTIONS(3828), 1, + anon_sym_LBRACE, ACTIONS(4045), 1, anon_sym_SEMI, - STATE(925), 1, + STATE(937), 1, sym_field_declaration_list, - STATE(2102), 1, + STATE(2106), 1, sym_ordered_field_declaration_list, - STATE(2200), 1, + STATE(2167), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56363] = 8, - ACTIONS(3778), 1, - anon_sym_LPAREN, - ACTIONS(3782), 1, + [56287] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3905), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3828), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56301] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3905), 7, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56315] = 3, ACTIONS(4047), 1, - anon_sym_SEMI, - STATE(437), 1, - sym_field_declaration_list, - STATE(2131), 1, - sym_ordered_field_declaration_list, - STATE(2156), 1, - sym_where_clause, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56389] = 8, - ACTIONS(3995), 1, - anon_sym_LPAREN, - ACTIONS(3999), 1, - anon_sym_LBRACE, - ACTIONS(4001), 1, - anon_sym_LBRACK, - ACTIONS(4049), 1, - anon_sym_RBRACE, - STATE(1576), 1, - aux_sym_macro_definition_repeat1, - STATE(2280), 1, - sym_macro_rule, - STATE(2548), 1, - sym_token_tree_pattern, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56331] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56415] = 8, - ACTIONS(3995), 1, - anon_sym_LPAREN, - ACTIONS(3999), 1, + ACTIONS(3905), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4001), 1, - anon_sym_LBRACK, - ACTIONS(4051), 1, - anon_sym_RPAREN, - STATE(1576), 1, - aux_sym_macro_definition_repeat1, - STATE(2263), 1, - sym_macro_rule, - STATE(2548), 1, - sym_token_tree_pattern, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56345] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56441] = 3, - ACTIONS(3548), 1, + ACTIONS(4049), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56359] = 3, + ACTIONS(2720), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 6, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56375] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3905), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56389] = 3, + ACTIONS(4051), 1, + anon_sym_trait, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56457] = 7, - ACTIONS(820), 1, + [56405] = 7, + ACTIONS(828), 1, anon_sym_DOT_DOT, - ACTIONS(3911), 1, + ACTIONS(3910), 1, sym_identifier, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_ref, - ACTIONS(3919), 1, + ACTIONS(3918), 1, sym_mutable_specifier, ACTIONS(4053), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2279), 2, + STATE(2211), 2, sym_field_pattern, sym_remaining_field_pattern, - [56481] = 3, + [56429] = 3, ACTIONS(4055), 1, - anon_sym_trait, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 6, + ACTIONS(3878), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56497] = 7, - ACTIONS(3782), 1, - anon_sym_where, + [56445] = 3, ACTIONS(4057), 1, - anon_sym_SEMI, - ACTIONS(4059), 1, - anon_sym_LBRACE, - ACTIONS(4061), 1, - anon_sym_DASH_GT, - STATE(789), 1, - sym_block, - STATE(2116), 1, - sym_where_clause, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56520] = 4, - ACTIONS(3522), 1, + ACTIONS(3878), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56461] = 6, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(3792), 1, - anon_sym_for, + ACTIONS(3989), 1, + anon_sym_LPAREN, + ACTIONS(4061), 1, + anon_sym_EQ, + STATE(2117), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 4, + ACTIONS(4059), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [56483] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3905), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56537] = 7, - ACTIONS(3782), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [56497] = 5, + ACTIONS(4065), 1, + anon_sym_COLON, + ACTIONS(4067), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4063), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56516] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3832), 1, - anon_sym_LBRACE, - ACTIONS(4063), 1, + ACTIONS(4069), 1, anon_sym_SEMI, - ACTIONS(4065), 1, + ACTIONS(4071), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, anon_sym_PLUS, - STATE(377), 1, - sym_declaration_list, - STATE(1937), 1, + STATE(836), 1, + sym_block, + STATE(2050), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56560] = 7, - ACTIONS(3782), 1, + [56539] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3784), 1, + ACTIONS(3804), 1, anon_sym_LT, - ACTIONS(4067), 1, + ACTIONS(4075), 1, anon_sym_LBRACE, - STATE(904), 1, + STATE(803), 1, sym_enum_variant_list, - STATE(1826), 1, + STATE(1778), 1, sym_type_parameters, - STATE(2177), 1, + STATE(2230), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56583] = 7, - ACTIONS(3782), 1, + [56562] = 4, + ACTIONS(4067), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2606), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [56579] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3832), 1, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4077), 1, + anon_sym_SEMI, + STATE(309), 1, + sym_declaration_list, + STATE(2125), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56602] = 4, + ACTIONS(3526), 1, + anon_sym_COLON_COLON, + ACTIONS(3838), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3893), 1, + anon_sym_PLUS, + anon_sym_where, + [56619] = 7, + ACTIONS(3530), 1, + anon_sym_EQ, + ACTIONS(3532), 1, + anon_sym_COMMA, + ACTIONS(3534), 1, + anon_sym_GT, + ACTIONS(3924), 1, anon_sym_COLON, - STATE(316), 1, + STATE(2038), 1, + sym_trait_bounds, + STATE(2044), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56642] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4079), 1, + anon_sym_SEMI, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4083), 1, + anon_sym_DASH_GT, + STATE(334), 1, + sym_block, + STATE(1971), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56665] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(3924), 1, + anon_sym_COLON, + STATE(926), 1, sym_declaration_list, - STATE(1823), 1, + STATE(1853), 1, sym_trait_bounds, - STATE(2144), 1, + STATE(2251), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56606] = 7, - ACTIONS(3782), 1, + [56688] = 7, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(4085), 1, + anon_sym_COMMA, + ACTIONS(4087), 1, + anon_sym_GT, + STATE(1930), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2045), 1, + aux_sym_type_parameters_repeat1, + STATE(2049), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56711] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3818), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4069), 1, + ACTIONS(4089), 1, anon_sym_SEMI, - STATE(913), 1, + STATE(981), 1, sym_declaration_list, - STATE(2111), 1, + STATE(1973), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56629] = 7, - ACTIONS(3782), 1, + [56734] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3818), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(3893), 1, - anon_sym_COLON, - STATE(920), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4091), 1, + anon_sym_SEMI, + STATE(972), 1, sym_declaration_list, - STATE(1829), 1, - sym_trait_bounds, - STATE(2197), 1, + STATE(2091), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56652] = 7, - ACTIONS(3782), 1, + [56757] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4065), 1, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4071), 1, + ACTIONS(4093), 1, anon_sym_SEMI, + STATE(917), 1, + sym_declaration_list, + STATE(2115), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56780] = 7, + ACTIONS(3802), 1, + anon_sym_where, ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4081), 1, anon_sym_LBRACE, - STATE(447), 1, + ACTIONS(4095), 1, + anon_sym_SEMI, + STATE(291), 1, sym_block, - STATE(1906), 1, + STATE(2145), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56675] = 4, - ACTIONS(3522), 1, + [56803] = 4, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - ACTIONS(3854), 1, + ACTIONS(3874), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56692] = 7, - ACTIONS(3782), 1, + [56820] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3818), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4075), 1, + ACTIONS(4097), 1, anon_sym_SEMI, - STATE(966), 1, + STATE(478), 1, sym_declaration_list, - STATE(2087), 1, + STATE(2057), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56715] = 7, - ACTIONS(3782), 1, + [56843] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4059), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4077), 1, - anon_sym_SEMI, - ACTIONS(4079), 1, - anon_sym_DASH_GT, - STATE(997), 1, - sym_block, - STATE(2073), 1, + ACTIONS(3924), 1, + anon_sym_COLON, + STATE(341), 1, + sym_declaration_list, + STATE(1831), 1, + sym_trait_bounds, + STATE(2312), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56738] = 7, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3832), 1, + [56866] = 4, + ACTIONS(3526), 1, + anon_sym_COLON_COLON, + ACTIONS(3882), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4065), 1, anon_sym_PLUS, + anon_sym_where, + [56883] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3804), 1, + anon_sym_LT, + ACTIONS(4075), 1, + anon_sym_LBRACE, + STATE(911), 1, + sym_enum_variant_list, + STATE(1870), 1, + sym_type_parameters, + STATE(2155), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56906] = 7, + ACTIONS(3802), 1, + anon_sym_where, ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4099), 1, anon_sym_SEMI, - STATE(299), 1, - sym_declaration_list, - STATE(2110), 1, + ACTIONS(4101), 1, + anon_sym_DASH_GT, + STATE(279), 1, + sym_block, + STATE(2142), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56761] = 4, - ACTIONS(3522), 1, - anon_sym_COLON_COLON, - ACTIONS(3820), 1, - anon_sym_for, + [56929] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3804), 1, + anon_sym_LT, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(902), 1, + sym_field_declaration_list, + STATE(1872), 1, + sym_type_parameters, + STATE(2157), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [56778] = 7, - ACTIONS(3782), 1, + [56952] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4065), 1, - anon_sym_PLUS, ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4083), 1, + ACTIONS(4103), 1, anon_sym_SEMI, - STATE(283), 1, + STATE(422), 1, sym_block, - STATE(1916), 1, + STATE(1890), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56801] = 7, - ACTIONS(3782), 1, + [56975] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4059), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4085), 1, + ACTIONS(4105), 1, anon_sym_SEMI, - STATE(863), 1, + STATE(951), 1, sym_block, - STATE(2049), 1, + STATE(1989), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56824] = 4, - ACTIONS(3522), 1, - anon_sym_COLON_COLON, - ACTIONS(3848), 1, - anon_sym_for, + [56998] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4107), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_declaration_list, + STATE(1999), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 4, - anon_sym_SEMI, + [57021] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3810), 1, anon_sym_LBRACE, + ACTIONS(4073), 1, anon_sym_PLUS, + ACTIONS(4109), 1, + anon_sym_SEMI, + STATE(983), 1, + sym_declaration_list, + STATE(1969), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57044] = 7, + ACTIONS(3802), 1, anon_sym_where, - [56841] = 7, - ACTIONS(3780), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3784), 1, - anon_sym_LT, - STATE(895), 1, - sym_field_declaration_list, - STATE(1825), 1, - sym_type_parameters, - STATE(2164), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4111), 1, + anon_sym_SEMI, + STATE(991), 1, + sym_block, + STATE(1967), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56864] = 7, - ACTIONS(3782), 1, + [57067] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3832), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4087), 1, + ACTIONS(4113), 1, anon_sym_SEMI, - STATE(333), 1, - sym_declaration_list, - STATE(2043), 1, + ACTIONS(4115), 1, + anon_sym_DASH_GT, + STATE(1006), 1, + sym_block, + STATE(1963), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56887] = 7, - ACTIONS(3780), 1, - anon_sym_LBRACE, - ACTIONS(3782), 1, + [57090] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3784), 1, - anon_sym_LT, - STATE(1028), 1, - sym_field_declaration_list, - STATE(1841), 1, - sym_type_parameters, - STATE(2276), 1, + ACTIONS(4071), 1, + anon_sym_LBRACE, + ACTIONS(4117), 1, + anon_sym_SEMI, + ACTIONS(4119), 1, + anon_sym_DASH_GT, + STATE(1008), 1, + sym_block, + STATE(2077), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56910] = 7, - ACTIONS(3893), 1, - anon_sym_COLON, - ACTIONS(3895), 1, - anon_sym_LT, - ACTIONS(4089), 1, + [57113] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4121), 1, anon_sym_SEMI, - ACTIONS(4091), 1, - anon_sym_EQ, - STATE(1842), 1, - sym_type_parameters, - STATE(2429), 1, - sym_trait_bounds, + STATE(319), 1, + sym_declaration_list, + STATE(2095), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56933] = 4, + [57136] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2704), 2, + ACTIONS(3642), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2712), 4, + anon_sym_RPAREN, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_DASH_GT, - ACTIONS(3654), 2, + [57151] = 5, + ACTIONS(4125), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4093), 2, + ACTIONS(4127), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4123), 2, anon_sym_RPAREN, anon_sym_COMMA, - [56950] = 7, - ACTIONS(3782), 1, + [57170] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4073), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4096), 1, + ACTIONS(4129), 1, anon_sym_SEMI, - STATE(470), 1, + ACTIONS(4131), 1, + anon_sym_DASH_GT, + STATE(942), 1, sym_block, - STATE(2117), 1, + STATE(2003), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56973] = 7, - ACTIONS(3516), 1, + [57193] = 7, + ACTIONS(3530), 1, anon_sym_EQ, - ACTIONS(3893), 1, + ACTIONS(3924), 1, anon_sym_COLON, - ACTIONS(4098), 1, + ACTIONS(4133), 1, anon_sym_COMMA, - ACTIONS(4100), 1, + ACTIONS(4135), 1, anon_sym_GT, - STATE(1932), 1, + STATE(2038), 1, sym_trait_bounds, - STATE(2082), 1, + STATE(2086), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56996] = 4, - ACTIONS(3522), 1, + [57216] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(3924), 1, + anon_sym_COLON, + STATE(940), 1, + sym_declaration_list, + STATE(1801), 1, + sym_trait_bounds, + STATE(2225), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57239] = 4, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - ACTIONS(3798), 1, + ACTIONS(3834), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57013] = 7, - ACTIONS(3782), 1, + [57256] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3818), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4102), 1, + ACTIONS(4137), 1, anon_sym_SEMI, - STATE(984), 1, - sym_declaration_list, - STATE(2018), 1, + ACTIONS(4139), 1, + anon_sym_DASH_GT, + STATE(879), 1, + sym_block, + STATE(2109), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57036] = 7, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4104), 1, - sym_identifier, - ACTIONS(4106), 1, - anon_sym_STAR, - STATE(2020), 1, - sym_use_list, - STATE(2461), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57059] = 7, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4104), 1, - sym_identifier, - ACTIONS(4106), 1, - anon_sym_STAR, - STATE(2020), 1, - sym_use_list, - STATE(2351), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57082] = 4, - ACTIONS(4108), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2596), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [57099] = 6, - ACTIONS(820), 1, + [57279] = 6, + ACTIONS(828), 1, anon_sym_DOT_DOT, - ACTIONS(3911), 1, + ACTIONS(3910), 1, sym_identifier, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_ref, - ACTIONS(3919), 1, + ACTIONS(3918), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2279), 2, + STATE(2211), 2, sym_field_pattern, sym_remaining_field_pattern, - [57120] = 7, - ACTIONS(3782), 1, + [57300] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4073), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4141), 1, anon_sym_SEMI, - STATE(280), 1, - sym_block, - STATE(1938), 1, + STATE(863), 1, + sym_declaration_list, + STATE(2129), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57143] = 5, - ACTIONS(4114), 1, - anon_sym_COLON, - ACTIONS(4116), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4112), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57162] = 7, - ACTIONS(3782), 1, + [57323] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3784), 1, - anon_sym_LT, - ACTIONS(4118), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4081), 1, anon_sym_LBRACE, - STATE(274), 1, - sym_enum_variant_list, - STATE(1806), 1, - sym_type_parameters, - STATE(2270), 1, + ACTIONS(4143), 1, + anon_sym_SEMI, + STATE(462), 1, + sym_block, + STATE(2060), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57185] = 7, - ACTIONS(3782), 1, + [57346] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3784), 1, - anon_sym_LT, - ACTIONS(4067), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4081), 1, anon_sym_LBRACE, - STATE(891), 1, - sym_enum_variant_list, - STATE(1849), 1, - sym_type_parameters, - STATE(2143), 1, + ACTIONS(4145), 1, + anon_sym_SEMI, + STATE(333), 1, + sym_block, + STATE(2114), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57208] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3654), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2704), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [57223] = 4, - ACTIONS(4120), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2596), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [57240] = 7, - ACTIONS(3782), 1, + [57369] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4059), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4147), 1, anon_sym_SEMI, - ACTIONS(4124), 1, - anon_sym_DASH_GT, - STATE(872), 1, - sym_block, - STATE(2138), 1, + STATE(845), 1, + sym_declaration_list, + STATE(2136), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57263] = 5, - ACTIONS(4120), 1, - anon_sym_COLON_COLON, - ACTIONS(4128), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4126), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57282] = 7, - ACTIONS(3782), 1, + [57392] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4073), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4130), 1, + ACTIONS(4149), 1, anon_sym_SEMI, - ACTIONS(4132), 1, + ACTIONS(4151), 1, anon_sym_DASH_GT, - STATE(311), 1, + STATE(910), 1, sym_block, - STATE(1892), 1, + STATE(2011), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57305] = 7, - ACTIONS(3782), 1, + [57415] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3832), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4134), 1, + ACTIONS(4153), 1, anon_sym_SEMI, - STATE(349), 1, + STATE(892), 1, sym_declaration_list, - STATE(2126), 1, + STATE(2018), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57328] = 7, - ACTIONS(3782), 1, + [57438] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3832), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4136), 1, + ACTIONS(4155), 1, anon_sym_SEMI, - STATE(416), 1, + STATE(883), 1, sym_declaration_list, - STATE(1959), 1, + STATE(2027), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57351] = 7, - ACTIONS(3782), 1, + [57461] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3832), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4138), 1, + ACTIONS(4157), 1, anon_sym_SEMI, - STATE(407), 1, + STATE(314), 1, sym_declaration_list, - STATE(1955), 1, + STATE(2031), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57374] = 7, - ACTIONS(3782), 1, + [57484] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3818), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4140), 1, + ACTIONS(4159), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(317), 1, sym_declaration_list, - STATE(2132), 1, + STATE(2126), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57397] = 7, - ACTIONS(3782), 1, + [57507] = 7, + ACTIONS(2451), 1, + anon_sym_PLUS, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(4161), 1, + anon_sym_COMMA, + ACTIONS(4163), 1, + anon_sym_GT, + STATE(2045), 1, + aux_sym_type_parameters_repeat1, + STATE(2049), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57530] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3818), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4142), 1, + ACTIONS(4165), 1, anon_sym_SEMI, - STATE(841), 1, + STATE(278), 1, sym_declaration_list, - STATE(2130), 1, + STATE(2032), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57420] = 4, - ACTIONS(3522), 1, + [57553] = 4, + ACTIONS(4167), 1, anon_sym_COLON_COLON, - ACTIONS(3834), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2606), 3, + anon_sym_RPAREN, anon_sym_PLUS, + anon_sym_COMMA, + [57570] = 7, + ACTIONS(3802), 1, anon_sym_where, - [57437] = 7, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3818), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4144), 1, + ACTIONS(4169), 1, anon_sym_SEMI, - STATE(790), 1, + STATE(369), 1, sym_declaration_list, - STATE(2118), 1, + STATE(1899), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57460] = 7, - ACTIONS(3782), 1, + [57593] = 5, + ACTIONS(4065), 1, + anon_sym_COLON, + ACTIONS(4167), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4063), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57612] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3818), 1, + ACTIONS(3804), 1, + anon_sym_LT, + ACTIONS(4171), 1, anon_sym_LBRACE, - ACTIONS(3893), 1, - anon_sym_COLON, - STATE(795), 1, - sym_declaration_list, - STATE(1818), 1, - sym_trait_bounds, - STATE(2172), 1, + STATE(276), 1, + sym_enum_variant_list, + STATE(1866), 1, + sym_type_parameters, + STATE(2148), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57483] = 7, - ACTIONS(3782), 1, + [57635] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2712), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3642), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4173), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57652] = 4, + ACTIONS(4176), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3620), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2758), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [57669] = 4, + ACTIONS(4173), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3642), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2712), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [57686] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3832), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4146), 1, + ACTIONS(4179), 1, anon_sym_SEMI, - STATE(342), 1, + STATE(796), 1, sym_declaration_list, - STATE(2044), 1, + STATE(2100), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57506] = 7, - ACTIONS(3782), 1, + [57709] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4073), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4148), 1, - anon_sym_SEMI, - STATE(406), 1, - sym_block, - STATE(1888), 1, + ACTIONS(3924), 1, + anon_sym_COLON, + STATE(966), 1, + sym_declaration_list, + STATE(1852), 1, + sym_trait_bounds, + STATE(2176), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57529] = 4, - ACTIONS(3522), 1, + [57732] = 7, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(260), 1, + sym_field_declaration_list, + STATE(1787), 1, + sym_type_parameters, + STATE(2287), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57755] = 4, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - ACTIONS(3810), 1, + ACTIONS(3846), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57546] = 7, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3832), 1, - anon_sym_LBRACE, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4150), 1, - anon_sym_SEMI, - STATE(383), 1, - sym_declaration_list, - STATE(1884), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57569] = 7, - ACTIONS(3782), 1, + [57772] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3832), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4152), 1, + ACTIONS(4181), 1, anon_sym_SEMI, - STATE(469), 1, + STATE(382), 1, sym_declaration_list, - STATE(1877), 1, + STATE(1897), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57592] = 7, - ACTIONS(3782), 1, + [57795] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3832), 1, + ACTIONS(3804), 1, + anon_sym_LT, + ACTIONS(4171), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4154), 1, - anon_sym_SEMI, - STATE(475), 1, - sym_declaration_list, - STATE(1931), 1, + STATE(265), 1, + sym_enum_variant_list, + STATE(1833), 1, + sym_type_parameters, + STATE(2295), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57615] = 7, - ACTIONS(3782), 1, + [57818] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4073), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4156), 1, + ACTIONS(4183), 1, anon_sym_SEMI, - ACTIONS(4158), 1, + ACTIONS(4185), 1, anon_sym_DASH_GT, - STATE(356), 1, + STATE(801), 1, sym_block, - STATE(1946), 1, + STATE(2092), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57638] = 7, - ACTIONS(3782), 1, + [57841] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4059), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4160), 1, + ACTIONS(4187), 1, anon_sym_SEMI, - STATE(847), 1, + ACTIONS(4189), 1, + anon_sym_DASH_GT, + STATE(445), 1, sym_block, - STATE(2099), 1, + STATE(1950), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57661] = 7, - ACTIONS(2445), 1, - anon_sym_PLUS, - ACTIONS(3893), 1, - anon_sym_COLON, - ACTIONS(4162), 1, - anon_sym_COMMA, - ACTIONS(4164), 1, - anon_sym_GT, - STATE(1907), 1, - sym_trait_bounds, - STATE(1915), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57684] = 6, - ACTIONS(3175), 1, + [57864] = 6, + ACTIONS(3195), 1, anon_sym_COLON_COLON, - ACTIONS(4162), 1, + ACTIONS(4161), 1, anon_sym_COMMA, - ACTIONS(4164), 1, + ACTIONS(4163), 1, anon_sym_GT, - STATE(1915), 1, + STATE(2045), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 2, + ACTIONS(2606), 2, anon_sym_PLUS, anon_sym_as, - [57705] = 7, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3818), 1, - anon_sym_LBRACE, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4166), 1, - anon_sym_SEMI, - STATE(871), 1, - sym_declaration_list, - STATE(2096), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57728] = 7, - ACTIONS(3782), 1, + [57885] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3818), 1, + ACTIONS(3804), 1, + anon_sym_LT, + ACTIONS(3828), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4168), 1, - anon_sym_SEMI, - STATE(874), 1, - sym_declaration_list, - STATE(2095), 1, + STATE(952), 1, + sym_field_declaration_list, + STATE(1793), 1, + sym_type_parameters, + STATE(2182), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57751] = 7, - ACTIONS(3782), 1, + [57908] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3818), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4170), 1, + ACTIONS(4191), 1, anon_sym_SEMI, - STATE(909), 1, + STATE(348), 1, sym_declaration_list, - STATE(2092), 1, + STATE(2130), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57774] = 7, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3832), 1, - anon_sym_LBRACE, - ACTIONS(3893), 1, + [57931] = 7, + ACTIONS(3924), 1, anon_sym_COLON, - STATE(315), 1, - sym_declaration_list, - STATE(1788), 1, - sym_trait_bounds, - STATE(2295), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57797] = 7, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3818), 1, - anon_sym_LBRACE, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4172), 1, + ACTIONS(3926), 1, + anon_sym_LT, + ACTIONS(4193), 1, anon_sym_SEMI, - STATE(927), 1, - sym_declaration_list, - STATE(2091), 1, - sym_where_clause, + ACTIONS(4195), 1, + anon_sym_EQ, + STATE(1794), 1, + sym_type_parameters, + STATE(2518), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57820] = 7, - ACTIONS(3782), 1, + [57954] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3784), 1, - anon_sym_LT, - ACTIONS(4118), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - STATE(270), 1, - sym_enum_variant_list, - STATE(1775), 1, - sym_type_parameters, - STATE(2227), 1, + ACTIONS(4197), 1, + anon_sym_SEMI, + ACTIONS(4199), 1, + anon_sym_DASH_GT, + STATE(311), 1, + sym_block, + STATE(2040), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57843] = 7, - ACTIONS(3782), 1, + [57977] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4059), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4174), 1, + ACTIONS(4201), 1, anon_sym_SEMI, - ACTIONS(4176), 1, + ACTIONS(4203), 1, anon_sym_DASH_GT, - STATE(941), 1, + STATE(441), 1, sym_block, - STATE(2089), 1, + STATE(1926), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57866] = 4, - ACTIONS(4093), 1, - anon_sym_RBRACK, + [58000] = 4, + ACTIONS(3526), 1, + anon_sym_COLON_COLON, + ACTIONS(3864), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2704), 3, + ACTIONS(2606), 4, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH_GT, - [57883] = 7, - ACTIONS(3782), 1, anon_sym_where, - ACTIONS(4073), 1, + [58017] = 7, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(4178), 1, - anon_sym_SEMI, - ACTIONS(4180), 1, - anon_sym_DASH_GT, - STATE(294), 1, - sym_block, - STATE(1942), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57906] = 4, - ACTIONS(4182), 1, - anon_sym_RBRACK, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4205), 1, + sym_identifier, + ACTIONS(4207), 1, + anon_sym_STAR, + STATE(2116), 1, + sym_use_list, + STATE(2340), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3610), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2764), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [57923] = 7, - ACTIONS(3782), 1, + [58040] = 7, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3784), 1, + ACTIONS(3804), 1, anon_sym_LT, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(262), 1, + STATE(384), 1, sym_field_declaration_list, - STATE(1874), 1, + STATE(1851), 1, sym_type_parameters, - STATE(2243), 1, + STATE(2220), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57946] = 7, - ACTIONS(3893), 1, - anon_sym_COLON, - ACTIONS(4185), 1, - anon_sym_COMMA, - ACTIONS(4187), 1, - anon_sym_GT, - STATE(1907), 1, - sym_trait_bounds, - STATE(1915), 1, - aux_sym_type_parameters_repeat1, - STATE(2017), 1, - aux_sym_for_lifetimes_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57969] = 7, - ACTIONS(3782), 1, + [58063] = 7, + ACTIONS(3802), 1, anon_sym_where, ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4189), 1, + ACTIONS(4209), 1, anon_sym_SEMI, - ACTIONS(4191), 1, - anon_sym_DASH_GT, - STATE(427), 1, + STATE(429), 1, sym_block, - STATE(2140), 1, + STATE(2069), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57992] = 7, - ACTIONS(3782), 1, - anon_sym_where, + [58086] = 4, + ACTIONS(3526), 1, + anon_sym_COLON_COLON, ACTIONS(3818), 1, - anon_sym_LBRACE, - ACTIONS(3893), 1, - anon_sym_COLON, - STATE(964), 1, - sym_declaration_list, - STATE(1814), 1, - sym_trait_bounds, - STATE(2221), 1, - sym_where_clause, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58015] = 7, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(4059), 1, - anon_sym_LBRACE, - ACTIONS(4193), 1, + ACTIONS(2606), 4, anon_sym_SEMI, - ACTIONS(4195), 1, - anon_sym_DASH_GT, - STATE(971), 1, - sym_block, - STATE(2083), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58038] = 7, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(4059), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, anon_sym_PLUS, - ACTIONS(4197), 1, - anon_sym_SEMI, - STATE(982), 1, - sym_block, - STATE(2071), 1, - sym_where_clause, + anon_sym_where, + [58103] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58061] = 7, - ACTIONS(3782), 1, + ACTIONS(3620), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2758), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [58118] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3818), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4199), 1, + ACTIONS(4211), 1, anon_sym_SEMI, - STATE(1010), 1, + STATE(861), 1, sym_declaration_list, - STATE(2065), 1, + STATE(2022), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58084] = 7, - ACTIONS(3782), 1, + [58141] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3818), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4201), 1, + ACTIONS(4213), 1, anon_sym_SEMI, - STATE(1012), 1, + STATE(391), 1, sym_declaration_list, - STATE(2061), 1, + STATE(2019), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58107] = 7, - ACTIONS(3782), 1, + [58164] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4059), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4203), 1, + ACTIONS(4215), 1, anon_sym_SEMI, - STATE(1022), 1, + STATE(985), 1, sym_block, - STATE(2060), 1, + STATE(1948), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58130] = 7, - ACTIONS(3782), 1, + [58187] = 4, + ACTIONS(4217), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2606), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [58204] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4059), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4205), 1, - anon_sym_SEMI, - ACTIONS(4207), 1, - anon_sym_DASH_GT, - STATE(1032), 1, - sym_block, - STATE(2056), 1, + ACTIONS(3924), 1, + anon_sym_COLON, + STATE(435), 1, + sym_declaration_list, + STATE(1868), 1, + sym_trait_bounds, + STATE(2256), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58153] = 7, - ACTIONS(3782), 1, + [58227] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4059), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4209), 1, - anon_sym_SEMI, - STATE(940), 1, - sym_block, - STATE(2052), 1, + ACTIONS(3924), 1, + anon_sym_COLON, + STATE(482), 1, + sym_declaration_list, + STATE(1790), 1, + sym_trait_bounds, + STATE(2194), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58176] = 7, - ACTIONS(3782), 1, + [58250] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4059), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4211), 1, + ACTIONS(4219), 1, anon_sym_SEMI, - STATE(889), 1, + STATE(1036), 1, sym_block, - STATE(2050), 1, + STATE(1954), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58199] = 7, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3832), 1, + [58273] = 7, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4213), 1, - anon_sym_SEMI, - STATE(399), 1, - sym_declaration_list, - STATE(2086), 1, - sym_where_clause, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4205), 1, + sym_identifier, + ACTIONS(4207), 1, + anon_sym_STAR, + STATE(2116), 1, + sym_use_list, + STATE(2338), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58222] = 3, + [58296] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3610), 2, + ACTIONS(2758), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3620), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2764), 4, + ACTIONS(4176), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH_GT, - [58237] = 7, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3832), 1, - anon_sym_LBRACE, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4215), 1, - anon_sym_SEMI, - STATE(351), 1, - sym_declaration_list, - STATE(1993), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58260] = 4, - ACTIONS(3522), 1, - anon_sym_COLON_COLON, - ACTIONS(3870), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2596), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [58277] = 7, - ACTIONS(3782), 1, + [58313] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4073), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4217), 1, + ACTIONS(4221), 1, anon_sym_SEMI, - STATE(300), 1, + ACTIONS(4223), 1, + anon_sym_DASH_GT, + STATE(490), 1, sym_block, - STATE(1921), 1, + STATE(2048), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58300] = 7, - ACTIONS(3893), 1, + [58336] = 7, + ACTIONS(3924), 1, anon_sym_COLON, - ACTIONS(3895), 1, + ACTIONS(3926), 1, anon_sym_LT, - ACTIONS(4219), 1, + ACTIONS(4225), 1, anon_sym_SEMI, - ACTIONS(4221), 1, + ACTIONS(4227), 1, anon_sym_EQ, - STATE(1846), 1, + STATE(1798), 1, sym_type_parameters, - STATE(2418), 1, + STATE(2513), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58323] = 7, - ACTIONS(3782), 1, + [58359] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4073), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4223), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4229), 1, anon_sym_SEMI, - ACTIONS(4225), 1, - anon_sym_DASH_GT, - STATE(460), 1, - sym_block, - STATE(2106), 1, + STATE(852), 1, + sym_declaration_list, + STATE(2042), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58346] = 7, - ACTIONS(3516), 1, - anon_sym_EQ, - ACTIONS(3518), 1, - anon_sym_COMMA, - ACTIONS(3520), 1, - anon_sym_GT, - ACTIONS(3893), 1, - anon_sym_COLON, - STATE(1929), 1, - aux_sym_type_parameters_repeat1, - STATE(1932), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58369] = 7, - ACTIONS(3782), 1, + [58382] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3784), 1, - anon_sym_LT, - ACTIONS(3828), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(386), 1, - sym_field_declaration_list, - STATE(1867), 1, - sym_type_parameters, - STATE(2302), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4231), 1, + anon_sym_SEMI, + STATE(856), 1, + sym_declaration_list, + STATE(2041), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58392] = 4, + [58405] = 4, + ACTIONS(3526), 1, + anon_sym_COLON_COLON, + ACTIONS(3866), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2764), 2, + ACTIONS(2606), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3610), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4182), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58409] = 7, - ACTIONS(3782), 1, anon_sym_where, - ACTIONS(4073), 1, + [58422] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4227), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4233), 1, anon_sym_SEMI, - ACTIONS(4229), 1, - anon_sym_DASH_GT, - STATE(298), 1, - sym_block, - STATE(1976), 1, + STATE(425), 1, + sym_declaration_list, + STATE(1898), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58432] = 7, - ACTIONS(3782), 1, + [58445] = 7, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3832), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(3893), 1, - anon_sym_COLON, - STATE(423), 1, - sym_declaration_list, - STATE(1828), 1, - sym_trait_bounds, - STATE(2216), 1, + ACTIONS(4235), 1, + anon_sym_SEMI, + STATE(406), 1, + sym_block, + STATE(2087), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58455] = 4, - ACTIONS(4231), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2596), 3, - anon_sym_RPAREN, + [58468] = 7, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4071), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, anon_sym_PLUS, - anon_sym_COMMA, - [58472] = 5, - ACTIONS(4128), 1, - anon_sym_COLON, - ACTIONS(4231), 1, - anon_sym_COLON_COLON, + ACTIONS(4237), 1, + anon_sym_SEMI, + STATE(1020), 1, + sym_block, + STATE(1949), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4126), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58491] = 2, + [58491] = 4, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4243), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4233), 5, + ACTIONS(4239), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [58503] = 5, - ACTIONS(3638), 1, + [58507] = 5, + ACTIONS(3652), 1, anon_sym_COLON, - ACTIONS(3640), 1, + ACTIONS(3654), 1, anon_sym_BANG, - ACTIONS(3728), 1, + ACTIONS(3656), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3546), 2, + ACTIONS(3524), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [58521] = 5, - ACTIONS(4235), 1, + [58525] = 5, + ACTIONS(798), 1, anon_sym_RPAREN, - ACTIONS(4237), 1, + ACTIONS(4245), 1, anon_sym_COMMA, - STATE(1961), 1, + STATE(2053), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3419), 2, + ACTIONS(3433), 2, anon_sym_COLON, anon_sym_PIPE, - [58539] = 4, - ACTIONS(4241), 1, - anon_sym_as, - ACTIONS(4243), 1, - anon_sym_COLON_COLON, + [58543] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4239), 3, + ACTIONS(4247), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, [58555] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2984), 5, + ACTIONS(4249), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, + anon_sym_COMMA, [58567] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2968), 5, + ACTIONS(4251), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, + anon_sym_COMMA, [58579] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4245), 5, + ACTIONS(4253), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58591] = 4, - ACTIONS(4241), 1, - anon_sym_as, - ACTIONS(4247), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4239), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [58607] = 4, - ACTIONS(4241), 1, - anon_sym_as, - ACTIONS(4249), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4239), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [58623] = 2, + [58591] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4251), 5, + ACTIONS(4255), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58635] = 6, - ACTIONS(3893), 1, - anon_sym_COLON, - ACTIONS(4162), 1, - anon_sym_COMMA, - ACTIONS(4164), 1, - anon_sym_GT, - STATE(1907), 1, - sym_trait_bounds, - STATE(1915), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58655] = 4, - ACTIONS(4255), 1, - anon_sym_as, + [58603] = 4, ACTIONS(4257), 1, - anon_sym_COLON_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4253), 3, + ACTIONS(2980), 2, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_PLUS, + ACTIONS(3608), 2, anon_sym_COMMA, - [58671] = 4, - ACTIONS(582), 1, + anon_sym_PIPE, + [58619] = 4, + ACTIONS(586), 1, anon_sym_LBRACE, - ACTIONS(4259), 1, + ACTIONS(4260), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(224), 3, + STATE(233), 3, sym_if_expression, sym_if_let_expression, sym_block, - [58687] = 6, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3439), 1, - anon_sym_COLON_COLON, - ACTIONS(3514), 1, - anon_sym_COLON, - STATE(1359), 1, - sym_type_arguments, - STATE(1952), 1, - sym_trait_bounds, + [58635] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58707] = 6, - ACTIONS(4261), 1, - anon_sym_RPAREN, - ACTIONS(4263), 1, + ACTIONS(2834), 5, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(4265), 1, - anon_sym_COMMA, - ACTIONS(4267), 1, - anon_sym_PIPE, - STATE(1992), 1, - aux_sym_tuple_pattern_repeat1, + anon_sym_where, + anon_sym_EQ, + [58647] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58727] = 4, - ACTIONS(4231), 1, + ACTIONS(2814), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [58659] = 4, + ACTIONS(4167), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4269), 2, + ACTIONS(4262), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58743] = 4, - ACTIONS(4271), 1, - anon_sym_RBRACK, + [58675] = 5, + ACTIONS(4264), 1, + anon_sym_RPAREN, + ACTIONS(4267), 1, + anon_sym_COMMA, + STATE(2001), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2990), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3670), 2, - anon_sym_COMMA, + ACTIONS(3433), 2, + anon_sym_COLON, anon_sym_PIPE, - [58759] = 2, + [58693] = 6, + ACTIONS(3429), 1, + anon_sym_COLON_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(3528), 1, + anon_sym_COLON, + STATE(1364), 1, + sym_type_arguments, + STATE(2007), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3938), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - [58771] = 5, - ACTIONS(790), 1, - anon_sym_RPAREN, - ACTIONS(4274), 1, + [58713] = 5, + ACTIONS(3530), 1, + anon_sym_EQ, + ACTIONS(3924), 1, + anon_sym_COLON, + STATE(2038), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4270), 2, anon_sym_COMMA, - STATE(2101), 1, - aux_sym_parameters_repeat1, + anon_sym_GT, + [58731] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3419), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58789] = 5, - ACTIONS(4276), 1, - anon_sym_RPAREN, - ACTIONS(4279), 1, + ACTIONS(4272), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - STATE(1961), 1, - aux_sym_parameters_repeat1, + [58743] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3419), 2, + ACTIONS(3045), 5, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COLON, - anon_sym_PIPE, - [58807] = 6, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3439), 1, - anon_sym_COLON_COLON, - STATE(1359), 1, - sym_type_arguments, - STATE(1369), 1, - sym_parameters, + anon_sym_where, + anon_sym_EQ, + [58755] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58827] = 4, - ACTIONS(284), 1, + ACTIONS(3012), 5, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4282), 1, - anon_sym_if, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [58767] = 6, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(4161), 1, + anon_sym_COMMA, + ACTIONS(4163), 1, + anon_sym_GT, + STATE(2045), 1, + aux_sym_type_parameters_repeat1, + STATE(2049), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1132), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [58843] = 2, + [58787] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2908), 5, + ACTIONS(4274), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [58799] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4276), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [58855] = 5, - ACTIONS(3638), 1, + anon_sym_COMMA, + [58811] = 5, + ACTIONS(3652), 1, anon_sym_COLON, - ACTIONS(3640), 1, + ACTIONS(3654), 1, anon_sym_BANG, - ACTIONS(3642), 1, + ACTIONS(3682), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3546), 2, + ACTIONS(3524), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [58873] = 2, + [58829] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2918), 5, + ACTIONS(4278), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [58885] = 3, + anon_sym_COMMA, + [58841] = 5, + ACTIONS(4280), 1, + anon_sym_RPAREN, + ACTIONS(4282), 1, + anon_sym_COMMA, + STATE(2001), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3670), 2, + ACTIONS(3433), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2990), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [58899] = 2, + [58859] = 6, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3429), 1, + anon_sym_COLON_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + STATE(1364), 1, + sym_type_arguments, + STATE(1384), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4284), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, + [58879] = 3, + ACTIONS(4284), 1, anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2660), 4, + anon_sym_PLUS, anon_sym_COMMA, - [58911] = 4, - ACTIONS(4120), 1, + anon_sym_GT, anon_sym_COLON_COLON, + [58893] = 4, + ACTIONS(2980), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4112), 2, + ACTIONS(3608), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4257), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58927] = 5, + [58909] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, ACTIONS(4286), 1, - anon_sym_RPAREN, - ACTIONS(4288), 1, - anon_sym_COMMA, - STATE(2136), 1, - aux_sym_parameters_repeat1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3419), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58945] = 4, - ACTIONS(4231), 1, + STATE(1091), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [58925] = 4, + ACTIONS(4067), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4112), 2, + ACTIONS(4262), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58961] = 4, - ACTIONS(4120), 1, + [58941] = 4, + ACTIONS(4167), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4269), 2, + ACTIONS(4123), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58957] = 6, + ACTIONS(4288), 1, anon_sym_RPAREN, + ACTIONS(4290), 1, + anon_sym_COLON, + ACTIONS(4292), 1, anon_sym_COMMA, + ACTIONS(4294), 1, + anon_sym_PIPE, + STATE(1970), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, [58977] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 5, + ACTIONS(2862), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, @@ -119230,319 +119579,326 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3000), 5, + ACTIONS(2858), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, [59001] = 5, - ACTIONS(786), 1, + ACTIONS(792), 1, anon_sym_RPAREN, - ACTIONS(4290), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - STATE(2046), 1, + STATE(1972), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3419), 2, + ACTIONS(3433), 2, anon_sym_COLON, anon_sym_PIPE, - [59019] = 2, + [59019] = 4, + ACTIONS(4067), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4292), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4123), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59035] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3608), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2980), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [59031] = 2, + [59049] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4294), 5, + ACTIONS(4298), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59043] = 2, + [59061] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4296), 5, + ACTIONS(4300), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59055] = 2, + [59073] = 4, + ACTIONS(4304), 1, + anon_sym_as, + ACTIONS(4306), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4298), 5, + ACTIONS(4302), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [59067] = 2, + [59089] = 5, + ACTIONS(4308), 1, + anon_sym_RPAREN, + ACTIONS(4310), 1, + anon_sym_COMMA, + STATE(2144), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4300), 5, + ACTIONS(3433), 2, + anon_sym_COLON, + anon_sym_PIPE, + [59107] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3893), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + [59119] = 4, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4312), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4239), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [59079] = 4, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(4302), 1, - anon_sym_if, + [59135] = 6, + ACTIONS(2566), 1, + anon_sym_LPAREN, + ACTIONS(3429), 1, + anon_sym_COLON_COLON, + ACTIONS(3431), 1, + anon_sym_LT2, + STATE(962), 1, + sym_parameters, + STATE(1364), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(156), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [59095] = 6, - ACTIONS(3893), 1, + [59155] = 6, + ACTIONS(3924), 1, anon_sym_COLON, - ACTIONS(4304), 1, + ACTIONS(4314), 1, anon_sym_COMMA, - ACTIONS(4306), 1, + ACTIONS(4316), 1, anon_sym_GT, - STATE(1907), 1, + STATE(2049), 1, sym_trait_bounds, - STATE(2084), 1, + STATE(2088), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59115] = 2, + [59175] = 4, + ACTIONS(4241), 1, + anon_sym_as, + ACTIONS(4318), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4308), 5, + ACTIONS(4239), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [59127] = 2, + [59191] = 4, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(4320), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4310), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [59139] = 2, + STATE(112), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [59207] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4312), 5, + ACTIONS(4322), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59151] = 2, + [59219] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4314), 5, + ACTIONS(4324), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59163] = 2, + [59231] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4316), 5, + ACTIONS(4326), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [59175] = 4, - ACTIONS(2990), 1, - anon_sym_PLUS, + [59243] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4075), 1, + anon_sym_LBRACE, + STATE(1014), 1, + sym_enum_variant_list, + STATE(2192), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59260] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3670), 2, + ACTIONS(3433), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4271), 2, + ACTIONS(4328), 2, anon_sym_RPAREN, anon_sym_COMMA, - [59191] = 3, - ACTIONS(4318), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2708), 4, + [59273] = 5, + ACTIONS(798), 1, + anon_sym_RPAREN, + ACTIONS(4073), 1, anon_sym_PLUS, + ACTIONS(4245), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - [59205] = 6, - ACTIONS(2560), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(3439), 1, - anon_sym_COLON_COLON, - STATE(955), 1, - sym_parameters, - STATE(1359), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59225] = 5, - ACTIONS(3516), 1, - anon_sym_EQ, - ACTIONS(3893), 1, - anon_sym_COLON, - STATE(1932), 1, - sym_trait_bounds, + STATE(2053), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4320), 2, + [59290] = 4, + ACTIONS(4332), 1, anon_sym_COMMA, - anon_sym_GT, - [59243] = 5, - ACTIONS(4322), 1, - anon_sym_LPAREN, - ACTIONS(4324), 1, - anon_sym_LBRACE, - ACTIONS(4326), 1, - anon_sym_LBRACK, - STATE(1399), 1, - sym_delim_token_tree, + STATE(1781), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59260] = 5, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(4118), 1, - anon_sym_LBRACE, - STATE(430), 1, - sym_enum_variant_list, - STATE(2151), 1, - sym_where_clause, + ACTIONS(4330), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [59305] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59277] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(1089), 1, - sym_line_comment, - ACTIONS(4328), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4330), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59292] = 4, - ACTIONS(3893), 1, + ACTIONS(3433), 2, anon_sym_COLON, - STATE(1907), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4332), 2, + anon_sym_PIPE, + ACTIONS(4335), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [59307] = 4, - ACTIONS(3544), 1, + [59318] = 4, + ACTIONS(3522), 1, anon_sym_COLON_COLON, - ACTIONS(3959), 1, + ACTIONS(3932), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3546), 2, + ACTIONS(3524), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59322] = 4, - ACTIONS(3640), 1, - anon_sym_BANG, - ACTIONS(3728), 1, - anon_sym_COLON_COLON, + [59333] = 5, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4337), 1, + anon_sym_RPAREN, + ACTIONS(4339), 1, + anon_sym_COMMA, + STATE(1920), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3546), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59337] = 4, - ACTIONS(4335), 1, - anon_sym_DQUOTE, - STATE(1798), 1, - aux_sym_string_literal_repeat1, + [59350] = 5, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(1697), 1, + sym_parameters, + STATE(2269), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4337), 2, - sym__string_content, - sym_escape_sequence, - [59352] = 4, - ACTIONS(3640), 1, - anon_sym_BANG, - ACTIONS(3760), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + [59367] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(950), 1, sym_line_comment, - ACTIONS(3546), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59367] = 5, - ACTIONS(4339), 1, - anon_sym_LPAREN, ACTIONS(4341), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4343), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59382] = 5, + ACTIONS(3800), 1, anon_sym_LBRACE, - ACTIONS(4343), 1, - anon_sym_LBRACK, - STATE(97), 1, - sym_delim_token_tree, + ACTIONS(3802), 1, + anon_sym_where, + STATE(457), 1, + sym_field_declaration_list, + STATE(2235), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59384] = 5, - ACTIONS(3435), 1, + [59399] = 5, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3784), 1, + ACTIONS(3804), 1, anon_sym_LT, - STATE(1716), 1, + STATE(1720), 1, sym_parameters, - STATE(2268), 1, + STATE(2232), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59401] = 4, + [59416] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1089), 1, + ACTIONS(950), 1, sym_line_comment, ACTIONS(4345), 1, aux_sym_token_repetition_pattern_token1, @@ -119550,6471 +119906,6482 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [59416] = 5, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3784), 1, - anon_sym_LT, - STATE(1702), 1, - sym_parameters, - STATE(2262), 1, - sym_type_parameters, + [59431] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3844), 1, + anon_sym_LBRACE, + STATE(285), 1, + sym_declaration_list, + STATE(2151), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59433] = 4, - ACTIONS(3), 1, + [59448] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3844), 1, + anon_sym_LBRACE, + STATE(345), 1, + sym_declaration_list, + STATE(2313), 1, + sym_where_clause, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1089), 1, sym_line_comment, + [59465] = 5, ACTIONS(4349), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4351), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59448] = 4, - ACTIONS(3), 1, + anon_sym_LPAREN, + ACTIONS(4351), 1, + anon_sym_LBRACE, + ACTIONS(4353), 1, + anon_sym_LBRACK, + STATE(1945), 1, + sym_token_tree, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1089), 1, sym_line_comment, - ACTIONS(4353), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4355), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59463] = 5, - ACTIONS(3782), 1, + [59482] = 5, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3832), 1, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(362), 1, - sym_declaration_list, - STATE(2202), 1, + STATE(920), 1, + sym_field_declaration_list, + STATE(2152), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59480] = 5, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3784), 1, - anon_sym_LT, - STATE(1632), 1, - sym_parameters, - STATE(2274), 1, - sym_type_parameters, + [59499] = 5, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(4355), 1, + anon_sym_SEMI, + ACTIONS(4357), 1, + anon_sym_EQ, + STATE(2565), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59497] = 5, - ACTIONS(4267), 1, + [59516] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(928), 1, + sym_declaration_list, + STATE(2166), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59533] = 5, + ACTIONS(3724), 1, anon_sym_PIPE, - ACTIONS(4357), 1, - anon_sym_SEMI, ACTIONS(4359), 1, - anon_sym_COLON, + anon_sym_SEMI, ACTIONS(4361), 1, + anon_sym_COLON, + ACTIONS(4363), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59514] = 3, - ACTIONS(4363), 1, - anon_sym_in, + [59550] = 5, + ACTIONS(2566), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_LT2, + STATE(960), 1, + sym_parameters, + STATE(1358), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4365), 3, - sym_self, - sym_super, - sym_crate, - [59527] = 3, + [59567] = 5, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(4365), 1, + anon_sym_SEMI, ACTIONS(4367), 1, - anon_sym_in, + anon_sym_EQ, + STATE(2393), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4369), 3, - sym_self, - sym_super, - sym_crate, - [59540] = 5, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3784), 1, - anon_sym_LT, - STATE(1642), 1, - sym_parameters, - STATE(2321), 1, - sym_type_parameters, + [59584] = 5, + ACTIONS(4314), 1, + anon_sym_COMMA, + ACTIONS(4316), 1, + anon_sym_GT, + ACTIONS(4369), 1, + anon_sym_EQ, + STATE(2088), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59557] = 5, - ACTIONS(4065), 1, + [59601] = 5, + ACTIONS(4073), 1, anon_sym_PLUS, ACTIONS(4371), 1, anon_sym_RPAREN, ACTIONS(4373), 1, anon_sym_COMMA, - STATE(1898), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2084), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59574] = 4, - ACTIONS(3544), 1, + [59618] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(998), 1, + sym_declaration_list, + STATE(2246), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59635] = 4, + ACTIONS(3522), 1, anon_sym_COLON_COLON, - ACTIONS(3638), 1, + ACTIONS(3652), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3546), 2, + ACTIONS(3524), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59589] = 4, - ACTIONS(4116), 1, - anon_sym_COLON_COLON, - ACTIONS(4128), 1, + [59650] = 4, + ACTIONS(4065), 1, anon_sym_COLON, + ACTIONS(4127), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59604] = 5, - ACTIONS(4263), 1, - anon_sym_COLON, + [59665] = 5, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(4375), 1, - anon_sym_COMMA, + anon_sym_RPAREN, ACTIONS(4377), 1, - anon_sym_PIPE, - STATE(1927), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59621] = 4, - ACTIONS(4379), 1, - anon_sym_DQUOTE, - STATE(1866), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4381), 2, - sym__string_content, - sym_escape_sequence, - [59636] = 5, - ACTIONS(4339), 1, - anon_sym_LPAREN, - ACTIONS(4341), 1, - anon_sym_LBRACE, - ACTIONS(4343), 1, - anon_sym_LBRACK, - STATE(165), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59653] = 3, + anon_sym_COMMA, + STATE(2002), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3419), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4383), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59666] = 5, - ACTIONS(4385), 1, - anon_sym_LPAREN, - ACTIONS(4387), 1, - anon_sym_LBRACE, - ACTIONS(4389), 1, - anon_sym_LBRACK, - STATE(830), 1, - sym_delim_token_tree, - ACTIONS(3), 2, + [59682] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(950), 1, sym_line_comment, - [59683] = 5, - ACTIONS(2445), 1, + ACTIONS(4379), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4381), 3, anon_sym_PLUS, - ACTIONS(4391), 1, + anon_sym_STAR, + anon_sym_QMARK, + [59697] = 5, + ACTIONS(2451), 1, + anon_sym_PLUS, + ACTIONS(4383), 1, anon_sym_COMMA, - ACTIONS(4393), 1, + ACTIONS(4385), 1, anon_sym_GT, - STATE(1996), 1, + STATE(1946), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59700] = 5, - ACTIONS(4065), 1, + [59714] = 5, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4391), 1, + ACTIONS(4383), 1, anon_sym_COMMA, - ACTIONS(4393), 1, + ACTIONS(4385), 1, anon_sym_GT, - STATE(1996), 1, + STATE(1946), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59717] = 5, - ACTIONS(4065), 1, + [59731] = 5, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4395), 1, + ACTIONS(4308), 1, anon_sym_RPAREN, - ACTIONS(4397), 1, + ACTIONS(4310), 1, anon_sym_COMMA, - STATE(2064), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2144), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59734] = 5, - ACTIONS(4385), 1, - anon_sym_LPAREN, + [59748] = 5, ACTIONS(4387), 1, - anon_sym_LBRACE, + anon_sym_LPAREN, ACTIONS(4389), 1, + anon_sym_LBRACE, + ACTIONS(4391), 1, anon_sym_LBRACK, - STATE(833), 1, + STATE(1061), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59751] = 5, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(4118), 1, - anon_sym_LBRACE, - STATE(473), 1, - sym_enum_variant_list, - STATE(2294), 1, - sym_where_clause, + [59765] = 5, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(1663), 1, + sym_parameters, + STATE(2308), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59782] = 5, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4393), 1, + anon_sym_RPAREN, + ACTIONS(4395), 1, + anon_sym_COMMA, + STATE(1885), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59768] = 4, - ACTIONS(4399), 1, + [59799] = 4, + ACTIONS(4397), 1, anon_sym_DQUOTE, - STATE(1866), 1, + STATE(1849), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4381), 2, + ACTIONS(4399), 2, sym__string_content, sym_escape_sequence, - [59783] = 5, - ACTIONS(4267), 1, - anon_sym_PIPE, - ACTIONS(4401), 1, + [59814] = 5, + ACTIONS(792), 1, anon_sym_RPAREN, - ACTIONS(4403), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4296), 1, anon_sym_COMMA, - STATE(2113), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1972), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59800] = 5, - ACTIONS(4322), 1, - anon_sym_LPAREN, - ACTIONS(4324), 1, + [59831] = 5, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(4326), 1, - anon_sym_LBRACK, - STATE(1403), 1, - sym_delim_token_tree, + ACTIONS(4401), 1, + sym_identifier, + ACTIONS(4403), 1, + anon_sym_STAR, + STATE(2107), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59817] = 4, + [59848] = 5, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(4405), 1, - anon_sym_DQUOTE, - STATE(1807), 1, - aux_sym_string_literal_repeat1, + anon_sym_RPAREN, + ACTIONS(4407), 1, + anon_sym_COMMA, + STATE(2112), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4407), 2, - sym__string_content, - sym_escape_sequence, - [59832] = 5, - ACTIONS(4267), 1, + [59865] = 5, + ACTIONS(4294), 1, anon_sym_PIPE, ACTIONS(4409), 1, - anon_sym_RBRACK, + anon_sym_SEMI, ACTIONS(4411), 1, - anon_sym_COMMA, - STATE(2123), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59849] = 3, + anon_sym_COLON, + ACTIONS(4413), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3419), 2, + [59882] = 5, + ACTIONS(4290), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4413), 2, - anon_sym_RPAREN, + ACTIONS(4415), 1, anon_sym_COMMA, - [59862] = 4, ACTIONS(4417), 1, - anon_sym_COMMA, - STATE(1813), 1, - aux_sym_where_clause_repeat1, + anon_sym_PIPE, + STATE(1931), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4415), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [59877] = 5, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3818), 1, - anon_sym_LBRACE, - STATE(1029), 1, - sym_declaration_list, - STATE(2242), 1, - sym_where_clause, + [59899] = 4, + ACTIONS(4419), 1, + anon_sym_DQUOTE, + STATE(1849), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59894] = 5, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4420), 1, - anon_sym_RPAREN, - ACTIONS(4422), 1, - anon_sym_COMMA, - STATE(2045), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, + ACTIONS(4399), 2, + sym__string_content, + sym_escape_sequence, + [59914] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(950), 1, sym_line_comment, - [59911] = 5, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3818), 1, - anon_sym_LBRACE, - STATE(963), 1, - sym_declaration_list, - STATE(2220), 1, - sym_where_clause, + ACTIONS(4421), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4423), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59929] = 5, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4425), 1, + anon_sym_COMMA, + ACTIONS(4427), 1, + anon_sym_GT, + STATE(2113), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59928] = 5, - ACTIONS(4261), 1, + [59946] = 5, + ACTIONS(4288), 1, anon_sym_RPAREN, - ACTIONS(4265), 1, + ACTIONS(4292), 1, anon_sym_COMMA, - ACTIONS(4267), 1, + ACTIONS(4294), 1, anon_sym_PIPE, - STATE(1992), 1, + STATE(1970), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59945] = 5, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3818), 1, - anon_sym_LBRACE, - STATE(932), 1, - sym_declaration_list, - STATE(2215), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59962] = 5, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3832), 1, + [59963] = 5, + ACTIONS(4429), 1, + anon_sym_LPAREN, + ACTIONS(4431), 1, anon_sym_LBRACE, - STATE(318), 1, - sym_declaration_list, - STATE(2297), 1, - sym_where_clause, + ACTIONS(4433), 1, + anon_sym_LBRACK, + STATE(176), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59979] = 5, - ACTIONS(4162), 1, + [59980] = 5, + ACTIONS(2451), 1, + anon_sym_PLUS, + ACTIONS(4425), 1, anon_sym_COMMA, - ACTIONS(4164), 1, + ACTIONS(4427), 1, anon_sym_GT, - ACTIONS(4424), 1, - anon_sym_EQ, - STATE(1915), 1, - aux_sym_type_parameters_repeat1, + STATE(2113), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59996] = 5, - ACTIONS(790), 1, - anon_sym_RPAREN, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4274), 1, - anon_sym_COMMA, - STATE(2101), 1, - aux_sym_parameters_repeat1, + [59997] = 5, + ACTIONS(3273), 1, + anon_sym_LBRACE, + ACTIONS(4205), 1, + sym_identifier, + ACTIONS(4207), 1, + anon_sym_STAR, + STATE(2116), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60013] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, + [60014] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4426), 3, + ACTIONS(4330), 3, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, + [60027] = 5, + ACTIONS(3724), 1, anon_sym_PIPE, - [60026] = 5, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3832), 1, - anon_sym_LBRACE, - STATE(390), 1, - sym_declaration_list, - STATE(2230), 1, - sym_where_clause, + ACTIONS(4435), 1, + anon_sym_SEMI, + ACTIONS(4437), 1, + anon_sym_COLON, + ACTIONS(4439), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60043] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, + [60044] = 3, + ACTIONS(4441), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4428), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [60056] = 5, - ACTIONS(3780), 1, + ACTIONS(4443), 3, + sym_self, + sym_super, + sym_crate, + [60057] = 5, + ACTIONS(4387), 1, + anon_sym_LPAREN, + ACTIONS(4389), 1, anon_sym_LBRACE, - ACTIONS(3782), 1, - anon_sym_where, - STATE(826), 1, - sym_field_declaration_list, - STATE(2184), 1, - sym_where_clause, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(1134), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60073] = 5, - ACTIONS(3782), 1, + [60074] = 5, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4067), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(935), 1, - sym_enum_variant_list, - STATE(2179), 1, + STATE(936), 1, + sym_declaration_list, + STATE(2224), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60090] = 5, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3818), 1, - anon_sym_LBRACE, - STATE(806), 1, - sym_declaration_list, - STATE(2171), 1, - sym_where_clause, + [60091] = 4, + ACTIONS(4447), 1, + anon_sym_COMMA, + STATE(1830), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60107] = 5, - ACTIONS(3782), 1, + ACTIONS(4445), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [60106] = 5, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3832), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(400), 1, + STATE(419), 1, sym_declaration_list, - STATE(2310), 1, + STATE(2263), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60124] = 5, - ACTIONS(3782), 1, + [60123] = 4, + ACTIONS(4450), 1, + anon_sym_DQUOTE, + STATE(1812), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4452), 2, + sym__string_content, + sym_escape_sequence, + [60138] = 5, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3818), 1, + ACTIONS(4171), 1, anon_sym_LBRACE, - STATE(797), 1, - sym_declaration_list, - STATE(2166), 1, + STATE(446), 1, + sym_enum_variant_list, + STATE(2238), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60141] = 4, - ACTIONS(3640), 1, - anon_sym_BANG, - ACTIONS(3642), 1, - anon_sym_COLON_COLON, + [60155] = 5, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(4454), 1, + anon_sym_RBRACK, + ACTIONS(4456), 1, + anon_sym_COMMA, + STATE(1960), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3546), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60156] = 5, + [60172] = 5, + ACTIONS(3425), 1, + anon_sym_LPAREN, ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3435), 1, - anon_sym_LPAREN, - STATE(1360), 1, + STATE(1358), 1, sym_type_arguments, - STATE(1381), 1, + STATE(1390), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60173] = 5, - ACTIONS(3624), 1, - anon_sym_PIPE, - ACTIONS(4430), 1, - anon_sym_SEMI, - ACTIONS(4432), 1, - anon_sym_COLON, - ACTIONS(4434), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60190] = 5, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3832), 1, - anon_sym_LBRACE, - STATE(421), 1, - sym_declaration_list, - STATE(2217), 1, - sym_where_clause, + [60189] = 4, + ACTIONS(4458), 1, + anon_sym_DQUOTE, + STATE(1860), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60207] = 5, - ACTIONS(2445), 1, - anon_sym_PLUS, - ACTIONS(4436), 1, - anon_sym_COMMA, - ACTIONS(4438), 1, - anon_sym_GT, - STATE(2141), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4460), 2, + sym__string_content, + sym_escape_sequence, + [60204] = 4, + ACTIONS(3654), 1, + anon_sym_BANG, + ACTIONS(3682), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60224] = 5, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4436), 1, - anon_sym_COMMA, - ACTIONS(4438), 1, - anon_sym_GT, - STATE(2141), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60219] = 4, + ACTIONS(4462), 1, + anon_sym_DQUOTE, + STATE(1818), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60241] = 5, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4235), 1, - anon_sym_RPAREN, - ACTIONS(4237), 1, - anon_sym_COMMA, - STATE(1961), 1, - aux_sym_parameters_repeat1, + ACTIONS(4464), 2, + sym__string_content, + sym_escape_sequence, + [60234] = 5, + ACTIONS(4466), 1, + anon_sym_LPAREN, + ACTIONS(4468), 1, + anon_sym_LBRACE, + ACTIONS(4470), 1, + anon_sym_LBRACK, + STATE(1404), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60258] = 5, - ACTIONS(4065), 1, + [60251] = 5, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4286), 1, + ACTIONS(4280), 1, anon_sym_RPAREN, - ACTIONS(4288), 1, + ACTIONS(4282), 1, anon_sym_COMMA, - STATE(2136), 1, + STATE(2001), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60275] = 5, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4440), 1, - anon_sym_RPAREN, - ACTIONS(4442), 1, - anon_sym_COMMA, - STATE(1977), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60292] = 5, - ACTIONS(3782), 1, + [60268] = 5, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3832), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(319), 1, + STATE(455), 1, sym_declaration_list, - STATE(2149), 1, + STATE(2195), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60309] = 4, - ACTIONS(3893), 1, - anon_sym_COLON, - STATE(1907), 1, - sym_trait_bounds, + [60285] = 4, + ACTIONS(4472), 1, + anon_sym_COMMA, + STATE(1830), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4444), 2, - anon_sym_COMMA, - anon_sym_GT, - [60324] = 5, - ACTIONS(3780), 1, + ACTIONS(2930), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3782), 1, - anon_sym_where, - STATE(915), 1, - sym_field_declaration_list, - STATE(2189), 1, - sym_where_clause, + [60300] = 5, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(4474), 1, + anon_sym_RPAREN, + ACTIONS(4476), 1, + anon_sym_COMMA, + STATE(1959), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60341] = 5, - ACTIONS(3893), 1, + [60317] = 4, + ACTIONS(3522), 1, + anon_sym_COLON_COLON, + ACTIONS(4478), 1, anon_sym_COLON, - ACTIONS(4446), 1, - anon_sym_SEMI, - ACTIONS(4448), 1, - anon_sym_EQ, - STATE(2532), 1, - sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60358] = 5, - ACTIONS(3782), 1, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60332] = 5, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(3818), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(921), 1, + STATE(434), 1, sym_declaration_list, - STATE(2198), 1, + STATE(2260), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60375] = 5, - ACTIONS(3624), 1, - anon_sym_PIPE, - ACTIONS(4450), 1, - anon_sym_SEMI, - ACTIONS(4452), 1, + [60349] = 4, + ACTIONS(4125), 1, anon_sym_COLON, - ACTIONS(4454), 1, - anon_sym_EQ, + ACTIONS(4127), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60392] = 5, - ACTIONS(2560), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_LT2, - STATE(950), 1, - sym_parameters, - STATE(1360), 1, - sym_type_arguments, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60364] = 4, + ACTIONS(3654), 1, + anon_sym_BANG, + ACTIONS(3656), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60409] = 5, - ACTIONS(3893), 1, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60379] = 3, + ACTIONS(4480), 1, anon_sym_COLON, - ACTIONS(4456), 1, - anon_sym_SEMI, - ACTIONS(4458), 1, - anon_sym_EQ, - STATE(2334), 1, - sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60426] = 5, - ACTIONS(4304), 1, + ACTIONS(3724), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4306), 1, - anon_sym_GT, - ACTIONS(4424), 1, - anon_sym_EQ, - STATE(2084), 1, - aux_sym_type_parameters_repeat1, + anon_sym_PIPE, + [60392] = 4, + ACTIONS(4482), 1, + anon_sym_DQUOTE, + STATE(1849), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60443] = 5, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4460), 1, - anon_sym_RPAREN, - ACTIONS(4462), 1, - anon_sym_COMMA, - STATE(2080), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4484), 2, + sym__string_content, + sym_escape_sequence, + [60407] = 4, + ACTIONS(3654), 1, + anon_sym_BANG, + ACTIONS(3750), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60460] = 5, - ACTIONS(3782), 1, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60422] = 5, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(4067), 1, + STATE(331), 1, + sym_field_declaration_list, + STATE(2309), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60439] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(1000), 1, - sym_enum_variant_list, - STATE(2237), 1, + STATE(898), 1, + sym_declaration_list, + STATE(2219), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60477] = 5, - ACTIONS(4464), 1, - anon_sym_LPAREN, - ACTIONS(4466), 1, + [60456] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4468), 1, - anon_sym_LBRACK, - STATE(1052), 1, - sym_delim_token_tree, + STATE(809), 1, + sym_declaration_list, + STATE(2170), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60473] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60494] = 5, + ACTIONS(4487), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [60486] = 5, ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3893), 1, + ACTIONS(3924), 1, anon_sym_COLON, - STATE(1360), 1, + STATE(1358), 1, sym_type_arguments, - STATE(1951), 1, + STATE(2017), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60511] = 4, - ACTIONS(4470), 1, - anon_sym_DQUOTE, - STATE(1866), 1, - aux_sym_string_literal_repeat1, + [60503] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4381), 2, - sym__string_content, - sym_escape_sequence, - [60526] = 5, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(4472), 1, + ACTIONS(4489), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [60516] = 4, + ACTIONS(2323), 1, + anon_sym_POUND, + ACTIONS(4491), 1, sym_identifier, - ACTIONS(4474), 1, - anon_sym_STAR, - STATE(2032), 1, - sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60543] = 4, - ACTIONS(4478), 1, + STATE(1140), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [60531] = 5, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(1704), 1, + sym_parameters, + STATE(2296), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60548] = 4, + ACTIONS(4495), 1, anon_sym_COMMA, - STATE(1860), 1, + STATE(1842), 1, aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4476), 2, + ACTIONS(4493), 2, anon_sym_SEMI, anon_sym_LBRACE, - [60558] = 3, - ACTIONS(4267), 1, - anon_sym_PIPE, + [60563] = 4, + ACTIONS(4497), 1, + anon_sym_DQUOTE, + STATE(1849), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4480), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [60571] = 5, - ACTIONS(4267), 1, - anon_sym_PIPE, - ACTIONS(4482), 1, - anon_sym_SEMI, - ACTIONS(4484), 1, - anon_sym_COLON, - ACTIONS(4486), 1, - anon_sym_EQ, + ACTIONS(4399), 2, + sym__string_content, + sym_escape_sequence, + [60578] = 3, + ACTIONS(4499), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60588] = 5, - ACTIONS(786), 1, - anon_sym_RPAREN, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4290), 1, + ACTIONS(4501), 3, + sym_self, + sym_super, + sym_crate, + [60591] = 5, + ACTIONS(4161), 1, anon_sym_COMMA, - STATE(2046), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60605] = 5, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(4104), 1, - sym_identifier, - ACTIONS(4106), 1, - anon_sym_STAR, - STATE(2020), 1, - sym_use_list, + ACTIONS(4163), 1, + anon_sym_GT, + ACTIONS(4369), 1, + anon_sym_EQ, + STATE(2045), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60622] = 5, - ACTIONS(4464), 1, - anon_sym_LPAREN, + [60608] = 5, ACTIONS(4466), 1, - anon_sym_LBRACE, + anon_sym_LPAREN, ACTIONS(4468), 1, + anon_sym_LBRACE, + ACTIONS(4470), 1, anon_sym_LBRACK, - STATE(1128), 1, + STATE(1413), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60639] = 4, - ACTIONS(4488), 1, - anon_sym_COMMA, - STATE(1813), 1, - aux_sym_where_clause_repeat1, + [60625] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(790), 1, + sym_declaration_list, + STATE(2175), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2866), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [60654] = 4, - ACTIONS(4490), 1, - anon_sym_DQUOTE, - STATE(1852), 1, - aux_sym_string_literal_repeat1, + [60642] = 4, + ACTIONS(3924), 1, + anon_sym_COLON, + STATE(2049), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4492), 2, - sym__string_content, - sym_escape_sequence, - [60669] = 4, - ACTIONS(3544), 1, - anon_sym_COLON_COLON, - ACTIONS(4494), 1, - anon_sym_COLON, + ACTIONS(4503), 2, + anon_sym_COMMA, + anon_sym_GT, + [60657] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4171), 1, + anon_sym_LBRACE, + STATE(469), 1, + sym_enum_variant_list, + STATE(2326), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3546), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60684] = 4, - ACTIONS(4114), 1, - anon_sym_COLON, - ACTIONS(4116), 1, - anon_sym_COLON_COLON, + [60674] = 5, + ACTIONS(4429), 1, + anon_sym_LPAREN, + ACTIONS(4431), 1, + anon_sym_LBRACE, + ACTIONS(4433), 1, + anon_sym_LBRACK, + STATE(97), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60699] = 3, - ACTIONS(4496), 1, - anon_sym_COLON, + [60691] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(3844), 1, + anon_sym_LBRACE, + STATE(258), 1, + sym_declaration_list, + STATE(2201), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3624), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [60712] = 5, - ACTIONS(4498), 1, + [60708] = 5, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(4500), 1, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(1698), 1, + sym_parameters, + STATE(2272), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60725] = 5, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4075), 1, anon_sym_LBRACE, - ACTIONS(4502), 1, - anon_sym_LBRACK, - STATE(2097), 1, - sym_token_tree, + STATE(789), 1, + sym_enum_variant_list, + STATE(2183), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60729] = 4, - ACTIONS(4504), 1, - anon_sym_DQUOTE, - STATE(1866), 1, - aux_sym_string_literal_repeat1, + [60742] = 4, + ACTIONS(3924), 1, + anon_sym_COLON, + STATE(2049), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4506), 2, - sym__string_content, - sym_escape_sequence, - [60744] = 5, - ACTIONS(3782), 1, + ACTIONS(4505), 2, + anon_sym_COMMA, + anon_sym_GT, + [60757] = 5, + ACTIONS(3802), 1, anon_sym_where, ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(306), 1, + STATE(820), 1, sym_field_declaration_list, - STATE(2154), 1, + STATE(2188), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60761] = 4, - ACTIONS(4509), 1, - anon_sym_COMMA, - STATE(1868), 1, - aux_sym_tuple_pattern_repeat1, + [60774] = 5, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(4508), 1, + anon_sym_SEMI, + ACTIONS(4510), 1, + anon_sym_COLON, + ACTIONS(4512), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4480), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [60776] = 5, - ACTIONS(3435), 1, + [60791] = 5, + ACTIONS(4514), 1, anon_sym_LPAREN, - ACTIONS(3784), 1, - anon_sym_LT, - STATE(1696), 1, - sym_parameters, - STATE(2187), 1, - sym_type_parameters, + ACTIONS(4516), 1, + anon_sym_LBRACE, + ACTIONS(4518), 1, + anon_sym_LBRACK, + STATE(844), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60793] = 3, - ACTIONS(4065), 1, + [60808] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4512), 3, + ACTIONS(4520), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [60806] = 4, - ACTIONS(2317), 1, - anon_sym_POUND, + [60821] = 5, ACTIONS(4514), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1135), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [60821] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, + anon_sym_LPAREN, + ACTIONS(4516), 1, + anon_sym_LBRACE, + ACTIONS(4518), 1, + anon_sym_LBRACK, + STATE(849), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4516), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [60834] = 5, - ACTIONS(3435), 1, + [60838] = 5, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3784), 1, + ACTIONS(3804), 1, anon_sym_LT, - STATE(1700), 1, + STATE(1667), 1, sym_parameters, - STATE(2208), 1, + STATE(2254), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60851] = 5, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(442), 1, - sym_field_declaration_list, - STATE(2162), 1, - sym_where_clause, + [60855] = 4, + ACTIONS(4522), 1, + anon_sym_DQUOTE, + STATE(1880), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60868] = 3, - ACTIONS(4231), 1, - anon_sym_COLON_COLON, + ACTIONS(4524), 2, + sym__string_content, + sym_escape_sequence, + [60870] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60880] = 4, - ACTIONS(4162), 1, + ACTIONS(4526), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4164), 1, - anon_sym_GT, - STATE(1915), 1, - aux_sym_type_parameters_repeat1, + anon_sym_PIPE, + [60883] = 4, + ACTIONS(4528), 1, + anon_sym_DQUOTE, + STATE(1849), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60894] = 4, - ACTIONS(3832), 1, - anon_sym_LBRACE, - ACTIONS(4518), 1, - anon_sym_SEMI, - STATE(459), 1, - sym_declaration_list, + ACTIONS(4399), 2, + sym__string_content, + sym_escape_sequence, + [60898] = 4, + ACTIONS(4041), 1, + anon_sym_RBRACE, + ACTIONS(4530), 1, + anon_sym_COMMA, + STATE(1980), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60908] = 2, + [60912] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4532), 1, + anon_sym_SEMI, + ACTIONS(4534), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4520), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [60918] = 3, - ACTIONS(4263), 1, + [60926] = 3, + ACTIONS(4538), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4522), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [60930] = 4, - ACTIONS(4522), 1, - anon_sym_PIPE, - ACTIONS(4524), 1, + ACTIONS(4536), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1880), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60944] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4065), 1, + [60938] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - STATE(1044), 1, - sym_block, + ACTIONS(4540), 1, + anon_sym_SEMI, + ACTIONS(4542), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60958] = 4, - ACTIONS(3856), 1, - anon_sym_RBRACE, - ACTIONS(4527), 1, + [60952] = 4, + ACTIONS(4544), 1, + anon_sym_RPAREN, + ACTIONS(4546), 1, anon_sym_COMMA, - STATE(2139), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2010), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60972] = 4, - ACTIONS(4529), 1, + [60966] = 4, + ACTIONS(4548), 1, sym_identifier, - ACTIONS(4531), 1, - anon_sym_ref, - ACTIONS(4533), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60986] = 4, - ACTIONS(3832), 1, - anon_sym_LBRACE, - ACTIONS(4535), 1, - anon_sym_SEMI, - STATE(336), 1, - sym_declaration_list, + ACTIONS(4550), 1, + anon_sym_await, + ACTIONS(4552), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61000] = 4, - ACTIONS(4537), 1, + [60980] = 4, + ACTIONS(2574), 1, + anon_sym_LT2, + ACTIONS(4554), 1, sym_identifier, - ACTIONS(4539), 1, - anon_sym_ref, - ACTIONS(4541), 1, - sym_mutable_specifier, + STATE(919), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61014] = 4, - ACTIONS(4543), 1, - sym_identifier, - ACTIONS(4545), 1, - anon_sym_ref, - ACTIONS(4547), 1, - sym_mutable_specifier, + [60994] = 4, + ACTIONS(4556), 1, + anon_sym_for, + ACTIONS(4558), 1, + anon_sym_loop, + ACTIONS(4560), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61028] = 4, - ACTIONS(4549), 1, - anon_sym_RPAREN, - ACTIONS(4551), 1, + [61008] = 4, + ACTIONS(3836), 1, + anon_sym_RBRACE, + ACTIONS(4562), 1, anon_sym_COMMA, - STATE(1887), 1, - aux_sym_meta_arguments_repeat1, + STATE(2026), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61042] = 4, - ACTIONS(4073), 1, + [61022] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4554), 1, + ACTIONS(4564), 1, anon_sym_SEMI, - STATE(413), 1, + STATE(414), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61056] = 4, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4556), 1, - anon_sym_SEMI, - ACTIONS(4558), 1, - anon_sym_EQ, + [61036] = 4, + ACTIONS(3836), 1, + anon_sym_RBRACE, + ACTIONS(4562), 1, + anon_sym_COMMA, + STATE(2028), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61070] = 4, - ACTIONS(3784), 1, - anon_sym_LT, - ACTIONS(4560), 1, + [61050] = 3, + ACTIONS(3522), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3524), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61062] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4566), 1, + sym_identifier, + STATE(2340), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61076] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4568), 1, + anon_sym_SEMI, + ACTIONS(4570), 1, anon_sym_EQ, - STATE(2529), 1, - sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61084] = 4, + [61090] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - STATE(1063), 1, + STATE(1133), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61098] = 4, + [61104] = 4, ACTIONS(4073), 1, - anon_sym_LBRACE, - ACTIONS(4562), 1, + anon_sym_PLUS, + ACTIONS(4572), 1, anon_sym_SEMI, - STATE(337), 1, - sym_block, + ACTIONS(4574), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61112] = 2, + [61118] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4576), 1, + anon_sym_SEMI, + STATE(476), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4564), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61122] = 2, + [61132] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4578), 1, + anon_sym_SEMI, + STATE(284), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2415), 3, + [61146] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4580), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [61132] = 3, - ACTIONS(4267), 1, - anon_sym_PIPE, + STATE(330), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4566), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61144] = 3, - ACTIONS(4065), 1, + [61160] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4568), 2, - anon_sym_RPAREN, + ACTIONS(4582), 2, anon_sym_COMMA, - [61156] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, + anon_sym_GT, + [61172] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4584), 1, + sym_identifier, + STATE(2340), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4570), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61168] = 4, - ACTIONS(4572), 1, - anon_sym_RPAREN, - ACTIONS(4574), 1, - anon_sym_COMMA, - STATE(1974), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [61186] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4584), 1, + sym_identifier, + STATE(2338), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61182] = 3, - ACTIONS(4576), 1, - sym_identifier, + [61200] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4578), 2, - anon_sym_default, - anon_sym_union, - [61194] = 4, - ACTIONS(3784), 1, - anon_sym_LT, - ACTIONS(4580), 1, - anon_sym_EQ, - STATE(2479), 1, - sym_type_parameters, + ACTIONS(4586), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [61210] = 4, + ACTIONS(4503), 1, + anon_sym_GT, + ACTIONS(4588), 1, + anon_sym_COMMA, + STATE(1904), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61208] = 2, + [61224] = 4, + ACTIONS(3804), 1, + anon_sym_LT, + ACTIONS(4591), 1, + anon_sym_EQ, + STATE(2417), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4582), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + [61238] = 4, + ACTIONS(4593), 1, + anon_sym_RBRACE, + ACTIONS(4595), 1, anon_sym_COMMA, - [61218] = 3, - ACTIONS(4108), 1, - anon_sym_COLON_COLON, + STATE(1906), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61230] = 4, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(4584), 1, - anon_sym_SEMI, - STATE(2556), 1, - sym_where_clause, + [61252] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61244] = 4, - ACTIONS(3832), 1, + ACTIONS(4598), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [61262] = 4, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4586), 1, + ACTIONS(4600), 1, anon_sym_SEMI, - STATE(268), 1, + STATE(263), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61258] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, + [61276] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4588), 2, + ACTIONS(4602), 3, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [61270] = 4, - ACTIONS(4073), 1, - anon_sym_LBRACE, - ACTIONS(4590), 1, - anon_sym_SEMI, - STATE(256), 1, - sym_block, + [61286] = 4, + ACTIONS(4604), 1, + anon_sym_RBRACE, + ACTIONS(4606), 1, + anon_sym_COMMA, + STATE(2024), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61284] = 2, + [61300] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4608), 1, + sym_identifier, + STATE(2338), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4592), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [61294] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, + [61314] = 4, + ACTIONS(3528), 1, + anon_sym_COLON, + ACTIONS(3538), 1, + anon_sym_COLON_COLON, + STATE(2017), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4594), 2, + [61328] = 4, + ACTIONS(4610), 1, + anon_sym_RPAREN, + ACTIONS(4612), 1, anon_sym_COMMA, - anon_sym_GT, - [61306] = 4, - ACTIONS(4596), 1, - anon_sym_for, - ACTIONS(4598), 1, - anon_sym_loop, - ACTIONS(4600), 1, - anon_sym_while, + STATE(2039), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61320] = 4, - ACTIONS(3580), 1, + [61342] = 4, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(3891), 1, + ACTIONS(3961), 1, anon_sym_BANG, - ACTIONS(4602), 1, + ACTIONS(4614), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61334] = 3, - ACTIONS(4120), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61346] = 2, + [61356] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4604), 3, + ACTIONS(4616), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [61356] = 3, - ACTIONS(4267), 1, - anon_sym_PIPE, + [61366] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4606), 2, - anon_sym_RBRACE, + ACTIONS(4618), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [61368] = 4, - ACTIONS(2624), 1, - anon_sym_LBRACE, - ACTIONS(4608), 1, - anon_sym_COLON_COLON, - STATE(1112), 1, - sym_field_initializer_list, + [61376] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4566), 1, + sym_identifier, + STATE(2338), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61382] = 4, - ACTIONS(3842), 1, - anon_sym_GT, - ACTIONS(4610), 1, - anon_sym_COMMA, - STATE(2039), 1, - aux_sym_type_parameters_repeat1, + [61390] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4608), 1, + sym_identifier, + STATE(2340), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61396] = 4, - ACTIONS(4073), 1, - anon_sym_LBRACE, - ACTIONS(4612), 1, - anon_sym_SEMI, - STATE(295), 1, - sym_block, + [61404] = 3, + ACTIONS(4369), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61410] = 4, - ACTIONS(4614), 1, - anon_sym_RBRACE, - ACTIONS(4616), 1, + ACTIONS(4503), 2, anon_sym_COMMA, - STATE(1882), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61424] = 4, - ACTIONS(384), 1, + anon_sym_GT, + [61416] = 4, + ACTIONS(2528), 1, anon_sym_RPAREN, - ACTIONS(3211), 1, + ACTIONS(4620), 1, anon_sym_COMMA, - STATE(2109), 1, - aux_sym_arguments_repeat1, + STATE(1936), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61438] = 4, + [61430] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4618), 1, + ACTIONS(4622), 1, anon_sym_move, - STATE(1051), 1, + STATE(1106), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61452] = 4, - ACTIONS(544), 1, - anon_sym_RBRACK, - ACTIONS(4620), 1, - anon_sym_COMMA, - STATE(1962), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61466] = 4, - ACTIONS(4073), 1, - anon_sym_LBRACE, - ACTIONS(4622), 1, - anon_sym_SEMI, - STATE(359), 1, - sym_block, + [61444] = 3, + ACTIONS(4127), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61480] = 3, - ACTIONS(3175), 1, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61456] = 4, + ACTIONS(3526), 1, anon_sym_COLON_COLON, + ACTIONS(3528), 1, + anon_sym_COLON, + STATE(2017), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4624), 2, - anon_sym_RPAREN, + [61470] = 4, + ACTIONS(4624), 1, + anon_sym_RBRACE, + ACTIONS(4626), 1, anon_sym_COMMA, - [61492] = 3, - ACTIONS(4628), 1, - anon_sym_COLON, + STATE(1924), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4626), 2, + [61484] = 4, + ACTIONS(4629), 1, anon_sym_RBRACE, + ACTIONS(4631), 1, anon_sym_COMMA, - [61504] = 4, - ACTIONS(4267), 1, - anon_sym_PIPE, - ACTIONS(4630), 1, - anon_sym_EQ_GT, - ACTIONS(4632), 1, - anon_sym_if, + STATE(2146), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61518] = 2, + [61498] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + anon_sym_SEMI, + STATE(367), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4634), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61528] = 4, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4636), 1, - anon_sym_SEMI, - ACTIONS(4638), 1, - anon_sym_EQ, + [61512] = 4, + ACTIONS(4635), 1, + sym_identifier, + ACTIONS(4637), 1, + anon_sym_ref, + ACTIONS(4639), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61542] = 4, - ACTIONS(4375), 1, - anon_sym_COMMA, - ACTIONS(4640), 1, - anon_sym_PIPE, - STATE(1880), 1, - aux_sym_closure_parameters_repeat1, + [61526] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61556] = 3, - ACTIONS(3544), 1, + ACTIONS(4641), 2, + anon_sym_COMMA, + anon_sym_GT, + [61538] = 4, + ACTIONS(2634), 1, + anon_sym_LBRACE, + ACTIONS(4643), 1, anon_sym_COLON_COLON, + STATE(1131), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3546), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61568] = 4, - ACTIONS(3808), 1, - anon_sym_GT, - ACTIONS(4642), 1, + [61552] = 4, + ACTIONS(4645), 1, anon_sym_COMMA, - STATE(2039), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4647), 1, + anon_sym_GT, + STATE(1996), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61582] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, + [61566] = 4, + ACTIONS(4415), 1, + anon_sym_COMMA, + ACTIONS(4649), 1, + anon_sym_PIPE, + STATE(2133), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4383), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61594] = 4, - ACTIONS(3832), 1, - anon_sym_LBRACE, - ACTIONS(4644), 1, + [61580] = 4, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4651), 1, anon_sym_SEMI, - STATE(481), 1, - sym_declaration_list, + STATE(2526), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61608] = 2, + [61594] = 3, + ACTIONS(4167), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4646), 3, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61606] = 4, + ACTIONS(4653), 1, + anon_sym_for, + ACTIONS(4655), 1, + anon_sym_loop, + ACTIONS(4657), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61620] = 4, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(4647), 1, anon_sym_GT, - [61618] = 4, - ACTIONS(4648), 1, - anon_sym_RBRACE, - ACTIONS(4650), 1, - anon_sym_COMMA, - STATE(1940), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2205), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61632] = 3, - ACTIONS(4116), 1, - anon_sym_COLON_COLON, + [61634] = 4, + ACTIONS(4659), 1, + anon_sym_RPAREN, + ACTIONS(4661), 1, + anon_sym_COMMA, + STATE(1936), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61644] = 3, - ACTIONS(4652), 1, + [61648] = 4, + ACTIONS(2574), 1, + anon_sym_LT2, + ACTIONS(4554), 1, sym_identifier, + STATE(848), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4654), 2, - anon_sym_default, - anon_sym_union, - [61656] = 4, + [61662] = 4, ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(3770), 1, - anon_sym_LBRACE, - STATE(1360), 1, + ACTIONS(4664), 1, + sym_identifier, + STATE(2338), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61670] = 4, - ACTIONS(3832), 1, - anon_sym_LBRACE, - ACTIONS(4656), 1, - anon_sym_SEMI, - STATE(415), 1, - sym_declaration_list, + [61676] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61684] = 4, - ACTIONS(4073), 1, - anon_sym_LBRACE, - ACTIONS(4658), 1, - anon_sym_SEMI, - STATE(317), 1, - sym_block, + ACTIONS(4659), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [61688] = 4, + ACTIONS(4280), 1, + anon_sym_RPAREN, + ACTIONS(4282), 1, + anon_sym_COMMA, + STATE(2001), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61698] = 3, - ACTIONS(4662), 1, - anon_sym_EQ, + [61702] = 4, + ACTIONS(2451), 1, + anon_sym_PLUS, + ACTIONS(4666), 1, + sym_mutable_specifier, + ACTIONS(4668), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4660), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61710] = 4, - ACTIONS(3794), 1, - anon_sym_RBRACE, - ACTIONS(4664), 1, + [61716] = 4, + ACTIONS(3325), 1, + anon_sym_RPAREN, + ACTIONS(4670), 1, anon_sym_COMMA, - STATE(2088), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1942), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61724] = 2, + [61730] = 4, + ACTIONS(388), 1, + anon_sym_RPAREN, + ACTIONS(4673), 1, + anon_sym_COMMA, + STATE(1942), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2423), 3, - anon_sym_SEMI, - anon_sym_RPAREN, + [61744] = 4, + ACTIONS(4053), 1, anon_sym_RBRACE, - [61734] = 4, - ACTIONS(4073), 1, - anon_sym_LBRACE, - ACTIONS(4666), 1, - anon_sym_SEMI, - STATE(257), 1, - sym_block, + ACTIONS(4675), 1, + anon_sym_COMMA, + STATE(1980), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61748] = 2, + [61758] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4668), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61758] = 4, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4672), 1, + ACTIONS(4677), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [61768] = 4, + ACTIONS(922), 1, anon_sym_GT, - STATE(2017), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(4679), 1, + anon_sym_COMMA, + STATE(1991), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61772] = 2, + [61782] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4664), 1, + sym_identifier, + STATE(2340), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4674), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61782] = 4, - ACTIONS(4073), 1, + [61796] = 4, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4676), 1, + ACTIONS(4681), 1, anon_sym_SEMI, - STATE(450), 1, + STATE(959), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61796] = 4, - ACTIONS(3794), 1, - anon_sym_RBRACE, - ACTIONS(4664), 1, - anon_sym_COMMA, - STATE(2079), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, [61810] = 4, - ACTIONS(582), 1, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4678), 1, - anon_sym_move, - STATE(221), 1, + ACTIONS(4683), 1, + anon_sym_SEMI, + STATE(969), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [61824] = 4, - ACTIONS(3167), 1, - anon_sym_RPAREN, - ACTIONS(4680), 1, - anon_sym_COMMA, - STATE(1887), 1, - aux_sym_meta_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61838] = 4, - ACTIONS(3832), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4682), 1, + ACTIONS(4685), 1, anon_sym_SEMI, - STATE(364), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61852] = 2, + STATE(339), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4684), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [61862] = 2, + [61838] = 3, + ACTIONS(4217), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4686), 3, - anon_sym_SEMI, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61850] = 4, + ACTIONS(586), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [61872] = 2, + ACTIONS(4687), 1, + anon_sym_move, + STATE(225), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4688), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61882] = 2, + [61864] = 3, + ACTIONS(4689), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4690), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61892] = 4, - ACTIONS(3832), 1, + ACTIONS(4691), 2, + anon_sym_default, + anon_sym_union, + [61876] = 4, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4692), 1, + ACTIONS(4693), 1, anon_sym_SEMI, - STATE(461), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61906] = 4, - ACTIONS(4694), 1, - anon_sym_for, - ACTIONS(4696), 1, - anon_sym_loop, - ACTIONS(4698), 1, - anon_sym_while, + STATE(999), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61920] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4104), 1, - sym_identifier, - STATE(2351), 1, - sym_type_arguments, + [61890] = 4, + ACTIONS(4695), 1, + anon_sym_RBRACE, + ACTIONS(4697), 1, + anon_sym_COMMA, + STATE(1955), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61934] = 3, + [61904] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4700), 1, + anon_sym_SEMI, ACTIONS(4702), 1, - anon_sym_COLON, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4700), 2, + [61918] = 4, + ACTIONS(3850), 1, anon_sym_RBRACE, - anon_sym_COMMA, - [61946] = 4, - ACTIONS(3832), 1, - anon_sym_LBRACE, ACTIONS(4704), 1, - anon_sym_SEMI, - STATE(480), 1, - sym_declaration_list, + anon_sym_COMMA, + STATE(1955), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61960] = 4, - ACTIONS(3788), 1, - anon_sym_RBRACE, - ACTIONS(4706), 1, - anon_sym_COMMA, - STATE(1963), 1, - aux_sym_field_declaration_list_repeat1, + [61932] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61974] = 4, - ACTIONS(786), 1, + ACTIONS(4445), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [61942] = 4, + ACTIONS(2441), 1, anon_sym_RPAREN, - ACTIONS(4290), 1, + ACTIONS(4706), 1, anon_sym_COMMA, - STATE(2054), 1, - aux_sym_parameters_repeat1, + STATE(1781), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61988] = 4, - ACTIONS(3321), 1, + [61956] = 4, + ACTIONS(2439), 1, anon_sym_RBRACK, ACTIONS(4708), 1, anon_sym_COMMA, - STATE(1962), 1, - aux_sym_array_expression_repeat1, + STATE(1781), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62002] = 4, - ACTIONS(4711), 1, - anon_sym_RBRACE, - ACTIONS(4713), 1, - anon_sym_COMMA, - STATE(1963), 1, - aux_sym_field_declaration_list_repeat1, + [61970] = 3, + ACTIONS(4712), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62016] = 3, - ACTIONS(4065), 1, + ACTIONS(4710), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61982] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4716), 2, - anon_sym_RBRACE, + ACTIONS(4328), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [62028] = 2, + [61994] = 4, + ACTIONS(4071), 1, + anon_sym_LBRACE, + ACTIONS(4714), 1, + anon_sym_SEMI, + STATE(1041), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4718), 3, + [62008] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4716), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62038] = 2, + ACTIONS(4718), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4720), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [62048] = 4, - ACTIONS(786), 1, + [62022] = 4, + ACTIONS(4328), 1, anon_sym_RPAREN, - ACTIONS(4290), 1, + ACTIONS(4720), 1, anon_sym_COMMA, - STATE(2046), 1, + STATE(1965), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62062] = 4, - ACTIONS(3514), 1, - anon_sym_COLON, - ACTIONS(3548), 1, - anon_sym_COLON_COLON, - STATE(1951), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62076] = 4, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4722), 1, - anon_sym_SEMI, - ACTIONS(4724), 1, - anon_sym_EQ, + [62036] = 3, + ACTIONS(4723), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62090] = 4, - ACTIONS(3273), 1, + ACTIONS(4725), 2, + anon_sym_default, + anon_sym_union, + [62048] = 4, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4726), 1, - sym_identifier, - STATE(1973), 1, - sym_use_list, + ACTIONS(4727), 1, + anon_sym_SEMI, + STATE(1038), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62104] = 4, - ACTIONS(2624), 1, - anon_sym_LBRACE, - ACTIONS(4728), 1, + [62062] = 3, + ACTIONS(3195), 1, anon_sym_COLON_COLON, - STATE(1112), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62118] = 4, - ACTIONS(3818), 1, + ACTIONS(4262), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62074] = 4, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4730), 1, + ACTIONS(4729), 1, anon_sym_SEMI, - STATE(1040), 1, + STATE(1034), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62132] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4732), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62142] = 4, - ACTIONS(4734), 1, + [62088] = 4, + ACTIONS(2445), 1, anon_sym_RPAREN, - ACTIONS(4736), 1, + ACTIONS(4731), 1, anon_sym_COMMA, - STATE(1974), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62156] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, + STATE(1781), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4739), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62168] = 4, - ACTIONS(4073), 1, + [62102] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4741), 1, + ACTIONS(4733), 1, anon_sym_SEMI, - STATE(467), 1, + STATE(430), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62182] = 4, - ACTIONS(4743), 1, + [62116] = 4, + ACTIONS(796), 1, anon_sym_RPAREN, - ACTIONS(4745), 1, + ACTIONS(4735), 1, anon_sym_COMMA, - STATE(1974), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1965), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62196] = 4, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4747), 1, + [62130] = 4, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(4737), 1, anon_sym_SEMI, - ACTIONS(4749), 1, - anon_sym_EQ, + STATE(1031), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62210] = 4, + [62144] = 4, ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(4104), 1, - sym_identifier, - STATE(2461), 1, + ACTIONS(3762), 1, + anon_sym_LBRACE, + STATE(1358), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62224] = 4, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4751), 1, - anon_sym_as, - ACTIONS(4753), 1, - anon_sym_GT, + [62158] = 3, + ACTIONS(4741), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62238] = 4, - ACTIONS(4755), 1, + ACTIONS(4739), 2, anon_sym_RBRACE, - ACTIONS(4757), 1, anon_sym_COMMA, - STATE(2070), 1, - aux_sym_use_list_repeat1, + [62170] = 4, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(4743), 1, + anon_sym_SEMI, + STATE(871), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62252] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4759), 1, - sym_identifier, - STATE(2351), 1, - sym_type_arguments, + [62184] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62266] = 4, - ACTIONS(3514), 1, + ACTIONS(4745), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [62194] = 3, + ACTIONS(4749), 1, anon_sym_COLON, - ACTIONS(3522), 1, - anon_sym_COLON_COLON, - STATE(1951), 1, - sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62280] = 4, - ACTIONS(2568), 1, - anon_sym_LT2, - ACTIONS(4761), 1, - sym_identifier, - STATE(1198), 1, - sym_type_arguments, + ACTIONS(4747), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62206] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62294] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4759), 1, - sym_identifier, - STATE(2461), 1, - sym_type_arguments, + ACTIONS(4751), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62218] = 4, + ACTIONS(4753), 1, + anon_sym_RBRACE, + ACTIONS(4755), 1, + anon_sym_COMMA, + STATE(1980), 1, + aux_sym_struct_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62232] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4758), 2, + anon_sym_COMMA, + anon_sym_GT, + [62244] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62308] = 4, - ACTIONS(4763), 1, + ACTIONS(4760), 2, + anon_sym_COMMA, + anon_sym_GT, + [62256] = 4, + ACTIONS(4762), 1, anon_sym_RBRACE, - ACTIONS(4765), 1, + ACTIONS(4764), 1, anon_sym_COMMA, - STATE(1997), 1, + STATE(1881), 1, aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62322] = 4, - ACTIONS(4065), 1, + [62270] = 3, + ACTIONS(2451), 1, anon_sym_PLUS, - ACTIONS(4767), 1, - anon_sym_SEMI, - ACTIONS(4769), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62336] = 4, - ACTIONS(4375), 1, + ACTIONS(4760), 2, + anon_sym_COMMA, + anon_sym_GT, + [62282] = 4, + ACTIONS(4766), 1, + anon_sym_RBRACE, + ACTIONS(4768), 1, + anon_sym_COMMA, + STATE(2097), 1, + aux_sym_use_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62296] = 4, + ACTIONS(4415), 1, anon_sym_COMMA, - ACTIONS(4771), 1, + ACTIONS(4770), 1, anon_sym_PIPE, - STATE(1927), 1, + STATE(1931), 1, aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62350] = 4, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4773), 1, - anon_sym_SEMI, - ACTIONS(4775), 1, - anon_sym_EQ, + [62310] = 4, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(4296), 1, + anon_sym_COMMA, + STATE(1972), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62364] = 4, - ACTIONS(2568), 1, + [62324] = 4, + ACTIONS(2574), 1, anon_sym_LT2, - ACTIONS(4761), 1, + ACTIONS(4772), 1, sym_identifier, - STATE(1199), 1, + STATE(1205), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62378] = 2, + [62338] = 4, + ACTIONS(4071), 1, + anon_sym_LBRACE, + ACTIONS(4774), 1, + anon_sym_SEMI, + STATE(1026), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4777), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62388] = 4, - ACTIONS(2435), 1, - anon_sym_RPAREN, - ACTIONS(4779), 1, + [62352] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4776), 1, + sym_identifier, + STATE(2338), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62366] = 4, + ACTIONS(4760), 1, + anon_sym_GT, + ACTIONS(4778), 1, anon_sym_COMMA, - STATE(1868), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1991), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62402] = 4, - ACTIONS(3832), 1, - anon_sym_LBRACE, + [62380] = 4, + ACTIONS(2319), 1, + anon_sym_SQUOTE, ACTIONS(4781), 1, - anon_sym_SEMI, - STATE(429), 1, - sym_declaration_list, + anon_sym_GT, + STATE(2205), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62416] = 3, - ACTIONS(4785), 1, - anon_sym_COLON, + [62394] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4776), 1, + sym_identifier, + STATE(2340), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4783), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62428] = 4, - ACTIONS(4053), 1, - anon_sym_RBRACE, - ACTIONS(4787), 1, - anon_sym_COMMA, - STATE(2030), 1, - aux_sym_struct_pattern_repeat1, + [62408] = 4, + ACTIONS(2574), 1, + anon_sym_LT2, + ACTIONS(4772), 1, + sym_identifier, + STATE(1202), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62442] = 4, - ACTIONS(898), 1, - anon_sym_GT, - ACTIONS(4789), 1, - anon_sym_COMMA, - STATE(2022), 1, - aux_sym_type_arguments_repeat1, + [62422] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62456] = 4, - ACTIONS(4041), 1, + ACTIONS(4783), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4791), 1, anon_sym_COMMA, - STATE(2030), 1, - aux_sym_struct_pattern_repeat1, + [62432] = 4, + ACTIONS(4785), 1, + anon_sym_COMMA, + ACTIONS(4788), 1, + anon_sym_GT, + STATE(1996), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62470] = 3, - ACTIONS(4065), 1, + [62446] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4793), 2, - anon_sym_RPAREN, + ACTIONS(4790), 2, anon_sym_COMMA, - [62482] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4795), 1, - sym_identifier, - STATE(2351), 1, - sym_type_arguments, + anon_sym_GT, + [62458] = 3, + ACTIONS(4794), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62496] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4795), 1, - sym_identifier, - STATE(2461), 1, - sym_type_arguments, + ACTIONS(4792), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62470] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4796), 1, + anon_sym_SEMI, + STATE(393), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62510] = 4, - ACTIONS(4793), 1, - anon_sym_RPAREN, - ACTIONS(4797), 1, - anon_sym_COMMA, - STATE(2001), 1, - aux_sym_tuple_type_repeat1, + [62484] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4798), 1, + anon_sym_SEMI, + ACTIONS(4800), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62524] = 4, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(4800), 1, - anon_sym_GT, - STATE(2300), 1, - sym_lifetime, + [62498] = 4, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(4296), 1, + anon_sym_COMMA, + STATE(1965), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62538] = 4, - ACTIONS(2568), 1, - anon_sym_LT2, + [62512] = 4, ACTIONS(4802), 1, - sym_identifier, - STATE(832), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62552] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, + anon_sym_RPAREN, ACTIONS(4804), 1, - sym_identifier, - STATE(2461), 1, - sym_type_arguments, + anon_sym_COMMA, + STATE(2010), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62566] = 4, + [62526] = 4, + ACTIONS(4071), 1, + anon_sym_LBRACE, ACTIONS(4806), 1, - sym_identifier, - ACTIONS(4808), 1, - anon_sym_ref, - ACTIONS(4810), 1, - sym_mutable_specifier, + anon_sym_SEMI, + STATE(1011), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62580] = 4, - ACTIONS(4391), 1, + [62540] = 4, + ACTIONS(4383), 1, anon_sym_COMMA, - ACTIONS(4393), 1, + ACTIONS(4385), 1, anon_sym_GT, - STATE(1996), 1, + STATE(1946), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62594] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4812), 1, - sym_identifier, - STATE(2351), 1, - sym_type_arguments, + [62554] = 3, + ACTIONS(4810), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62608] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4804), 1, - sym_identifier, - STATE(2351), 1, - sym_type_arguments, + ACTIONS(4808), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62566] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62622] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4812), 1, - sym_identifier, - STATE(2461), 1, - sym_type_arguments, + ACTIONS(4812), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62578] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62636] = 4, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4814), 1, + ACTIONS(4814), 3, anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [62588] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, ACTIONS(4816), 1, - anon_sym_RBRACK, + sym_identifier, + STATE(2338), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62650] = 4, + [62602] = 4, ACTIONS(4818), 1, + anon_sym_RBRACE, + ACTIONS(4820), 1, anon_sym_COMMA, - ACTIONS(4821), 1, - anon_sym_GT, - STATE(2011), 1, - aux_sym_for_lifetimes_repeat1, + STATE(1944), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62664] = 4, - ACTIONS(4304), 1, + [62616] = 4, + ACTIONS(4822), 1, + anon_sym_RPAREN, + ACTIONS(4824), 1, anon_sym_COMMA, - ACTIONS(4306), 1, - anon_sym_GT, - STATE(2084), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62678] = 4, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(4823), 1, - anon_sym_GT, - STATE(2300), 1, - sym_lifetime, + STATE(2010), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62692] = 4, - ACTIONS(4825), 1, - sym_identifier, + [62630] = 4, + ACTIONS(4071), 1, + anon_sym_LBRACE, ACTIONS(4827), 1, - anon_sym_await, - ACTIONS(4829), 1, - sym_integer_literal, + anon_sym_SEMI, + STATE(989), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62706] = 4, - ACTIONS(2568), 1, + [62644] = 4, + ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(4802), 1, + ACTIONS(4816), 1, sym_identifier, - STATE(854), 1, + STATE(2340), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62720] = 4, - ACTIONS(4831), 1, - anon_sym_for, - ACTIONS(4833), 1, - anon_sym_loop, - ACTIONS(4835), 1, - anon_sym_while, + [62658] = 4, + ACTIONS(3263), 1, + anon_sym_RBRACK, + ACTIONS(4829), 1, + anon_sym_COMMA, + STATE(2013), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62734] = 4, - ACTIONS(4800), 1, - anon_sym_GT, - ACTIONS(4837), 1, + [62672] = 4, + ACTIONS(518), 1, + anon_sym_RBRACK, + ACTIONS(4832), 1, anon_sym_COMMA, - STATE(2011), 1, - aux_sym_for_lifetimes_repeat1, + STATE(2013), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62748] = 4, - ACTIONS(3818), 1, - anon_sym_LBRACE, - ACTIONS(4839), 1, + [62686] = 4, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4834), 1, anon_sym_SEMI, - STATE(958), 1, - sym_declaration_list, + STATE(2380), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62762] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4841), 1, - sym_identifier, - STATE(2351), 1, - sym_type_arguments, + [62700] = 4, + ACTIONS(4314), 1, + anon_sym_COMMA, + ACTIONS(4316), 1, + anon_sym_GT, + STATE(2088), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62776] = 2, + [62714] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4843), 3, + ACTIONS(4836), 3, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_COMMA, - [62786] = 2, + [62724] = 4, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(4838), 1, + anon_sym_SEMI, + STATE(986), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4845), 3, + [62738] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4840), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62796] = 4, - ACTIONS(4847), 1, - anon_sym_COMMA, - ACTIONS(4850), 1, - anon_sym_GT, - STATE(2022), 1, - aux_sym_type_arguments_repeat1, + STATE(375), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62810] = 3, - ACTIONS(2445), 1, - anon_sym_PLUS, + [62752] = 4, + ACTIONS(4842), 1, + anon_sym_RPAREN, + ACTIONS(4844), 1, + anon_sym_COMMA, + STATE(2020), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4850), 2, - anon_sym_COMMA, - anon_sym_GT, - [62822] = 3, - ACTIONS(4065), 1, + [62766] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4852), 2, + ACTIONS(4847), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [62834] = 4, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(4854), 1, + [62778] = 4, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(4849), 1, anon_sym_SEMI, - STATE(2521), 1, - sym_where_clause, + STATE(788), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62848] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, + [62792] = 4, + ACTIONS(3782), 1, + anon_sym_RBRACE, + ACTIONS(4851), 1, + anon_sym_COMMA, + STATE(1957), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4850), 2, + [62806] = 4, + ACTIONS(3782), 1, + anon_sym_RBRACE, + ACTIONS(4851), 1, anon_sym_COMMA, - anon_sym_GT, - [62860] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4841), 1, - sym_identifier, - STATE(2461), 1, - sym_type_arguments, + STATE(1955), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62874] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, + [62820] = 4, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(4855), 1, + anon_sym_GT, + STATE(1930), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4856), 2, + [62834] = 4, + ACTIONS(4857), 1, + anon_sym_RBRACE, + ACTIONS(4859), 1, anon_sym_COMMA, - anon_sym_GT, - [62886] = 2, + STATE(2026), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4858), 3, + [62848] = 4, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(4862), 1, anon_sym_SEMI, + STATE(979), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62862] = 4, + ACTIONS(3852), 1, anon_sym_RBRACE, + ACTIONS(4864), 1, anon_sym_COMMA, - [62896] = 4, - ACTIONS(4860), 1, - anon_sym_RBRACE, - ACTIONS(4862), 1, - anon_sym_COMMA, - STATE(2030), 1, - aux_sym_struct_pattern_repeat1, + STATE(2026), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62910] = 3, - ACTIONS(4267), 1, - anon_sym_PIPE, + [62876] = 4, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4866), 1, + anon_sym_SEMI, + STATE(2554), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4865), 2, + [62890] = 4, + ACTIONS(3872), 1, anon_sym_RBRACE, + ACTIONS(4868), 1, anon_sym_COMMA, - [62922] = 2, + STATE(2026), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4867), 3, + [62904] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4870), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62932] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4869), 1, - sym_identifier, - STATE(2351), 1, - sym_type_arguments, + STATE(321), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62918] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4872), 1, + anon_sym_SEMI, + STATE(306), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62946] = 4, + [62932] = 4, ACTIONS(3431), 1, anon_sym_LT2, - ACTIONS(4869), 1, + ACTIONS(4874), 1, sym_identifier, - STATE(2461), 1, + STATE(2338), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62960] = 3, - ACTIONS(4424), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4444), 2, - anon_sym_COMMA, - anon_sym_GT, - [62972] = 2, + [62946] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4871), 3, + ACTIONS(4876), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62982] = 4, - ACTIONS(4873), 1, - anon_sym_RBRACE, - ACTIONS(4875), 1, - anon_sym_COMMA, - STATE(2068), 1, - aux_sym_field_declaration_list_repeat1, + [62956] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62996] = 3, - ACTIONS(4879), 1, - anon_sym_COLON, + ACTIONS(4878), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [62966] = 3, + ACTIONS(4882), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4877), 2, + ACTIONS(4880), 2, anon_sym_RBRACE, anon_sym_COMMA, - [63008] = 4, - ACTIONS(4444), 1, - anon_sym_GT, - ACTIONS(4881), 1, - anon_sym_COMMA, - STATE(2039), 1, - aux_sym_type_parameters_repeat1, + [62978] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4884), 1, + anon_sym_SEMI, + ACTIONS(4886), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63022] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, + [62992] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4884), 2, + ACTIONS(4888), 3, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [63034] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, + [63002] = 4, + ACTIONS(3175), 1, + anon_sym_RPAREN, + ACTIONS(4890), 1, + anon_sym_COMMA, + STATE(2020), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4886), 2, - anon_sym_COMMA, - anon_sym_GT, - [63046] = 4, - ACTIONS(3818), 1, + [63016] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4888), 1, + ACTIONS(4892), 1, anon_sym_SEMI, - STATE(901), 1, - sym_declaration_list, + STATE(295), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63060] = 4, - ACTIONS(3832), 1, + [63030] = 4, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4890), 1, + ACTIONS(4894), 1, anon_sym_SEMI, - STATE(344), 1, + STATE(970), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63074] = 4, - ACTIONS(3832), 1, + [63044] = 4, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4892), 1, + ACTIONS(4896), 1, anon_sym_SEMI, - STATE(375), 1, + STATE(964), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63088] = 4, - ACTIONS(2516), 1, - anon_sym_RPAREN, - ACTIONS(4894), 1, - anon_sym_COMMA, - STATE(2001), 1, - aux_sym_tuple_type_repeat1, + [63058] = 4, + ACTIONS(3804), 1, + anon_sym_LT, + ACTIONS(4898), 1, + anon_sym_EQ, + STATE(2535), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63102] = 4, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(4896), 1, + [63072] = 4, + ACTIONS(3840), 1, + anon_sym_GT, + ACTIONS(4900), 1, anon_sym_COMMA, - STATE(2054), 1, - aux_sym_parameters_repeat1, + STATE(1904), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63116] = 4, - ACTIONS(4898), 1, - anon_sym_RBRACE, - ACTIONS(4900), 1, + [63086] = 4, + ACTIONS(3832), 1, + anon_sym_GT, + ACTIONS(4902), 1, anon_sym_COMMA, - STATE(1995), 1, - aux_sym_struct_pattern_repeat1, + STATE(1904), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63130] = 3, + [63100] = 4, + ACTIONS(3810), 1, + anon_sym_LBRACE, ACTIONS(4904), 1, - anon_sym_COLON, + anon_sym_SEMI, + STATE(907), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4902), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63142] = 4, - ACTIONS(4059), 1, - anon_sym_LBRACE, - ACTIONS(4906), 1, - anon_sym_SEMI, - STATE(855), 1, - sym_block, + [63114] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63156] = 4, - ACTIONS(4059), 1, + ACTIONS(4906), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [63124] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, ACTIONS(4908), 1, anon_sym_SEMI, - STATE(860), 1, + STATE(272), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63170] = 4, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(4910), 1, - anon_sym_SEMI, - STATE(2438), 1, - sym_where_clause, + [63138] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63184] = 4, - ACTIONS(4059), 1, + ACTIONS(4910), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [63148] = 4, + ACTIONS(4071), 1, anon_sym_LBRACE, ACTIONS(4912), 1, anon_sym_SEMI, - STATE(865), 1, + STATE(956), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63198] = 3, - ACTIONS(3175), 1, - anon_sym_COLON_COLON, + [63162] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4269), 2, + ACTIONS(2379), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [63172] = 4, + ACTIONS(386), 1, anon_sym_RPAREN, + ACTIONS(3213), 1, anon_sym_COMMA, - [63210] = 4, - ACTIONS(4413), 1, + STATE(1942), 1, + aux_sym_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63186] = 4, + ACTIONS(794), 1, anon_sym_RPAREN, ACTIONS(4914), 1, anon_sym_COMMA, - STATE(2054), 1, + STATE(1965), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63224] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, + [63200] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4874), 1, + sym_identifier, + STATE(2340), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4413), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63236] = 4, - ACTIONS(4059), 1, - anon_sym_LBRACE, - ACTIONS(4917), 1, - anon_sym_SEMI, - STATE(908), 1, - sym_block, + [63214] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63250] = 4, - ACTIONS(4065), 1, + ACTIONS(4916), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [63224] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4919), 1, + ACTIONS(4918), 1, anon_sym_SEMI, - ACTIONS(4921), 1, - anon_sym_EQ, + ACTIONS(4920), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63264] = 4, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4923), 1, + [63238] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, anon_sym_SEMI, - ACTIONS(4925), 1, - anon_sym_EQ, + STATE(395), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63278] = 4, - ACTIONS(4065), 1, + [63252] = 4, + ACTIONS(3824), 1, + anon_sym_RBRACE, + ACTIONS(4924), 1, + anon_sym_COMMA, + STATE(1955), 1, + aux_sym_enum_variant_list_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63266] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4927), 1, + ACTIONS(4926), 1, anon_sym_SEMI, - ACTIONS(4929), 1, + ACTIONS(4928), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63292] = 4, - ACTIONS(4059), 1, + [63280] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4931), 1, + ACTIONS(4930), 1, anon_sym_SEMI, - STATE(934), 1, + STATE(486), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63306] = 4, - ACTIONS(3818), 1, - anon_sym_LBRACE, - ACTIONS(4933), 1, + [63294] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4932), 1, anon_sym_SEMI, - STATE(953), 1, - sym_declaration_list, + ACTIONS(4934), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63320] = 4, - ACTIONS(4935), 1, - anon_sym_RBRACE, - ACTIONS(4937), 1, - anon_sym_COMMA, - STATE(2134), 1, - aux_sym_enum_variant_list_repeat2, + [63308] = 4, + ACTIONS(4936), 1, + sym_identifier, + ACTIONS(4938), 1, + anon_sym_ref, + ACTIONS(4940), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63334] = 2, + [63322] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4939), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4335), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63334] = 4, + ACTIONS(554), 1, + anon_sym_RBRACK, + ACTIONS(3207), 1, anon_sym_COMMA, - [63344] = 4, - ACTIONS(4941), 1, + STATE(2013), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63348] = 3, + ACTIONS(3195), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4942), 2, anon_sym_RPAREN, - ACTIONS(4943), 1, anon_sym_COMMA, - STATE(1974), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [63360] = 4, + ACTIONS(4944), 1, + anon_sym_RBRACE, + ACTIONS(4946), 1, + anon_sym_COMMA, + STATE(2139), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63358] = 4, - ACTIONS(3818), 1, - anon_sym_LBRACE, - ACTIONS(4945), 1, + [63374] = 4, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4948), 1, anon_sym_SEMI, - STATE(961), 1, - sym_declaration_list, + STATE(2478), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63372] = 2, + [63388] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4950), 1, + anon_sym_as, + ACTIONS(4952), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4415), 3, - anon_sym_SEMI, + [63402] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [63382] = 4, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(4947), 1, + ACTIONS(4954), 1, anon_sym_SEMI, - ACTIONS(4949), 1, - anon_sym_EQ, + STATE(290), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63396] = 4, - ACTIONS(3822), 1, - anon_sym_RBRACE, - ACTIONS(4951), 1, - anon_sym_COMMA, - STATE(1963), 1, - aux_sym_field_declaration_list_repeat1, + [63416] = 4, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(4956), 1, + anon_sym_EQ_GT, + ACTIONS(4958), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63410] = 4, - ACTIONS(4286), 1, + [63430] = 4, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4960), 1, + anon_sym_SEMI, + STATE(2511), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63444] = 4, + ACTIONS(2634), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_COLON_COLON, + STATE(1131), 1, + sym_field_initializer_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63458] = 4, + ACTIONS(4308), 1, anon_sym_RPAREN, - ACTIONS(4288), 1, + ACTIONS(4310), 1, anon_sym_COMMA, - STATE(2136), 1, + STATE(2144), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63424] = 4, - ACTIONS(3373), 1, - anon_sym_RBRACE, - ACTIONS(4953), 1, - anon_sym_COMMA, - STATE(2121), 1, - aux_sym_use_list_repeat1, + [63472] = 4, + ACTIONS(3273), 1, + anon_sym_LBRACE, + ACTIONS(4964), 1, + sym_identifier, + STATE(1977), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63438] = 4, - ACTIONS(4059), 1, - anon_sym_LBRACE, - ACTIONS(4955), 1, + [63486] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4966), 1, anon_sym_SEMI, - STATE(974), 1, - sym_block, + ACTIONS(4968), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63452] = 4, - ACTIONS(3822), 1, - anon_sym_RBRACE, - ACTIONS(4951), 1, - anon_sym_COMMA, - STATE(1960), 1, - aux_sym_field_declaration_list_repeat1, + [63500] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63466] = 4, - ACTIONS(4059), 1, + ACTIONS(4970), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [63510] = 4, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4957), 1, + ACTIONS(4972), 1, anon_sym_SEMI, - STATE(867), 1, + STATE(876), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63480] = 4, - ACTIONS(4235), 1, - anon_sym_RPAREN, - ACTIONS(4237), 1, - anon_sym_COMMA, - STATE(1961), 1, - aux_sym_parameters_repeat1, + [63524] = 3, + ACTIONS(4067), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63494] = 4, - ACTIONS(2445), 1, - anon_sym_PLUS, - ACTIONS(4959), 1, - sym_mutable_specifier, - ACTIONS(4961), 1, - sym_self, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [63536] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63508] = 4, - ACTIONS(4436), 1, + ACTIONS(4974), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [63546] = 4, + ACTIONS(4425), 1, anon_sym_COMMA, - ACTIONS(4438), 1, + ACTIONS(4427), 1, anon_sym_GT, - STATE(2141), 1, + STATE(2113), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63522] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4963), 3, - anon_sym_SEMI, + [63560] = 4, + ACTIONS(4976), 1, anon_sym_RBRACE, + ACTIONS(4978), 1, anon_sym_COMMA, - [63532] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4965), 1, - sym_identifier, - STATE(2461), 1, - sym_type_arguments, + STATE(1889), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63546] = 4, - ACTIONS(3858), 1, - anon_sym_RBRACE, - ACTIONS(4967), 1, - anon_sym_COMMA, - STATE(2088), 1, - aux_sym_enum_variant_list_repeat2, + [63574] = 4, + ACTIONS(3802), 1, + anon_sym_where, + ACTIONS(4980), 1, + anon_sym_SEMI, + STATE(2453), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63560] = 4, - ACTIONS(2522), 1, + [63588] = 4, + ACTIONS(4982), 1, + anon_sym_for, + ACTIONS(4984), 1, + anon_sym_loop, + ACTIONS(4986), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63602] = 4, + ACTIONS(2538), 1, anon_sym_RPAREN, - ACTIONS(4969), 1, + ACTIONS(4988), 1, anon_sym_COMMA, - STATE(2001), 1, + STATE(1936), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63574] = 4, - ACTIONS(3431), 1, - anon_sym_LT2, - ACTIONS(4965), 1, - sym_identifier, - STATE(2351), 1, - sym_type_arguments, + [63616] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63588] = 4, - ACTIONS(3812), 1, + ACTIONS(4990), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63628] = 4, + ACTIONS(3856), 1, anon_sym_GT, - ACTIONS(4971), 1, + ACTIONS(4992), 1, anon_sym_COMMA, - STATE(2039), 1, + STATE(1904), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63602] = 4, - ACTIONS(4059), 1, + [63642] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4973), 1, + ACTIONS(4994), 1, anon_sym_SEMI, - STATE(1037), 1, + STATE(473), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63616] = 4, - ACTIONS(3804), 1, + [63656] = 4, + ACTIONS(3848), 1, anon_sym_GT, - ACTIONS(4975), 1, + ACTIONS(4996), 1, anon_sym_COMMA, - STATE(2039), 1, + STATE(1904), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63630] = 3, - ACTIONS(4979), 1, + [63670] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4998), 1, + anon_sym_SEMI, + ACTIONS(5000), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4977), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63642] = 4, - ACTIONS(3832), 1, - anon_sym_LBRACE, - ACTIONS(4981), 1, - anon_sym_SEMI, - STATE(410), 1, - sym_declaration_list, + [63684] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63656] = 4, - ACTIONS(3818), 1, + ACTIONS(5002), 2, + anon_sym_COMMA, + anon_sym_GT, + [63696] = 4, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4983), 1, + ACTIONS(5004), 1, anon_sym_SEMI, - STATE(846), 1, + STATE(853), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63670] = 4, - ACTIONS(4985), 1, - anon_sym_RBRACE, - ACTIONS(4987), 1, - anon_sym_COMMA, - STATE(2088), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63684] = 4, - ACTIONS(4059), 1, + [63710] = 4, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(4990), 1, + ACTIONS(5006), 1, anon_sym_SEMI, - STATE(1017), 1, + STATE(921), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63698] = 4, - ACTIONS(4065), 1, + [63724] = 4, + ACTIONS(5008), 1, + sym_identifier, + ACTIONS(5010), 1, + anon_sym_ref, + ACTIONS(5012), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63738] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4992), 1, + ACTIONS(5014), 1, anon_sym_SEMI, - ACTIONS(4994), 1, + ACTIONS(5016), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63712] = 4, - ACTIONS(3818), 1, + [63752] = 4, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(4996), 1, + ACTIONS(5018), 1, anon_sym_SEMI, - STATE(1014), 1, + STATE(431), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63726] = 4, - ACTIONS(3818), 1, - anon_sym_LBRACE, - ACTIONS(4998), 1, - anon_sym_SEMI, - STATE(1008), 1, - sym_declaration_list, + [63766] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63740] = 4, - ACTIONS(3860), 1, + ACTIONS(5020), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(5000), 1, anon_sym_COMMA, - STATE(1963), 1, - aux_sym_field_declaration_list_repeat1, + [63776] = 4, + ACTIONS(3347), 1, + anon_sym_RBRACE, + ACTIONS(5022), 1, + anon_sym_COMMA, + STATE(1906), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63754] = 4, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(5002), 1, - anon_sym_SEMI, - ACTIONS(5004), 1, - anon_sym_EQ, + [63790] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63768] = 4, - ACTIONS(3818), 1, - anon_sym_LBRACE, - ACTIONS(5006), 1, + ACTIONS(5024), 3, anon_sym_SEMI, - STATE(994), 1, - sym_declaration_list, + anon_sym_RBRACE, + anon_sym_COMMA, + [63800] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63782] = 4, - ACTIONS(3818), 1, + ACTIONS(5026), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [63810] = 4, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(5008), 1, + ACTIONS(5028), 1, anon_sym_SEMI, - STATE(992), 1, + STATE(811), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63796] = 2, + [63824] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5010), 3, - anon_sym_SEMI, + ACTIONS(5030), 2, anon_sym_RPAREN, - anon_sym_RBRACE, - [63806] = 4, - ACTIONS(4065), 1, + anon_sym_COMMA, + [63836] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(5012), 1, + ACTIONS(5032), 1, anon_sym_SEMI, - ACTIONS(5014), 1, + ACTIONS(5034), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63820] = 4, - ACTIONS(4059), 1, - anon_sym_LBRACE, - ACTIONS(5016), 1, - anon_sym_SEMI, - STATE(987), 1, - sym_block, + [63850] = 4, + ACTIONS(3784), 1, + anon_sym_RBRACE, + ACTIONS(5036), 1, + anon_sym_COMMA, + STATE(2030), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63834] = 4, - ACTIONS(5018), 1, + [63864] = 4, + ACTIONS(5038), 1, anon_sym_RBRACE, - ACTIONS(5020), 1, + ACTIONS(5040), 1, anon_sym_COMMA, - STATE(2122), 1, + STATE(2105), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63848] = 4, - ACTIONS(794), 1, - anon_sym_RPAREN, - ACTIONS(5022), 1, + [63878] = 4, + ACTIONS(3784), 1, + anon_sym_RBRACE, + ACTIONS(5036), 1, anon_sym_COMMA, - STATE(2054), 1, - aux_sym_parameters_repeat1, + STATE(2026), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63862] = 4, - ACTIONS(3782), 1, + [63892] = 4, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(5024), 1, + ACTIONS(5042), 1, anon_sym_SEMI, - STATE(2544), 1, + STATE(2553), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63876] = 4, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(5026), 1, - anon_sym_SEMI, - STATE(2498), 1, - sym_where_clause, + [63906] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63890] = 4, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(5028), 1, + ACTIONS(5044), 3, anon_sym_SEMI, - ACTIONS(5030), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63904] = 4, - ACTIONS(3864), 1, anon_sym_RBRACE, - ACTIONS(5032), 1, anon_sym_COMMA, - STATE(2088), 1, - aux_sym_enum_variant_list_repeat2, + [63916] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5046), 1, + anon_sym_SEMI, + ACTIONS(5048), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63918] = 4, - ACTIONS(4073), 1, + [63930] = 4, + ACTIONS(4071), 1, anon_sym_LBRACE, - ACTIONS(5034), 1, + ACTIONS(5050), 1, anon_sym_SEMI, - STATE(304), 1, + STATE(834), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63932] = 4, - ACTIONS(386), 1, - anon_sym_RPAREN, - ACTIONS(5036), 1, - anon_sym_COMMA, - STATE(2109), 1, - aux_sym_arguments_repeat1, + [63944] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63946] = 4, - ACTIONS(520), 1, - anon_sym_RBRACK, - ACTIONS(3197), 1, + ACTIONS(5052), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1962), 1, - aux_sym_array_expression_repeat1, + [63954] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63960] = 4, - ACTIONS(3299), 1, + ACTIONS(5054), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [63964] = 4, + ACTIONS(5056), 1, anon_sym_RPAREN, - ACTIONS(5038), 1, + ACTIONS(5058), 1, anon_sym_COMMA, - STATE(2109), 1, - aux_sym_arguments_repeat1, + STATE(2010), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63974] = 4, - ACTIONS(3832), 1, + [63978] = 4, + ACTIONS(910), 1, + anon_sym_GT, + ACTIONS(5060), 1, + anon_sym_COMMA, + STATE(1991), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63992] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(5041), 1, + ACTIONS(5062), 1, anon_sym_SEMI, - STATE(411), 1, - sym_declaration_list, + STATE(460), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63988] = 4, - ACTIONS(3818), 1, + [64006] = 4, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, + ACTIONS(5064), 1, anon_sym_SEMI, - STATE(787), 1, + STATE(793), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64002] = 4, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(5045), 1, - anon_sym_SEMI, - STATE(2512), 1, - sym_where_clause, + [64020] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64016] = 4, - ACTIONS(2429), 1, - anon_sym_RPAREN, - ACTIONS(5047), 1, + ACTIONS(5066), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1868), 1, - aux_sym_tuple_pattern_repeat1, + [64030] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64030] = 2, + ACTIONS(5068), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [64040] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5049), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(5070), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [64040] = 4, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(5051), 1, - anon_sym_SEMI, - ACTIONS(5053), 1, - anon_sym_EQ, + [64050] = 4, + ACTIONS(4161), 1, + anon_sym_COMMA, + ACTIONS(4163), 1, + anon_sym_GT, + STATE(2045), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64054] = 4, - ACTIONS(4059), 1, - anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_SEMI, - STATE(944), 1, - sym_block, + [64064] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64068] = 4, - ACTIONS(4073), 1, - anon_sym_LBRACE, - ACTIONS(5057), 1, - anon_sym_SEMI, - STATE(312), 1, - sym_block, + ACTIONS(5072), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64076] = 4, + ACTIONS(5074), 1, + sym_identifier, + ACTIONS(5076), 1, + anon_sym_ref, + ACTIONS(5078), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64082] = 4, - ACTIONS(3818), 1, - anon_sym_LBRACE, - ACTIONS(5059), 1, - anon_sym_SEMI, - STATE(783), 1, - sym_declaration_list, + [64090] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4205), 1, + sym_identifier, + STATE(2338), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64096] = 4, - ACTIONS(3782), 1, + [64104] = 4, + ACTIONS(3802), 1, anon_sym_where, - ACTIONS(5061), 1, + ACTIONS(5080), 1, anon_sym_SEMI, - STATE(2537), 1, + STATE(2543), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64110] = 4, - ACTIONS(3868), 1, - anon_sym_RBRACE, - ACTIONS(5063), 1, - anon_sym_COMMA, - STATE(2093), 1, - aux_sym_field_declaration_list_repeat1, + [64118] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64124] = 4, - ACTIONS(5065), 1, - anon_sym_RBRACE, - ACTIONS(5067), 1, + ACTIONS(5082), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(2121), 1, - aux_sym_use_list_repeat1, + [64128] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(5084), 1, + anon_sym_SEMI, + STATE(326), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64138] = 4, - ACTIONS(3868), 1, - anon_sym_RBRACE, - ACTIONS(5063), 1, - anon_sym_COMMA, - STATE(1963), 1, - aux_sym_field_declaration_list_repeat1, + [64142] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(5086), 1, + anon_sym_SEMI, + STATE(324), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64152] = 4, - ACTIONS(2437), 1, - anon_sym_RBRACK, - ACTIONS(5070), 1, - anon_sym_COMMA, - STATE(1868), 1, - aux_sym_tuple_pattern_repeat1, + [64156] = 4, + ACTIONS(3431), 1, + anon_sym_LT2, + ACTIONS(4205), 1, + sym_identifier, + STATE(2340), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64166] = 2, + [64170] = 4, + ACTIONS(3844), 1, + anon_sym_LBRACE, + ACTIONS(5088), 1, + anon_sym_SEMI, + STATE(362), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5072), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [64176] = 4, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(5074), 1, + [64184] = 4, + ACTIONS(3810), 1, + anon_sym_LBRACE, + ACTIONS(5090), 1, anon_sym_SEMI, - ACTIONS(5076), 1, - anon_sym_EQ, + STATE(847), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64190] = 4, - ACTIONS(3832), 1, + [64198] = 4, + ACTIONS(3844), 1, anon_sym_LBRACE, - ACTIONS(5078), 1, + ACTIONS(5092), 1, anon_sym_SEMI, - STATE(369), 1, + STATE(389), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64204] = 4, - ACTIONS(4065), 1, + [64212] = 3, + ACTIONS(4290), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5094), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [64224] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(5080), 1, - anon_sym_SEMI, - ACTIONS(5082), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64218] = 4, - ACTIONS(5084), 1, + ACTIONS(5096), 2, anon_sym_RPAREN, - ACTIONS(5086), 1, anon_sym_COMMA, - STATE(1949), 1, - aux_sym_meta_arguments_repeat1, + [64236] = 4, + ACTIONS(5094), 1, + anon_sym_PIPE, + ACTIONS(5098), 1, + anon_sym_COMMA, + STATE(2133), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64232] = 2, + [64250] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5088), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(5101), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [64242] = 4, - ACTIONS(3818), 1, - anon_sym_LBRACE, - ACTIONS(5090), 1, - anon_sym_SEMI, - STATE(880), 1, - sym_declaration_list, + [64262] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64256] = 4, - ACTIONS(3782), 1, - anon_sym_where, - ACTIONS(5092), 1, + ACTIONS(2391), 3, anon_sym_SEMI, - STATE(2402), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64270] = 4, - ACTIONS(3818), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [64272] = 4, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(5094), 1, + ACTIONS(5103), 1, anon_sym_SEMI, STATE(862), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64284] = 2, + [64286] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5105), 1, + anon_sym_SEMI, + ACTIONS(5107), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5096), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [64294] = 4, - ACTIONS(3840), 1, - anon_sym_RBRACE, - ACTIONS(5098), 1, - anon_sym_COMMA, - STATE(2088), 1, - aux_sym_enum_variant_list_repeat2, + [64300] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, + anon_sym_PLUS, + STATE(1050), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64308] = 4, - ACTIONS(3840), 1, + [64314] = 4, + ACTIONS(3870), 1, anon_sym_RBRACE, - ACTIONS(5098), 1, + ACTIONS(5109), 1, anon_sym_COMMA, - STATE(2105), 1, + STATE(1955), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64322] = 4, - ACTIONS(790), 1, - anon_sym_RPAREN, - ACTIONS(4274), 1, + [64328] = 4, + ACTIONS(3870), 1, + anon_sym_RBRACE, + ACTIONS(5109), 1, anon_sym_COMMA, - STATE(2054), 1, - aux_sym_parameters_repeat1, + STATE(2058), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64336] = 4, - ACTIONS(790), 1, - anon_sym_RPAREN, - ACTIONS(4274), 1, - anon_sym_COMMA, - STATE(2101), 1, - aux_sym_parameters_repeat1, + [64342] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64350] = 4, - ACTIONS(4059), 1, + ACTIONS(5111), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [64352] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(5100), 1, + ACTIONS(5113), 1, anon_sym_SEMI, - STATE(839), 1, + STATE(402), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64364] = 4, - ACTIONS(5102), 1, - anon_sym_RBRACE, - ACTIONS(5104), 1, + [64366] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5115), 1, + anon_sym_SEMI, + ACTIONS(5117), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64380] = 4, + ACTIONS(798), 1, + anon_sym_RPAREN, + ACTIONS(4245), 1, anon_sym_COMMA, - STATE(2139), 1, - aux_sym_field_initializer_list_repeat1, + STATE(1965), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64378] = 4, - ACTIONS(4073), 1, + [64394] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(5107), 1, + ACTIONS(5119), 1, anon_sym_SEMI, - STATE(346), 1, + STATE(340), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64392] = 4, - ACTIONS(922), 1, - anon_sym_GT, - ACTIONS(5109), 1, + [64408] = 4, + ACTIONS(3820), 1, + anon_sym_RBRACE, + ACTIONS(5121), 1, anon_sym_COMMA, - STATE(2022), 1, - aux_sym_type_arguments_repeat1, + STATE(1924), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64406] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(5111), 1, - anon_sym_SEMI, + [64422] = 4, + ACTIONS(798), 1, + anon_sym_RPAREN, + ACTIONS(4245), 1, + anon_sym_COMMA, + STATE(2053), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64417] = 3, - ACTIONS(4067), 1, + [64436] = 3, + ACTIONS(4171), 1, anon_sym_LBRACE, - STATE(1001), 1, + STATE(470), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64428] = 3, - ACTIONS(3832), 1, + [64447] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(389), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64439] = 3, - ACTIONS(3435), 1, - anon_sym_LPAREN, - STATE(1380), 1, - sym_parameters, + STATE(91), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64450] = 3, - ACTIONS(4035), 1, - anon_sym_RBRACE, - ACTIONS(5113), 1, + [64458] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64461] = 3, - ACTIONS(5113), 1, - anon_sym_SEMI, - ACTIONS(5115), 1, - anon_sym_RBRACE, + [64469] = 3, + ACTIONS(3844), 1, + anon_sym_LBRACE, + STATE(397), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64472] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(5117), 1, - anon_sym_SEMI, + [64480] = 3, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(800), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64483] = 3, - ACTIONS(3832), 1, + [64491] = 3, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(388), 1, + STATE(792), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64494] = 2, + [64502] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5102), 2, + ACTIONS(5125), 2, anon_sym_RBRACE, anon_sym_COMMA, - [64503] = 3, - ACTIONS(4118), 1, + [64511] = 3, + ACTIONS(4075), 1, anon_sym_LBRACE, - STATE(338), 1, + STATE(791), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64514] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5119), 2, - sym_identifier, - sym_metavariable, - [64523] = 3, - ACTIONS(15), 1, + [64522] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(149), 1, - sym_block, + STATE(805), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64534] = 3, + [64533] = 3, ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(394), 1, + STATE(812), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64545] = 3, - ACTIONS(5121), 1, - sym_identifier, - ACTIONS(5123), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64556] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(326), 1, - sym_field_declaration_list, + [64544] = 3, + ACTIONS(5127), 1, + anon_sym_SEMI, + ACTIONS(5129), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64567] = 3, - ACTIONS(5113), 1, + [64555] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5131), 2, + sym_identifier, + sym_metavariable, + [64564] = 3, + ACTIONS(5133), 1, anon_sym_SEMI, - ACTIONS(5125), 1, + ACTIONS(5135), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64578] = 2, + [64575] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(149), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4549), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64587] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(5127), 1, + [64586] = 3, + ACTIONS(5133), 1, anon_sym_SEMI, + ACTIONS(5137), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64598] = 3, - ACTIONS(4051), 1, - anon_sym_RPAREN, - ACTIONS(5113), 1, - anon_sym_SEMI, + [64597] = 3, + ACTIONS(3425), 1, + anon_sym_LPAREN, + STATE(1392), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64609] = 3, - ACTIONS(4529), 1, + [64608] = 3, + ACTIONS(5139), 1, sym_identifier, - ACTIONS(4533), 1, + ACTIONS(5141), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64620] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(323), 1, - sym_field_declaration_list, + [64619] = 3, + ACTIONS(2566), 1, + anon_sym_LPAREN, + STATE(850), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64631] = 3, - ACTIONS(5129), 1, - anon_sym_SEMI, - ACTIONS(5131), 1, - anon_sym_as, + [64630] = 3, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(816), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64642] = 3, - ACTIONS(3780), 1, + [64641] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(821), 1, + STATE(817), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64653] = 3, - ACTIONS(4267), 1, - anon_sym_PIPE, - ACTIONS(5133), 1, - anon_sym_EQ, + [64652] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64664] = 3, - ACTIONS(3818), 1, + ACTIONS(5143), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64661] = 3, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(2205), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64672] = 3, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(898), 1, + STATE(877), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64675] = 3, - ACTIONS(4065), 1, + [64683] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(5135), 1, + ACTIONS(5145), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64686] = 3, - ACTIONS(3832), 1, - anon_sym_LBRACE, - STATE(322), 1, - sym_declaration_list, + [64694] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64697] = 3, - ACTIONS(3780), 1, - anon_sym_LBRACE, - STATE(813), 1, - sym_field_declaration_list, + ACTIONS(4335), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64703] = 3, + ACTIONS(3995), 1, + anon_sym_COLON_COLON, + ACTIONS(5147), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64708] = 3, - ACTIONS(5137), 1, - anon_sym_LT, - STATE(681), 1, - sym_type_parameters, + [64714] = 3, + ACTIONS(4039), 1, + anon_sym_COLON_COLON, + ACTIONS(5147), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64719] = 3, - ACTIONS(3818), 1, + [64725] = 3, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(929), 1, + STATE(893), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64730] = 3, - ACTIONS(3818), 1, + [64736] = 3, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(930), 1, + STATE(896), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64741] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(385), 1, - sym_field_declaration_list, + [64747] = 3, + ACTIONS(4043), 1, + anon_sym_COLON_COLON, + ACTIONS(5147), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64752] = 3, - ACTIONS(4267), 1, - anon_sym_PIPE, - ACTIONS(5139), 1, - anon_sym_in, + [64758] = 3, + ACTIONS(5074), 1, + sym_identifier, + ACTIONS(5078), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64763] = 3, - ACTIONS(4267), 1, + [64769] = 3, + ACTIONS(4294), 1, anon_sym_PIPE, - ACTIONS(5141), 1, + ACTIONS(5149), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64774] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(329), 1, - sym_field_declaration_list, + [64780] = 3, + ACTIONS(3582), 1, + anon_sym_COLON_COLON, + ACTIONS(5151), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64785] = 3, - ACTIONS(4067), 1, - anon_sym_LBRACE, - STATE(785), 1, - sym_enum_variant_list, + [64791] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5153), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64796] = 2, + [64802] = 3, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(787), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5065), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64805] = 3, - ACTIONS(4067), 1, + [64813] = 3, + ACTIONS(4075), 1, anon_sym_LBRACE, - STATE(946), 1, + STATE(924), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64816] = 3, - ACTIONS(4267), 1, + [64824] = 3, + ACTIONS(4294), 1, anon_sym_PIPE, - ACTIONS(5143), 1, + ACTIONS(5155), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64827] = 3, - ACTIONS(4267), 1, + [64835] = 3, + ACTIONS(4294), 1, anon_sym_PIPE, - ACTIONS(5145), 1, - anon_sym_in, + ACTIONS(5157), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64838] = 3, - ACTIONS(3780), 1, + [64846] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(951), 1, + STATE(930), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64849] = 3, - ACTIONS(4065), 1, + [64857] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(5147), 1, + ACTIONS(5159), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64860] = 3, - ACTIONS(3780), 1, + [64868] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(956), 1, + STATE(934), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64871] = 3, - ACTIONS(3818), 1, + [64879] = 3, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(957), 1, + STATE(935), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64882] = 3, - ACTIONS(4267), 1, + [64890] = 3, + ACTIONS(4294), 1, anon_sym_PIPE, - ACTIONS(5149), 1, - anon_sym_EQ, + ACTIONS(5161), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64893] = 3, - ACTIONS(3435), 1, - anon_sym_LPAREN, - STATE(1669), 1, - sym_parameters, + [64901] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5163), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64904] = 3, - ACTIONS(3818), 1, + [64912] = 3, + ACTIONS(4075), 1, anon_sym_LBRACE, - STATE(786), 1, - sym_declaration_list, + STATE(886), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64915] = 3, - ACTIONS(3780), 1, - anon_sym_LBRACE, - STATE(793), 1, - sym_field_declaration_list, + [64923] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5165), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64926] = 3, - ACTIONS(4267), 1, - anon_sym_PIPE, - ACTIONS(5151), 1, - anon_sym_in, + [64934] = 3, + ACTIONS(3844), 1, + anon_sym_LBRACE, + STATE(286), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64937] = 3, - ACTIONS(2926), 1, - anon_sym_COLON, - ACTIONS(4065), 1, - anon_sym_PLUS, + [64945] = 3, + ACTIONS(3844), 1, + anon_sym_LBRACE, + STATE(287), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64948] = 3, - ACTIONS(2930), 1, - anon_sym_COLON, - ACTIONS(4065), 1, - anon_sym_PLUS, + [64956] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64959] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(94), 1, - sym_block, + ACTIONS(5167), 2, + sym_identifier, + sym_metavariable, + [64965] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5169), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64970] = 3, - ACTIONS(2313), 1, + [64976] = 3, + ACTIONS(2319), 1, anon_sym_SQUOTE, - STATE(1944), 1, + STATE(2025), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64981] = 3, - ACTIONS(4267), 1, + [64987] = 3, + ACTIONS(4294), 1, anon_sym_PIPE, - ACTIONS(5153), 1, + ACTIONS(5171), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64992] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(5155), 1, + [64998] = 3, + ACTIONS(4019), 1, + anon_sym_RBRACE, + ACTIONS(5133), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65003] = 3, - ACTIONS(3818), 1, + [65009] = 3, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(800), 1, + STATE(305), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65014] = 3, - ACTIONS(3818), 1, - anon_sym_LBRACE, - STATE(804), 1, - sym_declaration_list, + [65020] = 3, + ACTIONS(3973), 1, + anon_sym_RBRACE, + ACTIONS(5133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65025] = 2, + [65031] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5157), 2, - sym_identifier, - sym_metavariable, - [65034] = 3, - ACTIONS(3780), 1, + ACTIONS(4857), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65040] = 3, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(808), 1, + STATE(354), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65045] = 3, - ACTIONS(4267), 1, - anon_sym_PIPE, - ACTIONS(5159), 1, - anon_sym_EQ, + [65051] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65056] = 3, - ACTIONS(3832), 1, + ACTIONS(4788), 2, + anon_sym_COMMA, + anon_sym_GT, + [65060] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(396), 1, - sym_declaration_list, + STATE(1086), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65067] = 2, + [65071] = 3, + ACTIONS(3844), 1, + anon_sym_LBRACE, + STATE(347), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5161), 2, - sym_identifier, - sym_metavariable, - [65076] = 3, - ACTIONS(3971), 1, - anon_sym_COLON_COLON, - ACTIONS(5163), 1, - anon_sym_RPAREN, + [65082] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65087] = 3, - ACTIONS(3979), 1, - anon_sym_COLON_COLON, - ACTIONS(5163), 1, - anon_sym_RPAREN, + ACTIONS(4760), 2, + anon_sym_COMMA, + anon_sym_GT, + [65091] = 3, + ACTIONS(5173), 1, + anon_sym_SEMI, + ACTIONS(5175), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65098] = 3, - ACTIONS(4267), 1, + [65102] = 3, + ACTIONS(4294), 1, anon_sym_PIPE, - ACTIONS(5165), 1, + ACTIONS(5177), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65109] = 3, - ACTIONS(3981), 1, - anon_sym_COLON_COLON, - ACTIONS(5163), 1, - anon_sym_RPAREN, + [65113] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65120] = 3, - ACTIONS(3435), 1, - anon_sym_LPAREN, - STATE(1684), 1, - sym_parameters, + ACTIONS(4753), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65122] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5179), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65131] = 3, - ACTIONS(3971), 1, - anon_sym_COLON_COLON, - ACTIONS(5167), 1, - anon_sym_RPAREN, + [65133] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65142] = 3, - ACTIONS(3580), 1, - anon_sym_COLON_COLON, - ACTIONS(5169), 1, + ACTIONS(4842), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [65142] = 3, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(931), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65153] = 3, - ACTIONS(4267), 1, - anon_sym_PIPE, - ACTIONS(5171), 1, - anon_sym_EQ, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(939), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65164] = 3, - ACTIONS(3006), 1, - anon_sym_COLON, - ACTIONS(4065), 1, - anon_sym_PLUS, + [65164] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65175] = 2, + ACTIONS(5181), 2, + sym_identifier, + sym_metavariable, + [65173] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4985), 2, - anon_sym_RBRACE, + ACTIONS(4328), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [65184] = 3, - ACTIONS(3832), 1, - anon_sym_LBRACE, - STATE(418), 1, - sym_declaration_list, + [65182] = 3, + ACTIONS(2566), 1, + anon_sym_LPAREN, + STATE(975), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65195] = 3, - ACTIONS(3818), 1, + [65193] = 3, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(1015), 1, + STATE(987), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65206] = 3, - ACTIONS(3832), 1, + [65204] = 3, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(401), 1, - sym_declaration_list, + STATE(332), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65217] = 3, - ACTIONS(3832), 1, - anon_sym_LBRACE, - STATE(402), 1, - sym_declaration_list, + [65215] = 3, + ACTIONS(4049), 1, + anon_sym_COLON, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65228] = 2, + [65226] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5173), 2, + ACTIONS(4695), 2, anon_sym_RBRACE, anon_sym_COMMA, - [65237] = 2, + [65235] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5183), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4522), 2, - anon_sym_COMMA, - anon_sym_PIPE, [65246] = 3, - ACTIONS(3818), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(1026), 1, + STATE(995), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65257] = 3, - ACTIONS(3818), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(1027), 1, + STATE(997), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65268] = 2, + [65268] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5185), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5175), 2, - sym_identifier, - sym_metavariable, - [65277] = 2, + [65279] = 3, + ACTIONS(5187), 1, + anon_sym_LBRACK, + ACTIONS(5189), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5177), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65286] = 3, - ACTIONS(2560), 1, - anon_sym_LPAREN, - STATE(844), 1, - sym_parameters, + [65290] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65297] = 3, - ACTIONS(4267), 1, + ACTIONS(5191), 2, + sym_identifier, + sym_metavariable, + [65299] = 3, + ACTIONS(4294), 1, anon_sym_PIPE, - ACTIONS(5179), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65308] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(5181), 1, - anon_sym_SEMI, + ACTIONS(5193), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65319] = 3, - ACTIONS(4118), 1, + [65310] = 3, + ACTIONS(4075), 1, anon_sym_LBRACE, - STATE(428), 1, + STATE(1015), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65330] = 3, - ACTIONS(5183), 1, + [65321] = 3, + ACTIONS(5195), 1, anon_sym_LBRACK, - ACTIONS(5185), 1, + ACTIONS(5197), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65341] = 2, + [65332] = 3, + ACTIONS(3425), 1, + anon_sym_LPAREN, + STATE(1655), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5187), 2, - sym_identifier, - sym_metavariable, - [65350] = 3, - ACTIONS(3832), 1, + [65343] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(71), 1, + sym_closure_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65354] = 3, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(420), 1, + STATE(440), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65361] = 3, - ACTIONS(4263), 1, - anon_sym_COLON, - ACTIONS(4267), 1, - anon_sym_PIPE, + [65365] = 3, + ACTIONS(3800), 1, + anon_sym_LBRACE, + STATE(427), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65372] = 3, - ACTIONS(5189), 1, - sym_identifier, - ACTIONS(5191), 1, - sym_mutable_specifier, + [65376] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5199), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65383] = 3, - ACTIONS(3828), 1, + [65387] = 3, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(434), 1, + STATE(413), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65394] = 3, - ACTIONS(5193), 1, - anon_sym_LBRACK, - ACTIONS(5195), 1, - anon_sym_BANG, + [65398] = 3, + ACTIONS(4171), 1, + anon_sym_LBRACE, + STATE(388), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65405] = 3, - ACTIONS(5197), 1, - sym_identifier, - ACTIONS(5199), 1, - sym_mutable_specifier, + [65409] = 3, + ACTIONS(2634), 1, + anon_sym_LBRACE, + STATE(1131), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65416] = 3, - ACTIONS(3574), 1, - anon_sym_COLON_COLON, - ACTIONS(5201), 1, - anon_sym_BANG, + [65420] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65427] = 3, - ACTIONS(4067), 1, + ACTIONS(4624), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65429] = 3, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, anon_sym_LBRACE, - STATE(881), 1, - sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65438] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(58), 1, - sym_closure_parameters, + [65440] = 3, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65449] = 3, - ACTIONS(3582), 1, - anon_sym_COLON_COLON, - ACTIONS(5201), 1, - anon_sym_BANG, + [65451] = 3, + ACTIONS(2566), 1, + anon_sym_LPAREN, + STATE(830), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65460] = 2, + [65462] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1084), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4413), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65469] = 3, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(2300), 1, - sym_lifetime, + [65473] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65480] = 3, - ACTIONS(3818), 1, + ACTIONS(5209), 2, + anon_sym_const, + sym_mutable_specifier, + [65482] = 3, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(919), 1, + STATE(1043), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65491] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(441), 1, - sym_field_declaration_list, + [65493] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5211), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65502] = 3, - ACTIONS(5203), 1, - anon_sym_SEMI, - ACTIONS(5205), 1, - anon_sym_as, + [65504] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1052), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65513] = 3, - ACTIONS(4009), 1, - anon_sym_RBRACE, - ACTIONS(5113), 1, - anon_sym_SEMI, + [65515] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1137), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65524] = 3, - ACTIONS(2950), 1, - anon_sym_COLON, - ACTIONS(4065), 1, - anon_sym_PLUS, + [65526] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(4593), 2, + anon_sym_RBRACE, + anon_sym_COMMA, [65535] = 3, - ACTIONS(2624), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(1112), 1, - sym_field_initializer_list, + STATE(815), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65546] = 3, - ACTIONS(4049), 1, - anon_sym_RBRACE, - ACTIONS(5113), 1, - anon_sym_SEMI, + ACTIONS(586), 1, + anon_sym_LBRACE, + STATE(229), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65557] = 3, - ACTIONS(4011), 1, - anon_sym_RBRACE, - ACTIONS(5113), 1, - anon_sym_SEMI, + ACTIONS(888), 1, + anon_sym_LBRACE, + STATE(1478), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65568] = 3, - ACTIONS(4267), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_in, + ACTIONS(3425), 1, + anon_sym_LPAREN, + STATE(1662), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65579] = 3, - ACTIONS(5209), 1, - anon_sym_LPAREN, - ACTIONS(5211), 1, - anon_sym_LBRACE, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(61), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65590] = 3, - ACTIONS(5213), 1, - anon_sym_LPAREN, - ACTIONS(5215), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, + STATE(257), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65601] = 3, - ACTIONS(582), 1, + ACTIONS(586), 1, anon_sym_LBRACE, - STATE(230), 1, + STATE(237), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65612] = 3, - ACTIONS(4065), 1, - anon_sym_PLUS, - ACTIONS(5217), 1, - anon_sym_GT, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1053), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65623] = 3, - ACTIONS(582), 1, + ACTIONS(586), 1, anon_sym_LBRACE, - STATE(243), 1, + STATE(242), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65634] = 3, - ACTIONS(284), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(1056), 1, - sym_block, + STATE(256), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65645] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1131), 1, - sym_block, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5213), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65656] = 3, - ACTIONS(582), 1, + ACTIONS(586), 1, anon_sym_LBRACE, - STATE(220), 1, + STATE(221), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65667] = 3, - ACTIONS(284), 1, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(1074), 1, - sym_block, + STATE(359), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65678] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(96), 1, - sym_block, + ACTIONS(5133), 1, + anon_sym_SEMI, + ACTIONS(5215), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65689] = 3, - ACTIONS(3832), 1, - anon_sym_LBRACE, - STATE(320), 1, - sym_declaration_list, + ACTIONS(5217), 1, + anon_sym_SEMI, + ACTIONS(5219), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65700] = 3, - ACTIONS(3435), 1, - anon_sym_LPAREN, - STATE(1707), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65711] = 3, - ACTIONS(5113), 1, + ACTIONS(5133), 1, anon_sym_SEMI, - ACTIONS(5219), 1, + ACTIONS(5221), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65722] = 2, + [65711] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4269), 2, - anon_sym_RPAREN, + ACTIONS(4503), 2, anon_sym_COMMA, - [65731] = 3, - ACTIONS(5113), 1, - anon_sym_SEMI, - ACTIONS(5221), 1, - anon_sym_RBRACE, + anon_sym_GT, + [65720] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65742] = 2, + ACTIONS(5223), 2, + sym_float_literal, + sym_integer_literal, + [65729] = 3, + ACTIONS(3425), 1, + anon_sym_LPAREN, + STATE(1677), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4383), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65751] = 2, + [65740] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5223), 2, + ACTIONS(4262), 2, anon_sym_RPAREN, anon_sym_COMMA, + [65749] = 3, + ACTIONS(3590), 1, + anon_sym_COLON_COLON, + ACTIONS(5225), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, [65760] = 3, - ACTIONS(3435), 1, + ACTIONS(3425), 1, anon_sym_LPAREN, - STATE(1720), 1, + STATE(1643), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65771] = 3, + ACTIONS(3588), 1, + anon_sym_COLON_COLON, ACTIONS(5225), 1, - anon_sym_SEMI, - ACTIONS(5227), 1, - anon_sym_as, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65782] = 3, - ACTIONS(4118), 1, - anon_sym_LBRACE, - STATE(474), 1, - sym_enum_variant_list, + ACTIONS(5133), 1, + anon_sym_SEMI, + ACTIONS(5227), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65793] = 3, - ACTIONS(5113), 1, - anon_sym_SEMI, + ACTIONS(4294), 1, + anon_sym_PIPE, ACTIONS(5229), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65804] = 3, - ACTIONS(5113), 1, - anon_sym_SEMI, ACTIONS(5231), 1, - anon_sym_RPAREN, + sym_identifier, + ACTIONS(5233), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65815] = 2, + [65815] = 3, + ACTIONS(5133), 1, + anon_sym_SEMI, + ACTIONS(5235), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5233), 2, - sym_float_literal, - sym_integer_literal, - [65824] = 3, - ACTIONS(3435), 1, - anon_sym_LPAREN, - STATE(1694), 1, - sym_parameters, + [65826] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(5237), 2, + anon_sym_const, + sym_mutable_specifier, [65835] = 3, - ACTIONS(4039), 1, - anon_sym_RPAREN, - ACTIONS(5113), 1, - anon_sym_SEMI, + ACTIONS(3425), 1, + anon_sym_LPAREN, + STATE(1386), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65846] = 3, - ACTIONS(3780), 1, - anon_sym_LBRACE, - STATE(916), 1, - sym_field_declaration_list, + ACTIONS(3538), 1, + anon_sym_COLON_COLON, + ACTIONS(3654), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65857] = 3, - ACTIONS(5113), 1, + ACTIONS(5133), 1, anon_sym_SEMI, - ACTIONS(5235), 1, - anon_sym_RPAREN, + ACTIONS(5239), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65868] = 3, - ACTIONS(582), 1, + ACTIONS(586), 1, anon_sym_LBRACE, STATE(226), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65879] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4860), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65888] = 3, - ACTIONS(5113), 1, + [65879] = 3, + ACTIONS(5133), 1, anon_sym_SEMI, - ACTIONS(5237), 1, - anon_sym_RBRACE, + ACTIONS(5241), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65899] = 3, - ACTIONS(4267), 1, + [65890] = 3, + ACTIONS(4294), 1, anon_sym_PIPE, - ACTIONS(5239), 1, + ACTIONS(5243), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65910] = 2, + [65901] = 3, + ACTIONS(5245), 1, + anon_sym_SEMI, + ACTIONS(5247), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5241), 2, - anon_sym_const, - sym_mutable_specifier, - [65919] = 2, + [65912] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4444), 2, - anon_sym_COMMA, - anon_sym_GT, - [65928] = 3, - ACTIONS(3818), 1, + ACTIONS(5249), 2, + sym_identifier, + sym_metavariable, + [65921] = 3, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(922), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65939] = 3, - ACTIONS(3435), 1, - anon_sym_LPAREN, - STATE(1383), 1, - sym_parameters, + STATE(454), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65950] = 3, - ACTIONS(3780), 1, - anon_sym_LBRACE, - STATE(928), 1, - sym_field_declaration_list, + [65932] = 3, + ACTIONS(2906), 1, + anon_sym_COLON, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65961] = 2, + [65943] = 3, + ACTIONS(3999), 1, + anon_sym_RPAREN, + ACTIONS(5133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4850), 2, - anon_sym_COMMA, - anon_sym_GT, - [65970] = 3, - ACTIONS(3548), 1, - anon_sym_COLON_COLON, - ACTIONS(3640), 1, - anon_sym_BANG, + [65954] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(129), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65981] = 3, - ACTIONS(3580), 1, - anon_sym_COLON_COLON, - ACTIONS(5243), 1, + [65965] = 3, + ACTIONS(4001), 1, anon_sym_RPAREN, + ACTIONS(5133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65992] = 3, - ACTIONS(2568), 1, - anon_sym_LT2, - STATE(1089), 1, - sym_type_arguments, + [65976] = 3, + ACTIONS(4009), 1, + anon_sym_RPAREN, + ACTIONS(5133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66003] = 3, - ACTIONS(284), 1, + [65987] = 3, + ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(1072), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66014] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(65), 1, - sym_closure_parameters, + STATE(451), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66025] = 3, - ACTIONS(2560), 1, - anon_sym_LPAREN, - STATE(968), 1, - sym_parameters, + [65998] = 3, + ACTIONS(2574), 1, + anon_sym_LT2, + STATE(1081), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66036] = 3, - ACTIONS(4118), 1, + [66009] = 3, + ACTIONS(4171), 1, anon_sym_LBRACE, - STATE(284), 1, + STATE(443), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66047] = 3, - ACTIONS(3832), 1, - anon_sym_LBRACE, - STATE(365), 1, - sym_declaration_list, + [66020] = 3, + ACTIONS(3425), 1, + anon_sym_LPAREN, + STATE(1703), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66058] = 3, - ACTIONS(4021), 1, - anon_sym_RPAREN, - ACTIONS(5113), 1, - anon_sym_SEMI, + [66031] = 3, + ACTIONS(2800), 1, + anon_sym_COLON, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66069] = 3, - ACTIONS(3832), 1, - anon_sym_LBRACE, - STATE(478), 1, - sym_declaration_list, + [66042] = 3, + ACTIONS(2796), 1, + anon_sym_COLON, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66080] = 3, - ACTIONS(4019), 1, - anon_sym_RPAREN, - ACTIONS(5113), 1, + [66053] = 3, + ACTIONS(4011), 1, + anon_sym_RBRACE, + ACTIONS(5133), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66091] = 3, - ACTIONS(3981), 1, - anon_sym_COLON_COLON, - ACTIONS(5167), 1, - anon_sym_RPAREN, + [66064] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66102] = 2, + ACTIONS(5094), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [66073] = 3, + ACTIONS(3427), 1, + anon_sym_BANG, + ACTIONS(5251), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4821), 2, - anon_sym_COMMA, - anon_sym_GT, - [66111] = 3, - ACTIONS(4065), 1, + [66084] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(5245), 1, - anon_sym_SEMI, + ACTIONS(5253), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66122] = 3, - ACTIONS(3828), 1, + [66095] = 3, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(310), 1, - sym_field_declaration_list, + STATE(433), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66133] = 2, + [66106] = 3, + ACTIONS(4015), 1, + anon_sym_RPAREN, + ACTIONS(5133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4711), 2, + [66117] = 3, + ACTIONS(4021), 1, anon_sym_RBRACE, - anon_sym_COMMA, - [66142] = 3, - ACTIONS(3592), 1, - anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_COLON_COLON, + ACTIONS(5133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66153] = 3, - ACTIONS(3784), 1, - anon_sym_LT, - STATE(740), 1, - sym_type_parameters, + [66128] = 3, + ACTIONS(2936), 1, + anon_sym_COLON, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66139] = 3, + ACTIONS(4635), 1, + sym_identifier, + ACTIONS(4639), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66164] = 3, - ACTIONS(2560), 1, + [66150] = 3, + ACTIONS(3425), 1, anon_sym_LPAREN, - STATE(939), 1, + STATE(1671), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66175] = 2, + [66161] = 3, + ACTIONS(3800), 1, + anon_sym_LBRACE, + STATE(423), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4112), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66184] = 3, - ACTIONS(582), 1, - anon_sym_LBRACE, - STATE(239), 1, - sym_block, + [66172] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5255), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66195] = 2, + [66183] = 3, + ACTIONS(3425), 1, + anon_sym_LPAREN, + STATE(1378), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5249), 2, - anon_sym_const, - sym_mutable_specifier, - [66204] = 3, - ACTIONS(3832), 1, + [66194] = 3, + ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(458), 1, + STATE(417), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66215] = 3, - ACTIONS(5251), 1, - anon_sym_LPAREN, - ACTIONS(5253), 1, + [66205] = 3, + ACTIONS(3844), 1, anon_sym_LBRACE, + STATE(415), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66226] = 3, - ACTIONS(5255), 1, - anon_sym_LPAREN, + [66216] = 3, + ACTIONS(3804), 1, + anon_sym_LT, + STATE(737), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66227] = 3, ACTIONS(5257), 1, - anon_sym_LBRACE, + anon_sym_LT, + STATE(710), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66237] = 3, - ACTIONS(4267), 1, - anon_sym_PIPE, - ACTIONS(5259), 1, - anon_sym_EQ, + [66238] = 3, + ACTIONS(3924), 1, + anon_sym_COLON, + STATE(2017), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66248] = 3, - ACTIONS(3437), 1, + [66249] = 3, + ACTIONS(3800), 1, + anon_sym_LBRACE, + STATE(410), 1, + sym_field_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66260] = 3, + ACTIONS(3570), 1, anon_sym_BANG, - ACTIONS(5261), 1, + ACTIONS(5259), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66259] = 2, + [66271] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2391), 2, + ACTIONS(2395), 2, anon_sym_COMMA, anon_sym_GT, - [66268] = 3, - ACTIONS(3893), 1, - anon_sym_COLON, - STATE(1951), 1, - sym_trait_bounds, + [66280] = 3, + ACTIONS(2720), 1, + anon_sym_COLON_COLON, + ACTIONS(3932), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66279] = 3, - ACTIONS(4017), 1, - anon_sym_COLON, - ACTIONS(4065), 1, - anon_sym_PLUS, + [66291] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66290] = 2, + ACTIONS(5261), 2, + anon_sym_const, + sym_mutable_specifier, + [66300] = 3, + ACTIONS(3995), 1, + anon_sym_COLON_COLON, + ACTIONS(5263), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5263), 2, - sym_identifier, - sym_metavariable, - [66299] = 3, - ACTIONS(284), 1, + [66311] = 3, + ACTIONS(5265), 1, + anon_sym_LPAREN, + ACTIONS(5267), 1, anon_sym_LBRACE, - STATE(1130), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66310] = 3, - ACTIONS(5265), 1, - anon_sym_SEMI, - ACTIONS(5267), 1, - anon_sym_as, + [66322] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66321] = 3, - ACTIONS(3435), 1, + ACTIONS(5269), 2, + sym_identifier, + sym_metavariable, + [66331] = 3, + ACTIONS(5271), 1, anon_sym_LPAREN, - STATE(1667), 1, - sym_parameters, + ACTIONS(5273), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66332] = 3, - ACTIONS(4806), 1, - sym_identifier, - ACTIONS(4810), 1, - sym_mutable_specifier, + [66342] = 3, + ACTIONS(4171), 1, + anon_sym_LBRACE, + STATE(310), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66343] = 2, + [66353] = 3, + ACTIONS(4039), 1, + anon_sym_COLON_COLON, + ACTIONS(5263), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5269), 2, - anon_sym_const, - sym_mutable_specifier, - [66352] = 3, - ACTIONS(3435), 1, - anon_sym_LPAREN, - STATE(1387), 1, - sym_parameters, + [66364] = 3, + ACTIONS(4043), 1, + anon_sym_COLON_COLON, + ACTIONS(5263), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66363] = 3, - ACTIONS(2664), 1, + [66375] = 3, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(3959), 1, - anon_sym_BANG, + ACTIONS(5275), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66374] = 3, - ACTIONS(888), 1, - anon_sym_LBRACE, - STATE(1462), 1, - sym_block, + [66386] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66385] = 3, - ACTIONS(3979), 1, - anon_sym_COLON_COLON, - ACTIONS(5167), 1, + ACTIONS(4123), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [66395] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66396] = 2, - ACTIONS(5271), 1, - anon_sym_EQ_GT, + ACTIONS(5277), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66404] = 3, + ACTIONS(5279), 1, + sym_identifier, + ACTIONS(5281), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66404] = 2, - ACTIONS(5273), 1, - anon_sym_SEMI, + [66415] = 3, + ACTIONS(4290), 1, + anon_sym_COLON, + ACTIONS(4294), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66412] = 2, - ACTIONS(5275), 1, - sym_identifier, + [66426] = 2, + ACTIONS(4288), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66420] = 2, - ACTIONS(4804), 1, - sym_identifier, + [66434] = 2, + ACTIONS(4762), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66428] = 2, - ACTIONS(4812), 1, - sym_identifier, + [66442] = 2, + ACTIONS(5283), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66436] = 2, - ACTIONS(5277), 1, + [66450] = 2, + ACTIONS(5285), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66444] = 2, - ACTIONS(5279), 1, - anon_sym_SEMI, + [66458] = 2, + ACTIONS(2686), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66452] = 2, - ACTIONS(5281), 1, - anon_sym_RBRACK, + [66466] = 2, + ACTIONS(5287), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66460] = 2, - ACTIONS(5283), 1, - sym_identifier, + [66474] = 2, + ACTIONS(2726), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66468] = 2, - ACTIONS(5285), 1, + [66482] = 2, + ACTIONS(5289), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66476] = 2, - ACTIONS(5287), 1, - sym_identifier, + [66490] = 2, + ACTIONS(4818), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66484] = 2, - ACTIONS(5289), 1, + [66498] = 2, + ACTIONS(4874), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66492] = 2, + [66506] = 2, ACTIONS(5291), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66500] = 2, + [66514] = 2, ACTIONS(5293), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66508] = 2, - ACTIONS(5295), 1, - sym_identifier, + [66522] = 2, + ACTIONS(4952), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66516] = 2, - ACTIONS(4802), 1, + [66530] = 2, + ACTIONS(5295), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66524] = 2, + [66538] = 2, ACTIONS(5297), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66532] = 2, + [66546] = 2, ACTIONS(5299), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66540] = 2, - ACTIONS(4795), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66548] = 2, + [66554] = 2, ACTIONS(5301), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66556] = 2, + [66562] = 2, ACTIONS(5303), 1, - sym_identifier, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66564] = 2, + [66570] = 2, ACTIONS(5305), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66572] = 2, + [66578] = 2, ACTIONS(5307), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66580] = 2, - ACTIONS(2698), 1, - anon_sym_COLON_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66588] = 2, + [66586] = 2, ACTIONS(5309), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66596] = 2, + [66594] = 2, ACTIONS(5311), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66604] = 2, - ACTIONS(4763), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66612] = 2, + [66602] = 2, ACTIONS(5313), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66620] = 2, - ACTIONS(4841), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66628] = 2, + [66610] = 2, ACTIONS(5315), 1, - sym_identifier, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66636] = 2, - ACTIONS(4755), 1, - anon_sym_RBRACE, + [66618] = 2, + ACTIONS(5317), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66644] = 2, - ACTIONS(4759), 1, - sym_identifier, + [66626] = 2, + ACTIONS(5319), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66652] = 2, - ACTIONS(5317), 1, - sym_identifier, + [66634] = 2, + ACTIONS(3223), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66660] = 2, - ACTIONS(4761), 1, + [66642] = 2, + ACTIONS(4664), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66668] = 2, - ACTIONS(4753), 1, - anon_sym_GT, + [66650] = 2, + ACTIONS(3499), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66676] = 2, - ACTIONS(5319), 1, - sym_identifier, + [66658] = 2, + ACTIONS(4280), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66684] = 2, + [66666] = 2, ACTIONS(5321), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66692] = 2, - ACTIONS(5323), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66700] = 2, - ACTIONS(5325), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66708] = 2, - ACTIONS(5327), 1, + [66674] = 2, + ACTIONS(4554), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66716] = 2, - ACTIONS(5329), 1, + [66682] = 2, + ACTIONS(5323), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66724] = 2, - ACTIONS(5331), 1, + [66690] = 2, + ACTIONS(5325), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66732] = 2, - ACTIONS(5333), 1, - sym_identifier, + [66698] = 2, + ACTIONS(5327), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66740] = 2, - ACTIONS(5335), 1, - anon_sym_SEMI, + [66706] = 2, + ACTIONS(5329), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66748] = 2, - ACTIONS(5337), 1, + [66714] = 2, + ACTIONS(3195), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66756] = 2, - ACTIONS(5339), 1, - anon_sym_SEMI, + [66722] = 2, + ACTIONS(5331), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66764] = 2, - ACTIONS(3221), 1, - anon_sym_COLON_COLON, + [66730] = 2, + ACTIONS(4976), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66772] = 2, - ACTIONS(3510), 1, - anon_sym_COLON_COLON, + [66738] = 2, + ACTIONS(5333), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66780] = 2, - ACTIONS(5341), 1, - sym_self, + [66746] = 2, + ACTIONS(5335), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66788] = 2, - ACTIONS(5343), 1, + [66754] = 2, + ACTIONS(5337), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66796] = 2, - ACTIONS(5345), 1, - anon_sym_COLON, + [66762] = 2, + ACTIONS(5339), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66804] = 2, - ACTIONS(2411), 1, - anon_sym_EQ_GT, + [66770] = 2, + ACTIONS(5341), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66812] = 2, - ACTIONS(3175), 1, - anon_sym_COLON_COLON, + [66778] = 2, + ACTIONS(5343), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66820] = 2, - ACTIONS(5347), 1, - anon_sym_COLON_COLON, + [66786] = 2, + ACTIONS(5345), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66828] = 2, - ACTIONS(2459), 1, - anon_sym_PLUS, + [66794] = 2, + ACTIONS(5347), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66836] = 2, + [66802] = 2, ACTIONS(5349), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66844] = 2, + [66810] = 2, ACTIONS(5351), 1, - anon_sym_fn, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66852] = 2, + [66818] = 2, ACTIONS(5353), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66860] = 2, + [66826] = 2, ACTIONS(5355), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66868] = 2, + [66834] = 2, ACTIONS(5357), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66876] = 2, + [66842] = 2, ACTIONS(5359), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66884] = 2, + [66850] = 2, ACTIONS(5361), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66892] = 2, + [66858] = 2, ACTIONS(5363), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66900] = 2, + [66866] = 2, ACTIONS(5365), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66908] = 2, + [66874] = 2, ACTIONS(5367), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66882] = 2, + ACTIONS(4566), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66916] = 2, + [66890] = 2, ACTIONS(5369), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66924] = 2, + [66898] = 2, ACTIONS(5371), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66932] = 2, + [66906] = 2, ACTIONS(5373), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66940] = 2, - ACTIONS(5375), 1, + [66914] = 2, + ACTIONS(3187), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66948] = 2, - ACTIONS(2664), 1, - anon_sym_COLON_COLON, + [66922] = 2, + ACTIONS(4604), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66930] = 2, + ACTIONS(5375), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66956] = 2, + [66938] = 2, ACTIONS(5377), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66964] = 2, - ACTIONS(5247), 1, + [66946] = 2, + ACTIONS(2720), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66972] = 2, - ACTIONS(4726), 1, + [66954] = 2, + ACTIONS(4401), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66980] = 2, + [66962] = 2, + ACTIONS(5259), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66970] = 2, ACTIONS(5379), 1, - anon_sym_fn, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66988] = 2, + [66978] = 2, ACTIONS(5381), 1, - anon_sym_SEMI, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66996] = 2, - ACTIONS(2445), 1, - anon_sym_PLUS, + [66986] = 2, + ACTIONS(5383), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67004] = 2, - ACTIONS(520), 1, - anon_sym_RBRACK, + [66994] = 2, + ACTIONS(4021), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67012] = 2, - ACTIONS(5383), 1, - anon_sym_fn, + [67002] = 2, + ACTIONS(4205), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67020] = 2, + [67010] = 2, ACTIONS(5385), 1, - anon_sym_fn, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67028] = 2, + [67018] = 2, ACTIONS(5387), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67036] = 2, - ACTIONS(5389), 1, - sym_identifier, + [67026] = 2, + ACTIONS(2451), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67044] = 2, - ACTIONS(5391), 1, - anon_sym_RBRACK, + [67034] = 2, + ACTIONS(5389), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67052] = 2, - ACTIONS(4873), 1, - anon_sym_RBRACE, + [67042] = 2, + ACTIONS(5391), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67060] = 2, + [67050] = 2, ACTIONS(5393), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67068] = 2, + [67058] = 2, ACTIONS(5395), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67076] = 2, - ACTIONS(4104), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67084] = 2, + [67066] = 2, ACTIONS(5397), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67092] = 2, + [67074] = 2, ACTIONS(5399), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67082] = 2, + ACTIONS(4011), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67100] = 2, + [67090] = 2, ACTIONS(5401), 1, - anon_sym_COLON, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67108] = 2, + [67098] = 2, ACTIONS(5403), 1, - sym_identifier, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67106] = 2, + ACTIONS(3219), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67116] = 2, + [67114] = 2, ACTIONS(5405), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67124] = 2, - ACTIONS(3522), 1, - anon_sym_COLON_COLON, + [67122] = 2, + ACTIONS(554), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67132] = 2, + [67130] = 2, + ACTIONS(2419), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67138] = 2, ACTIONS(5407), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67146] = 2, + ACTIONS(5239), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67154] = 2, + ACTIONS(3526), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67140] = 2, + [67162] = 2, ACTIONS(5409), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67148] = 2, + [67170] = 2, ACTIONS(5411), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67156] = 2, + [67178] = 2, ACTIONS(5413), 1, - anon_sym_LT, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67164] = 2, + [67186] = 2, ACTIONS(5415), 1, - anon_sym_RPAREN, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67172] = 2, + [67194] = 2, ACTIONS(5417), 1, - anon_sym_LPAREN, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67202] = 2, + ACTIONS(5227), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67180] = 2, + [67210] = 2, ACTIONS(5419), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67188] = 2, + [67218] = 2, ACTIONS(5421), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67196] = 2, - ACTIONS(5423), 1, - anon_sym_RBRACK, + [67226] = 2, + ACTIONS(4584), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67204] = 2, - ACTIONS(5425), 1, - anon_sym_SEMI, + [67234] = 2, + ACTIONS(5423), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67212] = 2, - ACTIONS(5427), 1, + [67242] = 2, + ACTIONS(5425), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67220] = 2, - ACTIONS(5429), 1, - sym_identifier, + [67250] = 2, + ACTIONS(5427), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67228] = 2, - ACTIONS(5431), 1, + [67258] = 2, + ACTIONS(5429), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67236] = 2, - ACTIONS(5433), 1, - anon_sym_RBRACK, + [67266] = 2, + ACTIONS(3582), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67244] = 2, - ACTIONS(4116), 1, + [67274] = 2, + ACTIONS(4127), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67252] = 2, - ACTIONS(5435), 1, + [67282] = 2, + ACTIONS(5431), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67260] = 2, - ACTIONS(4235), 1, - anon_sym_RPAREN, + [67290] = 2, + ACTIONS(4629), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67268] = 2, - ACTIONS(5237), 1, - anon_sym_SEMI, + [67298] = 2, + ACTIONS(5433), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67276] = 2, - ACTIONS(5437), 1, - anon_sym_SEMI, + [67306] = 2, + ACTIONS(5435), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67284] = 2, - ACTIONS(5439), 1, - anon_sym_COLON_COLON, + [67314] = 2, + ACTIONS(4474), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67292] = 2, - ACTIONS(4869), 1, + [67322] = 2, + ACTIONS(5437), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67300] = 2, - ACTIONS(5441), 1, - anon_sym_RBRACK, + [67330] = 2, + ACTIONS(5439), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67308] = 2, - ACTIONS(3173), 1, - sym_identifier, + [67338] = 2, + ACTIONS(5441), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67316] = 2, + [67346] = 2, ACTIONS(5443), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67324] = 2, + [67354] = 2, ACTIONS(5445), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67332] = 2, - ACTIONS(4472), 1, - sym_identifier, + [67362] = 2, + ACTIONS(5447), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67340] = 2, - ACTIONS(5447), 1, + [67370] = 2, + ACTIONS(5449), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67348] = 2, - ACTIONS(5449), 1, - sym_identifier, + [67378] = 2, + ACTIONS(5451), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67356] = 2, - ACTIONS(4648), 1, - anon_sym_RBRACE, + [67386] = 2, + ACTIONS(5453), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67364] = 2, - ACTIONS(5221), 1, - anon_sym_SEMI, + [67394] = 2, + ACTIONS(5455), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67372] = 2, - ACTIONS(4614), 1, - anon_sym_RBRACE, + [67402] = 2, + ACTIONS(4454), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67380] = 2, - ACTIONS(5451), 1, - anon_sym_EQ_GT, + [67410] = 2, + ACTIONS(5457), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67388] = 2, - ACTIONS(5453), 1, + [67418] = 2, + ACTIONS(5459), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67396] = 2, - ACTIONS(5455), 1, + [67426] = 2, + ACTIONS(5461), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67404] = 2, - ACTIONS(4401), 1, - anon_sym_RPAREN, + [67434] = 2, + ACTIONS(5463), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67412] = 2, - ACTIONS(5457), 1, + [67442] = 2, + ACTIONS(4964), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67420] = 2, - ACTIONS(5459), 1, - anon_sym_LPAREN, + [67450] = 2, + ACTIONS(5465), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67428] = 2, - ACTIONS(5461), 1, + [67458] = 2, + ACTIONS(5467), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67436] = 2, - ACTIONS(368), 1, + [67466] = 2, + ACTIONS(374), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67444] = 2, - ACTIONS(5463), 1, + [67474] = 2, + ACTIONS(5469), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67452] = 2, - ACTIONS(5465), 1, + [67482] = 2, + ACTIONS(5471), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67460] = 2, - ACTIONS(2670), 1, - anon_sym_COLON_COLON, + [67490] = 2, + ACTIONS(5473), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67468] = 2, - ACTIONS(4409), 1, - anon_sym_RBRACK, + [67498] = 2, + ACTIONS(4610), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67476] = 2, - ACTIONS(5467), 1, + [67506] = 2, + ACTIONS(5475), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67484] = 2, - ACTIONS(4011), 1, - anon_sym_SEMI, + [67514] = 2, + ACTIONS(2480), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67492] = 2, - ACTIONS(5469), 1, - anon_sym_EQ_GT, + [67522] = 2, + ACTIONS(5477), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67500] = 2, - ACTIONS(5471), 1, + [67530] = 2, + ACTIONS(5479), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67508] = 2, - ACTIONS(5473), 1, + [67538] = 2, + ACTIONS(5481), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67516] = 2, - ACTIONS(5475), 1, - anon_sym_RPAREN, + [67546] = 2, + ACTIONS(5483), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67524] = 2, - ACTIONS(5477), 1, - anon_sym_SEMI, + [67554] = 2, + ACTIONS(5485), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67532] = 2, - ACTIONS(3979), 1, + [67562] = 2, + ACTIONS(4039), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67540] = 2, - ACTIONS(4009), 1, - anon_sym_SEMI, + [67570] = 2, + ACTIONS(5487), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67548] = 2, - ACTIONS(3580), 1, - anon_sym_COLON_COLON, + [67578] = 2, + ACTIONS(5489), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67556] = 2, - ACTIONS(2666), 1, + [67586] = 2, + ACTIONS(2734), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67564] = 2, - ACTIONS(5479), 1, + [67594] = 2, + ACTIONS(5491), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67572] = 2, - ACTIONS(3447), 1, + [67602] = 2, + ACTIONS(3453), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67580] = 2, - ACTIONS(5481), 1, - anon_sym_RBRACE, + [67610] = 2, + ACTIONS(4772), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67588] = 2, - ACTIONS(5483), 1, + [67618] = 2, + ACTIONS(5493), 1, ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67596] = 2, - ACTIONS(2796), 1, + [67626] = 2, + ACTIONS(2774), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67604] = 2, - ACTIONS(5485), 1, - anon_sym_EQ, + [67634] = 2, + ACTIONS(4766), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67612] = 2, - ACTIONS(5487), 1, - anon_sym_COLON, + [67642] = 2, + ACTIONS(4608), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67620] = 2, - ACTIONS(5489), 1, + [67650] = 2, + ACTIONS(5495), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67628] = 2, - ACTIONS(4935), 1, - anon_sym_RBRACE, + [67658] = 2, + ACTIONS(4776), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67636] = 2, - ACTIONS(5491), 1, + [67666] = 2, + ACTIONS(5497), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67644] = 2, - ACTIONS(5493), 1, + [67674] = 2, + ACTIONS(5499), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67652] = 2, - ACTIONS(5495), 1, - anon_sym_COLON, + [67682] = 2, + ACTIONS(5501), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67660] = 2, - ACTIONS(5497), 1, - anon_sym_RPAREN, + [67690] = 2, + ACTIONS(5503), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67668] = 2, - ACTIONS(5499), 1, - anon_sym_RBRACE, + [67698] = 2, + ACTIONS(5505), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67676] = 2, - ACTIONS(4286), 1, - anon_sym_RPAREN, + [67706] = 2, + ACTIONS(2387), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67684] = 2, - ACTIONS(4231), 1, + [67714] = 2, + ACTIONS(4067), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67692] = 2, - ACTIONS(5501), 1, + [67722] = 2, + ACTIONS(5507), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67700] = 2, - ACTIONS(5503), 1, - anon_sym_COLON, + [67730] = 2, + ACTIONS(5509), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67708] = 2, - ACTIONS(4120), 1, + [67738] = 2, + ACTIONS(4167), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67716] = 2, - ACTIONS(5505), 1, + [67746] = 2, + ACTIONS(5511), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67724] = 2, - ACTIONS(5507), 1, + [67754] = 2, + ACTIONS(5513), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67732] = 2, - ACTIONS(4108), 1, + [67762] = 2, + ACTIONS(4217), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67740] = 2, - ACTIONS(5509), 1, + [67770] = 2, + ACTIONS(5515), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67748] = 2, - ACTIONS(5511), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67756] = 2, - ACTIONS(5513), 1, + [67778] = 2, + ACTIONS(5133), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67764] = 2, - ACTIONS(4965), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67772] = 2, - ACTIONS(5515), 1, + [67786] = 2, + ACTIONS(4816), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67780] = 2, + [67794] = 2, ACTIONS(5517), 1, - anon_sym_COLON, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67788] = 2, + [67802] = 2, ACTIONS(5519), 1, - anon_sym_LBRACK, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67796] = 2, + [67810] = 2, ACTIONS(5521), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67804] = 2, + [67818] = 2, ACTIONS(5523), 1, - sym_identifier, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67812] = 2, + [67826] = 2, ACTIONS(5525), 1, - anon_sym_fn, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67820] = 2, + [67834] = 2, ACTIONS(5527), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67828] = 2, + [67842] = 2, ACTIONS(5529), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67836] = 2, + [67850] = 2, ACTIONS(5531), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67844] = 2, + [67858] = 2, ACTIONS(5533), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67852] = 2, - ACTIONS(5535), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67860] = 2, - ACTIONS(4898), 1, - anon_sym_RBRACE, + [67866] = 2, + ACTIONS(5535), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67868] = 2, + [67874] = 2, ACTIONS(5537), 1, - anon_sym_SEMI, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67876] = 2, + [67882] = 2, ACTIONS(5539), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67884] = 2, + [67890] = 2, ACTIONS(5541), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67892] = 2, + [67898] = 2, ACTIONS(5543), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67900] = 2, + [67906] = 2, ACTIONS(5545), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67908] = 2, - ACTIONS(5547), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67916] = 2, - ACTIONS(5113), 1, - anon_sym_SEMI, + [67914] = 2, + ACTIONS(5547), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67924] = 2, + [67922] = 2, ACTIONS(5549), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67932] = 2, - ACTIONS(5018), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67940] = 2, - ACTIONS(5551), 1, + [67930] = 2, + ACTIONS(3973), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67948] = 2, - ACTIONS(5553), 1, + [67938] = 2, + ACTIONS(5551), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67956] = 2, - ACTIONS(3217), 1, + [67946] = 2, + ACTIONS(5553), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67964] = 2, - ACTIONS(2375), 1, - anon_sym_EQ_GT, + [67954] = 2, + ACTIONS(4019), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67972] = 2, + [67962] = 2, ACTIONS(5555), 1, - anon_sym_COLON, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67980] = 2, + [67970] = 2, ACTIONS(5557), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67988] = 2, + [67978] = 2, ACTIONS(5559), 1, - anon_sym_SEMI, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67996] = 2, + [67986] = 2, ACTIONS(5561), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68004] = 2, + [67994] = 2, ACTIONS(5563), 1, - anon_sym_EQ, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68012] = 2, - ACTIONS(3548), 1, - anon_sym_COLON_COLON, + [68002] = 2, + ACTIONS(5565), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68020] = 2, - ACTIONS(5565), 1, - anon_sym_COLON, + [68010] = 2, + ACTIONS(3538), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68028] = 2, + [68018] = 2, ACTIONS(5567), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68036] = 2, + [68026] = 2, ACTIONS(5569), 1, - anon_sym_COLON, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68044] = 2, + [68034] = 2, ACTIONS(5571), 1, - anon_sym_LBRACK, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68052] = 2, - ACTIONS(4261), 1, - anon_sym_RPAREN, + [68042] = 2, + ACTIONS(4944), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68060] = 2, + [68050] = 2, ACTIONS(5573), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68068] = 2, + [68058] = 2, ACTIONS(5575), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68076] = 2, + [68066] = 2, ACTIONS(5577), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68074] = 2, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68082] = 2, + ACTIONS(4308), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68090] = 2, + ACTIONS(5581), 1, + anon_sym_fn, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68098] = 2, + ACTIONS(5583), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68084] = 2, - ACTIONS(5261), 1, - anon_sym_COLON_COLON, + [68106] = 2, + ACTIONS(5585), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68092] = 2, - ACTIONS(5579), 1, + [68114] = 2, + ACTIONS(5587), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68122] = 2, + ACTIONS(5589), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68100] = 2, - ACTIONS(4035), 1, - anon_sym_SEMI, + [68130] = 2, + ACTIONS(5591), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68108] = 2, - ACTIONS(3471), 1, + [68138] = 2, + ACTIONS(3477), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68116] = 2, - ACTIONS(5581), 1, + [68146] = 2, + ACTIONS(5593), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68124] = 2, - ACTIONS(5583), 1, - anon_sym_SEMI, + [68154] = 2, + ACTIONS(5251), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68132] = 2, - ACTIONS(5585), 1, + [68162] = 2, + ACTIONS(5595), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68140] = 2, - ACTIONS(5084), 1, - anon_sym_RPAREN, + [68170] = 2, + ACTIONS(5038), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68148] = 2, - ACTIONS(5587), 1, - anon_sym_RBRACE, + [68178] = 2, + ACTIONS(5597), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68156] = 2, - ACTIONS(5589), 1, - anon_sym_EQ_GT, + [68186] = 2, + ACTIONS(5599), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68164] = 2, - ACTIONS(5591), 1, + [68194] = 2, + ACTIONS(5601), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68172] = 2, - ACTIONS(5593), 1, + [68202] = 2, + ACTIONS(5603), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68180] = 2, - ACTIONS(5595), 1, + [68210] = 2, + ACTIONS(5605), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68188] = 2, - ACTIONS(5125), 1, - anon_sym_SEMI, + [68218] = 2, + ACTIONS(5607), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68196] = 2, - ACTIONS(5597), 1, + [68226] = 2, + ACTIONS(5609), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68204] = 2, - ACTIONS(5599), 1, + [68234] = 2, + ACTIONS(5611), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68212] = 2, - ACTIONS(5115), 1, + [68242] = 2, + ACTIONS(5137), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68220] = 2, - ACTIONS(5601), 1, + [68250] = 2, + ACTIONS(5135), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68228] = 2, - ACTIONS(5603), 1, + [68258] = 2, + ACTIONS(5613), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68236] = 2, - ACTIONS(5605), 1, - anon_sym_COLON, + [68266] = 2, + ACTIONS(5615), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68244] = 2, - ACTIONS(4049), 1, + [68274] = 2, + ACTIONS(5617), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68252] = 2, - ACTIONS(5607), 1, + [68282] = 2, + ACTIONS(5619), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -126022,1924 +126389,1926 @@ static uint16_t ts_small_parse_table[] = { }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(643)] = 0, - [SMALL_STATE(644)] = 129, - [SMALL_STATE(645)] = 258, - [SMALL_STATE(646)] = 387, - [SMALL_STATE(647)] = 516, - [SMALL_STATE(648)] = 645, - [SMALL_STATE(649)] = 774, - [SMALL_STATE(650)] = 903, - [SMALL_STATE(651)] = 1032, - [SMALL_STATE(652)] = 1161, - [SMALL_STATE(653)] = 1290, - [SMALL_STATE(654)] = 1419, - [SMALL_STATE(655)] = 1548, - [SMALL_STATE(656)] = 1677, - [SMALL_STATE(657)] = 1806, - [SMALL_STATE(658)] = 1935, - [SMALL_STATE(659)] = 2064, - [SMALL_STATE(660)] = 2193, - [SMALL_STATE(661)] = 2322, - [SMALL_STATE(662)] = 2451, - [SMALL_STATE(663)] = 2580, - [SMALL_STATE(664)] = 2709, - [SMALL_STATE(665)] = 2838, - [SMALL_STATE(666)] = 2967, - [SMALL_STATE(667)] = 3096, - [SMALL_STATE(668)] = 3225, - [SMALL_STATE(669)] = 3354, - [SMALL_STATE(670)] = 3483, - [SMALL_STATE(671)] = 3612, - [SMALL_STATE(672)] = 3741, - [SMALL_STATE(673)] = 3870, - [SMALL_STATE(674)] = 3999, - [SMALL_STATE(675)] = 4128, - [SMALL_STATE(676)] = 4257, - [SMALL_STATE(677)] = 4386, - [SMALL_STATE(678)] = 4515, - [SMALL_STATE(679)] = 4644, - [SMALL_STATE(680)] = 4773, - [SMALL_STATE(681)] = 4902, - [SMALL_STATE(682)] = 5031, - [SMALL_STATE(683)] = 5160, - [SMALL_STATE(684)] = 5289, - [SMALL_STATE(685)] = 5418, - [SMALL_STATE(686)] = 5547, - [SMALL_STATE(687)] = 5676, - [SMALL_STATE(688)] = 5805, - [SMALL_STATE(689)] = 5934, - [SMALL_STATE(690)] = 6063, - [SMALL_STATE(691)] = 6192, - [SMALL_STATE(692)] = 6321, - [SMALL_STATE(693)] = 6450, - [SMALL_STATE(694)] = 6579, - [SMALL_STATE(695)] = 6650, - [SMALL_STATE(696)] = 6779, - [SMALL_STATE(697)] = 6908, - [SMALL_STATE(698)] = 7037, - [SMALL_STATE(699)] = 7166, - [SMALL_STATE(700)] = 7295, - [SMALL_STATE(701)] = 7424, - [SMALL_STATE(702)] = 7553, - [SMALL_STATE(703)] = 7682, - [SMALL_STATE(704)] = 7811, - [SMALL_STATE(705)] = 7940, - [SMALL_STATE(706)] = 8069, - [SMALL_STATE(707)] = 8198, - [SMALL_STATE(708)] = 8327, - [SMALL_STATE(709)] = 8456, - [SMALL_STATE(710)] = 8585, - [SMALL_STATE(711)] = 8714, - [SMALL_STATE(712)] = 8843, - [SMALL_STATE(713)] = 8972, - [SMALL_STATE(714)] = 9101, - [SMALL_STATE(715)] = 9230, - [SMALL_STATE(716)] = 9359, - [SMALL_STATE(717)] = 9488, - [SMALL_STATE(718)] = 9617, - [SMALL_STATE(719)] = 9746, - [SMALL_STATE(720)] = 9875, - [SMALL_STATE(721)] = 10004, - [SMALL_STATE(722)] = 10133, - [SMALL_STATE(723)] = 10262, - [SMALL_STATE(724)] = 10393, - [SMALL_STATE(725)] = 10522, - [SMALL_STATE(726)] = 10651, - [SMALL_STATE(727)] = 10780, - [SMALL_STATE(728)] = 10909, - [SMALL_STATE(729)] = 11038, - [SMALL_STATE(730)] = 11167, - [SMALL_STATE(731)] = 11296, - [SMALL_STATE(732)] = 11425, - [SMALL_STATE(733)] = 11554, - [SMALL_STATE(734)] = 11683, - [SMALL_STATE(735)] = 11812, - [SMALL_STATE(736)] = 11941, - [SMALL_STATE(737)] = 12070, - [SMALL_STATE(738)] = 12199, - [SMALL_STATE(739)] = 12328, - [SMALL_STATE(740)] = 12457, - [SMALL_STATE(741)] = 12586, - [SMALL_STATE(742)] = 12715, - [SMALL_STATE(743)] = 12844, - [SMALL_STATE(744)] = 12973, - [SMALL_STATE(745)] = 13102, - [SMALL_STATE(746)] = 13231, - [SMALL_STATE(747)] = 13360, - [SMALL_STATE(748)] = 13489, - [SMALL_STATE(749)] = 13618, - [SMALL_STATE(750)] = 13747, - [SMALL_STATE(751)] = 13876, - [SMALL_STATE(752)] = 14005, - [SMALL_STATE(753)] = 14134, - [SMALL_STATE(754)] = 14200, - [SMALL_STATE(755)] = 14266, - [SMALL_STATE(756)] = 14332, - [SMALL_STATE(757)] = 14398, - [SMALL_STATE(758)] = 14460, - [SMALL_STATE(759)] = 14530, - [SMALL_STATE(760)] = 14597, - [SMALL_STATE(761)] = 14664, - [SMALL_STATE(762)] = 14720, - [SMALL_STATE(763)] = 14776, - [SMALL_STATE(764)] = 14840, - [SMALL_STATE(765)] = 14896, - [SMALL_STATE(766)] = 14952, - [SMALL_STATE(767)] = 15016, - [SMALL_STATE(768)] = 15078, - [SMALL_STATE(769)] = 15142, - [SMALL_STATE(770)] = 15202, - [SMALL_STATE(771)] = 15262, - [SMALL_STATE(772)] = 15322, - [SMALL_STATE(773)] = 15378, - [SMALL_STATE(774)] = 15442, - [SMALL_STATE(775)] = 15502, - [SMALL_STATE(776)] = 15559, - [SMALL_STATE(777)] = 15618, - [SMALL_STATE(778)] = 15675, - [SMALL_STATE(779)] = 15734, - [SMALL_STATE(780)] = 15789, - [SMALL_STATE(781)] = 15848, - [SMALL_STATE(782)] = 15905, - [SMALL_STATE(783)] = 15962, - [SMALL_STATE(784)] = 16016, - [SMALL_STATE(785)] = 16070, - [SMALL_STATE(786)] = 16124, - [SMALL_STATE(787)] = 16178, - [SMALL_STATE(788)] = 16232, - [SMALL_STATE(789)] = 16286, - [SMALL_STATE(790)] = 16340, - [SMALL_STATE(791)] = 16394, - [SMALL_STATE(792)] = 16448, - [SMALL_STATE(793)] = 16502, - [SMALL_STATE(794)] = 16556, - [SMALL_STATE(795)] = 16610, - [SMALL_STATE(796)] = 16664, - [SMALL_STATE(797)] = 16718, - [SMALL_STATE(798)] = 16772, - [SMALL_STATE(799)] = 16830, - [SMALL_STATE(800)] = 16884, - [SMALL_STATE(801)] = 16938, - [SMALL_STATE(802)] = 16994, - [SMALL_STATE(803)] = 17052, - [SMALL_STATE(804)] = 17106, - [SMALL_STATE(805)] = 17160, - [SMALL_STATE(806)] = 17214, - [SMALL_STATE(807)] = 17268, - [SMALL_STATE(808)] = 17326, - [SMALL_STATE(809)] = 17380, - [SMALL_STATE(810)] = 17434, - [SMALL_STATE(811)] = 17488, - [SMALL_STATE(812)] = 17542, - [SMALL_STATE(813)] = 17596, - [SMALL_STATE(814)] = 17650, - [SMALL_STATE(815)] = 17704, - [SMALL_STATE(816)] = 17758, - [SMALL_STATE(817)] = 17812, - [SMALL_STATE(818)] = 17866, - [SMALL_STATE(819)] = 17920, - [SMALL_STATE(820)] = 17974, - [SMALL_STATE(821)] = 18028, - [SMALL_STATE(822)] = 18082, - [SMALL_STATE(823)] = 18136, - [SMALL_STATE(824)] = 18190, - [SMALL_STATE(825)] = 18244, - [SMALL_STATE(826)] = 18300, - [SMALL_STATE(827)] = 18354, - [SMALL_STATE(828)] = 18408, - [SMALL_STATE(829)] = 18462, - [SMALL_STATE(830)] = 18516, - [SMALL_STATE(831)] = 18570, - [SMALL_STATE(832)] = 18626, - [SMALL_STATE(833)] = 18682, - [SMALL_STATE(834)] = 18736, - [SMALL_STATE(835)] = 18790, - [SMALL_STATE(836)] = 18844, - [SMALL_STATE(837)] = 18898, - [SMALL_STATE(838)] = 18952, - [SMALL_STATE(839)] = 19006, - [SMALL_STATE(840)] = 19060, - [SMALL_STATE(841)] = 19116, - [SMALL_STATE(842)] = 19170, - [SMALL_STATE(843)] = 19224, - [SMALL_STATE(844)] = 19278, - [SMALL_STATE(845)] = 19334, - [SMALL_STATE(846)] = 19388, - [SMALL_STATE(847)] = 19442, - [SMALL_STATE(848)] = 19496, - [SMALL_STATE(849)] = 19550, - [SMALL_STATE(850)] = 19604, - [SMALL_STATE(851)] = 19658, - [SMALL_STATE(852)] = 19712, - [SMALL_STATE(853)] = 19766, - [SMALL_STATE(854)] = 19820, - [SMALL_STATE(855)] = 19876, - [SMALL_STATE(856)] = 19930, - [SMALL_STATE(857)] = 19984, - [SMALL_STATE(858)] = 20038, - [SMALL_STATE(859)] = 20092, - [SMALL_STATE(860)] = 20146, - [SMALL_STATE(861)] = 20200, - [SMALL_STATE(862)] = 20254, - [SMALL_STATE(863)] = 20308, - [SMALL_STATE(864)] = 20362, - [SMALL_STATE(865)] = 20416, - [SMALL_STATE(866)] = 20470, - [SMALL_STATE(867)] = 20524, - [SMALL_STATE(868)] = 20578, - [SMALL_STATE(869)] = 20632, - [SMALL_STATE(870)] = 20686, - [SMALL_STATE(871)] = 20740, - [SMALL_STATE(872)] = 20794, - [SMALL_STATE(873)] = 20848, - [SMALL_STATE(874)] = 20902, - [SMALL_STATE(875)] = 20956, - [SMALL_STATE(876)] = 21010, - [SMALL_STATE(877)] = 21064, - [SMALL_STATE(878)] = 21118, - [SMALL_STATE(879)] = 21172, - [SMALL_STATE(880)] = 21226, - [SMALL_STATE(881)] = 21280, - [SMALL_STATE(882)] = 21334, - [SMALL_STATE(883)] = 21388, - [SMALL_STATE(884)] = 21442, - [SMALL_STATE(885)] = 21496, - [SMALL_STATE(886)] = 21550, - [SMALL_STATE(887)] = 21604, - [SMALL_STATE(888)] = 21658, - [SMALL_STATE(889)] = 21712, - [SMALL_STATE(890)] = 21766, - [SMALL_STATE(891)] = 21820, - [SMALL_STATE(892)] = 21874, - [SMALL_STATE(893)] = 21928, - [SMALL_STATE(894)] = 21982, - [SMALL_STATE(895)] = 22036, - [SMALL_STATE(896)] = 22090, - [SMALL_STATE(897)] = 22144, - [SMALL_STATE(898)] = 22198, - [SMALL_STATE(899)] = 22252, - [SMALL_STATE(900)] = 22306, - [SMALL_STATE(901)] = 22360, - [SMALL_STATE(902)] = 22414, - [SMALL_STATE(903)] = 22468, - [SMALL_STATE(904)] = 22522, - [SMALL_STATE(905)] = 22576, - [SMALL_STATE(906)] = 22630, - [SMALL_STATE(907)] = 22684, - [SMALL_STATE(908)] = 22738, - [SMALL_STATE(909)] = 22792, - [SMALL_STATE(910)] = 22846, - [SMALL_STATE(911)] = 22900, - [SMALL_STATE(912)] = 22954, - [SMALL_STATE(913)] = 23008, - [SMALL_STATE(914)] = 23062, - [SMALL_STATE(915)] = 23116, - [SMALL_STATE(916)] = 23170, - [SMALL_STATE(917)] = 23224, - [SMALL_STATE(918)] = 23278, - [SMALL_STATE(919)] = 23332, - [SMALL_STATE(920)] = 23386, - [SMALL_STATE(921)] = 23440, - [SMALL_STATE(922)] = 23494, - [SMALL_STATE(923)] = 23548, - [SMALL_STATE(924)] = 23602, - [SMALL_STATE(925)] = 23656, - [SMALL_STATE(926)] = 23710, - [SMALL_STATE(927)] = 23764, - [SMALL_STATE(928)] = 23818, - [SMALL_STATE(929)] = 23872, - [SMALL_STATE(930)] = 23926, - [SMALL_STATE(931)] = 23980, - [SMALL_STATE(932)] = 24034, - [SMALL_STATE(933)] = 24088, - [SMALL_STATE(934)] = 24142, - [SMALL_STATE(935)] = 24196, - [SMALL_STATE(936)] = 24250, - [SMALL_STATE(937)] = 24304, - [SMALL_STATE(938)] = 24358, - [SMALL_STATE(939)] = 24412, - [SMALL_STATE(940)] = 24468, - [SMALL_STATE(941)] = 24522, - [SMALL_STATE(942)] = 24576, - [SMALL_STATE(943)] = 24632, - [SMALL_STATE(944)] = 24686, - [SMALL_STATE(945)] = 24740, - [SMALL_STATE(946)] = 24794, - [SMALL_STATE(947)] = 24848, - [SMALL_STATE(948)] = 24902, - [SMALL_STATE(949)] = 24956, - [SMALL_STATE(950)] = 25010, - [SMALL_STATE(951)] = 25066, - [SMALL_STATE(952)] = 25120, - [SMALL_STATE(953)] = 25174, - [SMALL_STATE(954)] = 25228, - [SMALL_STATE(955)] = 25282, - [SMALL_STATE(956)] = 25338, - [SMALL_STATE(957)] = 25392, - [SMALL_STATE(958)] = 25446, - [SMALL_STATE(959)] = 25500, - [SMALL_STATE(960)] = 25554, - [SMALL_STATE(961)] = 25608, - [SMALL_STATE(962)] = 25662, - [SMALL_STATE(963)] = 25716, - [SMALL_STATE(964)] = 25770, - [SMALL_STATE(965)] = 25824, - [SMALL_STATE(966)] = 25878, - [SMALL_STATE(967)] = 25932, - [SMALL_STATE(968)] = 25986, - [SMALL_STATE(969)] = 26042, - [SMALL_STATE(970)] = 26096, - [SMALL_STATE(971)] = 26152, - [SMALL_STATE(972)] = 26206, - [SMALL_STATE(973)] = 26260, - [SMALL_STATE(974)] = 26314, - [SMALL_STATE(975)] = 26368, - [SMALL_STATE(976)] = 26422, - [SMALL_STATE(977)] = 26476, - [SMALL_STATE(978)] = 26530, - [SMALL_STATE(979)] = 26584, - [SMALL_STATE(980)] = 26640, - [SMALL_STATE(981)] = 26694, - [SMALL_STATE(982)] = 26748, - [SMALL_STATE(983)] = 26802, - [SMALL_STATE(984)] = 26856, - [SMALL_STATE(985)] = 26910, - [SMALL_STATE(986)] = 26964, - [SMALL_STATE(987)] = 27018, - [SMALL_STATE(988)] = 27072, - [SMALL_STATE(989)] = 27128, - [SMALL_STATE(990)] = 27182, - [SMALL_STATE(991)] = 27236, - [SMALL_STATE(992)] = 27290, - [SMALL_STATE(993)] = 27344, - [SMALL_STATE(994)] = 27398, - [SMALL_STATE(995)] = 27452, - [SMALL_STATE(996)] = 27506, - [SMALL_STATE(997)] = 27560, - [SMALL_STATE(998)] = 27614, - [SMALL_STATE(999)] = 27668, - [SMALL_STATE(1000)] = 27722, - [SMALL_STATE(1001)] = 27776, - [SMALL_STATE(1002)] = 27830, - [SMALL_STATE(1003)] = 27884, - [SMALL_STATE(1004)] = 27938, - [SMALL_STATE(1005)] = 27992, - [SMALL_STATE(1006)] = 28046, - [SMALL_STATE(1007)] = 28100, - [SMALL_STATE(1008)] = 28154, - [SMALL_STATE(1009)] = 28208, - [SMALL_STATE(1010)] = 28262, - [SMALL_STATE(1011)] = 28316, - [SMALL_STATE(1012)] = 28370, - [SMALL_STATE(1013)] = 28424, - [SMALL_STATE(1014)] = 28478, - [SMALL_STATE(1015)] = 28532, - [SMALL_STATE(1016)] = 28586, - [SMALL_STATE(1017)] = 28640, - [SMALL_STATE(1018)] = 28694, - [SMALL_STATE(1019)] = 28748, - [SMALL_STATE(1020)] = 28802, - [SMALL_STATE(1021)] = 28856, - [SMALL_STATE(1022)] = 28910, - [SMALL_STATE(1023)] = 28964, - [SMALL_STATE(1024)] = 29018, - [SMALL_STATE(1025)] = 29072, - [SMALL_STATE(1026)] = 29126, - [SMALL_STATE(1027)] = 29180, - [SMALL_STATE(1028)] = 29234, - [SMALL_STATE(1029)] = 29288, - [SMALL_STATE(1030)] = 29342, - [SMALL_STATE(1031)] = 29396, - [SMALL_STATE(1032)] = 29450, - [SMALL_STATE(1033)] = 29504, - [SMALL_STATE(1034)] = 29558, - [SMALL_STATE(1035)] = 29612, - [SMALL_STATE(1036)] = 29666, - [SMALL_STATE(1037)] = 29720, - [SMALL_STATE(1038)] = 29774, - [SMALL_STATE(1039)] = 29828, - [SMALL_STATE(1040)] = 29882, - [SMALL_STATE(1041)] = 29936, - [SMALL_STATE(1042)] = 29989, - [SMALL_STATE(1043)] = 30042, - [SMALL_STATE(1044)] = 30097, - [SMALL_STATE(1045)] = 30150, - [SMALL_STATE(1046)] = 30203, - [SMALL_STATE(1047)] = 30256, - [SMALL_STATE(1048)] = 30309, - [SMALL_STATE(1049)] = 30362, - [SMALL_STATE(1050)] = 30415, - [SMALL_STATE(1051)] = 30468, - [SMALL_STATE(1052)] = 30521, - [SMALL_STATE(1053)] = 30574, - [SMALL_STATE(1054)] = 30627, - [SMALL_STATE(1055)] = 30680, - [SMALL_STATE(1056)] = 30735, - [SMALL_STATE(1057)] = 30788, - [SMALL_STATE(1058)] = 30841, - [SMALL_STATE(1059)] = 30894, - [SMALL_STATE(1060)] = 30947, - [SMALL_STATE(1061)] = 31000, - [SMALL_STATE(1062)] = 31053, - [SMALL_STATE(1063)] = 31106, - [SMALL_STATE(1064)] = 31159, - [SMALL_STATE(1065)] = 31212, - [SMALL_STATE(1066)] = 31265, - [SMALL_STATE(1067)] = 31318, - [SMALL_STATE(1068)] = 31371, - [SMALL_STATE(1069)] = 31424, - [SMALL_STATE(1070)] = 31477, - [SMALL_STATE(1071)] = 31532, - [SMALL_STATE(1072)] = 31585, - [SMALL_STATE(1073)] = 31638, - [SMALL_STATE(1074)] = 31691, - [SMALL_STATE(1075)] = 31744, - [SMALL_STATE(1076)] = 31797, - [SMALL_STATE(1077)] = 31850, - [SMALL_STATE(1078)] = 31903, - [SMALL_STATE(1079)] = 31956, - [SMALL_STATE(1080)] = 32009, - [SMALL_STATE(1081)] = 32062, - [SMALL_STATE(1082)] = 32151, - [SMALL_STATE(1083)] = 32204, - [SMALL_STATE(1084)] = 32257, - [SMALL_STATE(1085)] = 32310, - [SMALL_STATE(1086)] = 32363, - [SMALL_STATE(1087)] = 32416, - [SMALL_STATE(1088)] = 32469, - [SMALL_STATE(1089)] = 32522, - [SMALL_STATE(1090)] = 32575, - [SMALL_STATE(1091)] = 32628, - [SMALL_STATE(1092)] = 32681, - [SMALL_STATE(1093)] = 32734, - [SMALL_STATE(1094)] = 32787, - [SMALL_STATE(1095)] = 32876, - [SMALL_STATE(1096)] = 32929, - [SMALL_STATE(1097)] = 32982, - [SMALL_STATE(1098)] = 33037, - [SMALL_STATE(1099)] = 33090, - [SMALL_STATE(1100)] = 33143, - [SMALL_STATE(1101)] = 33196, - [SMALL_STATE(1102)] = 33249, - [SMALL_STATE(1103)] = 33302, - [SMALL_STATE(1104)] = 33355, - [SMALL_STATE(1105)] = 33408, - [SMALL_STATE(1106)] = 33461, - [SMALL_STATE(1107)] = 33514, - [SMALL_STATE(1108)] = 33567, - [SMALL_STATE(1109)] = 33620, - [SMALL_STATE(1110)] = 33673, - [SMALL_STATE(1111)] = 33726, - [SMALL_STATE(1112)] = 33779, - [SMALL_STATE(1113)] = 33832, - [SMALL_STATE(1114)] = 33885, - [SMALL_STATE(1115)] = 33938, - [SMALL_STATE(1116)] = 33991, - [SMALL_STATE(1117)] = 34044, - [SMALL_STATE(1118)] = 34097, - [SMALL_STATE(1119)] = 34150, - [SMALL_STATE(1120)] = 34203, - [SMALL_STATE(1121)] = 34256, - [SMALL_STATE(1122)] = 34309, - [SMALL_STATE(1123)] = 34362, - [SMALL_STATE(1124)] = 34415, - [SMALL_STATE(1125)] = 34468, - [SMALL_STATE(1126)] = 34521, - [SMALL_STATE(1127)] = 34574, - [SMALL_STATE(1128)] = 34627, - [SMALL_STATE(1129)] = 34680, - [SMALL_STATE(1130)] = 34733, - [SMALL_STATE(1131)] = 34786, - [SMALL_STATE(1132)] = 34839, - [SMALL_STATE(1133)] = 34892, - [SMALL_STATE(1134)] = 34945, - [SMALL_STATE(1135)] = 34998, - [SMALL_STATE(1136)] = 35055, - [SMALL_STATE(1137)] = 35108, - [SMALL_STATE(1138)] = 35161, - [SMALL_STATE(1139)] = 35214, - [SMALL_STATE(1140)] = 35267, - [SMALL_STATE(1141)] = 35320, - [SMALL_STATE(1142)] = 35398, - [SMALL_STATE(1143)] = 35458, - [SMALL_STATE(1144)] = 35544, - [SMALL_STATE(1145)] = 35604, - [SMALL_STATE(1146)] = 35664, - [SMALL_STATE(1147)] = 35744, - [SMALL_STATE(1148)] = 35806, - [SMALL_STATE(1149)] = 35892, - [SMALL_STATE(1150)] = 35944, - [SMALL_STATE(1151)] = 36004, - [SMALL_STATE(1152)] = 36084, - [SMALL_STATE(1153)] = 36164, - [SMALL_STATE(1154)] = 36224, - [SMALL_STATE(1155)] = 36304, - [SMALL_STATE(1156)] = 36376, - [SMALL_STATE(1157)] = 36428, - [SMALL_STATE(1158)] = 36508, - [SMALL_STATE(1159)] = 36574, - [SMALL_STATE(1160)] = 36650, - [SMALL_STATE(1161)] = 36730, - [SMALL_STATE(1162)] = 36794, - [SMALL_STATE(1163)] = 36862, - [SMALL_STATE(1164)] = 36932, - [SMALL_STATE(1165)] = 36983, - [SMALL_STATE(1166)] = 37034, - [SMALL_STATE(1167)] = 37091, - [SMALL_STATE(1168)] = 37176, - [SMALL_STATE(1169)] = 37263, - [SMALL_STATE(1170)] = 37350, - [SMALL_STATE(1171)] = 37437, - [SMALL_STATE(1172)] = 37522, - [SMALL_STATE(1173)] = 37609, - [SMALL_STATE(1174)] = 37688, - [SMALL_STATE(1175)] = 37742, - [SMALL_STATE(1176)] = 37818, - [SMALL_STATE(1177)] = 37874, - [SMALL_STATE(1178)] = 37950, - [SMALL_STATE(1179)] = 38026, - [SMALL_STATE(1180)] = 38102, - [SMALL_STATE(1181)] = 38151, - [SMALL_STATE(1182)] = 38202, - [SMALL_STATE(1183)] = 38251, - [SMALL_STATE(1184)] = 38300, - [SMALL_STATE(1185)] = 38349, - [SMALL_STATE(1186)] = 38398, - [SMALL_STATE(1187)] = 38471, - [SMALL_STATE(1188)] = 38520, - [SMALL_STATE(1189)] = 38569, - [SMALL_STATE(1190)] = 38620, - [SMALL_STATE(1191)] = 38709, - [SMALL_STATE(1192)] = 38798, - [SMALL_STATE(1193)] = 38847, - [SMALL_STATE(1194)] = 38900, - [SMALL_STATE(1195)] = 38953, - [SMALL_STATE(1196)] = 39002, - [SMALL_STATE(1197)] = 39080, - [SMALL_STATE(1198)] = 39166, - [SMALL_STATE(1199)] = 39216, - [SMALL_STATE(1200)] = 39266, - [SMALL_STATE(1201)] = 39344, - [SMALL_STATE(1202)] = 39430, - [SMALL_STATE(1203)] = 39480, - [SMALL_STATE(1204)] = 39530, - [SMALL_STATE(1205)] = 39613, - [SMALL_STATE(1206)] = 39696, - [SMALL_STATE(1207)] = 39779, - [SMALL_STATE(1208)] = 39862, - [SMALL_STATE(1209)] = 39943, - [SMALL_STATE(1210)] = 40026, - [SMALL_STATE(1211)] = 40107, - [SMALL_STATE(1212)] = 40190, - [SMALL_STATE(1213)] = 40265, - [SMALL_STATE(1214)] = 40322, - [SMALL_STATE(1215)] = 40393, - [SMALL_STATE(1216)] = 40476, - [SMALL_STATE(1217)] = 40559, - [SMALL_STATE(1218)] = 40642, - [SMALL_STATE(1219)] = 40697, - [SMALL_STATE(1220)] = 40772, - [SMALL_STATE(1221)] = 40855, - [SMALL_STATE(1222)] = 40938, - [SMALL_STATE(1223)] = 41021, - [SMALL_STATE(1224)] = 41104, - [SMALL_STATE(1225)] = 41179, - [SMALL_STATE(1226)] = 41254, - [SMALL_STATE(1227)] = 41337, - [SMALL_STATE(1228)] = 41420, - [SMALL_STATE(1229)] = 41475, - [SMALL_STATE(1230)] = 41558, - [SMALL_STATE(1231)] = 41639, - [SMALL_STATE(1232)] = 41714, - [SMALL_STATE(1233)] = 41773, - [SMALL_STATE(1234)] = 41856, - [SMALL_STATE(1235)] = 41937, - [SMALL_STATE(1236)] = 41992, - [SMALL_STATE(1237)] = 42047, - [SMALL_STATE(1238)] = 42128, - [SMALL_STATE(1239)] = 42211, - [SMALL_STATE(1240)] = 42292, - [SMALL_STATE(1241)] = 42375, - [SMALL_STATE(1242)] = 42458, - [SMALL_STATE(1243)] = 42541, - [SMALL_STATE(1244)] = 42624, - [SMALL_STATE(1245)] = 42687, - [SMALL_STATE(1246)] = 42770, - [SMALL_STATE(1247)] = 42853, - [SMALL_STATE(1248)] = 42936, - [SMALL_STATE(1249)] = 43001, - [SMALL_STATE(1250)] = 43084, - [SMALL_STATE(1251)] = 43167, - [SMALL_STATE(1252)] = 43250, - [SMALL_STATE(1253)] = 43331, - [SMALL_STATE(1254)] = 43414, - [SMALL_STATE(1255)] = 43497, - [SMALL_STATE(1256)] = 43580, - [SMALL_STATE(1257)] = 43653, - [SMALL_STATE(1258)] = 43736, - [SMALL_STATE(1259)] = 43819, - [SMALL_STATE(1260)] = 43902, - [SMALL_STATE(1261)] = 43985, - [SMALL_STATE(1262)] = 44068, - [SMALL_STATE(1263)] = 44139, - [SMALL_STATE(1264)] = 44200, - [SMALL_STATE(1265)] = 44283, - [SMALL_STATE(1266)] = 44364, - [SMALL_STATE(1267)] = 44445, - [SMALL_STATE(1268)] = 44520, - [SMALL_STATE(1269)] = 44603, - [SMALL_STATE(1270)] = 44686, - [SMALL_STATE(1271)] = 44753, - [SMALL_STATE(1272)] = 44836, - [SMALL_STATE(1273)] = 44917, - [SMALL_STATE(1274)] = 44998, - [SMALL_STATE(1275)] = 45079, - [SMALL_STATE(1276)] = 45162, - [SMALL_STATE(1277)] = 45245, - [SMALL_STATE(1278)] = 45328, - [SMALL_STATE(1279)] = 45411, - [SMALL_STATE(1280)] = 45494, - [SMALL_STATE(1281)] = 45574, - [SMALL_STATE(1282)] = 45654, - [SMALL_STATE(1283)] = 45734, - [SMALL_STATE(1284)] = 45814, - [SMALL_STATE(1285)] = 45894, - [SMALL_STATE(1286)] = 45974, - [SMALL_STATE(1287)] = 46054, - [SMALL_STATE(1288)] = 46134, - [SMALL_STATE(1289)] = 46214, - [SMALL_STATE(1290)] = 46294, - [SMALL_STATE(1291)] = 46374, - [SMALL_STATE(1292)] = 46454, - [SMALL_STATE(1293)] = 46534, - [SMALL_STATE(1294)] = 46614, - [SMALL_STATE(1295)] = 46694, - [SMALL_STATE(1296)] = 46774, - [SMALL_STATE(1297)] = 46854, - [SMALL_STATE(1298)] = 46934, - [SMALL_STATE(1299)] = 47014, - [SMALL_STATE(1300)] = 47094, - [SMALL_STATE(1301)] = 47174, - [SMALL_STATE(1302)] = 47254, - [SMALL_STATE(1303)] = 47334, - [SMALL_STATE(1304)] = 47414, - [SMALL_STATE(1305)] = 47482, - [SMALL_STATE(1306)] = 47562, - [SMALL_STATE(1307)] = 47642, - [SMALL_STATE(1308)] = 47722, - [SMALL_STATE(1309)] = 47802, - [SMALL_STATE(1310)] = 47882, - [SMALL_STATE(1311)] = 47962, - [SMALL_STATE(1312)] = 48030, - [SMALL_STATE(1313)] = 48110, - [SMALL_STATE(1314)] = 48175, - [SMALL_STATE(1315)] = 48240, - [SMALL_STATE(1316)] = 48305, - [SMALL_STATE(1317)] = 48370, - [SMALL_STATE(1318)] = 48435, - [SMALL_STATE(1319)] = 48475, - [SMALL_STATE(1320)] = 48515, - [SMALL_STATE(1321)] = 48555, - [SMALL_STATE(1322)] = 48610, - [SMALL_STATE(1323)] = 48665, - [SMALL_STATE(1324)] = 48720, - [SMALL_STATE(1325)] = 48775, - [SMALL_STATE(1326)] = 48830, - [SMALL_STATE(1327)] = 48885, - [SMALL_STATE(1328)] = 48940, - [SMALL_STATE(1329)] = 48992, - [SMALL_STATE(1330)] = 49044, - [SMALL_STATE(1331)] = 49074, - [SMALL_STATE(1332)] = 49104, - [SMALL_STATE(1333)] = 49146, - [SMALL_STATE(1334)] = 49186, - [SMALL_STATE(1335)] = 49215, - [SMALL_STATE(1336)] = 49244, - [SMALL_STATE(1337)] = 49273, - [SMALL_STATE(1338)] = 49310, - [SMALL_STATE(1339)] = 49347, - [SMALL_STATE(1340)] = 49376, - [SMALL_STATE(1341)] = 49405, - [SMALL_STATE(1342)] = 49434, - [SMALL_STATE(1343)] = 49463, - [SMALL_STATE(1344)] = 49492, - [SMALL_STATE(1345)] = 49546, - [SMALL_STATE(1346)] = 49600, - [SMALL_STATE(1347)] = 49632, - [SMALL_STATE(1348)] = 49664, - [SMALL_STATE(1349)] = 49696, - [SMALL_STATE(1350)] = 49721, - [SMALL_STATE(1351)] = 49744, - [SMALL_STATE(1352)] = 49768, - [SMALL_STATE(1353)] = 49812, - [SMALL_STATE(1354)] = 49836, - [SMALL_STATE(1355)] = 49860, - [SMALL_STATE(1356)] = 49890, - [SMALL_STATE(1357)] = 49914, - [SMALL_STATE(1358)] = 49936, - [SMALL_STATE(1359)] = 49960, - [SMALL_STATE(1360)] = 49984, - [SMALL_STATE(1361)] = 50008, - [SMALL_STATE(1362)] = 50030, - [SMALL_STATE(1363)] = 50054, - [SMALL_STATE(1364)] = 50098, - [SMALL_STATE(1365)] = 50144, - [SMALL_STATE(1366)] = 50168, - [SMALL_STATE(1367)] = 50190, - [SMALL_STATE(1368)] = 50214, - [SMALL_STATE(1369)] = 50236, - [SMALL_STATE(1370)] = 50259, - [SMALL_STATE(1371)] = 50280, - [SMALL_STATE(1372)] = 50325, - [SMALL_STATE(1373)] = 50350, - [SMALL_STATE(1374)] = 50375, - [SMALL_STATE(1375)] = 50398, - [SMALL_STATE(1376)] = 50419, - [SMALL_STATE(1377)] = 50444, - [SMALL_STATE(1378)] = 50467, - [SMALL_STATE(1379)] = 50492, - [SMALL_STATE(1380)] = 50513, - [SMALL_STATE(1381)] = 50536, - [SMALL_STATE(1382)] = 50559, - [SMALL_STATE(1383)] = 50580, - [SMALL_STATE(1384)] = 50603, - [SMALL_STATE(1385)] = 50624, - [SMALL_STATE(1386)] = 50647, - [SMALL_STATE(1387)] = 50672, - [SMALL_STATE(1388)] = 50695, - [SMALL_STATE(1389)] = 50722, - [SMALL_STATE(1390)] = 50747, - [SMALL_STATE(1391)] = 50767, - [SMALL_STATE(1392)] = 50787, - [SMALL_STATE(1393)] = 50807, - [SMALL_STATE(1394)] = 50827, - [SMALL_STATE(1395)] = 50849, - [SMALL_STATE(1396)] = 50869, - [SMALL_STATE(1397)] = 50889, - [SMALL_STATE(1398)] = 50909, - [SMALL_STATE(1399)] = 50929, - [SMALL_STATE(1400)] = 50949, - [SMALL_STATE(1401)] = 50969, - [SMALL_STATE(1402)] = 50991, - [SMALL_STATE(1403)] = 51011, - [SMALL_STATE(1404)] = 51031, - [SMALL_STATE(1405)] = 51051, - [SMALL_STATE(1406)] = 51071, - [SMALL_STATE(1407)] = 51093, - [SMALL_STATE(1408)] = 51113, - [SMALL_STATE(1409)] = 51133, - [SMALL_STATE(1410)] = 51153, - [SMALL_STATE(1411)] = 51173, - [SMALL_STATE(1412)] = 51193, - [SMALL_STATE(1413)] = 51213, - [SMALL_STATE(1414)] = 51233, - [SMALL_STATE(1415)] = 51253, - [SMALL_STATE(1416)] = 51273, - [SMALL_STATE(1417)] = 51293, - [SMALL_STATE(1418)] = 51313, - [SMALL_STATE(1419)] = 51337, - [SMALL_STATE(1420)] = 51357, - [SMALL_STATE(1421)] = 51377, - [SMALL_STATE(1422)] = 51398, - [SMALL_STATE(1423)] = 51423, - [SMALL_STATE(1424)] = 51446, - [SMALL_STATE(1425)] = 51469, - [SMALL_STATE(1426)] = 51494, - [SMALL_STATE(1427)] = 51517, - [SMALL_STATE(1428)] = 51540, - [SMALL_STATE(1429)] = 51563, - [SMALL_STATE(1430)] = 51586, - [SMALL_STATE(1431)] = 51611, - [SMALL_STATE(1432)] = 51634, - [SMALL_STATE(1433)] = 51659, - [SMALL_STATE(1434)] = 51684, - [SMALL_STATE(1435)] = 51707, - [SMALL_STATE(1436)] = 51730, - [SMALL_STATE(1437)] = 51755, - [SMALL_STATE(1438)] = 51780, - [SMALL_STATE(1439)] = 51805, - [SMALL_STATE(1440)] = 51826, - [SMALL_STATE(1441)] = 51849, - [SMALL_STATE(1442)] = 51872, - [SMALL_STATE(1443)] = 51895, - [SMALL_STATE(1444)] = 51916, - [SMALL_STATE(1445)] = 51951, - [SMALL_STATE(1446)] = 51971, - [SMALL_STATE(1447)] = 51991, - [SMALL_STATE(1448)] = 52011, - [SMALL_STATE(1449)] = 52031, - [SMALL_STATE(1450)] = 52051, - [SMALL_STATE(1451)] = 52071, - [SMALL_STATE(1452)] = 52103, - [SMALL_STATE(1453)] = 52123, - [SMALL_STATE(1454)] = 52155, - [SMALL_STATE(1455)] = 52187, - [SMALL_STATE(1456)] = 52207, - [SMALL_STATE(1457)] = 52227, - [SMALL_STATE(1458)] = 52259, - [SMALL_STATE(1459)] = 52279, - [SMALL_STATE(1460)] = 52299, - [SMALL_STATE(1461)] = 52325, - [SMALL_STATE(1462)] = 52345, - [SMALL_STATE(1463)] = 52365, - [SMALL_STATE(1464)] = 52397, - [SMALL_STATE(1465)] = 52417, - [SMALL_STATE(1466)] = 52437, - [SMALL_STATE(1467)] = 52461, - [SMALL_STATE(1468)] = 52481, - [SMALL_STATE(1469)] = 52501, - [SMALL_STATE(1470)] = 52521, - [SMALL_STATE(1471)] = 52541, - [SMALL_STATE(1472)] = 52573, - [SMALL_STATE(1473)] = 52593, - [SMALL_STATE(1474)] = 52613, - [SMALL_STATE(1475)] = 52633, - [SMALL_STATE(1476)] = 52653, - [SMALL_STATE(1477)] = 52673, - [SMALL_STATE(1478)] = 52693, - [SMALL_STATE(1479)] = 52713, - [SMALL_STATE(1480)] = 52745, - [SMALL_STATE(1481)] = 52765, - [SMALL_STATE(1482)] = 52785, - [SMALL_STATE(1483)] = 52809, - [SMALL_STATE(1484)] = 52833, - [SMALL_STATE(1485)] = 52853, - [SMALL_STATE(1486)] = 52885, - [SMALL_STATE(1487)] = 52905, - [SMALL_STATE(1488)] = 52931, - [SMALL_STATE(1489)] = 52951, - [SMALL_STATE(1490)] = 52975, - [SMALL_STATE(1491)] = 53004, - [SMALL_STATE(1492)] = 53037, - [SMALL_STATE(1493)] = 53060, - [SMALL_STATE(1494)] = 53085, - [SMALL_STATE(1495)] = 53118, - [SMALL_STATE(1496)] = 53141, - [SMALL_STATE(1497)] = 53164, - [SMALL_STATE(1498)] = 53197, - [SMALL_STATE(1499)] = 53222, - [SMALL_STATE(1500)] = 53253, - [SMALL_STATE(1501)] = 53278, - [SMALL_STATE(1502)] = 53305, - [SMALL_STATE(1503)] = 53338, - [SMALL_STATE(1504)] = 53370, - [SMALL_STATE(1505)] = 53402, - [SMALL_STATE(1506)] = 53432, - [SMALL_STATE(1507)] = 53458, - [SMALL_STATE(1508)] = 53484, - [SMALL_STATE(1509)] = 53514, - [SMALL_STATE(1510)] = 53544, - [SMALL_STATE(1511)] = 53570, - [SMALL_STATE(1512)] = 53600, - [SMALL_STATE(1513)] = 53630, - [SMALL_STATE(1514)] = 53656, - [SMALL_STATE(1515)] = 53686, - [SMALL_STATE(1516)] = 53716, - [SMALL_STATE(1517)] = 53738, - [SMALL_STATE(1518)] = 53764, - [SMALL_STATE(1519)] = 53794, - [SMALL_STATE(1520)] = 53816, - [SMALL_STATE(1521)] = 53848, - [SMALL_STATE(1522)] = 53870, - [SMALL_STATE(1523)] = 53896, - [SMALL_STATE(1524)] = 53918, - [SMALL_STATE(1525)] = 53940, - [SMALL_STATE(1526)] = 53970, - [SMALL_STATE(1527)] = 54000, - [SMALL_STATE(1528)] = 54026, - [SMALL_STATE(1529)] = 54056, - [SMALL_STATE(1530)] = 54082, - [SMALL_STATE(1531)] = 54112, - [SMALL_STATE(1532)] = 54142, - [SMALL_STATE(1533)] = 54168, - [SMALL_STATE(1534)] = 54194, - [SMALL_STATE(1535)] = 54224, - [SMALL_STATE(1536)] = 54254, - [SMALL_STATE(1537)] = 54284, - [SMALL_STATE(1538)] = 54314, - [SMALL_STATE(1539)] = 54346, - [SMALL_STATE(1540)] = 54376, - [SMALL_STATE(1541)] = 54402, - [SMALL_STATE(1542)] = 54432, - [SMALL_STATE(1543)] = 54454, - [SMALL_STATE(1544)] = 54484, - [SMALL_STATE(1545)] = 54514, - [SMALL_STATE(1546)] = 54533, - [SMALL_STATE(1547)] = 54560, - [SMALL_STATE(1548)] = 54583, - [SMALL_STATE(1549)] = 54602, - [SMALL_STATE(1550)] = 54621, - [SMALL_STATE(1551)] = 54650, - [SMALL_STATE(1552)] = 54677, - [SMALL_STATE(1553)] = 54704, - [SMALL_STATE(1554)] = 54733, - [SMALL_STATE(1555)] = 54760, - [SMALL_STATE(1556)] = 54783, - [SMALL_STATE(1557)] = 54810, - [SMALL_STATE(1558)] = 54831, - [SMALL_STATE(1559)] = 54850, - [SMALL_STATE(1560)] = 54879, - [SMALL_STATE(1561)] = 54906, - [SMALL_STATE(1562)] = 54933, - [SMALL_STATE(1563)] = 54960, - [SMALL_STATE(1564)] = 54979, - [SMALL_STATE(1565)] = 55006, - [SMALL_STATE(1566)] = 55025, - [SMALL_STATE(1567)] = 55052, - [SMALL_STATE(1568)] = 55075, - [SMALL_STATE(1569)] = 55102, - [SMALL_STATE(1570)] = 55131, - [SMALL_STATE(1571)] = 55160, - [SMALL_STATE(1572)] = 55183, - [SMALL_STATE(1573)] = 55204, - [SMALL_STATE(1574)] = 55231, - [SMALL_STATE(1575)] = 55258, - [SMALL_STATE(1576)] = 55277, - [SMALL_STATE(1577)] = 55304, - [SMALL_STATE(1578)] = 55323, - [SMALL_STATE(1579)] = 55352, - [SMALL_STATE(1580)] = 55377, - [SMALL_STATE(1581)] = 55392, - [SMALL_STATE(1582)] = 55411, - [SMALL_STATE(1583)] = 55434, - [SMALL_STATE(1584)] = 55453, - [SMALL_STATE(1585)] = 55480, - [SMALL_STATE(1586)] = 55499, - [SMALL_STATE(1587)] = 55521, - [SMALL_STATE(1588)] = 55537, - [SMALL_STATE(1589)] = 55551, - [SMALL_STATE(1590)] = 55565, - [SMALL_STATE(1591)] = 55587, - [SMALL_STATE(1592)] = 55601, - [SMALL_STATE(1593)] = 55623, - [SMALL_STATE(1594)] = 55649, - [SMALL_STATE(1595)] = 55671, - [SMALL_STATE(1596)] = 55693, - [SMALL_STATE(1597)] = 55709, - [SMALL_STATE(1598)] = 55723, - [SMALL_STATE(1599)] = 55745, - [SMALL_STATE(1600)] = 55761, + [SMALL_STATE(647)] = 0, + [SMALL_STATE(648)] = 129, + [SMALL_STATE(649)] = 258, + [SMALL_STATE(650)] = 387, + [SMALL_STATE(651)] = 516, + [SMALL_STATE(652)] = 645, + [SMALL_STATE(653)] = 774, + [SMALL_STATE(654)] = 903, + [SMALL_STATE(655)] = 1032, + [SMALL_STATE(656)] = 1161, + [SMALL_STATE(657)] = 1290, + [SMALL_STATE(658)] = 1419, + [SMALL_STATE(659)] = 1548, + [SMALL_STATE(660)] = 1677, + [SMALL_STATE(661)] = 1806, + [SMALL_STATE(662)] = 1935, + [SMALL_STATE(663)] = 2064, + [SMALL_STATE(664)] = 2193, + [SMALL_STATE(665)] = 2322, + [SMALL_STATE(666)] = 2451, + [SMALL_STATE(667)] = 2580, + [SMALL_STATE(668)] = 2709, + [SMALL_STATE(669)] = 2838, + [SMALL_STATE(670)] = 2967, + [SMALL_STATE(671)] = 3096, + [SMALL_STATE(672)] = 3225, + [SMALL_STATE(673)] = 3354, + [SMALL_STATE(674)] = 3483, + [SMALL_STATE(675)] = 3612, + [SMALL_STATE(676)] = 3741, + [SMALL_STATE(677)] = 3870, + [SMALL_STATE(678)] = 3999, + [SMALL_STATE(679)] = 4128, + [SMALL_STATE(680)] = 4257, + [SMALL_STATE(681)] = 4386, + [SMALL_STATE(682)] = 4515, + [SMALL_STATE(683)] = 4586, + [SMALL_STATE(684)] = 4715, + [SMALL_STATE(685)] = 4844, + [SMALL_STATE(686)] = 4973, + [SMALL_STATE(687)] = 5102, + [SMALL_STATE(688)] = 5231, + [SMALL_STATE(689)] = 5360, + [SMALL_STATE(690)] = 5489, + [SMALL_STATE(691)] = 5618, + [SMALL_STATE(692)] = 5747, + [SMALL_STATE(693)] = 5876, + [SMALL_STATE(694)] = 6005, + [SMALL_STATE(695)] = 6134, + [SMALL_STATE(696)] = 6263, + [SMALL_STATE(697)] = 6392, + [SMALL_STATE(698)] = 6521, + [SMALL_STATE(699)] = 6650, + [SMALL_STATE(700)] = 6779, + [SMALL_STATE(701)] = 6908, + [SMALL_STATE(702)] = 7037, + [SMALL_STATE(703)] = 7166, + [SMALL_STATE(704)] = 7295, + [SMALL_STATE(705)] = 7424, + [SMALL_STATE(706)] = 7553, + [SMALL_STATE(707)] = 7682, + [SMALL_STATE(708)] = 7811, + [SMALL_STATE(709)] = 7940, + [SMALL_STATE(710)] = 8069, + [SMALL_STATE(711)] = 8198, + [SMALL_STATE(712)] = 8327, + [SMALL_STATE(713)] = 8456, + [SMALL_STATE(714)] = 8585, + [SMALL_STATE(715)] = 8714, + [SMALL_STATE(716)] = 8843, + [SMALL_STATE(717)] = 8972, + [SMALL_STATE(718)] = 9101, + [SMALL_STATE(719)] = 9230, + [SMALL_STATE(720)] = 9359, + [SMALL_STATE(721)] = 9488, + [SMALL_STATE(722)] = 9617, + [SMALL_STATE(723)] = 9746, + [SMALL_STATE(724)] = 9875, + [SMALL_STATE(725)] = 10004, + [SMALL_STATE(726)] = 10133, + [SMALL_STATE(727)] = 10262, + [SMALL_STATE(728)] = 10391, + [SMALL_STATE(729)] = 10520, + [SMALL_STATE(730)] = 10651, + [SMALL_STATE(731)] = 10780, + [SMALL_STATE(732)] = 10909, + [SMALL_STATE(733)] = 11038, + [SMALL_STATE(734)] = 11167, + [SMALL_STATE(735)] = 11296, + [SMALL_STATE(736)] = 11425, + [SMALL_STATE(737)] = 11554, + [SMALL_STATE(738)] = 11683, + [SMALL_STATE(739)] = 11812, + [SMALL_STATE(740)] = 11941, + [SMALL_STATE(741)] = 12070, + [SMALL_STATE(742)] = 12199, + [SMALL_STATE(743)] = 12328, + [SMALL_STATE(744)] = 12457, + [SMALL_STATE(745)] = 12586, + [SMALL_STATE(746)] = 12715, + [SMALL_STATE(747)] = 12844, + [SMALL_STATE(748)] = 12973, + [SMALL_STATE(749)] = 13102, + [SMALL_STATE(750)] = 13231, + [SMALL_STATE(751)] = 13360, + [SMALL_STATE(752)] = 13489, + [SMALL_STATE(753)] = 13618, + [SMALL_STATE(754)] = 13747, + [SMALL_STATE(755)] = 13876, + [SMALL_STATE(756)] = 14005, + [SMALL_STATE(757)] = 14134, + [SMALL_STATE(758)] = 14200, + [SMALL_STATE(759)] = 14266, + [SMALL_STATE(760)] = 14332, + [SMALL_STATE(761)] = 14398, + [SMALL_STATE(762)] = 14460, + [SMALL_STATE(763)] = 14530, + [SMALL_STATE(764)] = 14597, + [SMALL_STATE(765)] = 14664, + [SMALL_STATE(766)] = 14728, + [SMALL_STATE(767)] = 14784, + [SMALL_STATE(768)] = 14846, + [SMALL_STATE(769)] = 14902, + [SMALL_STATE(770)] = 14962, + [SMALL_STATE(771)] = 15026, + [SMALL_STATE(772)] = 15082, + [SMALL_STATE(773)] = 15142, + [SMALL_STATE(774)] = 15198, + [SMALL_STATE(775)] = 15258, + [SMALL_STATE(776)] = 15318, + [SMALL_STATE(777)] = 15374, + [SMALL_STATE(778)] = 15438, + [SMALL_STATE(779)] = 15502, + [SMALL_STATE(780)] = 15561, + [SMALL_STATE(781)] = 15616, + [SMALL_STATE(782)] = 15675, + [SMALL_STATE(783)] = 15734, + [SMALL_STATE(784)] = 15791, + [SMALL_STATE(785)] = 15848, + [SMALL_STATE(786)] = 15905, + [SMALL_STATE(787)] = 15962, + [SMALL_STATE(788)] = 16016, + [SMALL_STATE(789)] = 16070, + [SMALL_STATE(790)] = 16124, + [SMALL_STATE(791)] = 16178, + [SMALL_STATE(792)] = 16232, + [SMALL_STATE(793)] = 16286, + [SMALL_STATE(794)] = 16340, + [SMALL_STATE(795)] = 16394, + [SMALL_STATE(796)] = 16448, + [SMALL_STATE(797)] = 16502, + [SMALL_STATE(798)] = 16556, + [SMALL_STATE(799)] = 16614, + [SMALL_STATE(800)] = 16668, + [SMALL_STATE(801)] = 16722, + [SMALL_STATE(802)] = 16776, + [SMALL_STATE(803)] = 16830, + [SMALL_STATE(804)] = 16884, + [SMALL_STATE(805)] = 16938, + [SMALL_STATE(806)] = 16992, + [SMALL_STATE(807)] = 17046, + [SMALL_STATE(808)] = 17100, + [SMALL_STATE(809)] = 17154, + [SMALL_STATE(810)] = 17208, + [SMALL_STATE(811)] = 17262, + [SMALL_STATE(812)] = 17316, + [SMALL_STATE(813)] = 17370, + [SMALL_STATE(814)] = 17424, + [SMALL_STATE(815)] = 17478, + [SMALL_STATE(816)] = 17532, + [SMALL_STATE(817)] = 17586, + [SMALL_STATE(818)] = 17640, + [SMALL_STATE(819)] = 17694, + [SMALL_STATE(820)] = 17748, + [SMALL_STATE(821)] = 17802, + [SMALL_STATE(822)] = 17856, + [SMALL_STATE(823)] = 17910, + [SMALL_STATE(824)] = 17964, + [SMALL_STATE(825)] = 18018, + [SMALL_STATE(826)] = 18072, + [SMALL_STATE(827)] = 18126, + [SMALL_STATE(828)] = 18180, + [SMALL_STATE(829)] = 18234, + [SMALL_STATE(830)] = 18288, + [SMALL_STATE(831)] = 18344, + [SMALL_STATE(832)] = 18398, + [SMALL_STATE(833)] = 18452, + [SMALL_STATE(834)] = 18506, + [SMALL_STATE(835)] = 18560, + [SMALL_STATE(836)] = 18614, + [SMALL_STATE(837)] = 18668, + [SMALL_STATE(838)] = 18722, + [SMALL_STATE(839)] = 18776, + [SMALL_STATE(840)] = 18832, + [SMALL_STATE(841)] = 18886, + [SMALL_STATE(842)] = 18940, + [SMALL_STATE(843)] = 18994, + [SMALL_STATE(844)] = 19048, + [SMALL_STATE(845)] = 19102, + [SMALL_STATE(846)] = 19156, + [SMALL_STATE(847)] = 19210, + [SMALL_STATE(848)] = 19264, + [SMALL_STATE(849)] = 19320, + [SMALL_STATE(850)] = 19374, + [SMALL_STATE(851)] = 19430, + [SMALL_STATE(852)] = 19484, + [SMALL_STATE(853)] = 19538, + [SMALL_STATE(854)] = 19592, + [SMALL_STATE(855)] = 19648, + [SMALL_STATE(856)] = 19702, + [SMALL_STATE(857)] = 19756, + [SMALL_STATE(858)] = 19810, + [SMALL_STATE(859)] = 19866, + [SMALL_STATE(860)] = 19920, + [SMALL_STATE(861)] = 19974, + [SMALL_STATE(862)] = 20028, + [SMALL_STATE(863)] = 20082, + [SMALL_STATE(864)] = 20136, + [SMALL_STATE(865)] = 20190, + [SMALL_STATE(866)] = 20244, + [SMALL_STATE(867)] = 20300, + [SMALL_STATE(868)] = 20354, + [SMALL_STATE(869)] = 20408, + [SMALL_STATE(870)] = 20462, + [SMALL_STATE(871)] = 20516, + [SMALL_STATE(872)] = 20570, + [SMALL_STATE(873)] = 20624, + [SMALL_STATE(874)] = 20678, + [SMALL_STATE(875)] = 20732, + [SMALL_STATE(876)] = 20786, + [SMALL_STATE(877)] = 20840, + [SMALL_STATE(878)] = 20894, + [SMALL_STATE(879)] = 20948, + [SMALL_STATE(880)] = 21002, + [SMALL_STATE(881)] = 21056, + [SMALL_STATE(882)] = 21110, + [SMALL_STATE(883)] = 21164, + [SMALL_STATE(884)] = 21218, + [SMALL_STATE(885)] = 21272, + [SMALL_STATE(886)] = 21326, + [SMALL_STATE(887)] = 21380, + [SMALL_STATE(888)] = 21434, + [SMALL_STATE(889)] = 21488, + [SMALL_STATE(890)] = 21542, + [SMALL_STATE(891)] = 21596, + [SMALL_STATE(892)] = 21650, + [SMALL_STATE(893)] = 21704, + [SMALL_STATE(894)] = 21758, + [SMALL_STATE(895)] = 21812, + [SMALL_STATE(896)] = 21866, + [SMALL_STATE(897)] = 21920, + [SMALL_STATE(898)] = 21974, + [SMALL_STATE(899)] = 22028, + [SMALL_STATE(900)] = 22082, + [SMALL_STATE(901)] = 22136, + [SMALL_STATE(902)] = 22190, + [SMALL_STATE(903)] = 22244, + [SMALL_STATE(904)] = 22298, + [SMALL_STATE(905)] = 22352, + [SMALL_STATE(906)] = 22406, + [SMALL_STATE(907)] = 22460, + [SMALL_STATE(908)] = 22514, + [SMALL_STATE(909)] = 22570, + [SMALL_STATE(910)] = 22624, + [SMALL_STATE(911)] = 22678, + [SMALL_STATE(912)] = 22732, + [SMALL_STATE(913)] = 22786, + [SMALL_STATE(914)] = 22840, + [SMALL_STATE(915)] = 22894, + [SMALL_STATE(916)] = 22948, + [SMALL_STATE(917)] = 23002, + [SMALL_STATE(918)] = 23056, + [SMALL_STATE(919)] = 23110, + [SMALL_STATE(920)] = 23166, + [SMALL_STATE(921)] = 23220, + [SMALL_STATE(922)] = 23274, + [SMALL_STATE(923)] = 23328, + [SMALL_STATE(924)] = 23382, + [SMALL_STATE(925)] = 23436, + [SMALL_STATE(926)] = 23490, + [SMALL_STATE(927)] = 23544, + [SMALL_STATE(928)] = 23598, + [SMALL_STATE(929)] = 23652, + [SMALL_STATE(930)] = 23706, + [SMALL_STATE(931)] = 23760, + [SMALL_STATE(932)] = 23814, + [SMALL_STATE(933)] = 23868, + [SMALL_STATE(934)] = 23924, + [SMALL_STATE(935)] = 23978, + [SMALL_STATE(936)] = 24032, + [SMALL_STATE(937)] = 24086, + [SMALL_STATE(938)] = 24140, + [SMALL_STATE(939)] = 24194, + [SMALL_STATE(940)] = 24248, + [SMALL_STATE(941)] = 24302, + [SMALL_STATE(942)] = 24356, + [SMALL_STATE(943)] = 24410, + [SMALL_STATE(944)] = 24464, + [SMALL_STATE(945)] = 24518, + [SMALL_STATE(946)] = 24572, + [SMALL_STATE(947)] = 24626, + [SMALL_STATE(948)] = 24680, + [SMALL_STATE(949)] = 24734, + [SMALL_STATE(950)] = 24788, + [SMALL_STATE(951)] = 24844, + [SMALL_STATE(952)] = 24898, + [SMALL_STATE(953)] = 24952, + [SMALL_STATE(954)] = 25006, + [SMALL_STATE(955)] = 25060, + [SMALL_STATE(956)] = 25114, + [SMALL_STATE(957)] = 25168, + [SMALL_STATE(958)] = 25222, + [SMALL_STATE(959)] = 25276, + [SMALL_STATE(960)] = 25330, + [SMALL_STATE(961)] = 25386, + [SMALL_STATE(962)] = 25440, + [SMALL_STATE(963)] = 25496, + [SMALL_STATE(964)] = 25550, + [SMALL_STATE(965)] = 25604, + [SMALL_STATE(966)] = 25658, + [SMALL_STATE(967)] = 25712, + [SMALL_STATE(968)] = 25766, + [SMALL_STATE(969)] = 25820, + [SMALL_STATE(970)] = 25874, + [SMALL_STATE(971)] = 25928, + [SMALL_STATE(972)] = 25982, + [SMALL_STATE(973)] = 26036, + [SMALL_STATE(974)] = 26090, + [SMALL_STATE(975)] = 26144, + [SMALL_STATE(976)] = 26200, + [SMALL_STATE(977)] = 26254, + [SMALL_STATE(978)] = 26308, + [SMALL_STATE(979)] = 26362, + [SMALL_STATE(980)] = 26416, + [SMALL_STATE(981)] = 26470, + [SMALL_STATE(982)] = 26524, + [SMALL_STATE(983)] = 26578, + [SMALL_STATE(984)] = 26632, + [SMALL_STATE(985)] = 26686, + [SMALL_STATE(986)] = 26740, + [SMALL_STATE(987)] = 26794, + [SMALL_STATE(988)] = 26848, + [SMALL_STATE(989)] = 26902, + [SMALL_STATE(990)] = 26956, + [SMALL_STATE(991)] = 27010, + [SMALL_STATE(992)] = 27064, + [SMALL_STATE(993)] = 27118, + [SMALL_STATE(994)] = 27172, + [SMALL_STATE(995)] = 27226, + [SMALL_STATE(996)] = 27280, + [SMALL_STATE(997)] = 27334, + [SMALL_STATE(998)] = 27388, + [SMALL_STATE(999)] = 27442, + [SMALL_STATE(1000)] = 27496, + [SMALL_STATE(1001)] = 27550, + [SMALL_STATE(1002)] = 27604, + [SMALL_STATE(1003)] = 27658, + [SMALL_STATE(1004)] = 27712, + [SMALL_STATE(1005)] = 27766, + [SMALL_STATE(1006)] = 27820, + [SMALL_STATE(1007)] = 27874, + [SMALL_STATE(1008)] = 27930, + [SMALL_STATE(1009)] = 27984, + [SMALL_STATE(1010)] = 28038, + [SMALL_STATE(1011)] = 28092, + [SMALL_STATE(1012)] = 28146, + [SMALL_STATE(1013)] = 28200, + [SMALL_STATE(1014)] = 28254, + [SMALL_STATE(1015)] = 28308, + [SMALL_STATE(1016)] = 28362, + [SMALL_STATE(1017)] = 28416, + [SMALL_STATE(1018)] = 28470, + [SMALL_STATE(1019)] = 28528, + [SMALL_STATE(1020)] = 28586, + [SMALL_STATE(1021)] = 28640, + [SMALL_STATE(1022)] = 28694, + [SMALL_STATE(1023)] = 28748, + [SMALL_STATE(1024)] = 28802, + [SMALL_STATE(1025)] = 28856, + [SMALL_STATE(1026)] = 28910, + [SMALL_STATE(1027)] = 28964, + [SMALL_STATE(1028)] = 29018, + [SMALL_STATE(1029)] = 29072, + [SMALL_STATE(1030)] = 29126, + [SMALL_STATE(1031)] = 29180, + [SMALL_STATE(1032)] = 29234, + [SMALL_STATE(1033)] = 29288, + [SMALL_STATE(1034)] = 29342, + [SMALL_STATE(1035)] = 29396, + [SMALL_STATE(1036)] = 29450, + [SMALL_STATE(1037)] = 29504, + [SMALL_STATE(1038)] = 29558, + [SMALL_STATE(1039)] = 29612, + [SMALL_STATE(1040)] = 29666, + [SMALL_STATE(1041)] = 29720, + [SMALL_STATE(1042)] = 29774, + [SMALL_STATE(1043)] = 29828, + [SMALL_STATE(1044)] = 29882, + [SMALL_STATE(1045)] = 29936, + [SMALL_STATE(1046)] = 29991, + [SMALL_STATE(1047)] = 30044, + [SMALL_STATE(1048)] = 30097, + [SMALL_STATE(1049)] = 30150, + [SMALL_STATE(1050)] = 30203, + [SMALL_STATE(1051)] = 30256, + [SMALL_STATE(1052)] = 30309, + [SMALL_STATE(1053)] = 30362, + [SMALL_STATE(1054)] = 30415, + [SMALL_STATE(1055)] = 30468, + [SMALL_STATE(1056)] = 30521, + [SMALL_STATE(1057)] = 30574, + [SMALL_STATE(1058)] = 30627, + [SMALL_STATE(1059)] = 30680, + [SMALL_STATE(1060)] = 30733, + [SMALL_STATE(1061)] = 30786, + [SMALL_STATE(1062)] = 30839, + [SMALL_STATE(1063)] = 30892, + [SMALL_STATE(1064)] = 30945, + [SMALL_STATE(1065)] = 30998, + [SMALL_STATE(1066)] = 31051, + [SMALL_STATE(1067)] = 31104, + [SMALL_STATE(1068)] = 31157, + [SMALL_STATE(1069)] = 31210, + [SMALL_STATE(1070)] = 31263, + [SMALL_STATE(1071)] = 31316, + [SMALL_STATE(1072)] = 31369, + [SMALL_STATE(1073)] = 31422, + [SMALL_STATE(1074)] = 31475, + [SMALL_STATE(1075)] = 31528, + [SMALL_STATE(1076)] = 31581, + [SMALL_STATE(1077)] = 31634, + [SMALL_STATE(1078)] = 31687, + [SMALL_STATE(1079)] = 31740, + [SMALL_STATE(1080)] = 31793, + [SMALL_STATE(1081)] = 31846, + [SMALL_STATE(1082)] = 31899, + [SMALL_STATE(1083)] = 31952, + [SMALL_STATE(1084)] = 32005, + [SMALL_STATE(1085)] = 32058, + [SMALL_STATE(1086)] = 32111, + [SMALL_STATE(1087)] = 32164, + [SMALL_STATE(1088)] = 32217, + [SMALL_STATE(1089)] = 32270, + [SMALL_STATE(1090)] = 32323, + [SMALL_STATE(1091)] = 32376, + [SMALL_STATE(1092)] = 32429, + [SMALL_STATE(1093)] = 32482, + [SMALL_STATE(1094)] = 32535, + [SMALL_STATE(1095)] = 32624, + [SMALL_STATE(1096)] = 32677, + [SMALL_STATE(1097)] = 32730, + [SMALL_STATE(1098)] = 32783, + [SMALL_STATE(1099)] = 32836, + [SMALL_STATE(1100)] = 32889, + [SMALL_STATE(1101)] = 32942, + [SMALL_STATE(1102)] = 32995, + [SMALL_STATE(1103)] = 33048, + [SMALL_STATE(1104)] = 33101, + [SMALL_STATE(1105)] = 33154, + [SMALL_STATE(1106)] = 33207, + [SMALL_STATE(1107)] = 33260, + [SMALL_STATE(1108)] = 33313, + [SMALL_STATE(1109)] = 33402, + [SMALL_STATE(1110)] = 33455, + [SMALL_STATE(1111)] = 33508, + [SMALL_STATE(1112)] = 33561, + [SMALL_STATE(1113)] = 33614, + [SMALL_STATE(1114)] = 33667, + [SMALL_STATE(1115)] = 33720, + [SMALL_STATE(1116)] = 33773, + [SMALL_STATE(1117)] = 33826, + [SMALL_STATE(1118)] = 33879, + [SMALL_STATE(1119)] = 33932, + [SMALL_STATE(1120)] = 33985, + [SMALL_STATE(1121)] = 34038, + [SMALL_STATE(1122)] = 34091, + [SMALL_STATE(1123)] = 34144, + [SMALL_STATE(1124)] = 34197, + [SMALL_STATE(1125)] = 34250, + [SMALL_STATE(1126)] = 34303, + [SMALL_STATE(1127)] = 34356, + [SMALL_STATE(1128)] = 34411, + [SMALL_STATE(1129)] = 34464, + [SMALL_STATE(1130)] = 34517, + [SMALL_STATE(1131)] = 34572, + [SMALL_STATE(1132)] = 34625, + [SMALL_STATE(1133)] = 34678, + [SMALL_STATE(1134)] = 34731, + [SMALL_STATE(1135)] = 34784, + [SMALL_STATE(1136)] = 34837, + [SMALL_STATE(1137)] = 34890, + [SMALL_STATE(1138)] = 34943, + [SMALL_STATE(1139)] = 34996, + [SMALL_STATE(1140)] = 35049, + [SMALL_STATE(1141)] = 35106, + [SMALL_STATE(1142)] = 35159, + [SMALL_STATE(1143)] = 35214, + [SMALL_STATE(1144)] = 35267, + [SMALL_STATE(1145)] = 35320, + [SMALL_STATE(1146)] = 35400, + [SMALL_STATE(1147)] = 35480, + [SMALL_STATE(1148)] = 35566, + [SMALL_STATE(1149)] = 35618, + [SMALL_STATE(1150)] = 35670, + [SMALL_STATE(1151)] = 35730, + [SMALL_STATE(1152)] = 35790, + [SMALL_STATE(1153)] = 35876, + [SMALL_STATE(1154)] = 35956, + [SMALL_STATE(1155)] = 36020, + [SMALL_STATE(1156)] = 36080, + [SMALL_STATE(1157)] = 36140, + [SMALL_STATE(1158)] = 36220, + [SMALL_STATE(1159)] = 36288, + [SMALL_STATE(1160)] = 36350, + [SMALL_STATE(1161)] = 36410, + [SMALL_STATE(1162)] = 36490, + [SMALL_STATE(1163)] = 36562, + [SMALL_STATE(1164)] = 36628, + [SMALL_STATE(1165)] = 36708, + [SMALL_STATE(1166)] = 36778, + [SMALL_STATE(1167)] = 36854, + [SMALL_STATE(1168)] = 36932, + [SMALL_STATE(1169)] = 37017, + [SMALL_STATE(1170)] = 37104, + [SMALL_STATE(1171)] = 37189, + [SMALL_STATE(1172)] = 37246, + [SMALL_STATE(1173)] = 37333, + [SMALL_STATE(1174)] = 37384, + [SMALL_STATE(1175)] = 37471, + [SMALL_STATE(1176)] = 37522, + [SMALL_STATE(1177)] = 37601, + [SMALL_STATE(1178)] = 37688, + [SMALL_STATE(1179)] = 37764, + [SMALL_STATE(1180)] = 37840, + [SMALL_STATE(1181)] = 37896, + [SMALL_STATE(1182)] = 37972, + [SMALL_STATE(1183)] = 38026, + [SMALL_STATE(1184)] = 38102, + [SMALL_STATE(1185)] = 38151, + [SMALL_STATE(1186)] = 38200, + [SMALL_STATE(1187)] = 38273, + [SMALL_STATE(1188)] = 38326, + [SMALL_STATE(1189)] = 38375, + [SMALL_STATE(1190)] = 38426, + [SMALL_STATE(1191)] = 38479, + [SMALL_STATE(1192)] = 38528, + [SMALL_STATE(1193)] = 38579, + [SMALL_STATE(1194)] = 38628, + [SMALL_STATE(1195)] = 38677, + [SMALL_STATE(1196)] = 38766, + [SMALL_STATE(1197)] = 38815, + [SMALL_STATE(1198)] = 38904, + [SMALL_STATE(1199)] = 38953, + [SMALL_STATE(1200)] = 39002, + [SMALL_STATE(1201)] = 39088, + [SMALL_STATE(1202)] = 39166, + [SMALL_STATE(1203)] = 39216, + [SMALL_STATE(1204)] = 39266, + [SMALL_STATE(1205)] = 39352, + [SMALL_STATE(1206)] = 39402, + [SMALL_STATE(1207)] = 39452, + [SMALL_STATE(1208)] = 39530, + [SMALL_STATE(1209)] = 39613, + [SMALL_STATE(1210)] = 39696, + [SMALL_STATE(1211)] = 39779, + [SMALL_STATE(1212)] = 39834, + [SMALL_STATE(1213)] = 39915, + [SMALL_STATE(1214)] = 39998, + [SMALL_STATE(1215)] = 40081, + [SMALL_STATE(1216)] = 40164, + [SMALL_STATE(1217)] = 40247, + [SMALL_STATE(1218)] = 40330, + [SMALL_STATE(1219)] = 40385, + [SMALL_STATE(1220)] = 40456, + [SMALL_STATE(1221)] = 40537, + [SMALL_STATE(1222)] = 40620, + [SMALL_STATE(1223)] = 40703, + [SMALL_STATE(1224)] = 40786, + [SMALL_STATE(1225)] = 40861, + [SMALL_STATE(1226)] = 40916, + [SMALL_STATE(1227)] = 40999, + [SMALL_STATE(1228)] = 41082, + [SMALL_STATE(1229)] = 41165, + [SMALL_STATE(1230)] = 41240, + [SMALL_STATE(1231)] = 41323, + [SMALL_STATE(1232)] = 41404, + [SMALL_STATE(1233)] = 41487, + [SMALL_STATE(1234)] = 41568, + [SMALL_STATE(1235)] = 41651, + [SMALL_STATE(1236)] = 41732, + [SMALL_STATE(1237)] = 41805, + [SMALL_STATE(1238)] = 41888, + [SMALL_STATE(1239)] = 41947, + [SMALL_STATE(1240)] = 42030, + [SMALL_STATE(1241)] = 42113, + [SMALL_STATE(1242)] = 42188, + [SMALL_STATE(1243)] = 42259, + [SMALL_STATE(1244)] = 42320, + [SMALL_STATE(1245)] = 42375, + [SMALL_STATE(1246)] = 42458, + [SMALL_STATE(1247)] = 42525, + [SMALL_STATE(1248)] = 42608, + [SMALL_STATE(1249)] = 42691, + [SMALL_STATE(1250)] = 42774, + [SMALL_STATE(1251)] = 42857, + [SMALL_STATE(1252)] = 42932, + [SMALL_STATE(1253)] = 43015, + [SMALL_STATE(1254)] = 43090, + [SMALL_STATE(1255)] = 43173, + [SMALL_STATE(1256)] = 43256, + [SMALL_STATE(1257)] = 43339, + [SMALL_STATE(1258)] = 43422, + [SMALL_STATE(1259)] = 43505, + [SMALL_STATE(1260)] = 43570, + [SMALL_STATE(1261)] = 43633, + [SMALL_STATE(1262)] = 43690, + [SMALL_STATE(1263)] = 43773, + [SMALL_STATE(1264)] = 43856, + [SMALL_STATE(1265)] = 43939, + [SMALL_STATE(1266)] = 44020, + [SMALL_STATE(1267)] = 44103, + [SMALL_STATE(1268)] = 44186, + [SMALL_STATE(1269)] = 44269, + [SMALL_STATE(1270)] = 44352, + [SMALL_STATE(1271)] = 44435, + [SMALL_STATE(1272)] = 44518, + [SMALL_STATE(1273)] = 44599, + [SMALL_STATE(1274)] = 44682, + [SMALL_STATE(1275)] = 44765, + [SMALL_STATE(1276)] = 44840, + [SMALL_STATE(1277)] = 44923, + [SMALL_STATE(1278)] = 45004, + [SMALL_STATE(1279)] = 45085, + [SMALL_STATE(1280)] = 45168, + [SMALL_STATE(1281)] = 45249, + [SMALL_STATE(1282)] = 45330, + [SMALL_STATE(1283)] = 45411, + [SMALL_STATE(1284)] = 45494, + [SMALL_STATE(1285)] = 45574, + [SMALL_STATE(1286)] = 45654, + [SMALL_STATE(1287)] = 45734, + [SMALL_STATE(1288)] = 45814, + [SMALL_STATE(1289)] = 45894, + [SMALL_STATE(1290)] = 45974, + [SMALL_STATE(1291)] = 46042, + [SMALL_STATE(1292)] = 46122, + [SMALL_STATE(1293)] = 46202, + [SMALL_STATE(1294)] = 46282, + [SMALL_STATE(1295)] = 46362, + [SMALL_STATE(1296)] = 46442, + [SMALL_STATE(1297)] = 46522, + [SMALL_STATE(1298)] = 46602, + [SMALL_STATE(1299)] = 46682, + [SMALL_STATE(1300)] = 46762, + [SMALL_STATE(1301)] = 46842, + [SMALL_STATE(1302)] = 46922, + [SMALL_STATE(1303)] = 47002, + [SMALL_STATE(1304)] = 47082, + [SMALL_STATE(1305)] = 47162, + [SMALL_STATE(1306)] = 47242, + [SMALL_STATE(1307)] = 47322, + [SMALL_STATE(1308)] = 47402, + [SMALL_STATE(1309)] = 47482, + [SMALL_STATE(1310)] = 47562, + [SMALL_STATE(1311)] = 47642, + [SMALL_STATE(1312)] = 47722, + [SMALL_STATE(1313)] = 47802, + [SMALL_STATE(1314)] = 47882, + [SMALL_STATE(1315)] = 47962, + [SMALL_STATE(1316)] = 48042, + [SMALL_STATE(1317)] = 48110, + [SMALL_STATE(1318)] = 48175, + [SMALL_STATE(1319)] = 48240, + [SMALL_STATE(1320)] = 48305, + [SMALL_STATE(1321)] = 48370, + [SMALL_STATE(1322)] = 48435, + [SMALL_STATE(1323)] = 48475, + [SMALL_STATE(1324)] = 48515, + [SMALL_STATE(1325)] = 48555, + [SMALL_STATE(1326)] = 48610, + [SMALL_STATE(1327)] = 48665, + [SMALL_STATE(1328)] = 48720, + [SMALL_STATE(1329)] = 48775, + [SMALL_STATE(1330)] = 48830, + [SMALL_STATE(1331)] = 48885, + [SMALL_STATE(1332)] = 48940, + [SMALL_STATE(1333)] = 48992, + [SMALL_STATE(1334)] = 49044, + [SMALL_STATE(1335)] = 49074, + [SMALL_STATE(1336)] = 49104, + [SMALL_STATE(1337)] = 49144, + [SMALL_STATE(1338)] = 49186, + [SMALL_STATE(1339)] = 49215, + [SMALL_STATE(1340)] = 49244, + [SMALL_STATE(1341)] = 49281, + [SMALL_STATE(1342)] = 49318, + [SMALL_STATE(1343)] = 49347, + [SMALL_STATE(1344)] = 49376, + [SMALL_STATE(1345)] = 49405, + [SMALL_STATE(1346)] = 49434, + [SMALL_STATE(1347)] = 49463, + [SMALL_STATE(1348)] = 49492, + [SMALL_STATE(1349)] = 49524, + [SMALL_STATE(1350)] = 49556, + [SMALL_STATE(1351)] = 49610, + [SMALL_STATE(1352)] = 49664, + [SMALL_STATE(1353)] = 49696, + [SMALL_STATE(1354)] = 49719, + [SMALL_STATE(1355)] = 49744, + [SMALL_STATE(1356)] = 49766, + [SMALL_STATE(1357)] = 49788, + [SMALL_STATE(1358)] = 49812, + [SMALL_STATE(1359)] = 49836, + [SMALL_STATE(1360)] = 49860, + [SMALL_STATE(1361)] = 49884, + [SMALL_STATE(1362)] = 49908, + [SMALL_STATE(1363)] = 49932, + [SMALL_STATE(1364)] = 49976, + [SMALL_STATE(1365)] = 50000, + [SMALL_STATE(1366)] = 50024, + [SMALL_STATE(1367)] = 50048, + [SMALL_STATE(1368)] = 50094, + [SMALL_STATE(1369)] = 50116, + [SMALL_STATE(1370)] = 50146, + [SMALL_STATE(1371)] = 50168, + [SMALL_STATE(1372)] = 50212, + [SMALL_STATE(1373)] = 50236, + [SMALL_STATE(1374)] = 50263, + [SMALL_STATE(1375)] = 50284, + [SMALL_STATE(1376)] = 50309, + [SMALL_STATE(1377)] = 50354, + [SMALL_STATE(1378)] = 50375, + [SMALL_STATE(1379)] = 50398, + [SMALL_STATE(1380)] = 50423, + [SMALL_STATE(1381)] = 50448, + [SMALL_STATE(1382)] = 50473, + [SMALL_STATE(1383)] = 50496, + [SMALL_STATE(1384)] = 50519, + [SMALL_STATE(1385)] = 50542, + [SMALL_STATE(1386)] = 50563, + [SMALL_STATE(1387)] = 50586, + [SMALL_STATE(1388)] = 50609, + [SMALL_STATE(1389)] = 50630, + [SMALL_STATE(1390)] = 50655, + [SMALL_STATE(1391)] = 50678, + [SMALL_STATE(1392)] = 50699, + [SMALL_STATE(1393)] = 50722, + [SMALL_STATE(1394)] = 50747, + [SMALL_STATE(1395)] = 50767, + [SMALL_STATE(1396)] = 50787, + [SMALL_STATE(1397)] = 50807, + [SMALL_STATE(1398)] = 50827, + [SMALL_STATE(1399)] = 50847, + [SMALL_STATE(1400)] = 50867, + [SMALL_STATE(1401)] = 50887, + [SMALL_STATE(1402)] = 50907, + [SMALL_STATE(1403)] = 50927, + [SMALL_STATE(1404)] = 50949, + [SMALL_STATE(1405)] = 50969, + [SMALL_STATE(1406)] = 50989, + [SMALL_STATE(1407)] = 51009, + [SMALL_STATE(1408)] = 51029, + [SMALL_STATE(1409)] = 51049, + [SMALL_STATE(1410)] = 51069, + [SMALL_STATE(1411)] = 51089, + [SMALL_STATE(1412)] = 51111, + [SMALL_STATE(1413)] = 51131, + [SMALL_STATE(1414)] = 51151, + [SMALL_STATE(1415)] = 51171, + [SMALL_STATE(1416)] = 51191, + [SMALL_STATE(1417)] = 51211, + [SMALL_STATE(1418)] = 51231, + [SMALL_STATE(1419)] = 51251, + [SMALL_STATE(1420)] = 51271, + [SMALL_STATE(1421)] = 51291, + [SMALL_STATE(1422)] = 51313, + [SMALL_STATE(1423)] = 51333, + [SMALL_STATE(1424)] = 51357, + [SMALL_STATE(1425)] = 51377, + [SMALL_STATE(1426)] = 51402, + [SMALL_STATE(1427)] = 51423, + [SMALL_STATE(1428)] = 51448, + [SMALL_STATE(1429)] = 51483, + [SMALL_STATE(1430)] = 51508, + [SMALL_STATE(1431)] = 51533, + [SMALL_STATE(1432)] = 51556, + [SMALL_STATE(1433)] = 51579, + [SMALL_STATE(1434)] = 51602, + [SMALL_STATE(1435)] = 51625, + [SMALL_STATE(1436)] = 51650, + [SMALL_STATE(1437)] = 51671, + [SMALL_STATE(1438)] = 51692, + [SMALL_STATE(1439)] = 51717, + [SMALL_STATE(1440)] = 51742, + [SMALL_STATE(1441)] = 51765, + [SMALL_STATE(1442)] = 51790, + [SMALL_STATE(1443)] = 51813, + [SMALL_STATE(1444)] = 51836, + [SMALL_STATE(1445)] = 51859, + [SMALL_STATE(1446)] = 51882, + [SMALL_STATE(1447)] = 51905, + [SMALL_STATE(1448)] = 51928, + [SMALL_STATE(1449)] = 51951, + [SMALL_STATE(1450)] = 51983, + [SMALL_STATE(1451)] = 52003, + [SMALL_STATE(1452)] = 52023, + [SMALL_STATE(1453)] = 52055, + [SMALL_STATE(1454)] = 52075, + [SMALL_STATE(1455)] = 52107, + [SMALL_STATE(1456)] = 52139, + [SMALL_STATE(1457)] = 52159, + [SMALL_STATE(1458)] = 52179, + [SMALL_STATE(1459)] = 52199, + [SMALL_STATE(1460)] = 52219, + [SMALL_STATE(1461)] = 52239, + [SMALL_STATE(1462)] = 52271, + [SMALL_STATE(1463)] = 52291, + [SMALL_STATE(1464)] = 52311, + [SMALL_STATE(1465)] = 52331, + [SMALL_STATE(1466)] = 52363, + [SMALL_STATE(1467)] = 52383, + [SMALL_STATE(1468)] = 52409, + [SMALL_STATE(1469)] = 52429, + [SMALL_STATE(1470)] = 52449, + [SMALL_STATE(1471)] = 52469, + [SMALL_STATE(1472)] = 52489, + [SMALL_STATE(1473)] = 52513, + [SMALL_STATE(1474)] = 52533, + [SMALL_STATE(1475)] = 52553, + [SMALL_STATE(1476)] = 52579, + [SMALL_STATE(1477)] = 52599, + [SMALL_STATE(1478)] = 52619, + [SMALL_STATE(1479)] = 52639, + [SMALL_STATE(1480)] = 52663, + [SMALL_STATE(1481)] = 52683, + [SMALL_STATE(1482)] = 52703, + [SMALL_STATE(1483)] = 52723, + [SMALL_STATE(1484)] = 52747, + [SMALL_STATE(1485)] = 52767, + [SMALL_STATE(1486)] = 52791, + [SMALL_STATE(1487)] = 52823, + [SMALL_STATE(1488)] = 52843, + [SMALL_STATE(1489)] = 52863, + [SMALL_STATE(1490)] = 52883, + [SMALL_STATE(1491)] = 52903, + [SMALL_STATE(1492)] = 52923, + [SMALL_STATE(1493)] = 52943, + [SMALL_STATE(1494)] = 52975, + [SMALL_STATE(1495)] = 53008, + [SMALL_STATE(1496)] = 53031, + [SMALL_STATE(1497)] = 53056, + [SMALL_STATE(1498)] = 53079, + [SMALL_STATE(1499)] = 53112, + [SMALL_STATE(1500)] = 53143, + [SMALL_STATE(1501)] = 53170, + [SMALL_STATE(1502)] = 53203, + [SMALL_STATE(1503)] = 53226, + [SMALL_STATE(1504)] = 53251, + [SMALL_STATE(1505)] = 53276, + [SMALL_STATE(1506)] = 53305, + [SMALL_STATE(1507)] = 53338, + [SMALL_STATE(1508)] = 53368, + [SMALL_STATE(1509)] = 53398, + [SMALL_STATE(1510)] = 53428, + [SMALL_STATE(1511)] = 53458, + [SMALL_STATE(1512)] = 53490, + [SMALL_STATE(1513)] = 53520, + [SMALL_STATE(1514)] = 53542, + [SMALL_STATE(1515)] = 53572, + [SMALL_STATE(1516)] = 53598, + [SMALL_STATE(1517)] = 53628, + [SMALL_STATE(1518)] = 53654, + [SMALL_STATE(1519)] = 53680, + [SMALL_STATE(1520)] = 53706, + [SMALL_STATE(1521)] = 53736, + [SMALL_STATE(1522)] = 53768, + [SMALL_STATE(1523)] = 53798, + [SMALL_STATE(1524)] = 53828, + [SMALL_STATE(1525)] = 53854, + [SMALL_STATE(1526)] = 53884, + [SMALL_STATE(1527)] = 53910, + [SMALL_STATE(1528)] = 53940, + [SMALL_STATE(1529)] = 53962, + [SMALL_STATE(1530)] = 53988, + [SMALL_STATE(1531)] = 54018, + [SMALL_STATE(1532)] = 54048, + [SMALL_STATE(1533)] = 54078, + [SMALL_STATE(1534)] = 54100, + [SMALL_STATE(1535)] = 54130, + [SMALL_STATE(1536)] = 54160, + [SMALL_STATE(1537)] = 54192, + [SMALL_STATE(1538)] = 54222, + [SMALL_STATE(1539)] = 54248, + [SMALL_STATE(1540)] = 54274, + [SMALL_STATE(1541)] = 54296, + [SMALL_STATE(1542)] = 54326, + [SMALL_STATE(1543)] = 54356, + [SMALL_STATE(1544)] = 54382, + [SMALL_STATE(1545)] = 54404, + [SMALL_STATE(1546)] = 54436, + [SMALL_STATE(1547)] = 54462, + [SMALL_STATE(1548)] = 54484, + [SMALL_STATE(1549)] = 54514, + [SMALL_STATE(1550)] = 54537, + [SMALL_STATE(1551)] = 54564, + [SMALL_STATE(1552)] = 54583, + [SMALL_STATE(1553)] = 54606, + [SMALL_STATE(1554)] = 54625, + [SMALL_STATE(1555)] = 54652, + [SMALL_STATE(1556)] = 54671, + [SMALL_STATE(1557)] = 54698, + [SMALL_STATE(1558)] = 54725, + [SMALL_STATE(1559)] = 54752, + [SMALL_STATE(1560)] = 54775, + [SMALL_STATE(1561)] = 54794, + [SMALL_STATE(1562)] = 54823, + [SMALL_STATE(1563)] = 54850, + [SMALL_STATE(1564)] = 54869, + [SMALL_STATE(1565)] = 54888, + [SMALL_STATE(1566)] = 54917, + [SMALL_STATE(1567)] = 54944, + [SMALL_STATE(1568)] = 54973, + [SMALL_STATE(1569)] = 54992, + [SMALL_STATE(1570)] = 55019, + [SMALL_STATE(1571)] = 55046, + [SMALL_STATE(1572)] = 55069, + [SMALL_STATE(1573)] = 55098, + [SMALL_STATE(1574)] = 55127, + [SMALL_STATE(1575)] = 55142, + [SMALL_STATE(1576)] = 55163, + [SMALL_STATE(1577)] = 55184, + [SMALL_STATE(1578)] = 55211, + [SMALL_STATE(1579)] = 55234, + [SMALL_STATE(1580)] = 55259, + [SMALL_STATE(1581)] = 55286, + [SMALL_STATE(1582)] = 55305, + [SMALL_STATE(1583)] = 55324, + [SMALL_STATE(1584)] = 55343, + [SMALL_STATE(1585)] = 55372, + [SMALL_STATE(1586)] = 55399, + [SMALL_STATE(1587)] = 55426, + [SMALL_STATE(1588)] = 55453, + [SMALL_STATE(1589)] = 55480, + [SMALL_STATE(1590)] = 55499, + [SMALL_STATE(1591)] = 55523, + [SMALL_STATE(1592)] = 55549, + [SMALL_STATE(1593)] = 55575, + [SMALL_STATE(1594)] = 55601, + [SMALL_STATE(1595)] = 55627, + [SMALL_STATE(1596)] = 55653, + [SMALL_STATE(1597)] = 55675, + [SMALL_STATE(1598)] = 55697, + [SMALL_STATE(1599)] = 55723, + [SMALL_STATE(1600)] = 55749, [SMALL_STATE(1601)] = 55775, - [SMALL_STATE(1602)] = 55799, - [SMALL_STATE(1603)] = 55813, - [SMALL_STATE(1604)] = 55839, - [SMALL_STATE(1605)] = 55865, - [SMALL_STATE(1606)] = 55891, - [SMALL_STATE(1607)] = 55917, - [SMALL_STATE(1608)] = 55943, - [SMALL_STATE(1609)] = 55969, - [SMALL_STATE(1610)] = 55993, - [SMALL_STATE(1611)] = 56019, - [SMALL_STATE(1612)] = 56033, - [SMALL_STATE(1613)] = 56059, - [SMALL_STATE(1614)] = 56085, - [SMALL_STATE(1615)] = 56111, - [SMALL_STATE(1616)] = 56137, - [SMALL_STATE(1617)] = 56163, - [SMALL_STATE(1618)] = 56179, - [SMALL_STATE(1619)] = 56203, - [SMALL_STATE(1620)] = 56229, - [SMALL_STATE(1621)] = 56255, - [SMALL_STATE(1622)] = 56271, - [SMALL_STATE(1623)] = 56297, - [SMALL_STATE(1624)] = 56321, - [SMALL_STATE(1625)] = 56337, - [SMALL_STATE(1626)] = 56363, - [SMALL_STATE(1627)] = 56389, - [SMALL_STATE(1628)] = 56415, - [SMALL_STATE(1629)] = 56441, - [SMALL_STATE(1630)] = 56457, - [SMALL_STATE(1631)] = 56481, - [SMALL_STATE(1632)] = 56497, - [SMALL_STATE(1633)] = 56520, - [SMALL_STATE(1634)] = 56537, - [SMALL_STATE(1635)] = 56560, - [SMALL_STATE(1636)] = 56583, - [SMALL_STATE(1637)] = 56606, - [SMALL_STATE(1638)] = 56629, - [SMALL_STATE(1639)] = 56652, - [SMALL_STATE(1640)] = 56675, - [SMALL_STATE(1641)] = 56692, - [SMALL_STATE(1642)] = 56715, - [SMALL_STATE(1643)] = 56738, - [SMALL_STATE(1644)] = 56761, - [SMALL_STATE(1645)] = 56778, - [SMALL_STATE(1646)] = 56801, - [SMALL_STATE(1647)] = 56824, - [SMALL_STATE(1648)] = 56841, - [SMALL_STATE(1649)] = 56864, - [SMALL_STATE(1650)] = 56887, - [SMALL_STATE(1651)] = 56910, - [SMALL_STATE(1652)] = 56933, - [SMALL_STATE(1653)] = 56950, - [SMALL_STATE(1654)] = 56973, - [SMALL_STATE(1655)] = 56996, - [SMALL_STATE(1656)] = 57013, - [SMALL_STATE(1657)] = 57036, - [SMALL_STATE(1658)] = 57059, - [SMALL_STATE(1659)] = 57082, - [SMALL_STATE(1660)] = 57099, - [SMALL_STATE(1661)] = 57120, - [SMALL_STATE(1662)] = 57143, - [SMALL_STATE(1663)] = 57162, - [SMALL_STATE(1664)] = 57185, - [SMALL_STATE(1665)] = 57208, - [SMALL_STATE(1666)] = 57223, - [SMALL_STATE(1667)] = 57240, - [SMALL_STATE(1668)] = 57263, - [SMALL_STATE(1669)] = 57282, - [SMALL_STATE(1670)] = 57305, - [SMALL_STATE(1671)] = 57328, - [SMALL_STATE(1672)] = 57351, - [SMALL_STATE(1673)] = 57374, - [SMALL_STATE(1674)] = 57397, - [SMALL_STATE(1675)] = 57420, - [SMALL_STATE(1676)] = 57437, - [SMALL_STATE(1677)] = 57460, - [SMALL_STATE(1678)] = 57483, - [SMALL_STATE(1679)] = 57506, - [SMALL_STATE(1680)] = 57529, - [SMALL_STATE(1681)] = 57546, - [SMALL_STATE(1682)] = 57569, - [SMALL_STATE(1683)] = 57592, - [SMALL_STATE(1684)] = 57615, - [SMALL_STATE(1685)] = 57638, - [SMALL_STATE(1686)] = 57661, - [SMALL_STATE(1687)] = 57684, - [SMALL_STATE(1688)] = 57705, - [SMALL_STATE(1689)] = 57728, - [SMALL_STATE(1690)] = 57751, - [SMALL_STATE(1691)] = 57774, - [SMALL_STATE(1692)] = 57797, - [SMALL_STATE(1693)] = 57820, - [SMALL_STATE(1694)] = 57843, - [SMALL_STATE(1695)] = 57866, - [SMALL_STATE(1696)] = 57883, - [SMALL_STATE(1697)] = 57906, - [SMALL_STATE(1698)] = 57923, - [SMALL_STATE(1699)] = 57946, - [SMALL_STATE(1700)] = 57969, - [SMALL_STATE(1701)] = 57992, - [SMALL_STATE(1702)] = 58015, - [SMALL_STATE(1703)] = 58038, - [SMALL_STATE(1704)] = 58061, - [SMALL_STATE(1705)] = 58084, - [SMALL_STATE(1706)] = 58107, - [SMALL_STATE(1707)] = 58130, - [SMALL_STATE(1708)] = 58153, - [SMALL_STATE(1709)] = 58176, - [SMALL_STATE(1710)] = 58199, - [SMALL_STATE(1711)] = 58222, - [SMALL_STATE(1712)] = 58237, - [SMALL_STATE(1713)] = 58260, - [SMALL_STATE(1714)] = 58277, - [SMALL_STATE(1715)] = 58300, - [SMALL_STATE(1716)] = 58323, - [SMALL_STATE(1717)] = 58346, - [SMALL_STATE(1718)] = 58369, - [SMALL_STATE(1719)] = 58392, - [SMALL_STATE(1720)] = 58409, - [SMALL_STATE(1721)] = 58432, - [SMALL_STATE(1722)] = 58455, - [SMALL_STATE(1723)] = 58472, - [SMALL_STATE(1724)] = 58491, - [SMALL_STATE(1725)] = 58503, - [SMALL_STATE(1726)] = 58521, - [SMALL_STATE(1727)] = 58539, - [SMALL_STATE(1728)] = 58555, - [SMALL_STATE(1729)] = 58567, - [SMALL_STATE(1730)] = 58579, - [SMALL_STATE(1731)] = 58591, - [SMALL_STATE(1732)] = 58607, - [SMALL_STATE(1733)] = 58623, - [SMALL_STATE(1734)] = 58635, - [SMALL_STATE(1735)] = 58655, - [SMALL_STATE(1736)] = 58671, - [SMALL_STATE(1737)] = 58687, - [SMALL_STATE(1738)] = 58707, - [SMALL_STATE(1739)] = 58727, - [SMALL_STATE(1740)] = 58743, - [SMALL_STATE(1741)] = 58759, - [SMALL_STATE(1742)] = 58771, - [SMALL_STATE(1743)] = 58789, - [SMALL_STATE(1744)] = 58807, - [SMALL_STATE(1745)] = 58827, - [SMALL_STATE(1746)] = 58843, - [SMALL_STATE(1747)] = 58855, - [SMALL_STATE(1748)] = 58873, - [SMALL_STATE(1749)] = 58885, - [SMALL_STATE(1750)] = 58899, - [SMALL_STATE(1751)] = 58911, - [SMALL_STATE(1752)] = 58927, - [SMALL_STATE(1753)] = 58945, - [SMALL_STATE(1754)] = 58961, - [SMALL_STATE(1755)] = 58977, - [SMALL_STATE(1756)] = 58989, - [SMALL_STATE(1757)] = 59001, - [SMALL_STATE(1758)] = 59019, - [SMALL_STATE(1759)] = 59031, - [SMALL_STATE(1760)] = 59043, - [SMALL_STATE(1761)] = 59055, - [SMALL_STATE(1762)] = 59067, - [SMALL_STATE(1763)] = 59079, - [SMALL_STATE(1764)] = 59095, - [SMALL_STATE(1765)] = 59115, - [SMALL_STATE(1766)] = 59127, - [SMALL_STATE(1767)] = 59139, - [SMALL_STATE(1768)] = 59151, - [SMALL_STATE(1769)] = 59163, - [SMALL_STATE(1770)] = 59175, - [SMALL_STATE(1771)] = 59191, - [SMALL_STATE(1772)] = 59205, - [SMALL_STATE(1773)] = 59225, - [SMALL_STATE(1774)] = 59243, - [SMALL_STATE(1775)] = 59260, - [SMALL_STATE(1776)] = 59277, - [SMALL_STATE(1777)] = 59292, - [SMALL_STATE(1778)] = 59307, - [SMALL_STATE(1779)] = 59322, - [SMALL_STATE(1780)] = 59337, - [SMALL_STATE(1781)] = 59352, - [SMALL_STATE(1782)] = 59367, - [SMALL_STATE(1783)] = 59384, - [SMALL_STATE(1784)] = 59401, - [SMALL_STATE(1785)] = 59416, - [SMALL_STATE(1786)] = 59433, - [SMALL_STATE(1787)] = 59448, - [SMALL_STATE(1788)] = 59463, - [SMALL_STATE(1789)] = 59480, - [SMALL_STATE(1790)] = 59497, - [SMALL_STATE(1791)] = 59514, - [SMALL_STATE(1792)] = 59527, - [SMALL_STATE(1793)] = 59540, - [SMALL_STATE(1794)] = 59557, - [SMALL_STATE(1795)] = 59574, - [SMALL_STATE(1796)] = 59589, - [SMALL_STATE(1797)] = 59604, - [SMALL_STATE(1798)] = 59621, - [SMALL_STATE(1799)] = 59636, - [SMALL_STATE(1800)] = 59653, - [SMALL_STATE(1801)] = 59666, - [SMALL_STATE(1802)] = 59683, - [SMALL_STATE(1803)] = 59700, - [SMALL_STATE(1804)] = 59717, - [SMALL_STATE(1805)] = 59734, - [SMALL_STATE(1806)] = 59751, - [SMALL_STATE(1807)] = 59768, - [SMALL_STATE(1808)] = 59783, - [SMALL_STATE(1809)] = 59800, - [SMALL_STATE(1810)] = 59817, - [SMALL_STATE(1811)] = 59832, - [SMALL_STATE(1812)] = 59849, - [SMALL_STATE(1813)] = 59862, - [SMALL_STATE(1814)] = 59877, - [SMALL_STATE(1815)] = 59894, - [SMALL_STATE(1816)] = 59911, - [SMALL_STATE(1817)] = 59928, - [SMALL_STATE(1818)] = 59945, - [SMALL_STATE(1819)] = 59962, - [SMALL_STATE(1820)] = 59979, - [SMALL_STATE(1821)] = 59996, - [SMALL_STATE(1822)] = 60013, - [SMALL_STATE(1823)] = 60026, - [SMALL_STATE(1824)] = 60043, - [SMALL_STATE(1825)] = 60056, - [SMALL_STATE(1826)] = 60073, - [SMALL_STATE(1827)] = 60090, - [SMALL_STATE(1828)] = 60107, - [SMALL_STATE(1829)] = 60124, - [SMALL_STATE(1830)] = 60141, - [SMALL_STATE(1831)] = 60156, - [SMALL_STATE(1832)] = 60173, - [SMALL_STATE(1833)] = 60190, - [SMALL_STATE(1834)] = 60207, - [SMALL_STATE(1835)] = 60224, - [SMALL_STATE(1836)] = 60241, - [SMALL_STATE(1837)] = 60258, - [SMALL_STATE(1838)] = 60275, - [SMALL_STATE(1839)] = 60292, - [SMALL_STATE(1840)] = 60309, - [SMALL_STATE(1841)] = 60324, - [SMALL_STATE(1842)] = 60341, - [SMALL_STATE(1843)] = 60358, - [SMALL_STATE(1844)] = 60375, - [SMALL_STATE(1845)] = 60392, - [SMALL_STATE(1846)] = 60409, - [SMALL_STATE(1847)] = 60426, - [SMALL_STATE(1848)] = 60443, - [SMALL_STATE(1849)] = 60460, - [SMALL_STATE(1850)] = 60477, - [SMALL_STATE(1851)] = 60494, - [SMALL_STATE(1852)] = 60511, - [SMALL_STATE(1853)] = 60526, - [SMALL_STATE(1854)] = 60543, - [SMALL_STATE(1855)] = 60558, - [SMALL_STATE(1856)] = 60571, - [SMALL_STATE(1857)] = 60588, - [SMALL_STATE(1858)] = 60605, - [SMALL_STATE(1859)] = 60622, - [SMALL_STATE(1860)] = 60639, - [SMALL_STATE(1861)] = 60654, - [SMALL_STATE(1862)] = 60669, - [SMALL_STATE(1863)] = 60684, - [SMALL_STATE(1864)] = 60699, - [SMALL_STATE(1865)] = 60712, - [SMALL_STATE(1866)] = 60729, - [SMALL_STATE(1867)] = 60744, - [SMALL_STATE(1868)] = 60761, - [SMALL_STATE(1869)] = 60776, - [SMALL_STATE(1870)] = 60793, - [SMALL_STATE(1871)] = 60806, - [SMALL_STATE(1872)] = 60821, - [SMALL_STATE(1873)] = 60834, - [SMALL_STATE(1874)] = 60851, - [SMALL_STATE(1875)] = 60868, - [SMALL_STATE(1876)] = 60880, - [SMALL_STATE(1877)] = 60894, - [SMALL_STATE(1878)] = 60908, - [SMALL_STATE(1879)] = 60918, - [SMALL_STATE(1880)] = 60930, - [SMALL_STATE(1881)] = 60944, - [SMALL_STATE(1882)] = 60958, - [SMALL_STATE(1883)] = 60972, - [SMALL_STATE(1884)] = 60986, - [SMALL_STATE(1885)] = 61000, - [SMALL_STATE(1886)] = 61014, - [SMALL_STATE(1887)] = 61028, - [SMALL_STATE(1888)] = 61042, - [SMALL_STATE(1889)] = 61056, - [SMALL_STATE(1890)] = 61070, - [SMALL_STATE(1891)] = 61084, - [SMALL_STATE(1892)] = 61098, - [SMALL_STATE(1893)] = 61112, - [SMALL_STATE(1894)] = 61122, - [SMALL_STATE(1895)] = 61132, - [SMALL_STATE(1896)] = 61144, - [SMALL_STATE(1897)] = 61156, - [SMALL_STATE(1898)] = 61168, - [SMALL_STATE(1899)] = 61182, - [SMALL_STATE(1900)] = 61194, - [SMALL_STATE(1901)] = 61208, - [SMALL_STATE(1902)] = 61218, - [SMALL_STATE(1903)] = 61230, - [SMALL_STATE(1904)] = 61244, - [SMALL_STATE(1905)] = 61258, - [SMALL_STATE(1906)] = 61270, - [SMALL_STATE(1907)] = 61284, - [SMALL_STATE(1908)] = 61294, - [SMALL_STATE(1909)] = 61306, - [SMALL_STATE(1910)] = 61320, - [SMALL_STATE(1911)] = 61334, - [SMALL_STATE(1912)] = 61346, - [SMALL_STATE(1913)] = 61356, - [SMALL_STATE(1914)] = 61368, - [SMALL_STATE(1915)] = 61382, - [SMALL_STATE(1916)] = 61396, - [SMALL_STATE(1917)] = 61410, - [SMALL_STATE(1918)] = 61424, - [SMALL_STATE(1919)] = 61438, - [SMALL_STATE(1920)] = 61452, - [SMALL_STATE(1921)] = 61466, - [SMALL_STATE(1922)] = 61480, - [SMALL_STATE(1923)] = 61492, - [SMALL_STATE(1924)] = 61504, - [SMALL_STATE(1925)] = 61518, - [SMALL_STATE(1926)] = 61528, - [SMALL_STATE(1927)] = 61542, - [SMALL_STATE(1928)] = 61556, - [SMALL_STATE(1929)] = 61568, - [SMALL_STATE(1930)] = 61582, - [SMALL_STATE(1931)] = 61594, - [SMALL_STATE(1932)] = 61608, - [SMALL_STATE(1933)] = 61618, - [SMALL_STATE(1934)] = 61632, - [SMALL_STATE(1935)] = 61644, - [SMALL_STATE(1936)] = 61656, - [SMALL_STATE(1937)] = 61670, - [SMALL_STATE(1938)] = 61684, - [SMALL_STATE(1939)] = 61698, - [SMALL_STATE(1940)] = 61710, - [SMALL_STATE(1941)] = 61724, - [SMALL_STATE(1942)] = 61734, - [SMALL_STATE(1943)] = 61748, - [SMALL_STATE(1944)] = 61758, - [SMALL_STATE(1945)] = 61772, - [SMALL_STATE(1946)] = 61782, - [SMALL_STATE(1947)] = 61796, - [SMALL_STATE(1948)] = 61810, - [SMALL_STATE(1949)] = 61824, - [SMALL_STATE(1950)] = 61838, - [SMALL_STATE(1951)] = 61852, - [SMALL_STATE(1952)] = 61862, - [SMALL_STATE(1953)] = 61872, - [SMALL_STATE(1954)] = 61882, - [SMALL_STATE(1955)] = 61892, - [SMALL_STATE(1956)] = 61906, - [SMALL_STATE(1957)] = 61920, - [SMALL_STATE(1958)] = 61934, - [SMALL_STATE(1959)] = 61946, - [SMALL_STATE(1960)] = 61960, - [SMALL_STATE(1961)] = 61974, - [SMALL_STATE(1962)] = 61988, - [SMALL_STATE(1963)] = 62002, - [SMALL_STATE(1964)] = 62016, - [SMALL_STATE(1965)] = 62028, - [SMALL_STATE(1966)] = 62038, + [SMALL_STATE(1602)] = 55789, + [SMALL_STATE(1603)] = 55805, + [SMALL_STATE(1604)] = 55829, + [SMALL_STATE(1605)] = 55855, + [SMALL_STATE(1606)] = 55881, + [SMALL_STATE(1607)] = 55907, + [SMALL_STATE(1608)] = 55933, + [SMALL_STATE(1609)] = 55959, + [SMALL_STATE(1610)] = 55975, + [SMALL_STATE(1611)] = 56001, + [SMALL_STATE(1612)] = 56027, + [SMALL_STATE(1613)] = 56051, + [SMALL_STATE(1614)] = 56067, + [SMALL_STATE(1615)] = 56093, + [SMALL_STATE(1616)] = 56115, + [SMALL_STATE(1617)] = 56141, + [SMALL_STATE(1618)] = 56167, + [SMALL_STATE(1619)] = 56193, + [SMALL_STATE(1620)] = 56215, + [SMALL_STATE(1621)] = 56239, + [SMALL_STATE(1622)] = 56261, + [SMALL_STATE(1623)] = 56287, + [SMALL_STATE(1624)] = 56301, + [SMALL_STATE(1625)] = 56315, + [SMALL_STATE(1626)] = 56331, + [SMALL_STATE(1627)] = 56345, + [SMALL_STATE(1628)] = 56359, + [SMALL_STATE(1629)] = 56375, + [SMALL_STATE(1630)] = 56389, + [SMALL_STATE(1631)] = 56405, + [SMALL_STATE(1632)] = 56429, + [SMALL_STATE(1633)] = 56445, + [SMALL_STATE(1634)] = 56461, + [SMALL_STATE(1635)] = 56483, + [SMALL_STATE(1636)] = 56497, + [SMALL_STATE(1637)] = 56516, + [SMALL_STATE(1638)] = 56539, + [SMALL_STATE(1639)] = 56562, + [SMALL_STATE(1640)] = 56579, + [SMALL_STATE(1641)] = 56602, + [SMALL_STATE(1642)] = 56619, + [SMALL_STATE(1643)] = 56642, + [SMALL_STATE(1644)] = 56665, + [SMALL_STATE(1645)] = 56688, + [SMALL_STATE(1646)] = 56711, + [SMALL_STATE(1647)] = 56734, + [SMALL_STATE(1648)] = 56757, + [SMALL_STATE(1649)] = 56780, + [SMALL_STATE(1650)] = 56803, + [SMALL_STATE(1651)] = 56820, + [SMALL_STATE(1652)] = 56843, + [SMALL_STATE(1653)] = 56866, + [SMALL_STATE(1654)] = 56883, + [SMALL_STATE(1655)] = 56906, + [SMALL_STATE(1656)] = 56929, + [SMALL_STATE(1657)] = 56952, + [SMALL_STATE(1658)] = 56975, + [SMALL_STATE(1659)] = 56998, + [SMALL_STATE(1660)] = 57021, + [SMALL_STATE(1661)] = 57044, + [SMALL_STATE(1662)] = 57067, + [SMALL_STATE(1663)] = 57090, + [SMALL_STATE(1664)] = 57113, + [SMALL_STATE(1665)] = 57136, + [SMALL_STATE(1666)] = 57151, + [SMALL_STATE(1667)] = 57170, + [SMALL_STATE(1668)] = 57193, + [SMALL_STATE(1669)] = 57216, + [SMALL_STATE(1670)] = 57239, + [SMALL_STATE(1671)] = 57256, + [SMALL_STATE(1672)] = 57279, + [SMALL_STATE(1673)] = 57300, + [SMALL_STATE(1674)] = 57323, + [SMALL_STATE(1675)] = 57346, + [SMALL_STATE(1676)] = 57369, + [SMALL_STATE(1677)] = 57392, + [SMALL_STATE(1678)] = 57415, + [SMALL_STATE(1679)] = 57438, + [SMALL_STATE(1680)] = 57461, + [SMALL_STATE(1681)] = 57484, + [SMALL_STATE(1682)] = 57507, + [SMALL_STATE(1683)] = 57530, + [SMALL_STATE(1684)] = 57553, + [SMALL_STATE(1685)] = 57570, + [SMALL_STATE(1686)] = 57593, + [SMALL_STATE(1687)] = 57612, + [SMALL_STATE(1688)] = 57635, + [SMALL_STATE(1689)] = 57652, + [SMALL_STATE(1690)] = 57669, + [SMALL_STATE(1691)] = 57686, + [SMALL_STATE(1692)] = 57709, + [SMALL_STATE(1693)] = 57732, + [SMALL_STATE(1694)] = 57755, + [SMALL_STATE(1695)] = 57772, + [SMALL_STATE(1696)] = 57795, + [SMALL_STATE(1697)] = 57818, + [SMALL_STATE(1698)] = 57841, + [SMALL_STATE(1699)] = 57864, + [SMALL_STATE(1700)] = 57885, + [SMALL_STATE(1701)] = 57908, + [SMALL_STATE(1702)] = 57931, + [SMALL_STATE(1703)] = 57954, + [SMALL_STATE(1704)] = 57977, + [SMALL_STATE(1705)] = 58000, + [SMALL_STATE(1706)] = 58017, + [SMALL_STATE(1707)] = 58040, + [SMALL_STATE(1708)] = 58063, + [SMALL_STATE(1709)] = 58086, + [SMALL_STATE(1710)] = 58103, + [SMALL_STATE(1711)] = 58118, + [SMALL_STATE(1712)] = 58141, + [SMALL_STATE(1713)] = 58164, + [SMALL_STATE(1714)] = 58187, + [SMALL_STATE(1715)] = 58204, + [SMALL_STATE(1716)] = 58227, + [SMALL_STATE(1717)] = 58250, + [SMALL_STATE(1718)] = 58273, + [SMALL_STATE(1719)] = 58296, + [SMALL_STATE(1720)] = 58313, + [SMALL_STATE(1721)] = 58336, + [SMALL_STATE(1722)] = 58359, + [SMALL_STATE(1723)] = 58382, + [SMALL_STATE(1724)] = 58405, + [SMALL_STATE(1725)] = 58422, + [SMALL_STATE(1726)] = 58445, + [SMALL_STATE(1727)] = 58468, + [SMALL_STATE(1728)] = 58491, + [SMALL_STATE(1729)] = 58507, + [SMALL_STATE(1730)] = 58525, + [SMALL_STATE(1731)] = 58543, + [SMALL_STATE(1732)] = 58555, + [SMALL_STATE(1733)] = 58567, + [SMALL_STATE(1734)] = 58579, + [SMALL_STATE(1735)] = 58591, + [SMALL_STATE(1736)] = 58603, + [SMALL_STATE(1737)] = 58619, + [SMALL_STATE(1738)] = 58635, + [SMALL_STATE(1739)] = 58647, + [SMALL_STATE(1740)] = 58659, + [SMALL_STATE(1741)] = 58675, + [SMALL_STATE(1742)] = 58693, + [SMALL_STATE(1743)] = 58713, + [SMALL_STATE(1744)] = 58731, + [SMALL_STATE(1745)] = 58743, + [SMALL_STATE(1746)] = 58755, + [SMALL_STATE(1747)] = 58767, + [SMALL_STATE(1748)] = 58787, + [SMALL_STATE(1749)] = 58799, + [SMALL_STATE(1750)] = 58811, + [SMALL_STATE(1751)] = 58829, + [SMALL_STATE(1752)] = 58841, + [SMALL_STATE(1753)] = 58859, + [SMALL_STATE(1754)] = 58879, + [SMALL_STATE(1755)] = 58893, + [SMALL_STATE(1756)] = 58909, + [SMALL_STATE(1757)] = 58925, + [SMALL_STATE(1758)] = 58941, + [SMALL_STATE(1759)] = 58957, + [SMALL_STATE(1760)] = 58977, + [SMALL_STATE(1761)] = 58989, + [SMALL_STATE(1762)] = 59001, + [SMALL_STATE(1763)] = 59019, + [SMALL_STATE(1764)] = 59035, + [SMALL_STATE(1765)] = 59049, + [SMALL_STATE(1766)] = 59061, + [SMALL_STATE(1767)] = 59073, + [SMALL_STATE(1768)] = 59089, + [SMALL_STATE(1769)] = 59107, + [SMALL_STATE(1770)] = 59119, + [SMALL_STATE(1771)] = 59135, + [SMALL_STATE(1772)] = 59155, + [SMALL_STATE(1773)] = 59175, + [SMALL_STATE(1774)] = 59191, + [SMALL_STATE(1775)] = 59207, + [SMALL_STATE(1776)] = 59219, + [SMALL_STATE(1777)] = 59231, + [SMALL_STATE(1778)] = 59243, + [SMALL_STATE(1779)] = 59260, + [SMALL_STATE(1780)] = 59273, + [SMALL_STATE(1781)] = 59290, + [SMALL_STATE(1782)] = 59305, + [SMALL_STATE(1783)] = 59318, + [SMALL_STATE(1784)] = 59333, + [SMALL_STATE(1785)] = 59350, + [SMALL_STATE(1786)] = 59367, + [SMALL_STATE(1787)] = 59382, + [SMALL_STATE(1788)] = 59399, + [SMALL_STATE(1789)] = 59416, + [SMALL_STATE(1790)] = 59431, + [SMALL_STATE(1791)] = 59448, + [SMALL_STATE(1792)] = 59465, + [SMALL_STATE(1793)] = 59482, + [SMALL_STATE(1794)] = 59499, + [SMALL_STATE(1795)] = 59516, + [SMALL_STATE(1796)] = 59533, + [SMALL_STATE(1797)] = 59550, + [SMALL_STATE(1798)] = 59567, + [SMALL_STATE(1799)] = 59584, + [SMALL_STATE(1800)] = 59601, + [SMALL_STATE(1801)] = 59618, + [SMALL_STATE(1802)] = 59635, + [SMALL_STATE(1803)] = 59650, + [SMALL_STATE(1804)] = 59665, + [SMALL_STATE(1805)] = 59682, + [SMALL_STATE(1806)] = 59697, + [SMALL_STATE(1807)] = 59714, + [SMALL_STATE(1808)] = 59731, + [SMALL_STATE(1809)] = 59748, + [SMALL_STATE(1810)] = 59765, + [SMALL_STATE(1811)] = 59782, + [SMALL_STATE(1812)] = 59799, + [SMALL_STATE(1813)] = 59814, + [SMALL_STATE(1814)] = 59831, + [SMALL_STATE(1815)] = 59848, + [SMALL_STATE(1816)] = 59865, + [SMALL_STATE(1817)] = 59882, + [SMALL_STATE(1818)] = 59899, + [SMALL_STATE(1819)] = 59914, + [SMALL_STATE(1820)] = 59929, + [SMALL_STATE(1821)] = 59946, + [SMALL_STATE(1822)] = 59963, + [SMALL_STATE(1823)] = 59980, + [SMALL_STATE(1824)] = 59997, + [SMALL_STATE(1825)] = 60014, + [SMALL_STATE(1826)] = 60027, + [SMALL_STATE(1827)] = 60044, + [SMALL_STATE(1828)] = 60057, + [SMALL_STATE(1829)] = 60074, + [SMALL_STATE(1830)] = 60091, + [SMALL_STATE(1831)] = 60106, + [SMALL_STATE(1832)] = 60123, + [SMALL_STATE(1833)] = 60138, + [SMALL_STATE(1834)] = 60155, + [SMALL_STATE(1835)] = 60172, + [SMALL_STATE(1836)] = 60189, + [SMALL_STATE(1837)] = 60204, + [SMALL_STATE(1838)] = 60219, + [SMALL_STATE(1839)] = 60234, + [SMALL_STATE(1840)] = 60251, + [SMALL_STATE(1841)] = 60268, + [SMALL_STATE(1842)] = 60285, + [SMALL_STATE(1843)] = 60300, + [SMALL_STATE(1844)] = 60317, + [SMALL_STATE(1845)] = 60332, + [SMALL_STATE(1846)] = 60349, + [SMALL_STATE(1847)] = 60364, + [SMALL_STATE(1848)] = 60379, + [SMALL_STATE(1849)] = 60392, + [SMALL_STATE(1850)] = 60407, + [SMALL_STATE(1851)] = 60422, + [SMALL_STATE(1852)] = 60439, + [SMALL_STATE(1853)] = 60456, + [SMALL_STATE(1854)] = 60473, + [SMALL_STATE(1855)] = 60486, + [SMALL_STATE(1856)] = 60503, + [SMALL_STATE(1857)] = 60516, + [SMALL_STATE(1858)] = 60531, + [SMALL_STATE(1859)] = 60548, + [SMALL_STATE(1860)] = 60563, + [SMALL_STATE(1861)] = 60578, + [SMALL_STATE(1862)] = 60591, + [SMALL_STATE(1863)] = 60608, + [SMALL_STATE(1864)] = 60625, + [SMALL_STATE(1865)] = 60642, + [SMALL_STATE(1866)] = 60657, + [SMALL_STATE(1867)] = 60674, + [SMALL_STATE(1868)] = 60691, + [SMALL_STATE(1869)] = 60708, + [SMALL_STATE(1870)] = 60725, + [SMALL_STATE(1871)] = 60742, + [SMALL_STATE(1872)] = 60757, + [SMALL_STATE(1873)] = 60774, + [SMALL_STATE(1874)] = 60791, + [SMALL_STATE(1875)] = 60808, + [SMALL_STATE(1876)] = 60821, + [SMALL_STATE(1877)] = 60838, + [SMALL_STATE(1878)] = 60855, + [SMALL_STATE(1879)] = 60870, + [SMALL_STATE(1880)] = 60883, + [SMALL_STATE(1881)] = 60898, + [SMALL_STATE(1882)] = 60912, + [SMALL_STATE(1883)] = 60926, + [SMALL_STATE(1884)] = 60938, + [SMALL_STATE(1885)] = 60952, + [SMALL_STATE(1886)] = 60966, + [SMALL_STATE(1887)] = 60980, + [SMALL_STATE(1888)] = 60994, + [SMALL_STATE(1889)] = 61008, + [SMALL_STATE(1890)] = 61022, + [SMALL_STATE(1891)] = 61036, + [SMALL_STATE(1892)] = 61050, + [SMALL_STATE(1893)] = 61062, + [SMALL_STATE(1894)] = 61076, + [SMALL_STATE(1895)] = 61090, + [SMALL_STATE(1896)] = 61104, + [SMALL_STATE(1897)] = 61118, + [SMALL_STATE(1898)] = 61132, + [SMALL_STATE(1899)] = 61146, + [SMALL_STATE(1900)] = 61160, + [SMALL_STATE(1901)] = 61172, + [SMALL_STATE(1902)] = 61186, + [SMALL_STATE(1903)] = 61200, + [SMALL_STATE(1904)] = 61210, + [SMALL_STATE(1905)] = 61224, + [SMALL_STATE(1906)] = 61238, + [SMALL_STATE(1907)] = 61252, + [SMALL_STATE(1908)] = 61262, + [SMALL_STATE(1909)] = 61276, + [SMALL_STATE(1910)] = 61286, + [SMALL_STATE(1911)] = 61300, + [SMALL_STATE(1912)] = 61314, + [SMALL_STATE(1913)] = 61328, + [SMALL_STATE(1914)] = 61342, + [SMALL_STATE(1915)] = 61356, + [SMALL_STATE(1916)] = 61366, + [SMALL_STATE(1917)] = 61376, + [SMALL_STATE(1918)] = 61390, + [SMALL_STATE(1919)] = 61404, + [SMALL_STATE(1920)] = 61416, + [SMALL_STATE(1921)] = 61430, + [SMALL_STATE(1922)] = 61444, + [SMALL_STATE(1923)] = 61456, + [SMALL_STATE(1924)] = 61470, + [SMALL_STATE(1925)] = 61484, + [SMALL_STATE(1926)] = 61498, + [SMALL_STATE(1927)] = 61512, + [SMALL_STATE(1928)] = 61526, + [SMALL_STATE(1929)] = 61538, + [SMALL_STATE(1930)] = 61552, + [SMALL_STATE(1931)] = 61566, + [SMALL_STATE(1932)] = 61580, + [SMALL_STATE(1933)] = 61594, + [SMALL_STATE(1934)] = 61606, + [SMALL_STATE(1935)] = 61620, + [SMALL_STATE(1936)] = 61634, + [SMALL_STATE(1937)] = 61648, + [SMALL_STATE(1938)] = 61662, + [SMALL_STATE(1939)] = 61676, + [SMALL_STATE(1940)] = 61688, + [SMALL_STATE(1941)] = 61702, + [SMALL_STATE(1942)] = 61716, + [SMALL_STATE(1943)] = 61730, + [SMALL_STATE(1944)] = 61744, + [SMALL_STATE(1945)] = 61758, + [SMALL_STATE(1946)] = 61768, + [SMALL_STATE(1947)] = 61782, + [SMALL_STATE(1948)] = 61796, + [SMALL_STATE(1949)] = 61810, + [SMALL_STATE(1950)] = 61824, + [SMALL_STATE(1951)] = 61838, + [SMALL_STATE(1952)] = 61850, + [SMALL_STATE(1953)] = 61864, + [SMALL_STATE(1954)] = 61876, + [SMALL_STATE(1955)] = 61890, + [SMALL_STATE(1956)] = 61904, + [SMALL_STATE(1957)] = 61918, + [SMALL_STATE(1958)] = 61932, + [SMALL_STATE(1959)] = 61942, + [SMALL_STATE(1960)] = 61956, + [SMALL_STATE(1961)] = 61970, + [SMALL_STATE(1962)] = 61982, + [SMALL_STATE(1963)] = 61994, + [SMALL_STATE(1964)] = 62008, + [SMALL_STATE(1965)] = 62022, + [SMALL_STATE(1966)] = 62036, [SMALL_STATE(1967)] = 62048, [SMALL_STATE(1968)] = 62062, - [SMALL_STATE(1969)] = 62076, - [SMALL_STATE(1970)] = 62090, - [SMALL_STATE(1971)] = 62104, - [SMALL_STATE(1972)] = 62118, - [SMALL_STATE(1973)] = 62132, - [SMALL_STATE(1974)] = 62142, - [SMALL_STATE(1975)] = 62156, - [SMALL_STATE(1976)] = 62168, - [SMALL_STATE(1977)] = 62182, - [SMALL_STATE(1978)] = 62196, - [SMALL_STATE(1979)] = 62210, - [SMALL_STATE(1980)] = 62224, - [SMALL_STATE(1981)] = 62238, - [SMALL_STATE(1982)] = 62252, - [SMALL_STATE(1983)] = 62266, - [SMALL_STATE(1984)] = 62280, - [SMALL_STATE(1985)] = 62294, - [SMALL_STATE(1986)] = 62308, - [SMALL_STATE(1987)] = 62322, - [SMALL_STATE(1988)] = 62336, - [SMALL_STATE(1989)] = 62350, - [SMALL_STATE(1990)] = 62364, - [SMALL_STATE(1991)] = 62378, - [SMALL_STATE(1992)] = 62388, - [SMALL_STATE(1993)] = 62402, - [SMALL_STATE(1994)] = 62416, - [SMALL_STATE(1995)] = 62428, - [SMALL_STATE(1996)] = 62442, - [SMALL_STATE(1997)] = 62456, - [SMALL_STATE(1998)] = 62470, - [SMALL_STATE(1999)] = 62482, - [SMALL_STATE(2000)] = 62496, - [SMALL_STATE(2001)] = 62510, - [SMALL_STATE(2002)] = 62524, - [SMALL_STATE(2003)] = 62538, - [SMALL_STATE(2004)] = 62552, - [SMALL_STATE(2005)] = 62566, - [SMALL_STATE(2006)] = 62580, - [SMALL_STATE(2007)] = 62594, - [SMALL_STATE(2008)] = 62608, - [SMALL_STATE(2009)] = 62622, - [SMALL_STATE(2010)] = 62636, - [SMALL_STATE(2011)] = 62650, - [SMALL_STATE(2012)] = 62664, - [SMALL_STATE(2013)] = 62678, - [SMALL_STATE(2014)] = 62692, - [SMALL_STATE(2015)] = 62706, - [SMALL_STATE(2016)] = 62720, - [SMALL_STATE(2017)] = 62734, - [SMALL_STATE(2018)] = 62748, - [SMALL_STATE(2019)] = 62762, - [SMALL_STATE(2020)] = 62776, - [SMALL_STATE(2021)] = 62786, - [SMALL_STATE(2022)] = 62796, - [SMALL_STATE(2023)] = 62810, - [SMALL_STATE(2024)] = 62822, - [SMALL_STATE(2025)] = 62834, - [SMALL_STATE(2026)] = 62848, - [SMALL_STATE(2027)] = 62860, - [SMALL_STATE(2028)] = 62874, - [SMALL_STATE(2029)] = 62886, - [SMALL_STATE(2030)] = 62896, - [SMALL_STATE(2031)] = 62910, - [SMALL_STATE(2032)] = 62922, + [SMALL_STATE(1969)] = 62074, + [SMALL_STATE(1970)] = 62088, + [SMALL_STATE(1971)] = 62102, + [SMALL_STATE(1972)] = 62116, + [SMALL_STATE(1973)] = 62130, + [SMALL_STATE(1974)] = 62144, + [SMALL_STATE(1975)] = 62158, + [SMALL_STATE(1976)] = 62170, + [SMALL_STATE(1977)] = 62184, + [SMALL_STATE(1978)] = 62194, + [SMALL_STATE(1979)] = 62206, + [SMALL_STATE(1980)] = 62218, + [SMALL_STATE(1981)] = 62232, + [SMALL_STATE(1982)] = 62244, + [SMALL_STATE(1983)] = 62256, + [SMALL_STATE(1984)] = 62270, + [SMALL_STATE(1985)] = 62282, + [SMALL_STATE(1986)] = 62296, + [SMALL_STATE(1987)] = 62310, + [SMALL_STATE(1988)] = 62324, + [SMALL_STATE(1989)] = 62338, + [SMALL_STATE(1990)] = 62352, + [SMALL_STATE(1991)] = 62366, + [SMALL_STATE(1992)] = 62380, + [SMALL_STATE(1993)] = 62394, + [SMALL_STATE(1994)] = 62408, + [SMALL_STATE(1995)] = 62422, + [SMALL_STATE(1996)] = 62432, + [SMALL_STATE(1997)] = 62446, + [SMALL_STATE(1998)] = 62458, + [SMALL_STATE(1999)] = 62470, + [SMALL_STATE(2000)] = 62484, + [SMALL_STATE(2001)] = 62498, + [SMALL_STATE(2002)] = 62512, + [SMALL_STATE(2003)] = 62526, + [SMALL_STATE(2004)] = 62540, + [SMALL_STATE(2005)] = 62554, + [SMALL_STATE(2006)] = 62566, + [SMALL_STATE(2007)] = 62578, + [SMALL_STATE(2008)] = 62588, + [SMALL_STATE(2009)] = 62602, + [SMALL_STATE(2010)] = 62616, + [SMALL_STATE(2011)] = 62630, + [SMALL_STATE(2012)] = 62644, + [SMALL_STATE(2013)] = 62658, + [SMALL_STATE(2014)] = 62672, + [SMALL_STATE(2015)] = 62686, + [SMALL_STATE(2016)] = 62700, + [SMALL_STATE(2017)] = 62714, + [SMALL_STATE(2018)] = 62724, + [SMALL_STATE(2019)] = 62738, + [SMALL_STATE(2020)] = 62752, + [SMALL_STATE(2021)] = 62766, + [SMALL_STATE(2022)] = 62778, + [SMALL_STATE(2023)] = 62792, + [SMALL_STATE(2024)] = 62806, + [SMALL_STATE(2025)] = 62820, + [SMALL_STATE(2026)] = 62834, + [SMALL_STATE(2027)] = 62848, + [SMALL_STATE(2028)] = 62862, + [SMALL_STATE(2029)] = 62876, + [SMALL_STATE(2030)] = 62890, + [SMALL_STATE(2031)] = 62904, + [SMALL_STATE(2032)] = 62918, [SMALL_STATE(2033)] = 62932, [SMALL_STATE(2034)] = 62946, - [SMALL_STATE(2035)] = 62960, - [SMALL_STATE(2036)] = 62972, - [SMALL_STATE(2037)] = 62982, - [SMALL_STATE(2038)] = 62996, - [SMALL_STATE(2039)] = 63008, - [SMALL_STATE(2040)] = 63022, - [SMALL_STATE(2041)] = 63034, - [SMALL_STATE(2042)] = 63046, - [SMALL_STATE(2043)] = 63060, - [SMALL_STATE(2044)] = 63074, - [SMALL_STATE(2045)] = 63088, - [SMALL_STATE(2046)] = 63102, - [SMALL_STATE(2047)] = 63116, - [SMALL_STATE(2048)] = 63130, - [SMALL_STATE(2049)] = 63142, - [SMALL_STATE(2050)] = 63156, - [SMALL_STATE(2051)] = 63170, - [SMALL_STATE(2052)] = 63184, - [SMALL_STATE(2053)] = 63198, - [SMALL_STATE(2054)] = 63210, - [SMALL_STATE(2055)] = 63224, - [SMALL_STATE(2056)] = 63236, - [SMALL_STATE(2057)] = 63250, - [SMALL_STATE(2058)] = 63264, - [SMALL_STATE(2059)] = 63278, - [SMALL_STATE(2060)] = 63292, - [SMALL_STATE(2061)] = 63306, - [SMALL_STATE(2062)] = 63320, - [SMALL_STATE(2063)] = 63334, - [SMALL_STATE(2064)] = 63344, - [SMALL_STATE(2065)] = 63358, - [SMALL_STATE(2066)] = 63372, - [SMALL_STATE(2067)] = 63382, - [SMALL_STATE(2068)] = 63396, - [SMALL_STATE(2069)] = 63410, - [SMALL_STATE(2070)] = 63424, - [SMALL_STATE(2071)] = 63438, - [SMALL_STATE(2072)] = 63452, - [SMALL_STATE(2073)] = 63466, - [SMALL_STATE(2074)] = 63480, - [SMALL_STATE(2075)] = 63494, - [SMALL_STATE(2076)] = 63508, - [SMALL_STATE(2077)] = 63522, - [SMALL_STATE(2078)] = 63532, - [SMALL_STATE(2079)] = 63546, - [SMALL_STATE(2080)] = 63560, - [SMALL_STATE(2081)] = 63574, - [SMALL_STATE(2082)] = 63588, - [SMALL_STATE(2083)] = 63602, - [SMALL_STATE(2084)] = 63616, - [SMALL_STATE(2085)] = 63630, - [SMALL_STATE(2086)] = 63642, - [SMALL_STATE(2087)] = 63656, - [SMALL_STATE(2088)] = 63670, - [SMALL_STATE(2089)] = 63684, - [SMALL_STATE(2090)] = 63698, - [SMALL_STATE(2091)] = 63712, - [SMALL_STATE(2092)] = 63726, - [SMALL_STATE(2093)] = 63740, - [SMALL_STATE(2094)] = 63754, - [SMALL_STATE(2095)] = 63768, - [SMALL_STATE(2096)] = 63782, - [SMALL_STATE(2097)] = 63796, - [SMALL_STATE(2098)] = 63806, - [SMALL_STATE(2099)] = 63820, - [SMALL_STATE(2100)] = 63834, - [SMALL_STATE(2101)] = 63848, - [SMALL_STATE(2102)] = 63862, - [SMALL_STATE(2103)] = 63876, - [SMALL_STATE(2104)] = 63890, - [SMALL_STATE(2105)] = 63904, - [SMALL_STATE(2106)] = 63918, - [SMALL_STATE(2107)] = 63932, - [SMALL_STATE(2108)] = 63946, - [SMALL_STATE(2109)] = 63960, - [SMALL_STATE(2110)] = 63974, - [SMALL_STATE(2111)] = 63988, - [SMALL_STATE(2112)] = 64002, - [SMALL_STATE(2113)] = 64016, - [SMALL_STATE(2114)] = 64030, - [SMALL_STATE(2115)] = 64040, - [SMALL_STATE(2116)] = 64054, - [SMALL_STATE(2117)] = 64068, - [SMALL_STATE(2118)] = 64082, - [SMALL_STATE(2119)] = 64096, - [SMALL_STATE(2120)] = 64110, - [SMALL_STATE(2121)] = 64124, - [SMALL_STATE(2122)] = 64138, - [SMALL_STATE(2123)] = 64152, - [SMALL_STATE(2124)] = 64166, - [SMALL_STATE(2125)] = 64176, - [SMALL_STATE(2126)] = 64190, - [SMALL_STATE(2127)] = 64204, - [SMALL_STATE(2128)] = 64218, - [SMALL_STATE(2129)] = 64232, - [SMALL_STATE(2130)] = 64242, - [SMALL_STATE(2131)] = 64256, - [SMALL_STATE(2132)] = 64270, - [SMALL_STATE(2133)] = 64284, - [SMALL_STATE(2134)] = 64294, - [SMALL_STATE(2135)] = 64308, - [SMALL_STATE(2136)] = 64322, - [SMALL_STATE(2137)] = 64336, - [SMALL_STATE(2138)] = 64350, - [SMALL_STATE(2139)] = 64364, - [SMALL_STATE(2140)] = 64378, - [SMALL_STATE(2141)] = 64392, - [SMALL_STATE(2142)] = 64406, - [SMALL_STATE(2143)] = 64417, - [SMALL_STATE(2144)] = 64428, - [SMALL_STATE(2145)] = 64439, - [SMALL_STATE(2146)] = 64450, - [SMALL_STATE(2147)] = 64461, - [SMALL_STATE(2148)] = 64472, - [SMALL_STATE(2149)] = 64483, - [SMALL_STATE(2150)] = 64494, - [SMALL_STATE(2151)] = 64503, - [SMALL_STATE(2152)] = 64514, - [SMALL_STATE(2153)] = 64523, - [SMALL_STATE(2154)] = 64534, - [SMALL_STATE(2155)] = 64545, - [SMALL_STATE(2156)] = 64556, - [SMALL_STATE(2157)] = 64567, - [SMALL_STATE(2158)] = 64578, - [SMALL_STATE(2159)] = 64587, - [SMALL_STATE(2160)] = 64598, - [SMALL_STATE(2161)] = 64609, - [SMALL_STATE(2162)] = 64620, - [SMALL_STATE(2163)] = 64631, - [SMALL_STATE(2164)] = 64642, - [SMALL_STATE(2165)] = 64653, - [SMALL_STATE(2166)] = 64664, - [SMALL_STATE(2167)] = 64675, - [SMALL_STATE(2168)] = 64686, - [SMALL_STATE(2169)] = 64697, - [SMALL_STATE(2170)] = 64708, - [SMALL_STATE(2171)] = 64719, - [SMALL_STATE(2172)] = 64730, - [SMALL_STATE(2173)] = 64741, - [SMALL_STATE(2174)] = 64752, - [SMALL_STATE(2175)] = 64763, - [SMALL_STATE(2176)] = 64774, - [SMALL_STATE(2177)] = 64785, - [SMALL_STATE(2178)] = 64796, - [SMALL_STATE(2179)] = 64805, - [SMALL_STATE(2180)] = 64816, - [SMALL_STATE(2181)] = 64827, - [SMALL_STATE(2182)] = 64838, - [SMALL_STATE(2183)] = 64849, - [SMALL_STATE(2184)] = 64860, - [SMALL_STATE(2185)] = 64871, - [SMALL_STATE(2186)] = 64882, - [SMALL_STATE(2187)] = 64893, - [SMALL_STATE(2188)] = 64904, - [SMALL_STATE(2189)] = 64915, - [SMALL_STATE(2190)] = 64926, - [SMALL_STATE(2191)] = 64937, - [SMALL_STATE(2192)] = 64948, - [SMALL_STATE(2193)] = 64959, - [SMALL_STATE(2194)] = 64970, - [SMALL_STATE(2195)] = 64981, - [SMALL_STATE(2196)] = 64992, - [SMALL_STATE(2197)] = 65003, - [SMALL_STATE(2198)] = 65014, - [SMALL_STATE(2199)] = 65025, - [SMALL_STATE(2200)] = 65034, - [SMALL_STATE(2201)] = 65045, - [SMALL_STATE(2202)] = 65056, - [SMALL_STATE(2203)] = 65067, - [SMALL_STATE(2204)] = 65076, - [SMALL_STATE(2205)] = 65087, - [SMALL_STATE(2206)] = 65098, - [SMALL_STATE(2207)] = 65109, - [SMALL_STATE(2208)] = 65120, - [SMALL_STATE(2209)] = 65131, - [SMALL_STATE(2210)] = 65142, - [SMALL_STATE(2211)] = 65153, - [SMALL_STATE(2212)] = 65164, - [SMALL_STATE(2213)] = 65175, - [SMALL_STATE(2214)] = 65184, - [SMALL_STATE(2215)] = 65195, - [SMALL_STATE(2216)] = 65206, - [SMALL_STATE(2217)] = 65217, - [SMALL_STATE(2218)] = 65228, - [SMALL_STATE(2219)] = 65237, - [SMALL_STATE(2220)] = 65246, - [SMALL_STATE(2221)] = 65257, - [SMALL_STATE(2222)] = 65268, - [SMALL_STATE(2223)] = 65277, - [SMALL_STATE(2224)] = 65286, - [SMALL_STATE(2225)] = 65297, - [SMALL_STATE(2226)] = 65308, - [SMALL_STATE(2227)] = 65319, - [SMALL_STATE(2228)] = 65330, - [SMALL_STATE(2229)] = 65341, - [SMALL_STATE(2230)] = 65350, - [SMALL_STATE(2231)] = 65361, - [SMALL_STATE(2232)] = 65372, - [SMALL_STATE(2233)] = 65383, - [SMALL_STATE(2234)] = 65394, - [SMALL_STATE(2235)] = 65405, - [SMALL_STATE(2236)] = 65416, - [SMALL_STATE(2237)] = 65427, - [SMALL_STATE(2238)] = 65438, - [SMALL_STATE(2239)] = 65449, - [SMALL_STATE(2240)] = 65460, - [SMALL_STATE(2241)] = 65469, - [SMALL_STATE(2242)] = 65480, - [SMALL_STATE(2243)] = 65491, - [SMALL_STATE(2244)] = 65502, - [SMALL_STATE(2245)] = 65513, - [SMALL_STATE(2246)] = 65524, - [SMALL_STATE(2247)] = 65535, - [SMALL_STATE(2248)] = 65546, - [SMALL_STATE(2249)] = 65557, - [SMALL_STATE(2250)] = 65568, - [SMALL_STATE(2251)] = 65579, - [SMALL_STATE(2252)] = 65590, - [SMALL_STATE(2253)] = 65601, - [SMALL_STATE(2254)] = 65612, - [SMALL_STATE(2255)] = 65623, - [SMALL_STATE(2256)] = 65634, - [SMALL_STATE(2257)] = 65645, - [SMALL_STATE(2258)] = 65656, - [SMALL_STATE(2259)] = 65667, - [SMALL_STATE(2260)] = 65678, - [SMALL_STATE(2261)] = 65689, - [SMALL_STATE(2262)] = 65700, - [SMALL_STATE(2263)] = 65711, - [SMALL_STATE(2264)] = 65722, - [SMALL_STATE(2265)] = 65731, - [SMALL_STATE(2266)] = 65742, - [SMALL_STATE(2267)] = 65751, - [SMALL_STATE(2268)] = 65760, - [SMALL_STATE(2269)] = 65771, - [SMALL_STATE(2270)] = 65782, - [SMALL_STATE(2271)] = 65793, - [SMALL_STATE(2272)] = 65804, - [SMALL_STATE(2273)] = 65815, - [SMALL_STATE(2274)] = 65824, - [SMALL_STATE(2275)] = 65835, - [SMALL_STATE(2276)] = 65846, - [SMALL_STATE(2277)] = 65857, - [SMALL_STATE(2278)] = 65868, - [SMALL_STATE(2279)] = 65879, - [SMALL_STATE(2280)] = 65888, - [SMALL_STATE(2281)] = 65899, - [SMALL_STATE(2282)] = 65910, - [SMALL_STATE(2283)] = 65919, - [SMALL_STATE(2284)] = 65928, - [SMALL_STATE(2285)] = 65939, - [SMALL_STATE(2286)] = 65950, - [SMALL_STATE(2287)] = 65961, - [SMALL_STATE(2288)] = 65970, - [SMALL_STATE(2289)] = 65981, - [SMALL_STATE(2290)] = 65992, - [SMALL_STATE(2291)] = 66003, - [SMALL_STATE(2292)] = 66014, - [SMALL_STATE(2293)] = 66025, - [SMALL_STATE(2294)] = 66036, - [SMALL_STATE(2295)] = 66047, - [SMALL_STATE(2296)] = 66058, - [SMALL_STATE(2297)] = 66069, - [SMALL_STATE(2298)] = 66080, - [SMALL_STATE(2299)] = 66091, - [SMALL_STATE(2300)] = 66102, - [SMALL_STATE(2301)] = 66111, - [SMALL_STATE(2302)] = 66122, - [SMALL_STATE(2303)] = 66133, - [SMALL_STATE(2304)] = 66142, - [SMALL_STATE(2305)] = 66153, - [SMALL_STATE(2306)] = 66164, - [SMALL_STATE(2307)] = 66175, - [SMALL_STATE(2308)] = 66184, - [SMALL_STATE(2309)] = 66195, - [SMALL_STATE(2310)] = 66204, - [SMALL_STATE(2311)] = 66215, - [SMALL_STATE(2312)] = 66226, - [SMALL_STATE(2313)] = 66237, - [SMALL_STATE(2314)] = 66248, - [SMALL_STATE(2315)] = 66259, - [SMALL_STATE(2316)] = 66268, - [SMALL_STATE(2317)] = 66279, - [SMALL_STATE(2318)] = 66290, - [SMALL_STATE(2319)] = 66299, - [SMALL_STATE(2320)] = 66310, - [SMALL_STATE(2321)] = 66321, - [SMALL_STATE(2322)] = 66332, - [SMALL_STATE(2323)] = 66343, - [SMALL_STATE(2324)] = 66352, - [SMALL_STATE(2325)] = 66363, - [SMALL_STATE(2326)] = 66374, - [SMALL_STATE(2327)] = 66385, - [SMALL_STATE(2328)] = 66396, - [SMALL_STATE(2329)] = 66404, - [SMALL_STATE(2330)] = 66412, - [SMALL_STATE(2331)] = 66420, - [SMALL_STATE(2332)] = 66428, - [SMALL_STATE(2333)] = 66436, - [SMALL_STATE(2334)] = 66444, - [SMALL_STATE(2335)] = 66452, - [SMALL_STATE(2336)] = 66460, - [SMALL_STATE(2337)] = 66468, - [SMALL_STATE(2338)] = 66476, - [SMALL_STATE(2339)] = 66484, - [SMALL_STATE(2340)] = 66492, - [SMALL_STATE(2341)] = 66500, - [SMALL_STATE(2342)] = 66508, - [SMALL_STATE(2343)] = 66516, - [SMALL_STATE(2344)] = 66524, - [SMALL_STATE(2345)] = 66532, - [SMALL_STATE(2346)] = 66540, - [SMALL_STATE(2347)] = 66548, - [SMALL_STATE(2348)] = 66556, - [SMALL_STATE(2349)] = 66564, - [SMALL_STATE(2350)] = 66572, - [SMALL_STATE(2351)] = 66580, - [SMALL_STATE(2352)] = 66588, - [SMALL_STATE(2353)] = 66596, - [SMALL_STATE(2354)] = 66604, - [SMALL_STATE(2355)] = 66612, - [SMALL_STATE(2356)] = 66620, - [SMALL_STATE(2357)] = 66628, - [SMALL_STATE(2358)] = 66636, - [SMALL_STATE(2359)] = 66644, - [SMALL_STATE(2360)] = 66652, - [SMALL_STATE(2361)] = 66660, - [SMALL_STATE(2362)] = 66668, - [SMALL_STATE(2363)] = 66676, - [SMALL_STATE(2364)] = 66684, - [SMALL_STATE(2365)] = 66692, - [SMALL_STATE(2366)] = 66700, - [SMALL_STATE(2367)] = 66708, - [SMALL_STATE(2368)] = 66716, - [SMALL_STATE(2369)] = 66724, - [SMALL_STATE(2370)] = 66732, - [SMALL_STATE(2371)] = 66740, - [SMALL_STATE(2372)] = 66748, - [SMALL_STATE(2373)] = 66756, - [SMALL_STATE(2374)] = 66764, - [SMALL_STATE(2375)] = 66772, - [SMALL_STATE(2376)] = 66780, - [SMALL_STATE(2377)] = 66788, - [SMALL_STATE(2378)] = 66796, - [SMALL_STATE(2379)] = 66804, - [SMALL_STATE(2380)] = 66812, - [SMALL_STATE(2381)] = 66820, - [SMALL_STATE(2382)] = 66828, - [SMALL_STATE(2383)] = 66836, - [SMALL_STATE(2384)] = 66844, - [SMALL_STATE(2385)] = 66852, - [SMALL_STATE(2386)] = 66860, - [SMALL_STATE(2387)] = 66868, - [SMALL_STATE(2388)] = 66876, - [SMALL_STATE(2389)] = 66884, - [SMALL_STATE(2390)] = 66892, - [SMALL_STATE(2391)] = 66900, - [SMALL_STATE(2392)] = 66908, - [SMALL_STATE(2393)] = 66916, - [SMALL_STATE(2394)] = 66924, - [SMALL_STATE(2395)] = 66932, - [SMALL_STATE(2396)] = 66940, - [SMALL_STATE(2397)] = 66948, - [SMALL_STATE(2398)] = 66956, - [SMALL_STATE(2399)] = 66964, - [SMALL_STATE(2400)] = 66972, - [SMALL_STATE(2401)] = 66980, - [SMALL_STATE(2402)] = 66988, - [SMALL_STATE(2403)] = 66996, - [SMALL_STATE(2404)] = 67004, - [SMALL_STATE(2405)] = 67012, - [SMALL_STATE(2406)] = 67020, - [SMALL_STATE(2407)] = 67028, - [SMALL_STATE(2408)] = 67036, - [SMALL_STATE(2409)] = 67044, - [SMALL_STATE(2410)] = 67052, - [SMALL_STATE(2411)] = 67060, - [SMALL_STATE(2412)] = 67068, - [SMALL_STATE(2413)] = 67076, - [SMALL_STATE(2414)] = 67084, - [SMALL_STATE(2415)] = 67092, - [SMALL_STATE(2416)] = 67100, - [SMALL_STATE(2417)] = 67108, - [SMALL_STATE(2418)] = 67116, - [SMALL_STATE(2419)] = 67124, - [SMALL_STATE(2420)] = 67132, - [SMALL_STATE(2421)] = 67140, - [SMALL_STATE(2422)] = 67148, - [SMALL_STATE(2423)] = 67156, - [SMALL_STATE(2424)] = 67164, - [SMALL_STATE(2425)] = 67172, - [SMALL_STATE(2426)] = 67180, - [SMALL_STATE(2427)] = 67188, - [SMALL_STATE(2428)] = 67196, - [SMALL_STATE(2429)] = 67204, - [SMALL_STATE(2430)] = 67212, - [SMALL_STATE(2431)] = 67220, - [SMALL_STATE(2432)] = 67228, - [SMALL_STATE(2433)] = 67236, - [SMALL_STATE(2434)] = 67244, - [SMALL_STATE(2435)] = 67252, - [SMALL_STATE(2436)] = 67260, - [SMALL_STATE(2437)] = 67268, - [SMALL_STATE(2438)] = 67276, - [SMALL_STATE(2439)] = 67284, - [SMALL_STATE(2440)] = 67292, - [SMALL_STATE(2441)] = 67300, - [SMALL_STATE(2442)] = 67308, - [SMALL_STATE(2443)] = 67316, - [SMALL_STATE(2444)] = 67324, - [SMALL_STATE(2445)] = 67332, - [SMALL_STATE(2446)] = 67340, - [SMALL_STATE(2447)] = 67348, - [SMALL_STATE(2448)] = 67356, - [SMALL_STATE(2449)] = 67364, - [SMALL_STATE(2450)] = 67372, - [SMALL_STATE(2451)] = 67380, - [SMALL_STATE(2452)] = 67388, - [SMALL_STATE(2453)] = 67396, - [SMALL_STATE(2454)] = 67404, - [SMALL_STATE(2455)] = 67412, - [SMALL_STATE(2456)] = 67420, - [SMALL_STATE(2457)] = 67428, - [SMALL_STATE(2458)] = 67436, - [SMALL_STATE(2459)] = 67444, - [SMALL_STATE(2460)] = 67452, - [SMALL_STATE(2461)] = 67460, - [SMALL_STATE(2462)] = 67468, - [SMALL_STATE(2463)] = 67476, - [SMALL_STATE(2464)] = 67484, - [SMALL_STATE(2465)] = 67492, - [SMALL_STATE(2466)] = 67500, - [SMALL_STATE(2467)] = 67508, - [SMALL_STATE(2468)] = 67516, - [SMALL_STATE(2469)] = 67524, - [SMALL_STATE(2470)] = 67532, - [SMALL_STATE(2471)] = 67540, - [SMALL_STATE(2472)] = 67548, - [SMALL_STATE(2473)] = 67556, - [SMALL_STATE(2474)] = 67564, - [SMALL_STATE(2475)] = 67572, - [SMALL_STATE(2476)] = 67580, - [SMALL_STATE(2477)] = 67588, - [SMALL_STATE(2478)] = 67596, - [SMALL_STATE(2479)] = 67604, - [SMALL_STATE(2480)] = 67612, - [SMALL_STATE(2481)] = 67620, - [SMALL_STATE(2482)] = 67628, - [SMALL_STATE(2483)] = 67636, - [SMALL_STATE(2484)] = 67644, - [SMALL_STATE(2485)] = 67652, - [SMALL_STATE(2486)] = 67660, - [SMALL_STATE(2487)] = 67668, - [SMALL_STATE(2488)] = 67676, - [SMALL_STATE(2489)] = 67684, - [SMALL_STATE(2490)] = 67692, - [SMALL_STATE(2491)] = 67700, - [SMALL_STATE(2492)] = 67708, - [SMALL_STATE(2493)] = 67716, - [SMALL_STATE(2494)] = 67724, - [SMALL_STATE(2495)] = 67732, - [SMALL_STATE(2496)] = 67740, - [SMALL_STATE(2497)] = 67748, - [SMALL_STATE(2498)] = 67756, - [SMALL_STATE(2499)] = 67764, - [SMALL_STATE(2500)] = 67772, - [SMALL_STATE(2501)] = 67780, - [SMALL_STATE(2502)] = 67788, - [SMALL_STATE(2503)] = 67796, - [SMALL_STATE(2504)] = 67804, - [SMALL_STATE(2505)] = 67812, - [SMALL_STATE(2506)] = 67820, - [SMALL_STATE(2507)] = 67828, - [SMALL_STATE(2508)] = 67836, - [SMALL_STATE(2509)] = 67844, - [SMALL_STATE(2510)] = 67852, - [SMALL_STATE(2511)] = 67860, - [SMALL_STATE(2512)] = 67868, - [SMALL_STATE(2513)] = 67876, - [SMALL_STATE(2514)] = 67884, - [SMALL_STATE(2515)] = 67892, - [SMALL_STATE(2516)] = 67900, - [SMALL_STATE(2517)] = 67908, - [SMALL_STATE(2518)] = 67916, - [SMALL_STATE(2519)] = 67924, - [SMALL_STATE(2520)] = 67932, - [SMALL_STATE(2521)] = 67940, - [SMALL_STATE(2522)] = 67948, - [SMALL_STATE(2523)] = 67956, - [SMALL_STATE(2524)] = 67964, - [SMALL_STATE(2525)] = 67972, - [SMALL_STATE(2526)] = 67980, - [SMALL_STATE(2527)] = 67988, - [SMALL_STATE(2528)] = 67996, - [SMALL_STATE(2529)] = 68004, - [SMALL_STATE(2530)] = 68012, - [SMALL_STATE(2531)] = 68020, - [SMALL_STATE(2532)] = 68028, - [SMALL_STATE(2533)] = 68036, - [SMALL_STATE(2534)] = 68044, - [SMALL_STATE(2535)] = 68052, - [SMALL_STATE(2536)] = 68060, - [SMALL_STATE(2537)] = 68068, - [SMALL_STATE(2538)] = 68076, - [SMALL_STATE(2539)] = 68084, - [SMALL_STATE(2540)] = 68092, - [SMALL_STATE(2541)] = 68100, - [SMALL_STATE(2542)] = 68108, - [SMALL_STATE(2543)] = 68116, - [SMALL_STATE(2544)] = 68124, - [SMALL_STATE(2545)] = 68132, - [SMALL_STATE(2546)] = 68140, - [SMALL_STATE(2547)] = 68148, - [SMALL_STATE(2548)] = 68156, - [SMALL_STATE(2549)] = 68164, - [SMALL_STATE(2550)] = 68172, - [SMALL_STATE(2551)] = 68180, - [SMALL_STATE(2552)] = 68188, - [SMALL_STATE(2553)] = 68196, - [SMALL_STATE(2554)] = 68204, - [SMALL_STATE(2555)] = 68212, - [SMALL_STATE(2556)] = 68220, - [SMALL_STATE(2557)] = 68228, - [SMALL_STATE(2558)] = 68236, - [SMALL_STATE(2559)] = 68244, - [SMALL_STATE(2560)] = 68252, + [SMALL_STATE(2035)] = 62956, + [SMALL_STATE(2036)] = 62966, + [SMALL_STATE(2037)] = 62978, + [SMALL_STATE(2038)] = 62992, + [SMALL_STATE(2039)] = 63002, + [SMALL_STATE(2040)] = 63016, + [SMALL_STATE(2041)] = 63030, + [SMALL_STATE(2042)] = 63044, + [SMALL_STATE(2043)] = 63058, + [SMALL_STATE(2044)] = 63072, + [SMALL_STATE(2045)] = 63086, + [SMALL_STATE(2046)] = 63100, + [SMALL_STATE(2047)] = 63114, + [SMALL_STATE(2048)] = 63124, + [SMALL_STATE(2049)] = 63138, + [SMALL_STATE(2050)] = 63148, + [SMALL_STATE(2051)] = 63162, + [SMALL_STATE(2052)] = 63172, + [SMALL_STATE(2053)] = 63186, + [SMALL_STATE(2054)] = 63200, + [SMALL_STATE(2055)] = 63214, + [SMALL_STATE(2056)] = 63224, + [SMALL_STATE(2057)] = 63238, + [SMALL_STATE(2058)] = 63252, + [SMALL_STATE(2059)] = 63266, + [SMALL_STATE(2060)] = 63280, + [SMALL_STATE(2061)] = 63294, + [SMALL_STATE(2062)] = 63308, + [SMALL_STATE(2063)] = 63322, + [SMALL_STATE(2064)] = 63334, + [SMALL_STATE(2065)] = 63348, + [SMALL_STATE(2066)] = 63360, + [SMALL_STATE(2067)] = 63374, + [SMALL_STATE(2068)] = 63388, + [SMALL_STATE(2069)] = 63402, + [SMALL_STATE(2070)] = 63416, + [SMALL_STATE(2071)] = 63430, + [SMALL_STATE(2072)] = 63444, + [SMALL_STATE(2073)] = 63458, + [SMALL_STATE(2074)] = 63472, + [SMALL_STATE(2075)] = 63486, + [SMALL_STATE(2076)] = 63500, + [SMALL_STATE(2077)] = 63510, + [SMALL_STATE(2078)] = 63524, + [SMALL_STATE(2079)] = 63536, + [SMALL_STATE(2080)] = 63546, + [SMALL_STATE(2081)] = 63560, + [SMALL_STATE(2082)] = 63574, + [SMALL_STATE(2083)] = 63588, + [SMALL_STATE(2084)] = 63602, + [SMALL_STATE(2085)] = 63616, + [SMALL_STATE(2086)] = 63628, + [SMALL_STATE(2087)] = 63642, + [SMALL_STATE(2088)] = 63656, + [SMALL_STATE(2089)] = 63670, + [SMALL_STATE(2090)] = 63684, + [SMALL_STATE(2091)] = 63696, + [SMALL_STATE(2092)] = 63710, + [SMALL_STATE(2093)] = 63724, + [SMALL_STATE(2094)] = 63738, + [SMALL_STATE(2095)] = 63752, + [SMALL_STATE(2096)] = 63766, + [SMALL_STATE(2097)] = 63776, + [SMALL_STATE(2098)] = 63790, + [SMALL_STATE(2099)] = 63800, + [SMALL_STATE(2100)] = 63810, + [SMALL_STATE(2101)] = 63824, + [SMALL_STATE(2102)] = 63836, + [SMALL_STATE(2103)] = 63850, + [SMALL_STATE(2104)] = 63864, + [SMALL_STATE(2105)] = 63878, + [SMALL_STATE(2106)] = 63892, + [SMALL_STATE(2107)] = 63906, + [SMALL_STATE(2108)] = 63916, + [SMALL_STATE(2109)] = 63930, + [SMALL_STATE(2110)] = 63944, + [SMALL_STATE(2111)] = 63954, + [SMALL_STATE(2112)] = 63964, + [SMALL_STATE(2113)] = 63978, + [SMALL_STATE(2114)] = 63992, + [SMALL_STATE(2115)] = 64006, + [SMALL_STATE(2116)] = 64020, + [SMALL_STATE(2117)] = 64030, + [SMALL_STATE(2118)] = 64040, + [SMALL_STATE(2119)] = 64050, + [SMALL_STATE(2120)] = 64064, + [SMALL_STATE(2121)] = 64076, + [SMALL_STATE(2122)] = 64090, + [SMALL_STATE(2123)] = 64104, + [SMALL_STATE(2124)] = 64118, + [SMALL_STATE(2125)] = 64128, + [SMALL_STATE(2126)] = 64142, + [SMALL_STATE(2127)] = 64156, + [SMALL_STATE(2128)] = 64170, + [SMALL_STATE(2129)] = 64184, + [SMALL_STATE(2130)] = 64198, + [SMALL_STATE(2131)] = 64212, + [SMALL_STATE(2132)] = 64224, + [SMALL_STATE(2133)] = 64236, + [SMALL_STATE(2134)] = 64250, + [SMALL_STATE(2135)] = 64262, + [SMALL_STATE(2136)] = 64272, + [SMALL_STATE(2137)] = 64286, + [SMALL_STATE(2138)] = 64300, + [SMALL_STATE(2139)] = 64314, + [SMALL_STATE(2140)] = 64328, + [SMALL_STATE(2141)] = 64342, + [SMALL_STATE(2142)] = 64352, + [SMALL_STATE(2143)] = 64366, + [SMALL_STATE(2144)] = 64380, + [SMALL_STATE(2145)] = 64394, + [SMALL_STATE(2146)] = 64408, + [SMALL_STATE(2147)] = 64422, + [SMALL_STATE(2148)] = 64436, + [SMALL_STATE(2149)] = 64447, + [SMALL_STATE(2150)] = 64458, + [SMALL_STATE(2151)] = 64469, + [SMALL_STATE(2152)] = 64480, + [SMALL_STATE(2153)] = 64491, + [SMALL_STATE(2154)] = 64502, + [SMALL_STATE(2155)] = 64511, + [SMALL_STATE(2156)] = 64522, + [SMALL_STATE(2157)] = 64533, + [SMALL_STATE(2158)] = 64544, + [SMALL_STATE(2159)] = 64555, + [SMALL_STATE(2160)] = 64564, + [SMALL_STATE(2161)] = 64575, + [SMALL_STATE(2162)] = 64586, + [SMALL_STATE(2163)] = 64597, + [SMALL_STATE(2164)] = 64608, + [SMALL_STATE(2165)] = 64619, + [SMALL_STATE(2166)] = 64630, + [SMALL_STATE(2167)] = 64641, + [SMALL_STATE(2168)] = 64652, + [SMALL_STATE(2169)] = 64661, + [SMALL_STATE(2170)] = 64672, + [SMALL_STATE(2171)] = 64683, + [SMALL_STATE(2172)] = 64694, + [SMALL_STATE(2173)] = 64703, + [SMALL_STATE(2174)] = 64714, + [SMALL_STATE(2175)] = 64725, + [SMALL_STATE(2176)] = 64736, + [SMALL_STATE(2177)] = 64747, + [SMALL_STATE(2178)] = 64758, + [SMALL_STATE(2179)] = 64769, + [SMALL_STATE(2180)] = 64780, + [SMALL_STATE(2181)] = 64791, + [SMALL_STATE(2182)] = 64802, + [SMALL_STATE(2183)] = 64813, + [SMALL_STATE(2184)] = 64824, + [SMALL_STATE(2185)] = 64835, + [SMALL_STATE(2186)] = 64846, + [SMALL_STATE(2187)] = 64857, + [SMALL_STATE(2188)] = 64868, + [SMALL_STATE(2189)] = 64879, + [SMALL_STATE(2190)] = 64890, + [SMALL_STATE(2191)] = 64901, + [SMALL_STATE(2192)] = 64912, + [SMALL_STATE(2193)] = 64923, + [SMALL_STATE(2194)] = 64934, + [SMALL_STATE(2195)] = 64945, + [SMALL_STATE(2196)] = 64956, + [SMALL_STATE(2197)] = 64965, + [SMALL_STATE(2198)] = 64976, + [SMALL_STATE(2199)] = 64987, + [SMALL_STATE(2200)] = 64998, + [SMALL_STATE(2201)] = 65009, + [SMALL_STATE(2202)] = 65020, + [SMALL_STATE(2203)] = 65031, + [SMALL_STATE(2204)] = 65040, + [SMALL_STATE(2205)] = 65051, + [SMALL_STATE(2206)] = 65060, + [SMALL_STATE(2207)] = 65071, + [SMALL_STATE(2208)] = 65082, + [SMALL_STATE(2209)] = 65091, + [SMALL_STATE(2210)] = 65102, + [SMALL_STATE(2211)] = 65113, + [SMALL_STATE(2212)] = 65122, + [SMALL_STATE(2213)] = 65133, + [SMALL_STATE(2214)] = 65142, + [SMALL_STATE(2215)] = 65153, + [SMALL_STATE(2216)] = 65164, + [SMALL_STATE(2217)] = 65173, + [SMALL_STATE(2218)] = 65182, + [SMALL_STATE(2219)] = 65193, + [SMALL_STATE(2220)] = 65204, + [SMALL_STATE(2221)] = 65215, + [SMALL_STATE(2222)] = 65226, + [SMALL_STATE(2223)] = 65235, + [SMALL_STATE(2224)] = 65246, + [SMALL_STATE(2225)] = 65257, + [SMALL_STATE(2226)] = 65268, + [SMALL_STATE(2227)] = 65279, + [SMALL_STATE(2228)] = 65290, + [SMALL_STATE(2229)] = 65299, + [SMALL_STATE(2230)] = 65310, + [SMALL_STATE(2231)] = 65321, + [SMALL_STATE(2232)] = 65332, + [SMALL_STATE(2233)] = 65343, + [SMALL_STATE(2234)] = 65354, + [SMALL_STATE(2235)] = 65365, + [SMALL_STATE(2236)] = 65376, + [SMALL_STATE(2237)] = 65387, + [SMALL_STATE(2238)] = 65398, + [SMALL_STATE(2239)] = 65409, + [SMALL_STATE(2240)] = 65420, + [SMALL_STATE(2241)] = 65429, + [SMALL_STATE(2242)] = 65440, + [SMALL_STATE(2243)] = 65451, + [SMALL_STATE(2244)] = 65462, + [SMALL_STATE(2245)] = 65473, + [SMALL_STATE(2246)] = 65482, + [SMALL_STATE(2247)] = 65493, + [SMALL_STATE(2248)] = 65504, + [SMALL_STATE(2249)] = 65515, + [SMALL_STATE(2250)] = 65526, + [SMALL_STATE(2251)] = 65535, + [SMALL_STATE(2252)] = 65546, + [SMALL_STATE(2253)] = 65557, + [SMALL_STATE(2254)] = 65568, + [SMALL_STATE(2255)] = 65579, + [SMALL_STATE(2256)] = 65590, + [SMALL_STATE(2257)] = 65601, + [SMALL_STATE(2258)] = 65612, + [SMALL_STATE(2259)] = 65623, + [SMALL_STATE(2260)] = 65634, + [SMALL_STATE(2261)] = 65645, + [SMALL_STATE(2262)] = 65656, + [SMALL_STATE(2263)] = 65667, + [SMALL_STATE(2264)] = 65678, + [SMALL_STATE(2265)] = 65689, + [SMALL_STATE(2266)] = 65700, + [SMALL_STATE(2267)] = 65711, + [SMALL_STATE(2268)] = 65720, + [SMALL_STATE(2269)] = 65729, + [SMALL_STATE(2270)] = 65740, + [SMALL_STATE(2271)] = 65749, + [SMALL_STATE(2272)] = 65760, + [SMALL_STATE(2273)] = 65771, + [SMALL_STATE(2274)] = 65782, + [SMALL_STATE(2275)] = 65793, + [SMALL_STATE(2276)] = 65804, + [SMALL_STATE(2277)] = 65815, + [SMALL_STATE(2278)] = 65826, + [SMALL_STATE(2279)] = 65835, + [SMALL_STATE(2280)] = 65846, + [SMALL_STATE(2281)] = 65857, + [SMALL_STATE(2282)] = 65868, + [SMALL_STATE(2283)] = 65879, + [SMALL_STATE(2284)] = 65890, + [SMALL_STATE(2285)] = 65901, + [SMALL_STATE(2286)] = 65912, + [SMALL_STATE(2287)] = 65921, + [SMALL_STATE(2288)] = 65932, + [SMALL_STATE(2289)] = 65943, + [SMALL_STATE(2290)] = 65954, + [SMALL_STATE(2291)] = 65965, + [SMALL_STATE(2292)] = 65976, + [SMALL_STATE(2293)] = 65987, + [SMALL_STATE(2294)] = 65998, + [SMALL_STATE(2295)] = 66009, + [SMALL_STATE(2296)] = 66020, + [SMALL_STATE(2297)] = 66031, + [SMALL_STATE(2298)] = 66042, + [SMALL_STATE(2299)] = 66053, + [SMALL_STATE(2300)] = 66064, + [SMALL_STATE(2301)] = 66073, + [SMALL_STATE(2302)] = 66084, + [SMALL_STATE(2303)] = 66095, + [SMALL_STATE(2304)] = 66106, + [SMALL_STATE(2305)] = 66117, + [SMALL_STATE(2306)] = 66128, + [SMALL_STATE(2307)] = 66139, + [SMALL_STATE(2308)] = 66150, + [SMALL_STATE(2309)] = 66161, + [SMALL_STATE(2310)] = 66172, + [SMALL_STATE(2311)] = 66183, + [SMALL_STATE(2312)] = 66194, + [SMALL_STATE(2313)] = 66205, + [SMALL_STATE(2314)] = 66216, + [SMALL_STATE(2315)] = 66227, + [SMALL_STATE(2316)] = 66238, + [SMALL_STATE(2317)] = 66249, + [SMALL_STATE(2318)] = 66260, + [SMALL_STATE(2319)] = 66271, + [SMALL_STATE(2320)] = 66280, + [SMALL_STATE(2321)] = 66291, + [SMALL_STATE(2322)] = 66300, + [SMALL_STATE(2323)] = 66311, + [SMALL_STATE(2324)] = 66322, + [SMALL_STATE(2325)] = 66331, + [SMALL_STATE(2326)] = 66342, + [SMALL_STATE(2327)] = 66353, + [SMALL_STATE(2328)] = 66364, + [SMALL_STATE(2329)] = 66375, + [SMALL_STATE(2330)] = 66386, + [SMALL_STATE(2331)] = 66395, + [SMALL_STATE(2332)] = 66404, + [SMALL_STATE(2333)] = 66415, + [SMALL_STATE(2334)] = 66426, + [SMALL_STATE(2335)] = 66434, + [SMALL_STATE(2336)] = 66442, + [SMALL_STATE(2337)] = 66450, + [SMALL_STATE(2338)] = 66458, + [SMALL_STATE(2339)] = 66466, + [SMALL_STATE(2340)] = 66474, + [SMALL_STATE(2341)] = 66482, + [SMALL_STATE(2342)] = 66490, + [SMALL_STATE(2343)] = 66498, + [SMALL_STATE(2344)] = 66506, + [SMALL_STATE(2345)] = 66514, + [SMALL_STATE(2346)] = 66522, + [SMALL_STATE(2347)] = 66530, + [SMALL_STATE(2348)] = 66538, + [SMALL_STATE(2349)] = 66546, + [SMALL_STATE(2350)] = 66554, + [SMALL_STATE(2351)] = 66562, + [SMALL_STATE(2352)] = 66570, + [SMALL_STATE(2353)] = 66578, + [SMALL_STATE(2354)] = 66586, + [SMALL_STATE(2355)] = 66594, + [SMALL_STATE(2356)] = 66602, + [SMALL_STATE(2357)] = 66610, + [SMALL_STATE(2358)] = 66618, + [SMALL_STATE(2359)] = 66626, + [SMALL_STATE(2360)] = 66634, + [SMALL_STATE(2361)] = 66642, + [SMALL_STATE(2362)] = 66650, + [SMALL_STATE(2363)] = 66658, + [SMALL_STATE(2364)] = 66666, + [SMALL_STATE(2365)] = 66674, + [SMALL_STATE(2366)] = 66682, + [SMALL_STATE(2367)] = 66690, + [SMALL_STATE(2368)] = 66698, + [SMALL_STATE(2369)] = 66706, + [SMALL_STATE(2370)] = 66714, + [SMALL_STATE(2371)] = 66722, + [SMALL_STATE(2372)] = 66730, + [SMALL_STATE(2373)] = 66738, + [SMALL_STATE(2374)] = 66746, + [SMALL_STATE(2375)] = 66754, + [SMALL_STATE(2376)] = 66762, + [SMALL_STATE(2377)] = 66770, + [SMALL_STATE(2378)] = 66778, + [SMALL_STATE(2379)] = 66786, + [SMALL_STATE(2380)] = 66794, + [SMALL_STATE(2381)] = 66802, + [SMALL_STATE(2382)] = 66810, + [SMALL_STATE(2383)] = 66818, + [SMALL_STATE(2384)] = 66826, + [SMALL_STATE(2385)] = 66834, + [SMALL_STATE(2386)] = 66842, + [SMALL_STATE(2387)] = 66850, + [SMALL_STATE(2388)] = 66858, + [SMALL_STATE(2389)] = 66866, + [SMALL_STATE(2390)] = 66874, + [SMALL_STATE(2391)] = 66882, + [SMALL_STATE(2392)] = 66890, + [SMALL_STATE(2393)] = 66898, + [SMALL_STATE(2394)] = 66906, + [SMALL_STATE(2395)] = 66914, + [SMALL_STATE(2396)] = 66922, + [SMALL_STATE(2397)] = 66930, + [SMALL_STATE(2398)] = 66938, + [SMALL_STATE(2399)] = 66946, + [SMALL_STATE(2400)] = 66954, + [SMALL_STATE(2401)] = 66962, + [SMALL_STATE(2402)] = 66970, + [SMALL_STATE(2403)] = 66978, + [SMALL_STATE(2404)] = 66986, + [SMALL_STATE(2405)] = 66994, + [SMALL_STATE(2406)] = 67002, + [SMALL_STATE(2407)] = 67010, + [SMALL_STATE(2408)] = 67018, + [SMALL_STATE(2409)] = 67026, + [SMALL_STATE(2410)] = 67034, + [SMALL_STATE(2411)] = 67042, + [SMALL_STATE(2412)] = 67050, + [SMALL_STATE(2413)] = 67058, + [SMALL_STATE(2414)] = 67066, + [SMALL_STATE(2415)] = 67074, + [SMALL_STATE(2416)] = 67082, + [SMALL_STATE(2417)] = 67090, + [SMALL_STATE(2418)] = 67098, + [SMALL_STATE(2419)] = 67106, + [SMALL_STATE(2420)] = 67114, + [SMALL_STATE(2421)] = 67122, + [SMALL_STATE(2422)] = 67130, + [SMALL_STATE(2423)] = 67138, + [SMALL_STATE(2424)] = 67146, + [SMALL_STATE(2425)] = 67154, + [SMALL_STATE(2426)] = 67162, + [SMALL_STATE(2427)] = 67170, + [SMALL_STATE(2428)] = 67178, + [SMALL_STATE(2429)] = 67186, + [SMALL_STATE(2430)] = 67194, + [SMALL_STATE(2431)] = 67202, + [SMALL_STATE(2432)] = 67210, + [SMALL_STATE(2433)] = 67218, + [SMALL_STATE(2434)] = 67226, + [SMALL_STATE(2435)] = 67234, + [SMALL_STATE(2436)] = 67242, + [SMALL_STATE(2437)] = 67250, + [SMALL_STATE(2438)] = 67258, + [SMALL_STATE(2439)] = 67266, + [SMALL_STATE(2440)] = 67274, + [SMALL_STATE(2441)] = 67282, + [SMALL_STATE(2442)] = 67290, + [SMALL_STATE(2443)] = 67298, + [SMALL_STATE(2444)] = 67306, + [SMALL_STATE(2445)] = 67314, + [SMALL_STATE(2446)] = 67322, + [SMALL_STATE(2447)] = 67330, + [SMALL_STATE(2448)] = 67338, + [SMALL_STATE(2449)] = 67346, + [SMALL_STATE(2450)] = 67354, + [SMALL_STATE(2451)] = 67362, + [SMALL_STATE(2452)] = 67370, + [SMALL_STATE(2453)] = 67378, + [SMALL_STATE(2454)] = 67386, + [SMALL_STATE(2455)] = 67394, + [SMALL_STATE(2456)] = 67402, + [SMALL_STATE(2457)] = 67410, + [SMALL_STATE(2458)] = 67418, + [SMALL_STATE(2459)] = 67426, + [SMALL_STATE(2460)] = 67434, + [SMALL_STATE(2461)] = 67442, + [SMALL_STATE(2462)] = 67450, + [SMALL_STATE(2463)] = 67458, + [SMALL_STATE(2464)] = 67466, + [SMALL_STATE(2465)] = 67474, + [SMALL_STATE(2466)] = 67482, + [SMALL_STATE(2467)] = 67490, + [SMALL_STATE(2468)] = 67498, + [SMALL_STATE(2469)] = 67506, + [SMALL_STATE(2470)] = 67514, + [SMALL_STATE(2471)] = 67522, + [SMALL_STATE(2472)] = 67530, + [SMALL_STATE(2473)] = 67538, + [SMALL_STATE(2474)] = 67546, + [SMALL_STATE(2475)] = 67554, + [SMALL_STATE(2476)] = 67562, + [SMALL_STATE(2477)] = 67570, + [SMALL_STATE(2478)] = 67578, + [SMALL_STATE(2479)] = 67586, + [SMALL_STATE(2480)] = 67594, + [SMALL_STATE(2481)] = 67602, + [SMALL_STATE(2482)] = 67610, + [SMALL_STATE(2483)] = 67618, + [SMALL_STATE(2484)] = 67626, + [SMALL_STATE(2485)] = 67634, + [SMALL_STATE(2486)] = 67642, + [SMALL_STATE(2487)] = 67650, + [SMALL_STATE(2488)] = 67658, + [SMALL_STATE(2489)] = 67666, + [SMALL_STATE(2490)] = 67674, + [SMALL_STATE(2491)] = 67682, + [SMALL_STATE(2492)] = 67690, + [SMALL_STATE(2493)] = 67698, + [SMALL_STATE(2494)] = 67706, + [SMALL_STATE(2495)] = 67714, + [SMALL_STATE(2496)] = 67722, + [SMALL_STATE(2497)] = 67730, + [SMALL_STATE(2498)] = 67738, + [SMALL_STATE(2499)] = 67746, + [SMALL_STATE(2500)] = 67754, + [SMALL_STATE(2501)] = 67762, + [SMALL_STATE(2502)] = 67770, + [SMALL_STATE(2503)] = 67778, + [SMALL_STATE(2504)] = 67786, + [SMALL_STATE(2505)] = 67794, + [SMALL_STATE(2506)] = 67802, + [SMALL_STATE(2507)] = 67810, + [SMALL_STATE(2508)] = 67818, + [SMALL_STATE(2509)] = 67826, + [SMALL_STATE(2510)] = 67834, + [SMALL_STATE(2511)] = 67842, + [SMALL_STATE(2512)] = 67850, + [SMALL_STATE(2513)] = 67858, + [SMALL_STATE(2514)] = 67866, + [SMALL_STATE(2515)] = 67874, + [SMALL_STATE(2516)] = 67882, + [SMALL_STATE(2517)] = 67890, + [SMALL_STATE(2518)] = 67898, + [SMALL_STATE(2519)] = 67906, + [SMALL_STATE(2520)] = 67914, + [SMALL_STATE(2521)] = 67922, + [SMALL_STATE(2522)] = 67930, + [SMALL_STATE(2523)] = 67938, + [SMALL_STATE(2524)] = 67946, + [SMALL_STATE(2525)] = 67954, + [SMALL_STATE(2526)] = 67962, + [SMALL_STATE(2527)] = 67970, + [SMALL_STATE(2528)] = 67978, + [SMALL_STATE(2529)] = 67986, + [SMALL_STATE(2530)] = 67994, + [SMALL_STATE(2531)] = 68002, + [SMALL_STATE(2532)] = 68010, + [SMALL_STATE(2533)] = 68018, + [SMALL_STATE(2534)] = 68026, + [SMALL_STATE(2535)] = 68034, + [SMALL_STATE(2536)] = 68042, + [SMALL_STATE(2537)] = 68050, + [SMALL_STATE(2538)] = 68058, + [SMALL_STATE(2539)] = 68066, + [SMALL_STATE(2540)] = 68074, + [SMALL_STATE(2541)] = 68082, + [SMALL_STATE(2542)] = 68090, + [SMALL_STATE(2543)] = 68098, + [SMALL_STATE(2544)] = 68106, + [SMALL_STATE(2545)] = 68114, + [SMALL_STATE(2546)] = 68122, + [SMALL_STATE(2547)] = 68130, + [SMALL_STATE(2548)] = 68138, + [SMALL_STATE(2549)] = 68146, + [SMALL_STATE(2550)] = 68154, + [SMALL_STATE(2551)] = 68162, + [SMALL_STATE(2552)] = 68170, + [SMALL_STATE(2553)] = 68178, + [SMALL_STATE(2554)] = 68186, + [SMALL_STATE(2555)] = 68194, + [SMALL_STATE(2556)] = 68202, + [SMALL_STATE(2557)] = 68210, + [SMALL_STATE(2558)] = 68218, + [SMALL_STATE(2559)] = 68226, + [SMALL_STATE(2560)] = 68234, + [SMALL_STATE(2561)] = 68242, + [SMALL_STATE(2562)] = 68250, + [SMALL_STATE(2563)] = 68258, + [SMALL_STATE(2564)] = 68266, + [SMALL_STATE(2565)] = 68274, + [SMALL_STATE(2566)] = 68282, }; static TSParseActionEntry ts_parse_actions[] = { @@ -127947,2711 +128316,2717 @@ static 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(1144), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1144), - [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(366), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1935), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(39), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(100), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1043), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2560), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1519), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1542), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(778), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(767), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2557), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2152), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(628), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(57), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(629), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(627), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2153), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(168), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2553), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1349), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1885), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2543), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2540), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2494), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1166), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1500), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1316), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(64), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2234), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1489), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(642), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2483), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(56), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(563), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2238), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1075), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1780), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1050), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1055), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2478), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1365), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1055), - [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1150), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(266), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1966), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(36), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(7), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(93), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1130), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2566), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1540), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1544), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(781), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(767), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2563), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2159), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(631), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(62), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(636), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(612), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2161), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(161), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2559), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1354), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2093), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2549), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2546), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2500), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1171), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1496), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1318), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), + [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2231), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1472), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(644), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2489), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(64), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(560), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2233), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1074), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1838), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1046), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1045), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2484), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1366), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1045), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [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(2455), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), - [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(773), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(39), - [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2), - [409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(35), - [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(100), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1043), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2560), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1919), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2256), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(778), - [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(802), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(613), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(61), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2291), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(172), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2259), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(63), - [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(642), - [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2483), - [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(56), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(563), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2238), - [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1075), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1780), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1050), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1055), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2478), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1055), - [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(1100), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [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_unsafe_block, 2), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), - [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), - [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), - [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), - [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, 7, .production_id = 218), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 218), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), - [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(777), + [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(36), + [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(10), + [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(35), + [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(93), + [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1130), + [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2566), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1921), + [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2244), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(781), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(798), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(632), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(51), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2258), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(172), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2248), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(58), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(644), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2489), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(64), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(560), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2233), + [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1074), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1838), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1046), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1045), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2484), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1045), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), + [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 218), + [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 218), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [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_match_block, 4), + [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), [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_for_expression, 5, .production_id = 98), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), + [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), [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(2386), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), [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(1736), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 112), - [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 112), - [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 155), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 155), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2239), - [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(810), - [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1899), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2472), - [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1557), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1624), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1549), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2363), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2229), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(633), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(608), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2367), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1349), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1886), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2368), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2369), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2370), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1910), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1548), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1314), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2228), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1482), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(642), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2400), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2375), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1367), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2375), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(253), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(485), - [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(486), - [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(487), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2456), - [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(570), - [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1810), - [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(565), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(556), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 184), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 184), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 236), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 236), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(281), - [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(524), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), - [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(523), - [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(522), - [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(570), - [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1810), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(565), - [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(281), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 241), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 241), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 242), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 242), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 223), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 223), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 177), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 177), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 232), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 232), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 210), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 210), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 231), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 231), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 230), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 230), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 223), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 223), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 146), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 146), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 148), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 148), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 184), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 184), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 228), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 228), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 225), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 225), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(483), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(544), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(543), - [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(539), - [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2425), - [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(570), - [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1810), - [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(565), - [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(483), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1444), - [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(559), - [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(564), - [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1388), - [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2326), - [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1778), - [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2459), - [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(620), - [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(642), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2446), - [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1449), - [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(615), - [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(610), - [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1452), - [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2273), - [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1406), - [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1861), - [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1385), - [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1934), - [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1934), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 112), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 112), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(245), + [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(373), + [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(372), + [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(370), + [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2423), + [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(568), + [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1878), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(570), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(556), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2271), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(996), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1953), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2439), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1575), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1602), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1581), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2347), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2228), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(645), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(610), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2352), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1354), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2062), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2353), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2354), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2355), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1914), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1582), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1321), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2227), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1485), + [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(644), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2461), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2362), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1361), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2362), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [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_struct_item, 7, .production_id = 123), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), + [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(302), + [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(539), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(538), + [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(537), + [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2547), + [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(568), + [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1878), + [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(570), + [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(302), + [1341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(303), + [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(544), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), + [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(543), + [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(541), + [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(303), + [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(595), + [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1836), + [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(594), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 225), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 225), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 228), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 228), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 223), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 223), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 223), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 223), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 230), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 230), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 184), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 184), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 241), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 241), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 148), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 148), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 146), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 146), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 231), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 231), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 232), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 232), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 177), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 177), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 236), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 236), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 184), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 184), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 242), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 242), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1428), + [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(579), + [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(573), + [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1373), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2253), + [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1783), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2465), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(629), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(644), + [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2452), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1473), + [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(608), + [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(604), + [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1490), + [2183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2268), + [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1421), + [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1832), + [2192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1387), + [2195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1922), + [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1922), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2459), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2465), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 110), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 110), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 112), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 112), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 112), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 195), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 195), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 143), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 143), - [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 151), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 151), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 102), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 102), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), - [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2502), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 145), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), - [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 112), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 173), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 219), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 195), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 195), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 102), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 102), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 151), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 151), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 145), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 110), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 110), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 143), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 143), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2508), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 112), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 112), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 112), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 112), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 219), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 173), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [3561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [3927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1572), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1575), - [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(496), - [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), - [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(499), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(584), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(494), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(496), + [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(497), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(586), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1576), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1553), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), - [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [4271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1382), - [4279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(189), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 224), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 198), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 198), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 224), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), + [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1374), + [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(191), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 198), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 224), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 198), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1171), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 125), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1866), - [4509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(617), - [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(582), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1186), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 221), - [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 199), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 191), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), - [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 190), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), - [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), - [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(148), - [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1554), - [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), - [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), - [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(555), - [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(749), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2241), - [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(246), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1660), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1574), - [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(195), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1562), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [5038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(42), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [5067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1315), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 124), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [5104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1567), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [5217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [5483] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 224), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(609), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1170), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1849), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), + [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 125), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1585), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [4595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1319), + [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 124), + [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1559), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(712), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [4670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(41), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1569), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(195), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), + [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), + [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1672), + [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(247), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2169), + [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), + [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), + [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), + [4824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(555), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(126), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), + [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1186), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1587), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), + [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 190), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 191), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), + [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), + [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), + [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), + [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), + [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 199), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), + [5098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(585), + [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 221), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [5435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5493] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), }; #ifdef __cplusplus From ae4bf7423e2f82838876222d4bb60518bbb48195 Mon Sep 17 00:00:00 2001 From: ninevra Date: Mon, 7 Mar 2022 17:55:43 -0800 Subject: [PATCH 5/6] Promote metavariable out of _non_special_token Allows deduplicating _common_token and _non_special_token --- grammar.js | 13 +- src/grammar.json | 23 +- src/parser.c | 48982 ++++++++++++++++++++++----------------------- 3 files changed, 24473 insertions(+), 24545 deletions(-) diff --git a/grammar.js b/grammar.js index 89f4ab64..53ff0b80 100644 --- a/grammar.js +++ b/grammar.js @@ -150,6 +150,7 @@ module.exports = grammar({ $.token_tree_pattern, $.token_repetition_pattern, $.token_binding_pattern, + $.metavariable, $._non_special_token ), @@ -177,6 +178,7 @@ module.exports = grammar({ _tokens: $ => choice( $.token_tree, $.token_repetition, + $.metavariable, $._non_special_token ), @@ -190,12 +192,10 @@ module.exports = grammar({ '$', '(', repeat($._tokens), ')', optional(/[^+*?]+/), choice('+', '*', '?') ), + // Matches non-delimiter tokens common to both macro invocations and + // definitions. This is everything except $ and metavariables (which begin + // with $). _non_special_token: $ => choice( - $._never_special_token, - $.metavariable - ), - - _never_special_token: $ => choice( $._literal, $.identifier, $.mutable_specifier, $.self, $.super, $.crate, alias(choice(...primitive_types), $.primitive_type), /[/_\-=->,;:::!=?.@*&#%^+<>|~]+/, @@ -910,8 +910,9 @@ module.exports = grammar({ alias($.delim_token_tree, $.token_tree), ), + // Should match any token other than a delimiter. _non_delim_token: $ => choice( - $._never_special_token, + $._non_special_token, '$' ), diff --git a/src/grammar.json b/src/grammar.json index 2bb73612..6e3ffde4 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -308,6 +308,10 @@ "type": "SYMBOL", "name": "token_binding_pattern" }, + { + "type": "SYMBOL", + "name": "metavariable" + }, { "type": "SYMBOL", "name": "_non_special_token" @@ -529,6 +533,10 @@ "type": "SYMBOL", "name": "token_repetition" }, + { + "type": "SYMBOL", + "name": "metavariable" + }, { "type": "SYMBOL", "name": "_non_special_token" @@ -654,19 +662,6 @@ ] }, "_non_special_token": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_never_special_token" - }, - { - "type": "SYMBOL", - "name": "metavariable" - } - ] - }, - "_never_special_token": { "type": "CHOICE", "members": [ { @@ -5035,7 +5030,7 @@ "members": [ { "type": "SYMBOL", - "name": "_never_special_token" + "name": "_non_special_token" }, { "type": "STRING", diff --git a/src/parser.c b/src/parser.c index dcd70722..5a96099d 100644 --- a/src/parser.c +++ b/src/parser.c @@ -8,7 +8,7 @@ #define LANGUAGE_VERSION 13 #define STATE_COUNT 2567 #define LARGE_STATE_COUNT 647 -#define SYMBOL_COUNT 321 +#define SYMBOL_COUNT 320 #define ALIAS_COUNT 3 #define TOKEN_COUNT 139 #define EXTERNAL_TOKEN_COUNT 4 @@ -63,7 +63,7 @@ enum { anon_sym_bool = 44, anon_sym_str = 45, anon_sym_char = 46, - aux_sym__never_special_token_token1 = 47, + aux_sym__non_special_token_token1 = 47, anon_sym_SQUOTE = 48, anon_sym_as = 49, anon_sym_async = 50, @@ -168,178 +168,177 @@ enum { sym_fragment_specifier = 149, sym_token_tree = 150, sym_token_repetition = 151, - sym__never_special_token = 152, - sym_attribute_item = 153, - sym_inner_attribute_item = 154, - sym_meta_item = 155, - sym_meta_arguments = 156, - sym_mod_item = 157, - sym_foreign_mod_item = 158, - sym_declaration_list = 159, - sym_struct_item = 160, - sym_union_item = 161, - sym_enum_item = 162, - sym_enum_variant_list = 163, - sym_enum_variant = 164, - sym_field_declaration_list = 165, - sym_field_declaration = 166, - sym_ordered_field_declaration_list = 167, - sym_extern_crate_declaration = 168, - sym_const_item = 169, - sym_static_item = 170, - sym_type_item = 171, - sym_function_item = 172, - sym_function_signature_item = 173, - sym_function_modifiers = 174, - sym_where_clause = 175, - sym_where_predicate = 176, - sym_impl_item = 177, - sym_trait_item = 178, - sym_associated_type = 179, - sym_trait_bounds = 180, - sym_higher_ranked_trait_bound = 181, - sym_removed_trait_bound = 182, - sym_type_parameters = 183, - sym_const_parameter = 184, - sym_constrained_type_parameter = 185, - sym_optional_type_parameter = 186, - sym_let_declaration = 187, - sym_use_declaration = 188, - sym__use_clause = 189, - sym_scoped_use_list = 190, - sym_use_list = 191, - sym_use_as_clause = 192, - sym_use_wildcard = 193, - sym_parameters = 194, - sym_self_parameter = 195, - sym_variadic_parameter = 196, - sym_parameter = 197, - sym_extern_modifier = 198, - sym_visibility_modifier = 199, - sym__type = 200, - sym_bracketed_type = 201, - sym_qualified_type = 202, - sym_lifetime = 203, - sym_array_type = 204, - sym_for_lifetimes = 205, - sym_function_type = 206, - sym_tuple_type = 207, - sym_unit_type = 208, - sym_generic_function = 209, - sym_generic_type = 210, - sym_generic_type_with_turbofish = 211, - sym_bounded_type = 212, - sym_type_arguments = 213, - sym_type_binding = 214, - sym_reference_type = 215, - sym_pointer_type = 216, - sym_empty_type = 217, - sym_abstract_type = 218, - sym_dynamic_type = 219, - sym__expression_except_range = 220, - sym__expression = 221, - sym_macro_invocation = 222, - sym_delim_token_tree = 223, - sym__delim_tokens = 224, - sym__non_delim_token = 225, - sym_scoped_identifier = 226, - sym_scoped_type_identifier_in_expression_position = 227, - sym_scoped_type_identifier = 228, - sym_range_expression = 229, - sym_unary_expression = 230, - sym_try_expression = 231, - sym_reference_expression = 232, - sym_binary_expression = 233, - sym_assignment_expression = 234, - sym_compound_assignment_expr = 235, - sym_type_cast_expression = 236, - sym_return_expression = 237, - sym_yield_expression = 238, - sym_call_expression = 239, - sym_arguments = 240, - sym_array_expression = 241, - sym_parenthesized_expression = 242, - sym_tuple_expression = 243, - sym_unit_expression = 244, - sym_struct_expression = 245, - sym_field_initializer_list = 246, - sym_shorthand_field_initializer = 247, - sym_field_initializer = 248, - sym_base_field_initializer = 249, - sym_if_expression = 250, - sym_if_let_expression = 251, - sym_else_clause = 252, - sym_match_expression = 253, - sym_match_block = 254, - sym_match_arm = 255, - sym_last_match_arm = 256, - sym_match_pattern = 257, - sym_while_expression = 258, - sym_while_let_expression = 259, - sym_loop_expression = 260, - sym_for_expression = 261, - sym_const_block = 262, - sym_closure_expression = 263, - sym_closure_parameters = 264, - sym_loop_label = 265, - sym_break_expression = 266, - sym_continue_expression = 267, - sym_index_expression = 268, - sym_await_expression = 269, - sym_field_expression = 270, - sym_unsafe_block = 271, - sym_async_block = 272, - sym_block = 273, - sym__pattern = 274, - sym_tuple_pattern = 275, - sym_slice_pattern = 276, - sym_tuple_struct_pattern = 277, - sym_struct_pattern = 278, - sym_field_pattern = 279, - sym_remaining_field_pattern = 280, - sym_mut_pattern = 281, - sym_range_pattern = 282, - sym_ref_pattern = 283, - sym_captured_pattern = 284, - sym_reference_pattern = 285, - sym_or_pattern = 286, - sym__literal = 287, - sym__literal_pattern = 288, - sym_negative_literal = 289, - sym_string_literal = 290, - sym_boolean_literal = 291, - aux_sym_source_file_repeat1 = 292, - aux_sym_macro_definition_repeat1 = 293, - aux_sym_token_tree_pattern_repeat1 = 294, - aux_sym_token_tree_repeat1 = 295, - aux_sym_meta_arguments_repeat1 = 296, - aux_sym_declaration_list_repeat1 = 297, - aux_sym_enum_variant_list_repeat1 = 298, - aux_sym_enum_variant_list_repeat2 = 299, - aux_sym_field_declaration_list_repeat1 = 300, - aux_sym_ordered_field_declaration_list_repeat1 = 301, - aux_sym_function_modifiers_repeat1 = 302, - aux_sym_where_clause_repeat1 = 303, - aux_sym_trait_bounds_repeat1 = 304, - aux_sym_type_parameters_repeat1 = 305, - aux_sym_use_list_repeat1 = 306, - aux_sym_parameters_repeat1 = 307, - aux_sym_for_lifetimes_repeat1 = 308, - aux_sym_tuple_type_repeat1 = 309, - aux_sym_type_arguments_repeat1 = 310, - aux_sym_delim_token_tree_repeat1 = 311, - aux_sym_arguments_repeat1 = 312, - aux_sym_array_expression_repeat1 = 313, - aux_sym_tuple_expression_repeat1 = 314, - aux_sym_field_initializer_list_repeat1 = 315, - aux_sym_match_block_repeat1 = 316, - aux_sym_closure_parameters_repeat1 = 317, - aux_sym_tuple_pattern_repeat1 = 318, - aux_sym_struct_pattern_repeat1 = 319, - aux_sym_string_literal_repeat1 = 320, - alias_sym_field_identifier = 321, - alias_sym_shorthand_field_identifier = 322, - alias_sym_type_identifier = 323, + sym_attribute_item = 152, + sym_inner_attribute_item = 153, + sym_meta_item = 154, + sym_meta_arguments = 155, + sym_mod_item = 156, + sym_foreign_mod_item = 157, + sym_declaration_list = 158, + sym_struct_item = 159, + sym_union_item = 160, + sym_enum_item = 161, + sym_enum_variant_list = 162, + sym_enum_variant = 163, + sym_field_declaration_list = 164, + sym_field_declaration = 165, + sym_ordered_field_declaration_list = 166, + sym_extern_crate_declaration = 167, + sym_const_item = 168, + sym_static_item = 169, + sym_type_item = 170, + sym_function_item = 171, + sym_function_signature_item = 172, + sym_function_modifiers = 173, + sym_where_clause = 174, + sym_where_predicate = 175, + sym_impl_item = 176, + sym_trait_item = 177, + sym_associated_type = 178, + sym_trait_bounds = 179, + sym_higher_ranked_trait_bound = 180, + sym_removed_trait_bound = 181, + sym_type_parameters = 182, + sym_const_parameter = 183, + sym_constrained_type_parameter = 184, + sym_optional_type_parameter = 185, + sym_let_declaration = 186, + sym_use_declaration = 187, + sym__use_clause = 188, + sym_scoped_use_list = 189, + sym_use_list = 190, + sym_use_as_clause = 191, + sym_use_wildcard = 192, + sym_parameters = 193, + sym_self_parameter = 194, + sym_variadic_parameter = 195, + sym_parameter = 196, + sym_extern_modifier = 197, + sym_visibility_modifier = 198, + sym__type = 199, + sym_bracketed_type = 200, + sym_qualified_type = 201, + sym_lifetime = 202, + sym_array_type = 203, + sym_for_lifetimes = 204, + sym_function_type = 205, + sym_tuple_type = 206, + sym_unit_type = 207, + sym_generic_function = 208, + sym_generic_type = 209, + sym_generic_type_with_turbofish = 210, + sym_bounded_type = 211, + sym_type_arguments = 212, + sym_type_binding = 213, + sym_reference_type = 214, + sym_pointer_type = 215, + sym_empty_type = 216, + sym_abstract_type = 217, + sym_dynamic_type = 218, + sym__expression_except_range = 219, + sym__expression = 220, + sym_macro_invocation = 221, + sym_delim_token_tree = 222, + sym__delim_tokens = 223, + sym__non_delim_token = 224, + sym_scoped_identifier = 225, + sym_scoped_type_identifier_in_expression_position = 226, + sym_scoped_type_identifier = 227, + sym_range_expression = 228, + sym_unary_expression = 229, + sym_try_expression = 230, + sym_reference_expression = 231, + sym_binary_expression = 232, + sym_assignment_expression = 233, + sym_compound_assignment_expr = 234, + sym_type_cast_expression = 235, + sym_return_expression = 236, + sym_yield_expression = 237, + sym_call_expression = 238, + sym_arguments = 239, + sym_array_expression = 240, + sym_parenthesized_expression = 241, + sym_tuple_expression = 242, + sym_unit_expression = 243, + sym_struct_expression = 244, + sym_field_initializer_list = 245, + sym_shorthand_field_initializer = 246, + sym_field_initializer = 247, + sym_base_field_initializer = 248, + sym_if_expression = 249, + sym_if_let_expression = 250, + sym_else_clause = 251, + sym_match_expression = 252, + sym_match_block = 253, + sym_match_arm = 254, + sym_last_match_arm = 255, + sym_match_pattern = 256, + sym_while_expression = 257, + sym_while_let_expression = 258, + sym_loop_expression = 259, + sym_for_expression = 260, + sym_const_block = 261, + sym_closure_expression = 262, + sym_closure_parameters = 263, + sym_loop_label = 264, + sym_break_expression = 265, + sym_continue_expression = 266, + sym_index_expression = 267, + sym_await_expression = 268, + sym_field_expression = 269, + sym_unsafe_block = 270, + sym_async_block = 271, + sym_block = 272, + sym__pattern = 273, + sym_tuple_pattern = 274, + sym_slice_pattern = 275, + sym_tuple_struct_pattern = 276, + sym_struct_pattern = 277, + sym_field_pattern = 278, + sym_remaining_field_pattern = 279, + sym_mut_pattern = 280, + sym_range_pattern = 281, + sym_ref_pattern = 282, + sym_captured_pattern = 283, + sym_reference_pattern = 284, + sym_or_pattern = 285, + sym__literal = 286, + sym__literal_pattern = 287, + sym_negative_literal = 288, + sym_string_literal = 289, + sym_boolean_literal = 290, + aux_sym_source_file_repeat1 = 291, + aux_sym_macro_definition_repeat1 = 292, + aux_sym_token_tree_pattern_repeat1 = 293, + aux_sym_token_tree_repeat1 = 294, + aux_sym_meta_arguments_repeat1 = 295, + aux_sym_declaration_list_repeat1 = 296, + aux_sym_enum_variant_list_repeat1 = 297, + aux_sym_enum_variant_list_repeat2 = 298, + aux_sym_field_declaration_list_repeat1 = 299, + aux_sym_ordered_field_declaration_list_repeat1 = 300, + aux_sym_function_modifiers_repeat1 = 301, + aux_sym_where_clause_repeat1 = 302, + aux_sym_trait_bounds_repeat1 = 303, + aux_sym_type_parameters_repeat1 = 304, + aux_sym_use_list_repeat1 = 305, + aux_sym_parameters_repeat1 = 306, + aux_sym_for_lifetimes_repeat1 = 307, + aux_sym_tuple_type_repeat1 = 308, + aux_sym_type_arguments_repeat1 = 309, + aux_sym_delim_token_tree_repeat1 = 310, + aux_sym_arguments_repeat1 = 311, + aux_sym_array_expression_repeat1 = 312, + aux_sym_tuple_expression_repeat1 = 313, + aux_sym_field_initializer_list_repeat1 = 314, + aux_sym_match_block_repeat1 = 315, + aux_sym_closure_parameters_repeat1 = 316, + aux_sym_tuple_pattern_repeat1 = 317, + aux_sym_struct_pattern_repeat1 = 318, + aux_sym_string_literal_repeat1 = 319, + alias_sym_field_identifier = 320, + alias_sym_shorthand_field_identifier = 321, + alias_sym_type_identifier = 322, }; static const char *ts_symbol_names[] = { @@ -390,7 +389,7 @@ static const char *ts_symbol_names[] = { [anon_sym_bool] = "primitive_type", [anon_sym_str] = "primitive_type", [anon_sym_char] = "primitive_type", - [aux_sym__never_special_token_token1] = "_never_special_token_token1", + [aux_sym__non_special_token_token1] = "_non_special_token_token1", [anon_sym_SQUOTE] = "'", [anon_sym_as] = "as", [anon_sym_async] = "async", @@ -495,7 +494,6 @@ static const char *ts_symbol_names[] = { [sym_fragment_specifier] = "fragment_specifier", [sym_token_tree] = "token_tree", [sym_token_repetition] = "token_repetition", - [sym__never_special_token] = "_never_special_token", [sym_attribute_item] = "attribute_item", [sym_inner_attribute_item] = "inner_attribute_item", [sym_meta_item] = "meta_item", @@ -717,7 +715,7 @@ static TSSymbol ts_symbol_map[] = { [anon_sym_bool] = anon_sym_u8, [anon_sym_str] = anon_sym_u8, [anon_sym_char] = anon_sym_u8, - [aux_sym__never_special_token_token1] = aux_sym__never_special_token_token1, + [aux_sym__non_special_token_token1] = aux_sym__non_special_token_token1, [anon_sym_SQUOTE] = anon_sym_SQUOTE, [anon_sym_as] = anon_sym_as, [anon_sym_async] = anon_sym_async, @@ -822,7 +820,6 @@ static TSSymbol ts_symbol_map[] = { [sym_fragment_specifier] = sym_fragment_specifier, [sym_token_tree] = sym_token_tree, [sym_token_repetition] = sym_token_repetition, - [sym__never_special_token] = sym__never_special_token, [sym_attribute_item] = sym_attribute_item, [sym_inner_attribute_item] = sym_inner_attribute_item, [sym_meta_item] = sym_meta_item, @@ -1185,7 +1182,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [aux_sym__never_special_token_token1] = { + [aux_sym__non_special_token_token1] = { .visible = false, .named = false, }, @@ -1605,10 +1602,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__never_special_token] = { - .visible = false, - .named = true, - }, [sym_attribute_item] = { .visible = true, .named = true, @@ -10537,7 +10530,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 83: - ACCEPT_TOKEN(aux_sym__never_special_token_token1); + ACCEPT_TOKEN(aux_sym__non_special_token_token1); if (lookahead == '/') ADVANCE(86); if (lookahead == '!' || lookahead == '#' || @@ -10551,7 +10544,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '~') ADVANCE(85); END_STATE(); case 84: - ACCEPT_TOKEN(aux_sym__never_special_token_token1); + ACCEPT_TOKEN(aux_sym__non_special_token_token1); if (lookahead == '_') ADVANCE(84); if (lookahead == '!' || lookahead == '#' || @@ -10565,7 +10558,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (sym_identifier_character_set_4(lookahead)) ADVANCE(168); END_STATE(); case 85: - ACCEPT_TOKEN(aux_sym__never_special_token_token1); + ACCEPT_TOKEN(aux_sym__non_special_token_token1); if (lookahead == '!' || lookahead == '#' || lookahead == '%' || @@ -10578,7 +10571,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '~') ADVANCE(85); END_STATE(); case 86: - ACCEPT_TOKEN(aux_sym__never_special_token_token1); + ACCEPT_TOKEN(aux_sym__non_special_token_token1); if (lookahead == '!' || lookahead == '#' || lookahead == '%' || @@ -11942,11 +11935,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [242] = {.lex_state = 1, .external_lex_state = 2}, [243] = {.lex_state = 5, .external_lex_state = 2}, [244] = {.lex_state = 1, .external_lex_state = 2}, - [245] = {.lex_state = 12, .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 = 5, .external_lex_state = 2}, - [249] = {.lex_state = 4, .external_lex_state = 3}, + [248] = {.lex_state = 4, .external_lex_state = 3}, + [249] = {.lex_state = 12, .external_lex_state = 2}, [250] = {.lex_state = 4, .external_lex_state = 3}, [251] = {.lex_state = 4, .external_lex_state = 3}, [252] = {.lex_state = 4, .external_lex_state = 3}, @@ -11965,14 +11958,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [265] = {.lex_state = 58, .external_lex_state = 2}, [266] = {.lex_state = 58, .external_lex_state = 2}, [267] = {.lex_state = 58, .external_lex_state = 2}, - [268] = {.lex_state = 12, .external_lex_state = 2}, + [268] = {.lex_state = 58, .external_lex_state = 2}, [269] = {.lex_state = 58, .external_lex_state = 2}, [270] = {.lex_state = 58, .external_lex_state = 2}, - [271] = {.lex_state = 12, .external_lex_state = 2}, + [271] = {.lex_state = 5, .external_lex_state = 2}, [272] = {.lex_state = 58, .external_lex_state = 2}, - [273] = {.lex_state = 5, .external_lex_state = 2}, + [273] = {.lex_state = 58, .external_lex_state = 2}, [274] = {.lex_state = 58, .external_lex_state = 2}, - [275] = {.lex_state = 12, .external_lex_state = 2}, + [275] = {.lex_state = 58, .external_lex_state = 2}, [276] = {.lex_state = 58, .external_lex_state = 2}, [277] = {.lex_state = 58, .external_lex_state = 2}, [278] = {.lex_state = 58, .external_lex_state = 2}, @@ -11999,8 +11992,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [299] = {.lex_state = 58, .external_lex_state = 2}, [300] = {.lex_state = 58, .external_lex_state = 2}, [301] = {.lex_state = 58, .external_lex_state = 2}, - [302] = {.lex_state = 12, .external_lex_state = 2}, - [303] = {.lex_state = 13, .external_lex_state = 2}, + [302] = {.lex_state = 58, .external_lex_state = 2}, + [303] = {.lex_state = 58, .external_lex_state = 2}, [304] = {.lex_state = 58, .external_lex_state = 2}, [305] = {.lex_state = 58, .external_lex_state = 2}, [306] = {.lex_state = 58, .external_lex_state = 2}, @@ -12039,9 +12032,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [339] = {.lex_state = 58, .external_lex_state = 2}, [340] = {.lex_state = 58, .external_lex_state = 2}, [341] = {.lex_state = 58, .external_lex_state = 2}, - [342] = {.lex_state = 12, .external_lex_state = 2}, - [343] = {.lex_state = 12, .external_lex_state = 2}, - [344] = {.lex_state = 12, .external_lex_state = 2}, + [342] = {.lex_state = 58, .external_lex_state = 2}, + [343] = {.lex_state = 58, .external_lex_state = 2}, + [344] = {.lex_state = 58, .external_lex_state = 2}, [345] = {.lex_state = 58, .external_lex_state = 2}, [346] = {.lex_state = 58, .external_lex_state = 2}, [347] = {.lex_state = 58, .external_lex_state = 2}, @@ -12057,8 +12050,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [357] = {.lex_state = 58, .external_lex_state = 2}, [358] = {.lex_state = 58, .external_lex_state = 2}, [359] = {.lex_state = 58, .external_lex_state = 2}, - [360] = {.lex_state = 5, .external_lex_state = 2}, - [361] = {.lex_state = 58, .external_lex_state = 2}, + [360] = {.lex_state = 58, .external_lex_state = 2}, + [361] = {.lex_state = 5, .external_lex_state = 2}, [362] = {.lex_state = 58, .external_lex_state = 2}, [363] = {.lex_state = 58, .external_lex_state = 2}, [364] = {.lex_state = 58, .external_lex_state = 2}, @@ -12067,18 +12060,18 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [367] = {.lex_state = 58, .external_lex_state = 2}, [368] = {.lex_state = 58, .external_lex_state = 2}, [369] = {.lex_state = 58, .external_lex_state = 2}, - [370] = {.lex_state = 12, .external_lex_state = 2}, + [370] = {.lex_state = 58, .external_lex_state = 2}, [371] = {.lex_state = 58, .external_lex_state = 2}, - [372] = {.lex_state = 12, .external_lex_state = 2}, - [373] = {.lex_state = 12, .external_lex_state = 2}, + [372] = {.lex_state = 58, .external_lex_state = 2}, + [373] = {.lex_state = 58, .external_lex_state = 2}, [374] = {.lex_state = 58, .external_lex_state = 2}, [375] = {.lex_state = 58, .external_lex_state = 2}, [376] = {.lex_state = 58, .external_lex_state = 2}, [377] = {.lex_state = 58, .external_lex_state = 2}, - [378] = {.lex_state = 5, .external_lex_state = 2}, - [379] = {.lex_state = 12, .external_lex_state = 2}, + [378] = {.lex_state = 58, .external_lex_state = 2}, + [379] = {.lex_state = 58, .external_lex_state = 2}, [380] = {.lex_state = 58, .external_lex_state = 2}, - [381] = {.lex_state = 58, .external_lex_state = 2}, + [381] = {.lex_state = 5, .external_lex_state = 2}, [382] = {.lex_state = 58, .external_lex_state = 2}, [383] = {.lex_state = 58, .external_lex_state = 2}, [384] = {.lex_state = 58, .external_lex_state = 2}, @@ -12178,46 +12171,46 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [478] = {.lex_state = 58, .external_lex_state = 2}, [479] = {.lex_state = 58, .external_lex_state = 2}, [480] = {.lex_state = 58, .external_lex_state = 2}, - [481] = {.lex_state = 12, .external_lex_state = 2}, - [482] = {.lex_state = 58, .external_lex_state = 2}, - [483] = {.lex_state = 58, .external_lex_state = 2}, - [484] = {.lex_state = 58, .external_lex_state = 2}, - [485] = {.lex_state = 58, .external_lex_state = 2}, - [486] = {.lex_state = 58, .external_lex_state = 2}, - [487] = {.lex_state = 58, .external_lex_state = 2}, - [488] = {.lex_state = 58, .external_lex_state = 2}, - [489] = {.lex_state = 58, .external_lex_state = 2}, - [490] = {.lex_state = 58, .external_lex_state = 2}, - [491] = {.lex_state = 58, .external_lex_state = 2}, - [492] = {.lex_state = 58, .external_lex_state = 2}, - [493] = {.lex_state = 58, .external_lex_state = 2}, + [481] = {.lex_state = 58, .external_lex_state = 2}, + [482] = {.lex_state = 5, .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 = 5, .external_lex_state = 2}, + [488] = {.lex_state = 12, .external_lex_state = 2}, + [489] = {.lex_state = 12, .external_lex_state = 2}, + [490] = {.lex_state = 12, .external_lex_state = 2}, + [491] = {.lex_state = 5, .external_lex_state = 2}, + [492] = {.lex_state = 13, .external_lex_state = 2}, + [493] = {.lex_state = 12, .external_lex_state = 2}, [494] = {.lex_state = 12, .external_lex_state = 2}, - [495] = {.lex_state = 58, .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 = 5, .external_lex_state = 2}, - [499] = {.lex_state = 5, .external_lex_state = 2}, - [500] = {.lex_state = 5, .external_lex_state = 2}, - [501] = {.lex_state = 13, .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}, + [501] = {.lex_state = 5, .external_lex_state = 2}, [502] = {.lex_state = 13, .external_lex_state = 2}, [503] = {.lex_state = 13, .external_lex_state = 2}, [504] = {.lex_state = 13, .external_lex_state = 2}, [505] = {.lex_state = 13, .external_lex_state = 2}, - [506] = {.lex_state = 5, .external_lex_state = 2}, - [507] = {.lex_state = 13, .external_lex_state = 2}, - [508] = {.lex_state = 12, .external_lex_state = 2}, + [506] = {.lex_state = 13, .external_lex_state = 2}, + [507] = {.lex_state = 12, .external_lex_state = 2}, + [508] = {.lex_state = 13, .external_lex_state = 2}, [509] = {.lex_state = 13, .external_lex_state = 2}, - [510] = {.lex_state = 13, .external_lex_state = 2}, + [510] = {.lex_state = 12, .external_lex_state = 2}, [511] = {.lex_state = 12, .external_lex_state = 2}, - [512] = {.lex_state = 12, .external_lex_state = 2}, + [512] = {.lex_state = 13, .external_lex_state = 2}, [513] = {.lex_state = 13, .external_lex_state = 2}, [514] = {.lex_state = 12, .external_lex_state = 2}, [515] = {.lex_state = 13, .external_lex_state = 2}, - [516] = {.lex_state = 12, .external_lex_state = 2}, + [516] = {.lex_state = 13, .external_lex_state = 2}, [517] = {.lex_state = 12, .external_lex_state = 2}, - [518] = {.lex_state = 13, .external_lex_state = 2}, - [519] = {.lex_state = 13, .external_lex_state = 2}, - [520] = {.lex_state = 13, .external_lex_state = 2}, + [518] = {.lex_state = 12, .external_lex_state = 2}, + [519] = {.lex_state = 12, .external_lex_state = 2}, + [520] = {.lex_state = 12, .external_lex_state = 2}, [521] = {.lex_state = 13, .external_lex_state = 2}, [522] = {.lex_state = 13, .external_lex_state = 2}, [523] = {.lex_state = 13, .external_lex_state = 2}, @@ -12227,10 +12220,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [527] = {.lex_state = 13, .external_lex_state = 2}, [528] = {.lex_state = 13, .external_lex_state = 2}, [529] = {.lex_state = 13, .external_lex_state = 2}, - [530] = {.lex_state = 12, .external_lex_state = 2}, + [530] = {.lex_state = 13, .external_lex_state = 2}, [531] = {.lex_state = 13, .external_lex_state = 2}, [532] = {.lex_state = 13, .external_lex_state = 2}, - [533] = {.lex_state = 12, .external_lex_state = 2}, + [533] = {.lex_state = 13, .external_lex_state = 2}, [534] = {.lex_state = 13, .external_lex_state = 2}, [535] = {.lex_state = 13, .external_lex_state = 2}, [536] = {.lex_state = 13, .external_lex_state = 2}, @@ -12258,8 +12251,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [558] = {.lex_state = 7, .external_lex_state = 3}, [559] = {.lex_state = 12, .external_lex_state = 2}, [560] = {.lex_state = 5, .external_lex_state = 2}, - [561] = {.lex_state = 5, .external_lex_state = 2}, - [562] = {.lex_state = 12, .external_lex_state = 2}, + [561] = {.lex_state = 12, .external_lex_state = 2}, + [562] = {.lex_state = 5, .external_lex_state = 2}, [563] = {.lex_state = 7, .external_lex_state = 3}, [564] = {.lex_state = 12, .external_lex_state = 2}, [565] = {.lex_state = 12, .external_lex_state = 2}, @@ -12270,39 +12263,39 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [570] = {.lex_state = 12, .external_lex_state = 2}, [571] = {.lex_state = 12, .external_lex_state = 2}, [572] = {.lex_state = 12, .external_lex_state = 2}, - [573] = {.lex_state = 5, .external_lex_state = 2}, + [573] = {.lex_state = 12, .external_lex_state = 2}, [574] = {.lex_state = 12, .external_lex_state = 2}, [575] = {.lex_state = 12, .external_lex_state = 2}, [576] = {.lex_state = 12, .external_lex_state = 2}, - [577] = {.lex_state = 12, .external_lex_state = 2}, - [578] = {.lex_state = 12, .external_lex_state = 2}, - [579] = {.lex_state = 5, .external_lex_state = 2}, - [580] = {.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 = 12, .external_lex_state = 2}, + [580] = {.lex_state = 13, .external_lex_state = 2}, [581] = {.lex_state = 5, .external_lex_state = 2}, - [582] = {.lex_state = 5, .external_lex_state = 2}, - [583] = {.lex_state = 7, .external_lex_state = 3}, - [584] = {.lex_state = 5, .external_lex_state = 2}, - [585] = {.lex_state = 5, .external_lex_state = 2}, - [586] = {.lex_state = 7, .external_lex_state = 3}, - [587] = {.lex_state = 13, .external_lex_state = 2}, - [588] = {.lex_state = 5, .external_lex_state = 2}, - [589] = {.lex_state = 7, .external_lex_state = 3}, - [590] = {.lex_state = 5, .external_lex_state = 2}, + [582] = {.lex_state = 13, .external_lex_state = 2}, + [583] = {.lex_state = 13, .external_lex_state = 2}, + [584] = {.lex_state = 7, .external_lex_state = 3}, + [585] = {.lex_state = 7, .external_lex_state = 3}, + [586] = {.lex_state = 5, .external_lex_state = 2}, + [587] = {.lex_state = 5, .external_lex_state = 2}, + [588] = {.lex_state = 7, .external_lex_state = 3}, + [589] = {.lex_state = 5, .external_lex_state = 2}, + [590] = {.lex_state = 7, .external_lex_state = 3}, [591] = {.lex_state = 13, .external_lex_state = 2}, [592] = {.lex_state = 5, .external_lex_state = 2}, - [593] = {.lex_state = 13, .external_lex_state = 2}, + [593] = {.lex_state = 5, .external_lex_state = 2}, [594] = {.lex_state = 13, .external_lex_state = 2}, - [595] = {.lex_state = 13, .external_lex_state = 2}, + [595] = {.lex_state = 5, .external_lex_state = 2}, [596] = {.lex_state = 13, .external_lex_state = 2}, [597] = {.lex_state = 5, .external_lex_state = 2}, [598] = {.lex_state = 5, .external_lex_state = 2}, [599] = {.lex_state = 7, .external_lex_state = 3}, - [600] = {.lex_state = 5, .external_lex_state = 2}, - [601] = {.lex_state = 5, .external_lex_state = 2}, + [600] = {.lex_state = 7, .external_lex_state = 3}, + [601] = {.lex_state = 7, .external_lex_state = 3}, [602] = {.lex_state = 5, .external_lex_state = 2}, [603] = {.lex_state = 5, .external_lex_state = 2}, [604] = {.lex_state = 5, .external_lex_state = 2}, - [605] = {.lex_state = 7, .external_lex_state = 3}, + [605] = {.lex_state = 5, .external_lex_state = 2}, [606] = {.lex_state = 5, .external_lex_state = 2}, [607] = {.lex_state = 5, .external_lex_state = 2}, [608] = {.lex_state = 5, .external_lex_state = 2}, @@ -12315,12 +12308,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [615] = {.lex_state = 5, .external_lex_state = 2}, [616] = {.lex_state = 5, .external_lex_state = 2}, [617] = {.lex_state = 5, .external_lex_state = 2}, - [618] = {.lex_state = 7, .external_lex_state = 3}, + [618] = {.lex_state = 5, .external_lex_state = 2}, [619] = {.lex_state = 5, .external_lex_state = 2}, [620] = {.lex_state = 5, .external_lex_state = 2}, [621] = {.lex_state = 5, .external_lex_state = 2}, - [622] = {.lex_state = 7, .external_lex_state = 3}, - [623] = {.lex_state = 5, .external_lex_state = 2}, + [622] = {.lex_state = 5, .external_lex_state = 2}, + [623] = {.lex_state = 7, .external_lex_state = 3}, [624] = {.lex_state = 5, .external_lex_state = 2}, [625] = {.lex_state = 5, .external_lex_state = 2}, [626] = {.lex_state = 5, .external_lex_state = 2}, @@ -12462,20 +12455,20 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [762] = {.lex_state = 3, .external_lex_state = 3}, [763] = {.lex_state = 3, .external_lex_state = 3}, [764] = {.lex_state = 3, .external_lex_state = 3}, - [765] = {.lex_state = 3, .external_lex_state = 3}, - [766] = {.lex_state = 4, .external_lex_state = 3}, - [767] = {.lex_state = 2, .external_lex_state = 3}, - [768] = {.lex_state = 4, .external_lex_state = 3}, - [769] = {.lex_state = 3, .external_lex_state = 3}, + [765] = {.lex_state = 4, .external_lex_state = 3}, + [766] = {.lex_state = 3, .external_lex_state = 3}, + [767] = {.lex_state = 4, .external_lex_state = 3}, + [768] = {.lex_state = 2, .external_lex_state = 3}, + [769] = {.lex_state = 4, .external_lex_state = 3}, [770] = {.lex_state = 3, .external_lex_state = 3}, - [771] = {.lex_state = 4, .external_lex_state = 3}, + [771] = {.lex_state = 3, .external_lex_state = 3}, [772] = {.lex_state = 3, .external_lex_state = 3}, - [773] = {.lex_state = 4, .external_lex_state = 3}, - [774] = {.lex_state = 3, .external_lex_state = 3}, + [773] = {.lex_state = 3, .external_lex_state = 3}, + [774] = {.lex_state = 4, .external_lex_state = 3}, [775] = {.lex_state = 3, .external_lex_state = 3}, - [776] = {.lex_state = 4, .external_lex_state = 3}, - [777] = {.lex_state = 2, .external_lex_state = 3}, - [778] = {.lex_state = 3, .external_lex_state = 3}, + [776] = {.lex_state = 3, .external_lex_state = 3}, + [777] = {.lex_state = 4, .external_lex_state = 3}, + [778] = {.lex_state = 2, .external_lex_state = 3}, [779] = {.lex_state = 2, .external_lex_state = 3}, [780] = {.lex_state = 2, .external_lex_state = 3}, [781] = {.lex_state = 2, .external_lex_state = 3}, @@ -19152,7 +19145,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym_attribute_item] = STATE(600), + [sym_attribute_item] = STATE(629), [sym_bracketed_type] = STATE(2476), [sym_generic_function] = STATE(1019), [sym_generic_type_with_turbofish] = STATE(1929), @@ -19199,7 +19192,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__literal] = STATE(1019), [sym_string_literal] = STATE(1074), [sym_boolean_literal] = STATE(1074), - [aux_sym_enum_variant_list_repeat1] = STATE(600), + [aux_sym_enum_variant_list_repeat1] = STATE(629), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -19814,7 +19807,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym_attribute_item] = STATE(600), + [sym_attribute_item] = STATE(629), [sym_bracketed_type] = STATE(2476), [sym_generic_function] = STATE(1019), [sym_generic_type_with_turbofish] = STATE(1929), @@ -19861,7 +19854,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__literal] = STATE(1019), [sym_string_literal] = STATE(1074), [sym_boolean_literal] = STATE(1074), - [aux_sym_enum_variant_list_repeat1] = STATE(600), + [aux_sym_enum_variant_list_repeat1] = STATE(629), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20032,7 +20025,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym_attribute_item] = STATE(600), + [sym_attribute_item] = STATE(629), [sym_bracketed_type] = STATE(2476), [sym_generic_function] = STATE(1019), [sym_generic_type_with_turbofish] = STATE(1929), @@ -20079,7 +20072,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__literal] = STATE(1019), [sym_string_literal] = STATE(1074), [sym_boolean_literal] = STATE(1074), - [aux_sym_enum_variant_list_repeat1] = STATE(600), + [aux_sym_enum_variant_list_repeat1] = STATE(629), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20141,7 +20134,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym_attribute_item] = STATE(600), + [sym_attribute_item] = STATE(629), [sym_bracketed_type] = STATE(2476), [sym_generic_function] = STATE(1019), [sym_generic_type_with_turbofish] = STATE(1929), @@ -20188,7 +20181,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__literal] = STATE(1019), [sym_string_literal] = STATE(1074), [sym_boolean_literal] = STATE(1074), - [aux_sym_enum_variant_list_repeat1] = STATE(600), + [aux_sym_enum_variant_list_repeat1] = STATE(629), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -37137,7 +37130,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_extern_modifier] = STATE(1575), [sym__type] = STATE(1397), [sym_bracketed_type] = STATE(2498), - [sym_lifetime] = STATE(599), + [sym_lifetime] = STATE(600), [sym_array_type] = STATE(1410), [sym_for_lifetimes] = STATE(1201), [sym_function_type] = STATE(1410), @@ -37327,7 +37320,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_extern_modifier] = STATE(1575), [sym__type] = STATE(1397), [sym_bracketed_type] = STATE(2498), - [sym_lifetime] = STATE(605), + [sym_lifetime] = STATE(599), [sym_array_type] = STATE(1410), [sym_for_lifetimes] = STATE(1201), [sym_function_type] = STATE(1410), @@ -37422,7 +37415,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_extern_modifier] = STATE(1575), [sym__type] = STATE(1397), [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(599), + [sym_lifetime] = STATE(600), [sym_array_type] = STATE(1410), [sym_for_lifetimes] = STATE(1201), [sym_function_type] = STATE(1410), @@ -37802,7 +37795,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_extern_modifier] = STATE(1575), [sym__type] = STATE(1397), [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(605), + [sym_lifetime] = STATE(599), [sym_array_type] = STATE(1410), [sym_for_lifetimes] = STATE(1201), [sym_function_type] = STATE(1410), @@ -37992,7 +37985,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_extern_modifier] = STATE(1575), [sym__type] = STATE(1397), [sym_bracketed_type] = STATE(2501), - [sym_lifetime] = STATE(599), + [sym_lifetime] = STATE(600), [sym_array_type] = STATE(1410), [sym_for_lifetimes] = STATE(1201), [sym_function_type] = STATE(1410), @@ -40576,85 +40569,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [245] = { - [sym__token_pattern] = STATE(245), - [sym_token_tree_pattern] = STATE(245), - [sym_token_binding_pattern] = STATE(245), - [sym_token_repetition_pattern] = STATE(245), - [sym__never_special_token] = STATE(245), - [sym__literal] = STATE(245), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_pattern_repeat1] = STATE(245), - [sym_identifier] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(927), - [anon_sym_RPAREN] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_RBRACK] = ACTIONS(930), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_u8] = ACTIONS(924), - [anon_sym_i8] = ACTIONS(924), - [anon_sym_u16] = ACTIONS(924), - [anon_sym_i16] = ACTIONS(924), - [anon_sym_u32] = ACTIONS(924), - [anon_sym_i32] = ACTIONS(924), - [anon_sym_u64] = ACTIONS(924), - [anon_sym_i64] = ACTIONS(924), - [anon_sym_u128] = ACTIONS(924), - [anon_sym_i128] = ACTIONS(924), - [anon_sym_isize] = ACTIONS(924), - [anon_sym_usize] = ACTIONS(924), - [anon_sym_f32] = ACTIONS(924), - [anon_sym_f64] = ACTIONS(924), - [anon_sym_bool] = ACTIONS(924), - [anon_sym_str] = ACTIONS(924), - [anon_sym_char] = ACTIONS(924), - [aux_sym__never_special_token_token1] = ACTIONS(924), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_as] = ACTIONS(924), - [anon_sym_async] = ACTIONS(924), - [anon_sym_await] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_fn] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_impl] = ACTIONS(924), - [anon_sym_let] = ACTIONS(924), - [anon_sym_loop] = ACTIONS(924), - [anon_sym_match] = ACTIONS(924), - [anon_sym_mod] = ACTIONS(924), - [anon_sym_pub] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_static] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_trait] = ACTIONS(924), - [anon_sym_type] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_unsafe] = ACTIONS(924), - [anon_sym_use] = ACTIONS(924), - [anon_sym_where] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [sym_mutable_specifier] = ACTIONS(924), - [sym_integer_literal] = ACTIONS(941), - [aux_sym_string_literal_token1] = ACTIONS(944), - [sym_char_literal] = ACTIONS(941), - [anon_sym_true] = ACTIONS(947), - [anon_sym_false] = ACTIONS(947), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(924), - [sym_super] = ACTIONS(924), - [sym_crate] = ACTIONS(924), - [sym_metavariable] = ACTIONS(952), - [sym_raw_string_literal] = ACTIONS(941), - [sym_float_literal] = ACTIONS(941), - [sym_block_comment] = ACTIONS(3), - }, - [246] = { [sym_function_modifiers] = STATE(2411), [sym_extern_modifier] = STATE(1575), [sym__type] = STATE(1807), @@ -40733,7 +40647,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [247] = { + [246] = { [sym_function_modifiers] = STATE(2411), [sym_extern_modifier] = STATE(1575), [sym__type] = STATE(1982), @@ -40812,7 +40726,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [248] = { + [247] = { [sym_function_modifiers] = STATE(2411), [sym_extern_modifier] = STATE(1575), [sym__type] = STATE(1820), @@ -40891,7 +40805,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(904), [sym_block_comment] = ACTIONS(3), }, - [249] = { + [248] = { [sym_empty_statement] = STATE(252), [sym_macro_definition] = STATE(252), [sym_attribute_item] = STATE(252), @@ -40921,130 +40835,208 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2273), [aux_sym_declaration_list_repeat1] = STATE(252), [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_macro_rules_BANG] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_u8] = ACTIONS(963), - [anon_sym_i8] = ACTIONS(963), - [anon_sym_u16] = ACTIONS(963), - [anon_sym_i16] = ACTIONS(963), - [anon_sym_u32] = ACTIONS(963), - [anon_sym_i32] = ACTIONS(963), - [anon_sym_u64] = ACTIONS(963), - [anon_sym_i64] = ACTIONS(963), - [anon_sym_u128] = ACTIONS(963), - [anon_sym_i128] = ACTIONS(963), - [anon_sym_isize] = ACTIONS(963), - [anon_sym_usize] = ACTIONS(963), - [anon_sym_f32] = ACTIONS(963), - [anon_sym_f64] = ACTIONS(963), - [anon_sym_bool] = ACTIONS(963), - [anon_sym_str] = ACTIONS(963), - [anon_sym_char] = ACTIONS(963), + [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(965), - [anon_sym_default] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(969), - [anon_sym_fn] = ACTIONS(971), - [anon_sym_impl] = ACTIONS(973), - [anon_sym_let] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(977), + [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(979), - [anon_sym_struct] = ACTIONS(981), - [anon_sym_trait] = ACTIONS(983), - [anon_sym_type] = ACTIONS(985), - [anon_sym_union] = ACTIONS(987), - [anon_sym_unsafe] = ACTIONS(989), - [anon_sym_use] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(993), - [anon_sym_extern] = ACTIONS(995), + [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(997), + [anon_sym_COLON_COLON] = ACTIONS(966), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(999), - [sym_super] = ACTIONS(999), - [sym_crate] = ACTIONS(1001), - [sym_metavariable] = ACTIONS(1003), + [sym_self] = ACTIONS(968), + [sym_super] = ACTIONS(968), + [sym_crate] = ACTIONS(970), + [sym_metavariable] = ACTIONS(972), + [sym_block_comment] = ACTIONS(3), + }, + [249] = { + [sym__token_pattern] = STATE(249), + [sym_token_tree_pattern] = STATE(249), + [sym_token_binding_pattern] = STATE(249), + [sym_token_repetition_pattern] = STATE(249), + [sym__literal] = STATE(249), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_RBRACK] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_u8] = ACTIONS(974), + [anon_sym_i8] = ACTIONS(974), + [anon_sym_u16] = ACTIONS(974), + [anon_sym_i16] = ACTIONS(974), + [anon_sym_u32] = ACTIONS(974), + [anon_sym_i32] = ACTIONS(974), + [anon_sym_u64] = ACTIONS(974), + [anon_sym_i64] = ACTIONS(974), + [anon_sym_u128] = ACTIONS(974), + [anon_sym_i128] = ACTIONS(974), + [anon_sym_isize] = ACTIONS(974), + [anon_sym_usize] = ACTIONS(974), + [anon_sym_f32] = ACTIONS(974), + [anon_sym_f64] = ACTIONS(974), + [anon_sym_bool] = ACTIONS(974), + [anon_sym_str] = ACTIONS(974), + [anon_sym_char] = ACTIONS(974), + [aux_sym__non_special_token_token1] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_as] = ACTIONS(974), + [anon_sym_async] = ACTIONS(974), + [anon_sym_await] = ACTIONS(974), + [anon_sym_break] = ACTIONS(974), + [anon_sym_const] = ACTIONS(974), + [anon_sym_continue] = ACTIONS(974), + [anon_sym_default] = ACTIONS(974), + [anon_sym_enum] = ACTIONS(974), + [anon_sym_fn] = ACTIONS(974), + [anon_sym_for] = ACTIONS(974), + [anon_sym_if] = ACTIONS(974), + [anon_sym_impl] = ACTIONS(974), + [anon_sym_let] = ACTIONS(974), + [anon_sym_loop] = ACTIONS(974), + [anon_sym_match] = ACTIONS(974), + [anon_sym_mod] = ACTIONS(974), + [anon_sym_pub] = ACTIONS(974), + [anon_sym_return] = ACTIONS(974), + [anon_sym_static] = ACTIONS(974), + [anon_sym_struct] = ACTIONS(974), + [anon_sym_trait] = ACTIONS(974), + [anon_sym_type] = ACTIONS(974), + [anon_sym_union] = ACTIONS(974), + [anon_sym_unsafe] = ACTIONS(974), + [anon_sym_use] = ACTIONS(974), + [anon_sym_where] = ACTIONS(974), + [anon_sym_while] = ACTIONS(974), + [sym_mutable_specifier] = ACTIONS(974), + [sym_integer_literal] = ACTIONS(991), + [aux_sym_string_literal_token1] = ACTIONS(994), + [sym_char_literal] = ACTIONS(991), + [anon_sym_true] = ACTIONS(997), + [anon_sym_false] = ACTIONS(997), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(974), + [sym_super] = ACTIONS(974), + [sym_crate] = ACTIONS(974), + [sym_metavariable] = ACTIONS(1002), + [sym_raw_string_literal] = ACTIONS(991), + [sym_float_literal] = ACTIONS(991), [sym_block_comment] = ACTIONS(3), }, [250] = { - [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_empty_statement] = STATE(248), + [sym_macro_definition] = STATE(248), + [sym_attribute_item] = STATE(248), + [sym_inner_attribute_item] = STATE(248), + [sym_mod_item] = STATE(248), + [sym_foreign_mod_item] = STATE(248), + [sym_struct_item] = STATE(248), + [sym_union_item] = STATE(248), + [sym_enum_item] = STATE(248), + [sym_extern_crate_declaration] = STATE(248), + [sym_const_item] = STATE(248), + [sym_static_item] = STATE(248), + [sym_type_item] = STATE(248), + [sym_function_item] = STATE(248), + [sym_function_signature_item] = STATE(248), [sym_function_modifiers] = STATE(2548), - [sym_impl_item] = STATE(249), - [sym_trait_item] = STATE(249), - [sym_associated_type] = STATE(249), - [sym_let_declaration] = STATE(249), - [sym_use_declaration] = STATE(249), + [sym_impl_item] = STATE(248), + [sym_trait_item] = STATE(248), + [sym_associated_type] = STATE(248), + [sym_let_declaration] = STATE(248), + [sym_use_declaration] = STATE(248), [sym_extern_modifier] = STATE(1533), [sym_visibility_modifier] = STATE(1351), [sym_bracketed_type] = STATE(2362), [sym_generic_type_with_turbofish] = STATE(2357), - [sym_macro_invocation] = STATE(249), + [sym_macro_invocation] = STATE(248), [sym_scoped_identifier] = STATE(2273), - [aux_sym_declaration_list_repeat1] = STATE(249), + [aux_sym_declaration_list_repeat1] = STATE(248), [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_macro_rules_BANG] = ACTIONS(959), + [sym_identifier] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_macro_rules_BANG] = ACTIONS(928), [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_u8] = ACTIONS(963), - [anon_sym_i8] = ACTIONS(963), - [anon_sym_u16] = ACTIONS(963), - [anon_sym_i16] = ACTIONS(963), - [anon_sym_u32] = ACTIONS(963), - [anon_sym_i32] = ACTIONS(963), - [anon_sym_u64] = ACTIONS(963), - [anon_sym_i64] = ACTIONS(963), - [anon_sym_u128] = ACTIONS(963), - [anon_sym_i128] = ACTIONS(963), - [anon_sym_isize] = ACTIONS(963), - [anon_sym_usize] = ACTIONS(963), - [anon_sym_f32] = ACTIONS(963), - [anon_sym_f64] = ACTIONS(963), - [anon_sym_bool] = ACTIONS(963), - [anon_sym_str] = ACTIONS(963), - [anon_sym_char] = ACTIONS(963), + [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(965), - [anon_sym_default] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(969), - [anon_sym_fn] = ACTIONS(971), - [anon_sym_impl] = ACTIONS(973), - [anon_sym_let] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(977), + [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(979), - [anon_sym_struct] = ACTIONS(981), - [anon_sym_trait] = ACTIONS(983), - [anon_sym_type] = ACTIONS(985), - [anon_sym_union] = ACTIONS(987), - [anon_sym_unsafe] = ACTIONS(989), - [anon_sym_use] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(993), - [anon_sym_extern] = ACTIONS(995), + [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(997), + [anon_sym_COLON_COLON] = ACTIONS(966), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(999), - [sym_super] = ACTIONS(999), - [sym_crate] = ACTIONS(1001), - [sym_metavariable] = ACTIONS(1003), + [sym_self] = ACTIONS(968), + [sym_super] = ACTIONS(968), + [sym_crate] = ACTIONS(970), + [sym_metavariable] = ACTIONS(972), [sym_block_comment] = ACTIONS(3), }, [251] = { @@ -41077,52 +41069,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2273), [aux_sym_declaration_list_repeat1] = STATE(253), [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_macro_rules_BANG] = ACTIONS(959), + [sym_identifier] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_macro_rules_BANG] = ACTIONS(928), [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_u8] = ACTIONS(963), - [anon_sym_i8] = ACTIONS(963), - [anon_sym_u16] = ACTIONS(963), - [anon_sym_i16] = ACTIONS(963), - [anon_sym_u32] = ACTIONS(963), - [anon_sym_i32] = ACTIONS(963), - [anon_sym_u64] = ACTIONS(963), - [anon_sym_i64] = ACTIONS(963), - [anon_sym_u128] = ACTIONS(963), - [anon_sym_i128] = ACTIONS(963), - [anon_sym_isize] = ACTIONS(963), - [anon_sym_usize] = ACTIONS(963), - [anon_sym_f32] = ACTIONS(963), - [anon_sym_f64] = ACTIONS(963), - [anon_sym_bool] = ACTIONS(963), - [anon_sym_str] = ACTIONS(963), - [anon_sym_char] = ACTIONS(963), + [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(965), - [anon_sym_default] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(969), - [anon_sym_fn] = ACTIONS(971), - [anon_sym_impl] = ACTIONS(973), - [anon_sym_let] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(977), + [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(979), - [anon_sym_struct] = ACTIONS(981), - [anon_sym_trait] = ACTIONS(983), - [anon_sym_type] = ACTIONS(985), - [anon_sym_union] = ACTIONS(987), - [anon_sym_unsafe] = ACTIONS(989), - [anon_sym_use] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(993), - [anon_sym_extern] = ACTIONS(995), + [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(997), + [anon_sym_COLON_COLON] = ACTIONS(966), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(999), - [sym_super] = ACTIONS(999), - [sym_crate] = ACTIONS(1001), - [sym_metavariable] = ACTIONS(1003), + [sym_self] = ACTIONS(968), + [sym_super] = ACTIONS(968), + [sym_crate] = ACTIONS(970), + [sym_metavariable] = ACTIONS(972), [sym_block_comment] = ACTIONS(3), }, [252] = { @@ -41233,52 +41225,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2273), [aux_sym_declaration_list_repeat1] = STATE(252), [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_macro_rules_BANG] = ACTIONS(959), + [sym_identifier] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_macro_rules_BANG] = ACTIONS(928), [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_u8] = ACTIONS(963), - [anon_sym_i8] = ACTIONS(963), - [anon_sym_u16] = ACTIONS(963), - [anon_sym_i16] = ACTIONS(963), - [anon_sym_u32] = ACTIONS(963), - [anon_sym_i32] = ACTIONS(963), - [anon_sym_u64] = ACTIONS(963), - [anon_sym_i64] = ACTIONS(963), - [anon_sym_u128] = ACTIONS(963), - [anon_sym_i128] = ACTIONS(963), - [anon_sym_isize] = ACTIONS(963), - [anon_sym_usize] = ACTIONS(963), - [anon_sym_f32] = ACTIONS(963), - [anon_sym_f64] = ACTIONS(963), - [anon_sym_bool] = ACTIONS(963), - [anon_sym_str] = ACTIONS(963), - [anon_sym_char] = ACTIONS(963), + [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(965), - [anon_sym_default] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(969), - [anon_sym_fn] = ACTIONS(971), - [anon_sym_impl] = ACTIONS(973), - [anon_sym_let] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(977), + [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(979), - [anon_sym_struct] = ACTIONS(981), - [anon_sym_trait] = ACTIONS(983), - [anon_sym_type] = ACTIONS(985), - [anon_sym_union] = ACTIONS(987), - [anon_sym_unsafe] = ACTIONS(989), - [anon_sym_use] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(993), - [anon_sym_extern] = ACTIONS(995), + [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(997), + [anon_sym_COLON_COLON] = ACTIONS(966), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(999), - [sym_super] = ACTIONS(999), - [sym_crate] = ACTIONS(1001), - [sym_metavariable] = ACTIONS(1003), + [sym_self] = ACTIONS(968), + [sym_super] = ACTIONS(968), + [sym_crate] = ACTIONS(970), + [sym_metavariable] = ACTIONS(972), [sym_block_comment] = ACTIONS(3), }, [254] = { @@ -42360,391 +42352,237 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [268] = { - [sym__token_pattern] = STATE(245), - [sym_token_tree_pattern] = STATE(245), - [sym_token_binding_pattern] = STATE(245), - [sym_token_repetition_pattern] = STATE(245), - [sym__never_special_token] = STATE(245), - [sym__literal] = STATE(245), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_pattern_repeat1] = STATE(245), - [sym_identifier] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1152), - [anon_sym_RPAREN] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_u8] = ACTIONS(1150), - [anon_sym_i8] = ACTIONS(1150), - [anon_sym_u16] = ACTIONS(1150), - [anon_sym_i16] = ACTIONS(1150), - [anon_sym_u32] = ACTIONS(1150), - [anon_sym_i32] = ACTIONS(1150), - [anon_sym_u64] = ACTIONS(1150), - [anon_sym_i64] = ACTIONS(1150), - [anon_sym_u128] = ACTIONS(1150), - [anon_sym_i128] = ACTIONS(1150), - [anon_sym_isize] = ACTIONS(1150), - [anon_sym_usize] = ACTIONS(1150), - [anon_sym_f32] = ACTIONS(1150), - [anon_sym_f64] = ACTIONS(1150), - [anon_sym_bool] = ACTIONS(1150), - [anon_sym_str] = ACTIONS(1150), - [anon_sym_char] = ACTIONS(1150), - [aux_sym__never_special_token_token1] = ACTIONS(1150), - [anon_sym_SQUOTE] = ACTIONS(1150), - [anon_sym_as] = ACTIONS(1150), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_await] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1150), - [anon_sym_const] = ACTIONS(1150), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_default] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1150), - [anon_sym_fn] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_impl] = ACTIONS(1150), - [anon_sym_let] = ACTIONS(1150), - [anon_sym_loop] = ACTIONS(1150), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_mod] = ACTIONS(1150), - [anon_sym_pub] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1150), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_struct] = ACTIONS(1150), - [anon_sym_trait] = ACTIONS(1150), - [anon_sym_type] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1150), - [anon_sym_unsafe] = ACTIONS(1150), - [anon_sym_use] = ACTIONS(1150), - [anon_sym_where] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1150), - [sym_mutable_specifier] = ACTIONS(1150), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1168), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [ts_builtin_sym_end] = ACTIONS(1150), + [sym_identifier] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_macro_rules_BANG] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1150), + [anon_sym_STAR] = ACTIONS(1150), + [anon_sym_u8] = ACTIONS(1152), + [anon_sym_i8] = ACTIONS(1152), + [anon_sym_u16] = ACTIONS(1152), + [anon_sym_i16] = ACTIONS(1152), + [anon_sym_u32] = ACTIONS(1152), + [anon_sym_i32] = ACTIONS(1152), + [anon_sym_u64] = ACTIONS(1152), + [anon_sym_i64] = ACTIONS(1152), + [anon_sym_u128] = ACTIONS(1152), + [anon_sym_i128] = ACTIONS(1152), + [anon_sym_isize] = ACTIONS(1152), + [anon_sym_usize] = ACTIONS(1152), + [anon_sym_f32] = ACTIONS(1152), + [anon_sym_f64] = ACTIONS(1152), + [anon_sym_bool] = ACTIONS(1152), + [anon_sym_str] = ACTIONS(1152), + [anon_sym_char] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_async] = ACTIONS(1152), + [anon_sym_break] = ACTIONS(1152), + [anon_sym_const] = ACTIONS(1152), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_default] = ACTIONS(1152), + [anon_sym_enum] = ACTIONS(1152), + [anon_sym_fn] = ACTIONS(1152), + [anon_sym_for] = ACTIONS(1152), + [anon_sym_if] = ACTIONS(1152), + [anon_sym_impl] = ACTIONS(1152), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_loop] = ACTIONS(1152), + [anon_sym_match] = ACTIONS(1152), + [anon_sym_mod] = ACTIONS(1152), + [anon_sym_pub] = ACTIONS(1152), + [anon_sym_return] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_struct] = ACTIONS(1152), + [anon_sym_trait] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_union] = ACTIONS(1152), + [anon_sym_unsafe] = ACTIONS(1152), + [anon_sym_use] = ACTIONS(1152), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_BANG] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1152), + [anon_sym_LT] = ACTIONS(1150), + [anon_sym_COLON_COLON] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_DOT_DOT] = ACTIONS(1150), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PIPE] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_move] = ACTIONS(1152), + [sym_integer_literal] = ACTIONS(1150), + [aux_sym_string_literal_token1] = ACTIONS(1150), + [sym_char_literal] = ACTIONS(1150), + [anon_sym_true] = ACTIONS(1152), + [anon_sym_false] = ACTIONS(1152), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1152), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1150), + [sym_raw_string_literal] = ACTIONS(1150), + [sym_float_literal] = ACTIONS(1150), [sym_block_comment] = ACTIONS(3), }, [269] = { - [ts_builtin_sym_end] = ACTIONS(1170), - [sym_identifier] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym_macro_rules_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1170), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_LBRACK] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_u8] = ACTIONS(1172), - [anon_sym_i8] = ACTIONS(1172), - [anon_sym_u16] = ACTIONS(1172), - [anon_sym_i16] = ACTIONS(1172), - [anon_sym_u32] = ACTIONS(1172), - [anon_sym_i32] = ACTIONS(1172), - [anon_sym_u64] = ACTIONS(1172), - [anon_sym_i64] = ACTIONS(1172), - [anon_sym_u128] = ACTIONS(1172), - [anon_sym_i128] = ACTIONS(1172), - [anon_sym_isize] = ACTIONS(1172), - [anon_sym_usize] = ACTIONS(1172), - [anon_sym_f32] = ACTIONS(1172), - [anon_sym_f64] = ACTIONS(1172), - [anon_sym_bool] = ACTIONS(1172), - [anon_sym_str] = ACTIONS(1172), - [anon_sym_char] = ACTIONS(1172), - [anon_sym_SQUOTE] = ACTIONS(1172), - [anon_sym_async] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_const] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_fn] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_impl] = ACTIONS(1172), - [anon_sym_let] = ACTIONS(1172), - [anon_sym_loop] = ACTIONS(1172), - [anon_sym_match] = ACTIONS(1172), - [anon_sym_mod] = ACTIONS(1172), - [anon_sym_pub] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1172), - [anon_sym_struct] = ACTIONS(1172), - [anon_sym_trait] = ACTIONS(1172), - [anon_sym_type] = ACTIONS(1172), - [anon_sym_union] = ACTIONS(1172), - [anon_sym_unsafe] = ACTIONS(1172), - [anon_sym_use] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(1170), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_LT] = ACTIONS(1170), - [anon_sym_COLON_COLON] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_DOT_DOT] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1170), - [anon_sym_yield] = ACTIONS(1172), - [anon_sym_move] = ACTIONS(1172), - [sym_integer_literal] = ACTIONS(1170), - [aux_sym_string_literal_token1] = ACTIONS(1170), - [sym_char_literal] = ACTIONS(1170), - [anon_sym_true] = ACTIONS(1172), - [anon_sym_false] = ACTIONS(1172), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1172), - [sym_super] = ACTIONS(1172), - [sym_crate] = ACTIONS(1172), - [sym_metavariable] = ACTIONS(1170), - [sym_raw_string_literal] = ACTIONS(1170), - [sym_float_literal] = ACTIONS(1170), + [ts_builtin_sym_end] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_macro_rules_BANG] = ACTIONS(1154), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1154), + [anon_sym_RBRACE] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1154), + [anon_sym_u8] = ACTIONS(1156), + [anon_sym_i8] = ACTIONS(1156), + [anon_sym_u16] = ACTIONS(1156), + [anon_sym_i16] = ACTIONS(1156), + [anon_sym_u32] = ACTIONS(1156), + [anon_sym_i32] = ACTIONS(1156), + [anon_sym_u64] = ACTIONS(1156), + [anon_sym_i64] = ACTIONS(1156), + [anon_sym_u128] = ACTIONS(1156), + [anon_sym_i128] = ACTIONS(1156), + [anon_sym_isize] = ACTIONS(1156), + [anon_sym_usize] = ACTIONS(1156), + [anon_sym_f32] = ACTIONS(1156), + [anon_sym_f64] = ACTIONS(1156), + [anon_sym_bool] = ACTIONS(1156), + [anon_sym_str] = ACTIONS(1156), + [anon_sym_char] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_async] = ACTIONS(1156), + [anon_sym_break] = ACTIONS(1156), + [anon_sym_const] = ACTIONS(1156), + [anon_sym_continue] = ACTIONS(1156), + [anon_sym_default] = ACTIONS(1156), + [anon_sym_enum] = ACTIONS(1156), + [anon_sym_fn] = ACTIONS(1156), + [anon_sym_for] = ACTIONS(1156), + [anon_sym_if] = ACTIONS(1156), + [anon_sym_impl] = ACTIONS(1156), + [anon_sym_let] = ACTIONS(1156), + [anon_sym_loop] = ACTIONS(1156), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_mod] = ACTIONS(1156), + [anon_sym_pub] = ACTIONS(1156), + [anon_sym_return] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(1156), + [anon_sym_struct] = ACTIONS(1156), + [anon_sym_trait] = ACTIONS(1156), + [anon_sym_type] = ACTIONS(1156), + [anon_sym_union] = ACTIONS(1156), + [anon_sym_unsafe] = ACTIONS(1156), + [anon_sym_use] = ACTIONS(1156), + [anon_sym_while] = ACTIONS(1156), + [anon_sym_POUND] = ACTIONS(1154), + [anon_sym_BANG] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1156), + [anon_sym_LT] = ACTIONS(1154), + [anon_sym_COLON_COLON] = ACTIONS(1154), + [anon_sym_AMP] = ACTIONS(1154), + [anon_sym_DOT_DOT] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_move] = ACTIONS(1156), + [sym_integer_literal] = ACTIONS(1154), + [aux_sym_string_literal_token1] = ACTIONS(1154), + [sym_char_literal] = ACTIONS(1154), + [anon_sym_true] = ACTIONS(1156), + [anon_sym_false] = ACTIONS(1156), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1156), + [sym_super] = ACTIONS(1156), + [sym_crate] = ACTIONS(1156), + [sym_metavariable] = ACTIONS(1154), + [sym_raw_string_literal] = ACTIONS(1154), + [sym_float_literal] = ACTIONS(1154), [sym_block_comment] = ACTIONS(3), }, [270] = { - [ts_builtin_sym_end] = ACTIONS(1174), - [sym_identifier] = ACTIONS(1176), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_macro_rules_BANG] = ACTIONS(1174), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_RBRACE] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_u8] = ACTIONS(1176), - [anon_sym_i8] = ACTIONS(1176), - [anon_sym_u16] = ACTIONS(1176), - [anon_sym_i16] = ACTIONS(1176), - [anon_sym_u32] = ACTIONS(1176), - [anon_sym_i32] = ACTIONS(1176), - [anon_sym_u64] = ACTIONS(1176), - [anon_sym_i64] = ACTIONS(1176), - [anon_sym_u128] = ACTIONS(1176), - [anon_sym_i128] = ACTIONS(1176), - [anon_sym_isize] = ACTIONS(1176), - [anon_sym_usize] = ACTIONS(1176), - [anon_sym_f32] = ACTIONS(1176), - [anon_sym_f64] = ACTIONS(1176), - [anon_sym_bool] = ACTIONS(1176), - [anon_sym_str] = ACTIONS(1176), - [anon_sym_char] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1176), - [anon_sym_async] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_const] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1176), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_fn] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_impl] = ACTIONS(1176), - [anon_sym_let] = ACTIONS(1176), - [anon_sym_loop] = ACTIONS(1176), - [anon_sym_match] = ACTIONS(1176), - [anon_sym_mod] = ACTIONS(1176), - [anon_sym_pub] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1176), - [anon_sym_struct] = ACTIONS(1176), - [anon_sym_trait] = ACTIONS(1176), - [anon_sym_type] = ACTIONS(1176), - [anon_sym_union] = ACTIONS(1176), - [anon_sym_unsafe] = ACTIONS(1176), - [anon_sym_use] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_POUND] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_extern] = ACTIONS(1176), - [anon_sym_LT] = ACTIONS(1174), - [anon_sym_COLON_COLON] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1174), - [anon_sym_DOT_DOT] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_PIPE] = ACTIONS(1174), - [anon_sym_yield] = ACTIONS(1176), - [anon_sym_move] = ACTIONS(1176), - [sym_integer_literal] = ACTIONS(1174), - [aux_sym_string_literal_token1] = ACTIONS(1174), - [sym_char_literal] = ACTIONS(1174), - [anon_sym_true] = ACTIONS(1176), - [anon_sym_false] = ACTIONS(1176), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1176), - [sym_super] = ACTIONS(1176), - [sym_crate] = ACTIONS(1176), - [sym_metavariable] = ACTIONS(1174), - [sym_raw_string_literal] = ACTIONS(1174), - [sym_float_literal] = ACTIONS(1174), - [sym_block_comment] = ACTIONS(3), - }, - [271] = { - [sym__token_pattern] = STATE(245), - [sym_token_tree_pattern] = STATE(245), - [sym_token_binding_pattern] = STATE(245), - [sym_token_repetition_pattern] = STATE(245), - [sym__never_special_token] = STATE(245), - [sym__literal] = STATE(245), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_pattern_repeat1] = STATE(245), - [sym_identifier] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_RBRACE] = ACTIONS(1154), + [ts_builtin_sym_end] = ACTIONS(1158), + [sym_identifier] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1158), + [anon_sym_macro_rules_BANG] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_RBRACE] = ACTIONS(1158), [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_u8] = ACTIONS(1150), - [anon_sym_i8] = ACTIONS(1150), - [anon_sym_u16] = ACTIONS(1150), - [anon_sym_i16] = ACTIONS(1150), - [anon_sym_u32] = ACTIONS(1150), - [anon_sym_i32] = ACTIONS(1150), - [anon_sym_u64] = ACTIONS(1150), - [anon_sym_i64] = ACTIONS(1150), - [anon_sym_u128] = ACTIONS(1150), - [anon_sym_i128] = ACTIONS(1150), - [anon_sym_isize] = ACTIONS(1150), - [anon_sym_usize] = ACTIONS(1150), - [anon_sym_f32] = ACTIONS(1150), - [anon_sym_f64] = ACTIONS(1150), - [anon_sym_bool] = ACTIONS(1150), - [anon_sym_str] = ACTIONS(1150), - [anon_sym_char] = ACTIONS(1150), - [aux_sym__never_special_token_token1] = ACTIONS(1150), - [anon_sym_SQUOTE] = ACTIONS(1150), - [anon_sym_as] = ACTIONS(1150), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_await] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1150), - [anon_sym_const] = ACTIONS(1150), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_default] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1150), - [anon_sym_fn] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_impl] = ACTIONS(1150), - [anon_sym_let] = ACTIONS(1150), - [anon_sym_loop] = ACTIONS(1150), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_mod] = ACTIONS(1150), - [anon_sym_pub] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1150), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_struct] = ACTIONS(1150), - [anon_sym_trait] = ACTIONS(1150), - [anon_sym_type] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1150), - [anon_sym_unsafe] = ACTIONS(1150), - [anon_sym_use] = ACTIONS(1150), - [anon_sym_where] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1150), - [sym_mutable_specifier] = ACTIONS(1150), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1168), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), - [sym_block_comment] = ACTIONS(3), - }, - [272] = { - [ts_builtin_sym_end] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1178), - [anon_sym_macro_rules_BANG] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1178), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_u8] = ACTIONS(1180), - [anon_sym_i8] = ACTIONS(1180), - [anon_sym_u16] = ACTIONS(1180), - [anon_sym_i16] = ACTIONS(1180), - [anon_sym_u32] = ACTIONS(1180), - [anon_sym_i32] = ACTIONS(1180), - [anon_sym_u64] = ACTIONS(1180), - [anon_sym_i64] = ACTIONS(1180), - [anon_sym_u128] = ACTIONS(1180), - [anon_sym_i128] = ACTIONS(1180), - [anon_sym_isize] = ACTIONS(1180), - [anon_sym_usize] = ACTIONS(1180), - [anon_sym_f32] = ACTIONS(1180), - [anon_sym_f64] = ACTIONS(1180), - [anon_sym_bool] = ACTIONS(1180), - [anon_sym_str] = ACTIONS(1180), - [anon_sym_char] = ACTIONS(1180), - [anon_sym_SQUOTE] = ACTIONS(1180), - [anon_sym_async] = ACTIONS(1180), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_const] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_default] = ACTIONS(1180), - [anon_sym_enum] = ACTIONS(1180), - [anon_sym_fn] = ACTIONS(1180), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1180), - [anon_sym_let] = ACTIONS(1180), - [anon_sym_loop] = ACTIONS(1180), - [anon_sym_match] = ACTIONS(1180), - [anon_sym_mod] = ACTIONS(1180), - [anon_sym_pub] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_static] = ACTIONS(1180), - [anon_sym_struct] = ACTIONS(1180), - [anon_sym_trait] = ACTIONS(1180), - [anon_sym_type] = ACTIONS(1180), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1180), - [anon_sym_use] = ACTIONS(1180), - [anon_sym_while] = ACTIONS(1180), - [anon_sym_POUND] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_extern] = ACTIONS(1180), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_COLON_COLON] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_PIPE] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_move] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1178), - [aux_sym_string_literal_token1] = ACTIONS(1178), - [sym_char_literal] = ACTIONS(1178), - [anon_sym_true] = ACTIONS(1180), - [anon_sym_false] = ACTIONS(1180), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1180), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1178), - [sym_raw_string_literal] = ACTIONS(1178), - [sym_float_literal] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_async] = ACTIONS(1160), + [anon_sym_break] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1160), + [anon_sym_continue] = ACTIONS(1160), + [anon_sym_default] = ACTIONS(1160), + [anon_sym_enum] = ACTIONS(1160), + [anon_sym_fn] = ACTIONS(1160), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1160), + [anon_sym_impl] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_loop] = ACTIONS(1160), + [anon_sym_match] = ACTIONS(1160), + [anon_sym_mod] = ACTIONS(1160), + [anon_sym_pub] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_struct] = ACTIONS(1160), + [anon_sym_trait] = ACTIONS(1160), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_union] = ACTIONS(1160), + [anon_sym_unsafe] = ACTIONS(1160), + [anon_sym_use] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1160), + [anon_sym_POUND] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1158), + [anon_sym_COLON_COLON] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1158), + [anon_sym_DOT_DOT] = ACTIONS(1158), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_PIPE] = ACTIONS(1158), + [anon_sym_yield] = ACTIONS(1160), + [anon_sym_move] = ACTIONS(1160), + [sym_integer_literal] = ACTIONS(1158), + [aux_sym_string_literal_token1] = ACTIONS(1158), + [sym_char_literal] = ACTIONS(1158), + [anon_sym_true] = ACTIONS(1160), + [anon_sym_false] = ACTIONS(1160), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1160), + [sym_super] = ACTIONS(1160), + [sym_crate] = ACTIONS(1160), + [sym_metavariable] = ACTIONS(1158), + [sym_raw_string_literal] = ACTIONS(1158), + [sym_float_literal] = ACTIONS(1158), [sym_block_comment] = ACTIONS(3), }, - [273] = { + [271] = { [sym_attribute_item] = STATE(548), [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), @@ -42752,7 +42590,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_invocation] = STATE(2349), [sym_scoped_identifier] = STATE(1578), [sym_scoped_type_identifier] = STATE(1974), - [sym_match_arm] = STATE(499), + [sym_match_arm] = STATE(487), [sym_last_match_arm] = STATE(2418), [sym_match_pattern] = STATE(2359), [sym_const_block] = STATE(1473), @@ -42773,11 +42611,141 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [aux_sym_enum_variant_list_repeat1] = STATE(548), - [aux_sym_match_block_repeat1] = STATE(499), - [sym_identifier] = ACTIONS(1182), + [aux_sym_match_block_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [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(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [272] = { + [ts_builtin_sym_end] = ACTIONS(1184), + [sym_identifier] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1184), + [anon_sym_macro_rules_BANG] = ACTIONS(1184), [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_RBRACE] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1184), + [anon_sym_STAR] = ACTIONS(1184), + [anon_sym_u8] = ACTIONS(1186), + [anon_sym_i8] = ACTIONS(1186), + [anon_sym_u16] = ACTIONS(1186), + [anon_sym_i16] = ACTIONS(1186), + [anon_sym_u32] = ACTIONS(1186), + [anon_sym_i32] = ACTIONS(1186), + [anon_sym_u64] = ACTIONS(1186), + [anon_sym_i64] = ACTIONS(1186), + [anon_sym_u128] = ACTIONS(1186), + [anon_sym_i128] = ACTIONS(1186), + [anon_sym_isize] = ACTIONS(1186), + [anon_sym_usize] = ACTIONS(1186), + [anon_sym_f32] = ACTIONS(1186), + [anon_sym_f64] = ACTIONS(1186), + [anon_sym_bool] = ACTIONS(1186), + [anon_sym_str] = ACTIONS(1186), + [anon_sym_char] = ACTIONS(1186), + [anon_sym_SQUOTE] = ACTIONS(1186), + [anon_sym_async] = ACTIONS(1186), + [anon_sym_break] = ACTIONS(1186), + [anon_sym_const] = ACTIONS(1186), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_default] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(1186), + [anon_sym_fn] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1186), + [anon_sym_if] = ACTIONS(1186), + [anon_sym_impl] = ACTIONS(1186), + [anon_sym_let] = ACTIONS(1186), + [anon_sym_loop] = ACTIONS(1186), + [anon_sym_match] = ACTIONS(1186), + [anon_sym_mod] = ACTIONS(1186), + [anon_sym_pub] = ACTIONS(1186), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_struct] = ACTIONS(1186), + [anon_sym_trait] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_union] = ACTIONS(1186), + [anon_sym_unsafe] = ACTIONS(1186), + [anon_sym_use] = ACTIONS(1186), + [anon_sym_while] = ACTIONS(1186), + [anon_sym_POUND] = ACTIONS(1184), + [anon_sym_BANG] = ACTIONS(1184), + [anon_sym_extern] = ACTIONS(1186), + [anon_sym_LT] = ACTIONS(1184), + [anon_sym_COLON_COLON] = ACTIONS(1184), + [anon_sym_AMP] = ACTIONS(1184), + [anon_sym_DOT_DOT] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(1184), + [anon_sym_PIPE] = ACTIONS(1184), + [anon_sym_yield] = ACTIONS(1186), + [anon_sym_move] = ACTIONS(1186), + [sym_integer_literal] = ACTIONS(1184), + [aux_sym_string_literal_token1] = ACTIONS(1184), + [sym_char_literal] = ACTIONS(1184), + [anon_sym_true] = ACTIONS(1186), + [anon_sym_false] = ACTIONS(1186), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1186), + [sym_super] = ACTIONS(1186), + [sym_crate] = ACTIONS(1186), + [sym_metavariable] = ACTIONS(1184), + [sym_raw_string_literal] = ACTIONS(1184), + [sym_float_literal] = ACTIONS(1184), + [sym_block_comment] = ACTIONS(3), + }, + [273] = { + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_identifier] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym_macro_rules_BANG] = ACTIONS(1188), + [anon_sym_LPAREN] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1188), [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1188), [anon_sym_u8] = ACTIONS(1190), [anon_sym_i8] = ACTIONS(1190), [anon_sym_u16] = ACTIONS(1190), @@ -42795,33 +42763,288 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1190), [anon_sym_str] = ACTIONS(1190), [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_fn] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_impl] = ACTIONS(1190), + [anon_sym_let] = ACTIONS(1190), + [anon_sym_loop] = ACTIONS(1190), + [anon_sym_match] = ACTIONS(1190), + [anon_sym_mod] = ACTIONS(1190), + [anon_sym_pub] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_trait] = ACTIONS(1190), + [anon_sym_type] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_unsafe] = ACTIONS(1190), + [anon_sym_use] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_POUND] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(1188), + [anon_sym_COLON_COLON] = ACTIONS(1188), + [anon_sym_AMP] = ACTIONS(1188), + [anon_sym_DOT_DOT] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1188), + [anon_sym_PIPE] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_move] = ACTIONS(1190), + [sym_integer_literal] = ACTIONS(1188), + [aux_sym_string_literal_token1] = ACTIONS(1188), + [sym_char_literal] = ACTIONS(1188), + [anon_sym_true] = ACTIONS(1190), + [anon_sym_false] = ACTIONS(1190), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1190), + [sym_super] = ACTIONS(1190), + [sym_crate] = ACTIONS(1190), + [sym_metavariable] = ACTIONS(1188), + [sym_raw_string_literal] = ACTIONS(1188), + [sym_float_literal] = ACTIONS(1188), + [sym_block_comment] = ACTIONS(3), + }, + [274] = { + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1194), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_macro_rules_BANG] = ACTIONS(1192), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_u8] = ACTIONS(1194), + [anon_sym_i8] = ACTIONS(1194), + [anon_sym_u16] = ACTIONS(1194), + [anon_sym_i16] = ACTIONS(1194), + [anon_sym_u32] = ACTIONS(1194), + [anon_sym_i32] = ACTIONS(1194), + [anon_sym_u64] = ACTIONS(1194), + [anon_sym_i64] = ACTIONS(1194), + [anon_sym_u128] = ACTIONS(1194), + [anon_sym_i128] = ACTIONS(1194), + [anon_sym_isize] = ACTIONS(1194), + [anon_sym_usize] = ACTIONS(1194), + [anon_sym_f32] = ACTIONS(1194), + [anon_sym_f64] = ACTIONS(1194), + [anon_sym_bool] = ACTIONS(1194), + [anon_sym_str] = ACTIONS(1194), + [anon_sym_char] = ACTIONS(1194), + [anon_sym_SQUOTE] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(1194), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_const] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), [anon_sym_default] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_fn] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_impl] = ACTIONS(1194), + [anon_sym_let] = ACTIONS(1194), + [anon_sym_loop] = ACTIONS(1194), + [anon_sym_match] = ACTIONS(1194), + [anon_sym_mod] = ACTIONS(1194), + [anon_sym_pub] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_struct] = ACTIONS(1194), + [anon_sym_trait] = ACTIONS(1194), + [anon_sym_type] = ACTIONS(1194), [anon_sym_union] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(1194), + [anon_sym_use] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [anon_sym_POUND] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_extern] = ACTIONS(1194), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_COLON_COLON] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_DOT_DOT] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_PIPE] = ACTIONS(1192), + [anon_sym_yield] = ACTIONS(1194), + [anon_sym_move] = ACTIONS(1194), + [sym_integer_literal] = ACTIONS(1192), + [aux_sym_string_literal_token1] = ACTIONS(1192), + [sym_char_literal] = ACTIONS(1192), + [anon_sym_true] = ACTIONS(1194), + [anon_sym_false] = ACTIONS(1194), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1194), + [sym_super] = ACTIONS(1194), + [sym_crate] = ACTIONS(1194), + [sym_metavariable] = ACTIONS(1192), + [sym_raw_string_literal] = ACTIONS(1192), + [sym_float_literal] = ACTIONS(1192), + [sym_block_comment] = ACTIONS(3), + }, + [275] = { + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_identifier] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_macro_rules_BANG] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_u8] = ACTIONS(1198), + [anon_sym_i8] = ACTIONS(1198), + [anon_sym_u16] = ACTIONS(1198), + [anon_sym_i16] = ACTIONS(1198), + [anon_sym_u32] = ACTIONS(1198), + [anon_sym_i32] = ACTIONS(1198), + [anon_sym_u64] = ACTIONS(1198), + [anon_sym_i64] = ACTIONS(1198), + [anon_sym_u128] = ACTIONS(1198), + [anon_sym_i128] = ACTIONS(1198), + [anon_sym_isize] = ACTIONS(1198), + [anon_sym_usize] = ACTIONS(1198), + [anon_sym_f32] = ACTIONS(1198), + [anon_sym_f64] = ACTIONS(1198), + [anon_sym_bool] = ACTIONS(1198), + [anon_sym_str] = ACTIONS(1198), + [anon_sym_char] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_async] = ACTIONS(1198), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_const] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_default] = ACTIONS(1198), + [anon_sym_enum] = ACTIONS(1198), + [anon_sym_fn] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_impl] = ACTIONS(1198), + [anon_sym_let] = ACTIONS(1198), + [anon_sym_loop] = ACTIONS(1198), + [anon_sym_match] = ACTIONS(1198), + [anon_sym_mod] = ACTIONS(1198), + [anon_sym_pub] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_struct] = ACTIONS(1198), + [anon_sym_trait] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(1198), + [anon_sym_union] = ACTIONS(1198), + [anon_sym_unsafe] = ACTIONS(1198), + [anon_sym_use] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [anon_sym_POUND] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_extern] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1196), [anon_sym_COLON_COLON] = ACTIONS(1196), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), - [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(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_move] = ACTIONS(1198), + [sym_integer_literal] = ACTIONS(1196), + [aux_sym_string_literal_token1] = ACTIONS(1196), + [sym_char_literal] = ACTIONS(1196), + [anon_sym_true] = ACTIONS(1198), + [anon_sym_false] = ACTIONS(1198), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1198), + [sym_super] = ACTIONS(1198), + [sym_crate] = ACTIONS(1198), + [sym_metavariable] = ACTIONS(1196), + [sym_raw_string_literal] = ACTIONS(1196), + [sym_float_literal] = ACTIONS(1196), [sym_block_comment] = ACTIONS(3), }, - [274] = { + [276] = { + [ts_builtin_sym_end] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym_macro_rules_BANG] = ACTIONS(1200), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_RBRACE] = ACTIONS(1200), + [anon_sym_LBRACK] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1200), + [anon_sym_u8] = ACTIONS(1202), + [anon_sym_i8] = ACTIONS(1202), + [anon_sym_u16] = ACTIONS(1202), + [anon_sym_i16] = ACTIONS(1202), + [anon_sym_u32] = ACTIONS(1202), + [anon_sym_i32] = ACTIONS(1202), + [anon_sym_u64] = ACTIONS(1202), + [anon_sym_i64] = ACTIONS(1202), + [anon_sym_u128] = ACTIONS(1202), + [anon_sym_i128] = ACTIONS(1202), + [anon_sym_isize] = ACTIONS(1202), + [anon_sym_usize] = ACTIONS(1202), + [anon_sym_f32] = ACTIONS(1202), + [anon_sym_f64] = ACTIONS(1202), + [anon_sym_bool] = ACTIONS(1202), + [anon_sym_str] = ACTIONS(1202), + [anon_sym_char] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_async] = ACTIONS(1202), + [anon_sym_break] = ACTIONS(1202), + [anon_sym_const] = ACTIONS(1202), + [anon_sym_continue] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1202), + [anon_sym_enum] = ACTIONS(1202), + [anon_sym_fn] = ACTIONS(1202), + [anon_sym_for] = ACTIONS(1202), + [anon_sym_if] = ACTIONS(1202), + [anon_sym_impl] = ACTIONS(1202), + [anon_sym_let] = ACTIONS(1202), + [anon_sym_loop] = ACTIONS(1202), + [anon_sym_match] = ACTIONS(1202), + [anon_sym_mod] = ACTIONS(1202), + [anon_sym_pub] = ACTIONS(1202), + [anon_sym_return] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_struct] = ACTIONS(1202), + [anon_sym_trait] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1202), + [anon_sym_union] = ACTIONS(1202), + [anon_sym_unsafe] = ACTIONS(1202), + [anon_sym_use] = ACTIONS(1202), + [anon_sym_while] = ACTIONS(1202), + [anon_sym_POUND] = ACTIONS(1200), + [anon_sym_BANG] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1202), + [anon_sym_LT] = ACTIONS(1200), + [anon_sym_COLON_COLON] = ACTIONS(1200), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_DOT_DOT] = ACTIONS(1200), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PIPE] = ACTIONS(1200), + [anon_sym_yield] = ACTIONS(1202), + [anon_sym_move] = ACTIONS(1202), + [sym_integer_literal] = ACTIONS(1200), + [aux_sym_string_literal_token1] = ACTIONS(1200), + [sym_char_literal] = ACTIONS(1200), + [anon_sym_true] = ACTIONS(1202), + [anon_sym_false] = ACTIONS(1202), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_crate] = ACTIONS(1202), + [sym_metavariable] = ACTIONS(1200), + [sym_raw_string_literal] = ACTIONS(1200), + [sym_float_literal] = ACTIONS(1200), + [sym_block_comment] = ACTIONS(3), + }, + [277] = { [ts_builtin_sym_end] = ACTIONS(1204), [sym_identifier] = ACTIONS(1206), [anon_sym_SEMI] = ACTIONS(1204), @@ -42898,84 +43121,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1204), [sym_block_comment] = ACTIONS(3), }, - [275] = { - [sym__token_pattern] = STATE(245), - [sym_token_tree_pattern] = STATE(245), - [sym_token_binding_pattern] = STATE(245), - [sym_token_repetition_pattern] = STATE(245), - [sym__never_special_token] = STATE(245), - [sym__literal] = STATE(245), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_pattern_repeat1] = STATE(245), - [sym_identifier] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_RBRACK] = ACTIONS(1154), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_u8] = ACTIONS(1150), - [anon_sym_i8] = ACTIONS(1150), - [anon_sym_u16] = ACTIONS(1150), - [anon_sym_i16] = ACTIONS(1150), - [anon_sym_u32] = ACTIONS(1150), - [anon_sym_i32] = ACTIONS(1150), - [anon_sym_u64] = ACTIONS(1150), - [anon_sym_i64] = ACTIONS(1150), - [anon_sym_u128] = ACTIONS(1150), - [anon_sym_i128] = ACTIONS(1150), - [anon_sym_isize] = ACTIONS(1150), - [anon_sym_usize] = ACTIONS(1150), - [anon_sym_f32] = ACTIONS(1150), - [anon_sym_f64] = ACTIONS(1150), - [anon_sym_bool] = ACTIONS(1150), - [anon_sym_str] = ACTIONS(1150), - [anon_sym_char] = ACTIONS(1150), - [aux_sym__never_special_token_token1] = ACTIONS(1150), - [anon_sym_SQUOTE] = ACTIONS(1150), - [anon_sym_as] = ACTIONS(1150), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_await] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1150), - [anon_sym_const] = ACTIONS(1150), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_default] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1150), - [anon_sym_fn] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_impl] = ACTIONS(1150), - [anon_sym_let] = ACTIONS(1150), - [anon_sym_loop] = ACTIONS(1150), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_mod] = ACTIONS(1150), - [anon_sym_pub] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1150), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_struct] = ACTIONS(1150), - [anon_sym_trait] = ACTIONS(1150), - [anon_sym_type] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1150), - [anon_sym_unsafe] = ACTIONS(1150), - [anon_sym_use] = ACTIONS(1150), - [anon_sym_where] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1150), - [sym_mutable_specifier] = ACTIONS(1150), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1168), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), - [sym_block_comment] = ACTIONS(3), - }, - [276] = { + [278] = { [ts_builtin_sym_end] = ACTIONS(1208), [sym_identifier] = ACTIONS(1210), [anon_sym_SEMI] = ACTIONS(1208), @@ -43052,7 +43198,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1208), [sym_block_comment] = ACTIONS(3), }, - [277] = { + [279] = { [ts_builtin_sym_end] = ACTIONS(1212), [sym_identifier] = ACTIONS(1214), [anon_sym_SEMI] = ACTIONS(1212), @@ -43129,7 +43275,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1212), [sym_block_comment] = ACTIONS(3), }, - [278] = { + [280] = { [ts_builtin_sym_end] = ACTIONS(1216), [sym_identifier] = ACTIONS(1218), [anon_sym_SEMI] = ACTIONS(1216), @@ -43206,7 +43352,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1216), [sym_block_comment] = ACTIONS(3), }, - [279] = { + [281] = { [ts_builtin_sym_end] = ACTIONS(1220), [sym_identifier] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1220), @@ -43283,7 +43429,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1220), [sym_block_comment] = ACTIONS(3), }, - [280] = { + [282] = { [ts_builtin_sym_end] = ACTIONS(1224), [sym_identifier] = ACTIONS(1226), [anon_sym_SEMI] = ACTIONS(1224), @@ -43360,7 +43506,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1224), [sym_block_comment] = ACTIONS(3), }, - [281] = { + [283] = { [ts_builtin_sym_end] = ACTIONS(1228), [sym_identifier] = ACTIONS(1230), [anon_sym_SEMI] = ACTIONS(1228), @@ -43437,7 +43583,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1228), [sym_block_comment] = ACTIONS(3), }, - [282] = { + [284] = { [ts_builtin_sym_end] = ACTIONS(1232), [sym_identifier] = ACTIONS(1234), [anon_sym_SEMI] = ACTIONS(1232), @@ -43514,7 +43660,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1232), [sym_block_comment] = ACTIONS(3), }, - [283] = { + [285] = { [ts_builtin_sym_end] = ACTIONS(1236), [sym_identifier] = ACTIONS(1238), [anon_sym_SEMI] = ACTIONS(1236), @@ -43591,7 +43737,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1236), [sym_block_comment] = ACTIONS(3), }, - [284] = { + [286] = { [ts_builtin_sym_end] = ACTIONS(1240), [sym_identifier] = ACTIONS(1242), [anon_sym_SEMI] = ACTIONS(1240), @@ -43668,7 +43814,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1240), [sym_block_comment] = ACTIONS(3), }, - [285] = { + [287] = { [ts_builtin_sym_end] = ACTIONS(1244), [sym_identifier] = ACTIONS(1246), [anon_sym_SEMI] = ACTIONS(1244), @@ -43745,7 +43891,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [286] = { + [288] = { [ts_builtin_sym_end] = ACTIONS(1248), [sym_identifier] = ACTIONS(1250), [anon_sym_SEMI] = ACTIONS(1248), @@ -43822,7 +43968,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1248), [sym_block_comment] = ACTIONS(3), }, - [287] = { + [289] = { [ts_builtin_sym_end] = ACTIONS(1252), [sym_identifier] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(1252), @@ -43899,7 +44045,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1252), [sym_block_comment] = ACTIONS(3), }, - [288] = { + [290] = { [ts_builtin_sym_end] = ACTIONS(1256), [sym_identifier] = ACTIONS(1258), [anon_sym_SEMI] = ACTIONS(1256), @@ -43976,7 +44122,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1256), [sym_block_comment] = ACTIONS(3), }, - [289] = { + [291] = { [ts_builtin_sym_end] = ACTIONS(1260), [sym_identifier] = ACTIONS(1262), [anon_sym_SEMI] = ACTIONS(1260), @@ -44053,7 +44199,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1260), [sym_block_comment] = ACTIONS(3), }, - [290] = { + [292] = { [ts_builtin_sym_end] = ACTIONS(1264), [sym_identifier] = ACTIONS(1266), [anon_sym_SEMI] = ACTIONS(1264), @@ -44130,7 +44276,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1264), [sym_block_comment] = ACTIONS(3), }, - [291] = { + [293] = { [ts_builtin_sym_end] = ACTIONS(1268), [sym_identifier] = ACTIONS(1270), [anon_sym_SEMI] = ACTIONS(1268), @@ -44207,7 +44353,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1268), [sym_block_comment] = ACTIONS(3), }, - [292] = { + [294] = { [ts_builtin_sym_end] = ACTIONS(1272), [sym_identifier] = ACTIONS(1274), [anon_sym_SEMI] = ACTIONS(1272), @@ -44284,7 +44430,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1272), [sym_block_comment] = ACTIONS(3), }, - [293] = { + [295] = { [ts_builtin_sym_end] = ACTIONS(1276), [sym_identifier] = ACTIONS(1278), [anon_sym_SEMI] = ACTIONS(1276), @@ -44361,7 +44507,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1276), [sym_block_comment] = ACTIONS(3), }, - [294] = { + [296] = { [ts_builtin_sym_end] = ACTIONS(1280), [sym_identifier] = ACTIONS(1282), [anon_sym_SEMI] = ACTIONS(1280), @@ -44438,7 +44584,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1280), [sym_block_comment] = ACTIONS(3), }, - [295] = { + [297] = { [ts_builtin_sym_end] = ACTIONS(1284), [sym_identifier] = ACTIONS(1286), [anon_sym_SEMI] = ACTIONS(1284), @@ -44515,7 +44661,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1284), [sym_block_comment] = ACTIONS(3), }, - [296] = { + [298] = { [ts_builtin_sym_end] = ACTIONS(1288), [sym_identifier] = ACTIONS(1290), [anon_sym_SEMI] = ACTIONS(1288), @@ -44592,7 +44738,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1288), [sym_block_comment] = ACTIONS(3), }, - [297] = { + [299] = { [ts_builtin_sym_end] = ACTIONS(1292), [sym_identifier] = ACTIONS(1294), [anon_sym_SEMI] = ACTIONS(1292), @@ -44669,7 +44815,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1292), [sym_block_comment] = ACTIONS(3), }, - [298] = { + [300] = { [ts_builtin_sym_end] = ACTIONS(1296), [sym_identifier] = ACTIONS(1298), [anon_sym_SEMI] = ACTIONS(1296), @@ -44746,7 +44892,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1296), [sym_block_comment] = ACTIONS(3), }, - [299] = { + [301] = { [ts_builtin_sym_end] = ACTIONS(1300), [sym_identifier] = ACTIONS(1302), [anon_sym_SEMI] = ACTIONS(1300), @@ -44823,7 +44969,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1300), [sym_block_comment] = ACTIONS(3), }, - [300] = { + [302] = { [ts_builtin_sym_end] = ACTIONS(1304), [sym_identifier] = ACTIONS(1306), [anon_sym_SEMI] = ACTIONS(1304), @@ -44900,7 +45046,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1304), [sym_block_comment] = ACTIONS(3), }, - [301] = { + [303] = { [ts_builtin_sym_end] = ACTIONS(1308), [sym_identifier] = ACTIONS(1310), [anon_sym_SEMI] = ACTIONS(1308), @@ -44977,4473 +45123,4396 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1308), [sym_block_comment] = ACTIONS(3), }, - [302] = { - [sym_token_tree] = STATE(302), - [sym_token_repetition] = STATE(302), - [sym__never_special_token] = STATE(302), - [sym__literal] = STATE(302), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_repeat1] = STATE(302), - [sym_identifier] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1315), - [anon_sym_RPAREN] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_RBRACK] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1326), - [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), - [aux_sym__never_special_token_token1] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_await] = 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_where] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [sym_mutable_specifier] = ACTIONS(1312), - [sym_integer_literal] = ACTIONS(1329), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1329), - [anon_sym_true] = ACTIONS(1335), - [anon_sym_false] = ACTIONS(1335), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_crate] = ACTIONS(1312), - [sym_metavariable] = ACTIONS(1338), - [sym_raw_string_literal] = ACTIONS(1329), - [sym_float_literal] = ACTIONS(1329), - [sym_block_comment] = ACTIONS(3), - }, - [303] = { - [sym__never_special_token] = STATE(303), - [sym_delim_token_tree] = STATE(303), - [sym__delim_tokens] = STATE(303), - [sym__non_delim_token] = STATE(303), - [sym__literal] = STATE(303), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(1341), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_RPAREN] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1349), - [anon_sym_RBRACE] = ACTIONS(1347), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_RBRACK] = ACTIONS(1347), - [anon_sym_DOLLAR] = ACTIONS(1355), - [anon_sym_u8] = ACTIONS(1341), - [anon_sym_i8] = ACTIONS(1341), - [anon_sym_u16] = ACTIONS(1341), - [anon_sym_i16] = ACTIONS(1341), - [anon_sym_u32] = ACTIONS(1341), - [anon_sym_i32] = ACTIONS(1341), - [anon_sym_u64] = ACTIONS(1341), - [anon_sym_i64] = ACTIONS(1341), - [anon_sym_u128] = ACTIONS(1341), - [anon_sym_i128] = ACTIONS(1341), - [anon_sym_isize] = ACTIONS(1341), - [anon_sym_usize] = ACTIONS(1341), - [anon_sym_f32] = ACTIONS(1341), - [anon_sym_f64] = ACTIONS(1341), - [anon_sym_bool] = ACTIONS(1341), - [anon_sym_str] = ACTIONS(1341), - [anon_sym_char] = ACTIONS(1341), - [aux_sym__never_special_token_token1] = ACTIONS(1341), - [anon_sym_SQUOTE] = ACTIONS(1341), - [anon_sym_as] = ACTIONS(1341), - [anon_sym_async] = ACTIONS(1341), - [anon_sym_await] = ACTIONS(1341), - [anon_sym_break] = ACTIONS(1341), - [anon_sym_const] = ACTIONS(1341), - [anon_sym_continue] = ACTIONS(1341), - [anon_sym_default] = ACTIONS(1341), - [anon_sym_enum] = ACTIONS(1341), - [anon_sym_fn] = ACTIONS(1341), - [anon_sym_for] = ACTIONS(1341), - [anon_sym_if] = ACTIONS(1341), - [anon_sym_impl] = ACTIONS(1341), - [anon_sym_let] = ACTIONS(1341), - [anon_sym_loop] = ACTIONS(1341), - [anon_sym_match] = ACTIONS(1341), - [anon_sym_mod] = ACTIONS(1341), - [anon_sym_pub] = ACTIONS(1341), - [anon_sym_return] = ACTIONS(1341), - [anon_sym_static] = ACTIONS(1341), - [anon_sym_struct] = ACTIONS(1341), - [anon_sym_trait] = ACTIONS(1341), - [anon_sym_type] = ACTIONS(1341), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_unsafe] = ACTIONS(1341), - [anon_sym_use] = ACTIONS(1341), - [anon_sym_where] = ACTIONS(1341), - [anon_sym_while] = ACTIONS(1341), - [sym_mutable_specifier] = ACTIONS(1341), - [sym_integer_literal] = ACTIONS(1358), - [aux_sym_string_literal_token1] = ACTIONS(1361), - [sym_char_literal] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1364), - [anon_sym_false] = ACTIONS(1364), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(1341), - [sym_super] = ACTIONS(1341), - [sym_crate] = ACTIONS(1341), - [sym_raw_string_literal] = ACTIONS(1358), - [sym_float_literal] = ACTIONS(1358), - [sym_block_comment] = ACTIONS(3), - }, [304] = { - [ts_builtin_sym_end] = ACTIONS(1367), - [sym_identifier] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_macro_rules_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u128] = ACTIONS(1369), - [anon_sym_i128] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_str] = ACTIONS(1369), - [anon_sym_char] = ACTIONS(1369), - [anon_sym_SQUOTE] = ACTIONS(1369), - [anon_sym_async] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_default] = ACTIONS(1369), - [anon_sym_enum] = ACTIONS(1369), - [anon_sym_fn] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_impl] = ACTIONS(1369), - [anon_sym_let] = ACTIONS(1369), - [anon_sym_loop] = ACTIONS(1369), - [anon_sym_match] = ACTIONS(1369), - [anon_sym_mod] = ACTIONS(1369), - [anon_sym_pub] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_static] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_trait] = ACTIONS(1369), - [anon_sym_type] = ACTIONS(1369), - [anon_sym_union] = ACTIONS(1369), - [anon_sym_unsafe] = ACTIONS(1369), - [anon_sym_use] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_POUND] = ACTIONS(1367), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_DOT_DOT] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_yield] = ACTIONS(1369), - [anon_sym_move] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1367), - [aux_sym_string_literal_token1] = ACTIONS(1367), - [sym_char_literal] = ACTIONS(1367), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1369), - [sym_super] = ACTIONS(1369), - [sym_crate] = ACTIONS(1369), - [sym_metavariable] = ACTIONS(1367), - [sym_raw_string_literal] = ACTIONS(1367), - [sym_float_literal] = ACTIONS(1367), + [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(1371), - [sym_identifier] = ACTIONS(1373), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_macro_rules_BANG] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1373), - [anon_sym_i8] = ACTIONS(1373), - [anon_sym_u16] = ACTIONS(1373), - [anon_sym_i16] = ACTIONS(1373), - [anon_sym_u32] = ACTIONS(1373), - [anon_sym_i32] = ACTIONS(1373), - [anon_sym_u64] = ACTIONS(1373), - [anon_sym_i64] = ACTIONS(1373), - [anon_sym_u128] = ACTIONS(1373), - [anon_sym_i128] = ACTIONS(1373), - [anon_sym_isize] = ACTIONS(1373), - [anon_sym_usize] = ACTIONS(1373), - [anon_sym_f32] = ACTIONS(1373), - [anon_sym_f64] = ACTIONS(1373), - [anon_sym_bool] = ACTIONS(1373), - [anon_sym_str] = ACTIONS(1373), - [anon_sym_char] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1373), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_break] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(1373), - [anon_sym_default] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1373), - [anon_sym_fn] = ACTIONS(1373), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1373), - [anon_sym_impl] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_loop] = ACTIONS(1373), - [anon_sym_match] = ACTIONS(1373), - [anon_sym_mod] = ACTIONS(1373), - [anon_sym_pub] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1373), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_trait] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_union] = ACTIONS(1373), - [anon_sym_unsafe] = ACTIONS(1373), - [anon_sym_use] = ACTIONS(1373), - [anon_sym_while] = ACTIONS(1373), - [anon_sym_POUND] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_extern] = ACTIONS(1373), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_COLON_COLON] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_PIPE] = ACTIONS(1371), - [anon_sym_yield] = ACTIONS(1373), - [anon_sym_move] = ACTIONS(1373), - [sym_integer_literal] = ACTIONS(1371), - [aux_sym_string_literal_token1] = ACTIONS(1371), - [sym_char_literal] = ACTIONS(1371), - [anon_sym_true] = ACTIONS(1373), - [anon_sym_false] = ACTIONS(1373), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1373), - [sym_super] = ACTIONS(1373), - [sym_crate] = ACTIONS(1373), - [sym_metavariable] = ACTIONS(1371), - [sym_raw_string_literal] = ACTIONS(1371), - [sym_float_literal] = ACTIONS(1371), + [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(1375), - [sym_identifier] = ACTIONS(1377), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_macro_rules_BANG] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_u8] = ACTIONS(1377), - [anon_sym_i8] = ACTIONS(1377), - [anon_sym_u16] = ACTIONS(1377), - [anon_sym_i16] = ACTIONS(1377), - [anon_sym_u32] = ACTIONS(1377), - [anon_sym_i32] = ACTIONS(1377), - [anon_sym_u64] = ACTIONS(1377), - [anon_sym_i64] = ACTIONS(1377), - [anon_sym_u128] = ACTIONS(1377), - [anon_sym_i128] = ACTIONS(1377), - [anon_sym_isize] = ACTIONS(1377), - [anon_sym_usize] = ACTIONS(1377), - [anon_sym_f32] = ACTIONS(1377), - [anon_sym_f64] = ACTIONS(1377), - [anon_sym_bool] = ACTIONS(1377), - [anon_sym_str] = ACTIONS(1377), - [anon_sym_char] = ACTIONS(1377), - [anon_sym_SQUOTE] = ACTIONS(1377), - [anon_sym_async] = ACTIONS(1377), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_const] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1377), - [anon_sym_default] = ACTIONS(1377), - [anon_sym_enum] = ACTIONS(1377), - [anon_sym_fn] = ACTIONS(1377), - [anon_sym_for] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1377), - [anon_sym_impl] = ACTIONS(1377), - [anon_sym_let] = ACTIONS(1377), - [anon_sym_loop] = ACTIONS(1377), - [anon_sym_match] = ACTIONS(1377), - [anon_sym_mod] = ACTIONS(1377), - [anon_sym_pub] = ACTIONS(1377), - [anon_sym_return] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(1377), - [anon_sym_struct] = ACTIONS(1377), - [anon_sym_trait] = ACTIONS(1377), - [anon_sym_type] = ACTIONS(1377), - [anon_sym_union] = ACTIONS(1377), - [anon_sym_unsafe] = ACTIONS(1377), - [anon_sym_use] = ACTIONS(1377), - [anon_sym_while] = ACTIONS(1377), - [anon_sym_POUND] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_extern] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1375), - [anon_sym_COLON_COLON] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_DOT_DOT] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_PIPE] = ACTIONS(1375), - [anon_sym_yield] = ACTIONS(1377), - [anon_sym_move] = ACTIONS(1377), - [sym_integer_literal] = ACTIONS(1375), - [aux_sym_string_literal_token1] = ACTIONS(1375), - [sym_char_literal] = ACTIONS(1375), - [anon_sym_true] = ACTIONS(1377), - [anon_sym_false] = ACTIONS(1377), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1377), - [sym_super] = ACTIONS(1377), - [sym_crate] = ACTIONS(1377), - [sym_metavariable] = ACTIONS(1375), - [sym_raw_string_literal] = ACTIONS(1375), - [sym_float_literal] = ACTIONS(1375), + [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(1379), - [sym_identifier] = ACTIONS(1381), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_macro_rules_BANG] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_RBRACE] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_u8] = ACTIONS(1381), - [anon_sym_i8] = ACTIONS(1381), - [anon_sym_u16] = ACTIONS(1381), - [anon_sym_i16] = ACTIONS(1381), - [anon_sym_u32] = ACTIONS(1381), - [anon_sym_i32] = ACTIONS(1381), - [anon_sym_u64] = ACTIONS(1381), - [anon_sym_i64] = ACTIONS(1381), - [anon_sym_u128] = ACTIONS(1381), - [anon_sym_i128] = ACTIONS(1381), - [anon_sym_isize] = ACTIONS(1381), - [anon_sym_usize] = ACTIONS(1381), - [anon_sym_f32] = ACTIONS(1381), - [anon_sym_f64] = ACTIONS(1381), - [anon_sym_bool] = ACTIONS(1381), - [anon_sym_str] = ACTIONS(1381), - [anon_sym_char] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [anon_sym_async] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_default] = ACTIONS(1381), - [anon_sym_enum] = ACTIONS(1381), - [anon_sym_fn] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_impl] = ACTIONS(1381), - [anon_sym_let] = ACTIONS(1381), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1381), - [anon_sym_mod] = ACTIONS(1381), - [anon_sym_pub] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_struct] = ACTIONS(1381), - [anon_sym_trait] = ACTIONS(1381), - [anon_sym_type] = ACTIONS(1381), - [anon_sym_union] = ACTIONS(1381), - [anon_sym_unsafe] = ACTIONS(1381), - [anon_sym_use] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_POUND] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_extern] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_COLON_COLON] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_yield] = ACTIONS(1381), - [anon_sym_move] = ACTIONS(1381), - [sym_integer_literal] = ACTIONS(1379), - [aux_sym_string_literal_token1] = ACTIONS(1379), - [sym_char_literal] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(1381), - [anon_sym_false] = ACTIONS(1381), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1381), - [sym_super] = ACTIONS(1381), - [sym_crate] = ACTIONS(1381), - [sym_metavariable] = ACTIONS(1379), - [sym_raw_string_literal] = ACTIONS(1379), - [sym_float_literal] = ACTIONS(1379), + [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(1383), - [sym_identifier] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_macro_rules_BANG] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_u8] = ACTIONS(1385), - [anon_sym_i8] = ACTIONS(1385), - [anon_sym_u16] = ACTIONS(1385), - [anon_sym_i16] = ACTIONS(1385), - [anon_sym_u32] = ACTIONS(1385), - [anon_sym_i32] = ACTIONS(1385), - [anon_sym_u64] = ACTIONS(1385), - [anon_sym_i64] = ACTIONS(1385), - [anon_sym_u128] = ACTIONS(1385), - [anon_sym_i128] = ACTIONS(1385), - [anon_sym_isize] = ACTIONS(1385), - [anon_sym_usize] = ACTIONS(1385), - [anon_sym_f32] = ACTIONS(1385), - [anon_sym_f64] = ACTIONS(1385), - [anon_sym_bool] = ACTIONS(1385), - [anon_sym_str] = ACTIONS(1385), - [anon_sym_char] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_async] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_enum] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_impl] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_loop] = ACTIONS(1385), - [anon_sym_match] = ACTIONS(1385), - [anon_sym_mod] = ACTIONS(1385), - [anon_sym_pub] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1385), - [anon_sym_struct] = ACTIONS(1385), - [anon_sym_trait] = ACTIONS(1385), - [anon_sym_type] = ACTIONS(1385), - [anon_sym_union] = ACTIONS(1385), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_use] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_POUND] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_extern] = ACTIONS(1385), - [anon_sym_LT] = ACTIONS(1383), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_PIPE] = ACTIONS(1383), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_move] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1383), - [aux_sym_string_literal_token1] = ACTIONS(1383), - [sym_char_literal] = ACTIONS(1383), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1385), - [sym_super] = ACTIONS(1385), - [sym_crate] = ACTIONS(1385), - [sym_metavariable] = ACTIONS(1383), - [sym_raw_string_literal] = ACTIONS(1383), - [sym_float_literal] = ACTIONS(1383), + [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(1387), - [sym_identifier] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_macro_rules_BANG] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_u8] = ACTIONS(1389), - [anon_sym_i8] = ACTIONS(1389), - [anon_sym_u16] = ACTIONS(1389), - [anon_sym_i16] = ACTIONS(1389), - [anon_sym_u32] = ACTIONS(1389), - [anon_sym_i32] = ACTIONS(1389), - [anon_sym_u64] = ACTIONS(1389), - [anon_sym_i64] = ACTIONS(1389), - [anon_sym_u128] = ACTIONS(1389), - [anon_sym_i128] = ACTIONS(1389), - [anon_sym_isize] = ACTIONS(1389), - [anon_sym_usize] = ACTIONS(1389), - [anon_sym_f32] = ACTIONS(1389), - [anon_sym_f64] = ACTIONS(1389), - [anon_sym_bool] = ACTIONS(1389), - [anon_sym_str] = ACTIONS(1389), - [anon_sym_char] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_enum] = ACTIONS(1389), - [anon_sym_fn] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_impl] = ACTIONS(1389), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_loop] = ACTIONS(1389), - [anon_sym_match] = ACTIONS(1389), - [anon_sym_mod] = ACTIONS(1389), - [anon_sym_pub] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_struct] = ACTIONS(1389), - [anon_sym_trait] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_union] = ACTIONS(1389), - [anon_sym_unsafe] = ACTIONS(1389), - [anon_sym_use] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_POUND] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_DOT_DOT] = ACTIONS(1387), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_PIPE] = ACTIONS(1387), - [anon_sym_yield] = ACTIONS(1389), - [anon_sym_move] = ACTIONS(1389), - [sym_integer_literal] = ACTIONS(1387), - [aux_sym_string_literal_token1] = ACTIONS(1387), - [sym_char_literal] = ACTIONS(1387), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1389), - [sym_super] = ACTIONS(1389), - [sym_crate] = ACTIONS(1389), - [sym_metavariable] = ACTIONS(1387), - [sym_raw_string_literal] = ACTIONS(1387), - [sym_float_literal] = ACTIONS(1387), + [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(1391), - [sym_identifier] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_macro_rules_BANG] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_STAR] = ACTIONS(1391), - [anon_sym_u8] = ACTIONS(1393), - [anon_sym_i8] = ACTIONS(1393), - [anon_sym_u16] = ACTIONS(1393), - [anon_sym_i16] = ACTIONS(1393), - [anon_sym_u32] = ACTIONS(1393), - [anon_sym_i32] = ACTIONS(1393), - [anon_sym_u64] = ACTIONS(1393), - [anon_sym_i64] = ACTIONS(1393), - [anon_sym_u128] = ACTIONS(1393), - [anon_sym_i128] = ACTIONS(1393), - [anon_sym_isize] = ACTIONS(1393), - [anon_sym_usize] = ACTIONS(1393), - [anon_sym_f32] = ACTIONS(1393), - [anon_sym_f64] = ACTIONS(1393), - [anon_sym_bool] = ACTIONS(1393), - [anon_sym_str] = ACTIONS(1393), - [anon_sym_char] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1393), - [anon_sym_async] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1393), - [anon_sym_enum] = ACTIONS(1393), - [anon_sym_fn] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_impl] = ACTIONS(1393), - [anon_sym_let] = ACTIONS(1393), - [anon_sym_loop] = ACTIONS(1393), - [anon_sym_match] = ACTIONS(1393), - [anon_sym_mod] = ACTIONS(1393), - [anon_sym_pub] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1393), - [anon_sym_struct] = ACTIONS(1393), - [anon_sym_trait] = ACTIONS(1393), - [anon_sym_type] = ACTIONS(1393), - [anon_sym_union] = ACTIONS(1393), - [anon_sym_unsafe] = ACTIONS(1393), - [anon_sym_use] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_POUND] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_extern] = ACTIONS(1393), - [anon_sym_LT] = ACTIONS(1391), - [anon_sym_COLON_COLON] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_yield] = ACTIONS(1393), - [anon_sym_move] = ACTIONS(1393), - [sym_integer_literal] = ACTIONS(1391), - [aux_sym_string_literal_token1] = ACTIONS(1391), - [sym_char_literal] = ACTIONS(1391), - [anon_sym_true] = ACTIONS(1393), - [anon_sym_false] = ACTIONS(1393), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1393), - [sym_super] = ACTIONS(1393), - [sym_crate] = ACTIONS(1393), - [sym_metavariable] = ACTIONS(1391), - [sym_raw_string_literal] = ACTIONS(1391), - [sym_float_literal] = ACTIONS(1391), + [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(1395), - [sym_identifier] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_macro_rules_BANG] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_u8] = ACTIONS(1397), - [anon_sym_i8] = ACTIONS(1397), - [anon_sym_u16] = ACTIONS(1397), - [anon_sym_i16] = ACTIONS(1397), - [anon_sym_u32] = ACTIONS(1397), - [anon_sym_i32] = ACTIONS(1397), - [anon_sym_u64] = ACTIONS(1397), - [anon_sym_i64] = ACTIONS(1397), - [anon_sym_u128] = ACTIONS(1397), - [anon_sym_i128] = ACTIONS(1397), - [anon_sym_isize] = ACTIONS(1397), - [anon_sym_usize] = ACTIONS(1397), - [anon_sym_f32] = ACTIONS(1397), - [anon_sym_f64] = ACTIONS(1397), - [anon_sym_bool] = ACTIONS(1397), - [anon_sym_str] = ACTIONS(1397), - [anon_sym_char] = ACTIONS(1397), - [anon_sym_SQUOTE] = ACTIONS(1397), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [anon_sym_fn] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_impl] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1397), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_mod] = ACTIONS(1397), - [anon_sym_pub] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_struct] = ACTIONS(1397), - [anon_sym_trait] = ACTIONS(1397), - [anon_sym_type] = ACTIONS(1397), - [anon_sym_union] = ACTIONS(1397), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_use] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_POUND] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_LT] = ACTIONS(1395), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_DOT_DOT] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_yield] = ACTIONS(1397), - [anon_sym_move] = ACTIONS(1397), - [sym_integer_literal] = ACTIONS(1395), - [aux_sym_string_literal_token1] = ACTIONS(1395), - [sym_char_literal] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1397), - [sym_super] = ACTIONS(1397), - [sym_crate] = ACTIONS(1397), - [sym_metavariable] = ACTIONS(1395), - [sym_raw_string_literal] = ACTIONS(1395), - [sym_float_literal] = ACTIONS(1395), + [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(1399), - [sym_identifier] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_macro_rules_BANG] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u128] = ACTIONS(1401), - [anon_sym_i128] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_str] = ACTIONS(1401), - [anon_sym_char] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1401), - [anon_sym_async] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_enum] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_impl] = ACTIONS(1401), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_loop] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_mod] = ACTIONS(1401), - [anon_sym_pub] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_trait] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_union] = ACTIONS(1401), - [anon_sym_unsafe] = ACTIONS(1401), - [anon_sym_use] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_POUND] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(1399), - [anon_sym_COLON_COLON] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1401), - [anon_sym_move] = ACTIONS(1401), - [sym_integer_literal] = ACTIONS(1399), - [aux_sym_string_literal_token1] = ACTIONS(1399), - [sym_char_literal] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1401), - [sym_super] = ACTIONS(1401), - [sym_crate] = ACTIONS(1401), - [sym_metavariable] = ACTIONS(1399), - [sym_raw_string_literal] = ACTIONS(1399), - [sym_float_literal] = ACTIONS(1399), + [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(1403), - [sym_identifier] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_macro_rules_BANG] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_u8] = ACTIONS(1405), - [anon_sym_i8] = ACTIONS(1405), - [anon_sym_u16] = ACTIONS(1405), - [anon_sym_i16] = ACTIONS(1405), - [anon_sym_u32] = ACTIONS(1405), - [anon_sym_i32] = ACTIONS(1405), - [anon_sym_u64] = ACTIONS(1405), - [anon_sym_i64] = ACTIONS(1405), - [anon_sym_u128] = ACTIONS(1405), - [anon_sym_i128] = ACTIONS(1405), - [anon_sym_isize] = ACTIONS(1405), - [anon_sym_usize] = ACTIONS(1405), - [anon_sym_f32] = ACTIONS(1405), - [anon_sym_f64] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_str] = ACTIONS(1405), - [anon_sym_char] = ACTIONS(1405), - [anon_sym_SQUOTE] = ACTIONS(1405), - [anon_sym_async] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_default] = ACTIONS(1405), - [anon_sym_enum] = ACTIONS(1405), - [anon_sym_fn] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1405), - [anon_sym_loop] = ACTIONS(1405), - [anon_sym_match] = ACTIONS(1405), - [anon_sym_mod] = ACTIONS(1405), - [anon_sym_pub] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_trait] = ACTIONS(1405), - [anon_sym_type] = ACTIONS(1405), - [anon_sym_union] = ACTIONS(1405), - [anon_sym_unsafe] = ACTIONS(1405), - [anon_sym_use] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_POUND] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(1403), - [anon_sym_COLON_COLON] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_DOT_DOT] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_yield] = ACTIONS(1405), - [anon_sym_move] = ACTIONS(1405), - [sym_integer_literal] = ACTIONS(1403), - [aux_sym_string_literal_token1] = ACTIONS(1403), - [sym_char_literal] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1405), - [sym_super] = ACTIONS(1405), - [sym_crate] = ACTIONS(1405), - [sym_metavariable] = ACTIONS(1403), - [sym_raw_string_literal] = ACTIONS(1403), - [sym_float_literal] = ACTIONS(1403), + [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(1407), - [sym_identifier] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_macro_rules_BANG] = ACTIONS(1407), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_u8] = ACTIONS(1409), - [anon_sym_i8] = ACTIONS(1409), - [anon_sym_u16] = ACTIONS(1409), - [anon_sym_i16] = ACTIONS(1409), - [anon_sym_u32] = ACTIONS(1409), - [anon_sym_i32] = ACTIONS(1409), - [anon_sym_u64] = ACTIONS(1409), - [anon_sym_i64] = ACTIONS(1409), - [anon_sym_u128] = ACTIONS(1409), - [anon_sym_i128] = ACTIONS(1409), - [anon_sym_isize] = ACTIONS(1409), - [anon_sym_usize] = ACTIONS(1409), - [anon_sym_f32] = ACTIONS(1409), - [anon_sym_f64] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_str] = ACTIONS(1409), - [anon_sym_char] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_async] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_fn] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_impl] = ACTIONS(1409), - [anon_sym_let] = ACTIONS(1409), - [anon_sym_loop] = ACTIONS(1409), - [anon_sym_match] = ACTIONS(1409), - [anon_sym_mod] = ACTIONS(1409), - [anon_sym_pub] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_trait] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_unsafe] = ACTIONS(1409), - [anon_sym_use] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_POUND] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_DOT_DOT] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1407), - [anon_sym_yield] = ACTIONS(1409), - [anon_sym_move] = ACTIONS(1409), - [sym_integer_literal] = ACTIONS(1407), - [aux_sym_string_literal_token1] = ACTIONS(1407), - [sym_char_literal] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1409), - [sym_super] = ACTIONS(1409), - [sym_crate] = ACTIONS(1409), - [sym_metavariable] = ACTIONS(1407), - [sym_raw_string_literal] = ACTIONS(1407), - [sym_float_literal] = ACTIONS(1407), + [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(1411), - [sym_identifier] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_macro_rules_BANG] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_u8] = ACTIONS(1413), - [anon_sym_i8] = ACTIONS(1413), - [anon_sym_u16] = ACTIONS(1413), - [anon_sym_i16] = ACTIONS(1413), - [anon_sym_u32] = ACTIONS(1413), - [anon_sym_i32] = ACTIONS(1413), - [anon_sym_u64] = ACTIONS(1413), - [anon_sym_i64] = ACTIONS(1413), - [anon_sym_u128] = ACTIONS(1413), - [anon_sym_i128] = ACTIONS(1413), - [anon_sym_isize] = ACTIONS(1413), - [anon_sym_usize] = ACTIONS(1413), - [anon_sym_f32] = ACTIONS(1413), - [anon_sym_f64] = ACTIONS(1413), - [anon_sym_bool] = ACTIONS(1413), - [anon_sym_str] = ACTIONS(1413), - [anon_sym_char] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_async] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_fn] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_impl] = ACTIONS(1413), - [anon_sym_let] = ACTIONS(1413), - [anon_sym_loop] = ACTIONS(1413), - [anon_sym_match] = ACTIONS(1413), - [anon_sym_mod] = ACTIONS(1413), - [anon_sym_pub] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_trait] = ACTIONS(1413), - [anon_sym_type] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_unsafe] = ACTIONS(1413), - [anon_sym_use] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_POUND] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym_LT] = ACTIONS(1411), - [anon_sym_COLON_COLON] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1411), - [aux_sym_string_literal_token1] = ACTIONS(1411), - [sym_char_literal] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_crate] = ACTIONS(1413), - [sym_metavariable] = ACTIONS(1411), - [sym_raw_string_literal] = ACTIONS(1411), - [sym_float_literal] = ACTIONS(1411), + [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(1415), - [sym_identifier] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_macro_rules_BANG] = ACTIONS(1415), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_RBRACE] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_u8] = ACTIONS(1417), - [anon_sym_i8] = ACTIONS(1417), - [anon_sym_u16] = ACTIONS(1417), - [anon_sym_i16] = ACTIONS(1417), - [anon_sym_u32] = ACTIONS(1417), - [anon_sym_i32] = ACTIONS(1417), - [anon_sym_u64] = ACTIONS(1417), - [anon_sym_i64] = ACTIONS(1417), - [anon_sym_u128] = ACTIONS(1417), - [anon_sym_i128] = ACTIONS(1417), - [anon_sym_isize] = ACTIONS(1417), - [anon_sym_usize] = ACTIONS(1417), - [anon_sym_f32] = ACTIONS(1417), - [anon_sym_f64] = ACTIONS(1417), - [anon_sym_bool] = ACTIONS(1417), - [anon_sym_str] = ACTIONS(1417), - [anon_sym_char] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_default] = ACTIONS(1417), - [anon_sym_enum] = ACTIONS(1417), - [anon_sym_fn] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1417), - [anon_sym_impl] = ACTIONS(1417), - [anon_sym_let] = ACTIONS(1417), - [anon_sym_loop] = ACTIONS(1417), - [anon_sym_match] = ACTIONS(1417), - [anon_sym_mod] = ACTIONS(1417), - [anon_sym_pub] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_static] = ACTIONS(1417), - [anon_sym_struct] = ACTIONS(1417), - [anon_sym_trait] = ACTIONS(1417), - [anon_sym_type] = ACTIONS(1417), - [anon_sym_union] = ACTIONS(1417), - [anon_sym_unsafe] = ACTIONS(1417), - [anon_sym_use] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_POUND] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_extern] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_COLON_COLON] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_move] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1415), - [aux_sym_string_literal_token1] = ACTIONS(1415), - [sym_char_literal] = ACTIONS(1415), - [anon_sym_true] = ACTIONS(1417), - [anon_sym_false] = ACTIONS(1417), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1417), - [sym_super] = ACTIONS(1417), - [sym_crate] = ACTIONS(1417), - [sym_metavariable] = ACTIONS(1415), - [sym_raw_string_literal] = ACTIONS(1415), - [sym_float_literal] = ACTIONS(1415), + [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(1419), - [sym_identifier] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1419), - [anon_sym_macro_rules_BANG] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_u8] = ACTIONS(1421), - [anon_sym_i8] = ACTIONS(1421), - [anon_sym_u16] = ACTIONS(1421), - [anon_sym_i16] = ACTIONS(1421), - [anon_sym_u32] = ACTIONS(1421), - [anon_sym_i32] = ACTIONS(1421), - [anon_sym_u64] = ACTIONS(1421), - [anon_sym_i64] = ACTIONS(1421), - [anon_sym_u128] = ACTIONS(1421), - [anon_sym_i128] = ACTIONS(1421), - [anon_sym_isize] = ACTIONS(1421), - [anon_sym_usize] = ACTIONS(1421), - [anon_sym_f32] = ACTIONS(1421), - [anon_sym_f64] = ACTIONS(1421), - [anon_sym_bool] = ACTIONS(1421), - [anon_sym_str] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_enum] = ACTIONS(1421), - [anon_sym_fn] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_impl] = ACTIONS(1421), - [anon_sym_let] = ACTIONS(1421), - [anon_sym_loop] = ACTIONS(1421), - [anon_sym_match] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_pub] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1421), - [anon_sym_trait] = ACTIONS(1421), - [anon_sym_type] = ACTIONS(1421), - [anon_sym_union] = ACTIONS(1421), - [anon_sym_unsafe] = ACTIONS(1421), - [anon_sym_use] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_POUND] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(1421), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_DOT_DOT] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1419), - [anon_sym_yield] = ACTIONS(1421), - [anon_sym_move] = ACTIONS(1421), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1419), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1421), - [anon_sym_false] = ACTIONS(1421), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1421), - [sym_super] = ACTIONS(1421), - [sym_crate] = ACTIONS(1421), - [sym_metavariable] = ACTIONS(1419), - [sym_raw_string_literal] = ACTIONS(1419), - [sym_float_literal] = ACTIONS(1419), + [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(1423), - [sym_identifier] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_macro_rules_BANG] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_u8] = ACTIONS(1425), - [anon_sym_i8] = ACTIONS(1425), - [anon_sym_u16] = ACTIONS(1425), - [anon_sym_i16] = ACTIONS(1425), - [anon_sym_u32] = ACTIONS(1425), - [anon_sym_i32] = ACTIONS(1425), - [anon_sym_u64] = ACTIONS(1425), - [anon_sym_i64] = ACTIONS(1425), - [anon_sym_u128] = ACTIONS(1425), - [anon_sym_i128] = ACTIONS(1425), - [anon_sym_isize] = ACTIONS(1425), - [anon_sym_usize] = ACTIONS(1425), - [anon_sym_f32] = ACTIONS(1425), - [anon_sym_f64] = ACTIONS(1425), - [anon_sym_bool] = ACTIONS(1425), - [anon_sym_str] = ACTIONS(1425), - [anon_sym_char] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_async] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1425), - [anon_sym_fn] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_impl] = ACTIONS(1425), - [anon_sym_let] = ACTIONS(1425), - [anon_sym_loop] = ACTIONS(1425), - [anon_sym_match] = ACTIONS(1425), - [anon_sym_mod] = ACTIONS(1425), - [anon_sym_pub] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_struct] = ACTIONS(1425), - [anon_sym_trait] = ACTIONS(1425), - [anon_sym_type] = ACTIONS(1425), - [anon_sym_union] = ACTIONS(1425), - [anon_sym_unsafe] = ACTIONS(1425), - [anon_sym_use] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_POUND] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_extern] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1423), - [anon_sym_yield] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1423), - [aux_sym_string_literal_token1] = ACTIONS(1423), - [sym_char_literal] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1425), - [anon_sym_false] = ACTIONS(1425), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1425), - [sym_super] = ACTIONS(1425), - [sym_crate] = ACTIONS(1425), - [sym_metavariable] = ACTIONS(1423), - [sym_raw_string_literal] = ACTIONS(1423), - [sym_float_literal] = ACTIONS(1423), + [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(1427), - [sym_identifier] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_macro_rules_BANG] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_u8] = ACTIONS(1429), - [anon_sym_i8] = ACTIONS(1429), - [anon_sym_u16] = ACTIONS(1429), - [anon_sym_i16] = ACTIONS(1429), - [anon_sym_u32] = ACTIONS(1429), - [anon_sym_i32] = ACTIONS(1429), - [anon_sym_u64] = ACTIONS(1429), - [anon_sym_i64] = ACTIONS(1429), - [anon_sym_u128] = ACTIONS(1429), - [anon_sym_i128] = ACTIONS(1429), - [anon_sym_isize] = ACTIONS(1429), - [anon_sym_usize] = ACTIONS(1429), - [anon_sym_f32] = ACTIONS(1429), - [anon_sym_f64] = ACTIONS(1429), - [anon_sym_bool] = ACTIONS(1429), - [anon_sym_str] = ACTIONS(1429), - [anon_sym_char] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_async] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_default] = ACTIONS(1429), - [anon_sym_enum] = ACTIONS(1429), - [anon_sym_fn] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_impl] = ACTIONS(1429), - [anon_sym_let] = ACTIONS(1429), - [anon_sym_loop] = ACTIONS(1429), - [anon_sym_match] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1429), - [anon_sym_pub] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1429), - [anon_sym_trait] = ACTIONS(1429), - [anon_sym_type] = ACTIONS(1429), - [anon_sym_union] = ACTIONS(1429), - [anon_sym_unsafe] = ACTIONS(1429), - [anon_sym_use] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_yield] = ACTIONS(1429), - [anon_sym_move] = ACTIONS(1429), - [sym_integer_literal] = ACTIONS(1427), - [aux_sym_string_literal_token1] = ACTIONS(1427), - [sym_char_literal] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1429), - [sym_super] = ACTIONS(1429), - [sym_crate] = ACTIONS(1429), - [sym_metavariable] = ACTIONS(1427), - [sym_raw_string_literal] = ACTIONS(1427), - [sym_float_literal] = ACTIONS(1427), + [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(1431), - [sym_identifier] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_macro_rules_BANG] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_u8] = ACTIONS(1433), - [anon_sym_i8] = ACTIONS(1433), - [anon_sym_u16] = ACTIONS(1433), - [anon_sym_i16] = ACTIONS(1433), - [anon_sym_u32] = ACTIONS(1433), - [anon_sym_i32] = ACTIONS(1433), - [anon_sym_u64] = ACTIONS(1433), - [anon_sym_i64] = ACTIONS(1433), - [anon_sym_u128] = ACTIONS(1433), - [anon_sym_i128] = ACTIONS(1433), - [anon_sym_isize] = ACTIONS(1433), - [anon_sym_usize] = ACTIONS(1433), - [anon_sym_f32] = ACTIONS(1433), - [anon_sym_f64] = ACTIONS(1433), - [anon_sym_bool] = ACTIONS(1433), - [anon_sym_str] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_async] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_impl] = ACTIONS(1433), - [anon_sym_let] = ACTIONS(1433), - [anon_sym_loop] = ACTIONS(1433), - [anon_sym_match] = ACTIONS(1433), - [anon_sym_mod] = ACTIONS(1433), - [anon_sym_pub] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_trait] = ACTIONS(1433), - [anon_sym_type] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_unsafe] = ACTIONS(1433), - [anon_sym_use] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_POUND] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1431), - [anon_sym_yield] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [aux_sym_string_literal_token1] = ACTIONS(1431), - [sym_char_literal] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1433), - [anon_sym_false] = ACTIONS(1433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1433), - [sym_super] = ACTIONS(1433), - [sym_crate] = ACTIONS(1433), - [sym_metavariable] = ACTIONS(1431), - [sym_raw_string_literal] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1431), + [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(1435), - [sym_identifier] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_macro_rules_BANG] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_u8] = ACTIONS(1437), - [anon_sym_i8] = ACTIONS(1437), - [anon_sym_u16] = ACTIONS(1437), - [anon_sym_i16] = ACTIONS(1437), - [anon_sym_u32] = ACTIONS(1437), - [anon_sym_i32] = ACTIONS(1437), - [anon_sym_u64] = ACTIONS(1437), - [anon_sym_i64] = ACTIONS(1437), - [anon_sym_u128] = ACTIONS(1437), - [anon_sym_i128] = ACTIONS(1437), - [anon_sym_isize] = ACTIONS(1437), - [anon_sym_usize] = ACTIONS(1437), - [anon_sym_f32] = ACTIONS(1437), - [anon_sym_f64] = ACTIONS(1437), - [anon_sym_bool] = ACTIONS(1437), - [anon_sym_str] = ACTIONS(1437), - [anon_sym_char] = ACTIONS(1437), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_async] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_fn] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_impl] = ACTIONS(1437), - [anon_sym_let] = ACTIONS(1437), - [anon_sym_loop] = ACTIONS(1437), - [anon_sym_match] = ACTIONS(1437), - [anon_sym_mod] = ACTIONS(1437), - [anon_sym_pub] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1437), - [anon_sym_trait] = ACTIONS(1437), - [anon_sym_type] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1437), - [anon_sym_unsafe] = ACTIONS(1437), - [anon_sym_use] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_POUND] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_extern] = ACTIONS(1437), - [anon_sym_LT] = ACTIONS(1435), - [anon_sym_COLON_COLON] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_move] = ACTIONS(1437), - [sym_integer_literal] = ACTIONS(1435), - [aux_sym_string_literal_token1] = ACTIONS(1435), - [sym_char_literal] = ACTIONS(1435), - [anon_sym_true] = ACTIONS(1437), - [anon_sym_false] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1437), - [sym_super] = ACTIONS(1437), - [sym_crate] = ACTIONS(1437), - [sym_metavariable] = ACTIONS(1435), - [sym_raw_string_literal] = ACTIONS(1435), - [sym_float_literal] = ACTIONS(1435), + [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(1439), - [sym_identifier] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym_macro_rules_BANG] = ACTIONS(1439), - [anon_sym_LPAREN] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(1439), - [anon_sym_LBRACK] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_u8] = ACTIONS(1441), - [anon_sym_i8] = ACTIONS(1441), - [anon_sym_u16] = ACTIONS(1441), - [anon_sym_i16] = ACTIONS(1441), - [anon_sym_u32] = ACTIONS(1441), - [anon_sym_i32] = ACTIONS(1441), - [anon_sym_u64] = ACTIONS(1441), - [anon_sym_i64] = ACTIONS(1441), - [anon_sym_u128] = ACTIONS(1441), - [anon_sym_i128] = ACTIONS(1441), - [anon_sym_isize] = ACTIONS(1441), - [anon_sym_usize] = ACTIONS(1441), - [anon_sym_f32] = ACTIONS(1441), - [anon_sym_f64] = ACTIONS(1441), - [anon_sym_bool] = ACTIONS(1441), - [anon_sym_str] = ACTIONS(1441), - [anon_sym_char] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_async] = ACTIONS(1441), - [anon_sym_break] = ACTIONS(1441), - [anon_sym_const] = ACTIONS(1441), - [anon_sym_continue] = ACTIONS(1441), - [anon_sym_default] = ACTIONS(1441), - [anon_sym_enum] = ACTIONS(1441), - [anon_sym_fn] = ACTIONS(1441), - [anon_sym_for] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1441), - [anon_sym_impl] = ACTIONS(1441), - [anon_sym_let] = ACTIONS(1441), - [anon_sym_loop] = ACTIONS(1441), - [anon_sym_match] = ACTIONS(1441), - [anon_sym_mod] = ACTIONS(1441), - [anon_sym_pub] = ACTIONS(1441), - [anon_sym_return] = ACTIONS(1441), - [anon_sym_static] = ACTIONS(1441), - [anon_sym_struct] = ACTIONS(1441), - [anon_sym_trait] = ACTIONS(1441), - [anon_sym_type] = ACTIONS(1441), - [anon_sym_union] = ACTIONS(1441), - [anon_sym_unsafe] = ACTIONS(1441), - [anon_sym_use] = ACTIONS(1441), - [anon_sym_while] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_extern] = ACTIONS(1441), - [anon_sym_LT] = ACTIONS(1439), - [anon_sym_COLON_COLON] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_DOT_DOT] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_PIPE] = ACTIONS(1439), - [anon_sym_yield] = ACTIONS(1441), - [anon_sym_move] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(1439), - [aux_sym_string_literal_token1] = ACTIONS(1439), - [sym_char_literal] = ACTIONS(1439), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1441), - [sym_super] = ACTIONS(1441), - [sym_crate] = ACTIONS(1441), - [sym_metavariable] = ACTIONS(1439), - [sym_raw_string_literal] = ACTIONS(1439), - [sym_float_literal] = ACTIONS(1439), + [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(1443), - [sym_identifier] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1443), - [anon_sym_macro_rules_BANG] = ACTIONS(1443), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_RBRACE] = ACTIONS(1443), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_u8] = ACTIONS(1445), - [anon_sym_i8] = ACTIONS(1445), - [anon_sym_u16] = ACTIONS(1445), - [anon_sym_i16] = ACTIONS(1445), - [anon_sym_u32] = ACTIONS(1445), - [anon_sym_i32] = ACTIONS(1445), - [anon_sym_u64] = ACTIONS(1445), - [anon_sym_i64] = ACTIONS(1445), - [anon_sym_u128] = ACTIONS(1445), - [anon_sym_i128] = ACTIONS(1445), - [anon_sym_isize] = ACTIONS(1445), - [anon_sym_usize] = ACTIONS(1445), - [anon_sym_f32] = ACTIONS(1445), - [anon_sym_f64] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_str] = ACTIONS(1445), - [anon_sym_char] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_async] = ACTIONS(1445), - [anon_sym_break] = ACTIONS(1445), - [anon_sym_const] = ACTIONS(1445), - [anon_sym_continue] = ACTIONS(1445), - [anon_sym_default] = ACTIONS(1445), - [anon_sym_enum] = ACTIONS(1445), - [anon_sym_fn] = ACTIONS(1445), - [anon_sym_for] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(1445), - [anon_sym_impl] = ACTIONS(1445), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_loop] = ACTIONS(1445), - [anon_sym_match] = ACTIONS(1445), - [anon_sym_mod] = ACTIONS(1445), - [anon_sym_pub] = ACTIONS(1445), - [anon_sym_return] = ACTIONS(1445), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_struct] = ACTIONS(1445), - [anon_sym_trait] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_union] = ACTIONS(1445), - [anon_sym_unsafe] = ACTIONS(1445), - [anon_sym_use] = ACTIONS(1445), - [anon_sym_while] = ACTIONS(1445), - [anon_sym_POUND] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_extern] = ACTIONS(1445), - [anon_sym_LT] = ACTIONS(1443), - [anon_sym_COLON_COLON] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_DOT_DOT] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PIPE] = ACTIONS(1443), - [anon_sym_yield] = ACTIONS(1445), - [anon_sym_move] = ACTIONS(1445), - [sym_integer_literal] = ACTIONS(1443), - [aux_sym_string_literal_token1] = ACTIONS(1443), - [sym_char_literal] = ACTIONS(1443), - [anon_sym_true] = ACTIONS(1445), - [anon_sym_false] = ACTIONS(1445), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1445), - [sym_super] = ACTIONS(1445), - [sym_crate] = ACTIONS(1445), - [sym_metavariable] = ACTIONS(1443), - [sym_raw_string_literal] = ACTIONS(1443), - [sym_float_literal] = ACTIONS(1443), + [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(1447), - [sym_identifier] = ACTIONS(1449), - [anon_sym_SEMI] = ACTIONS(1447), - [anon_sym_macro_rules_BANG] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_RBRACE] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_u8] = ACTIONS(1449), - [anon_sym_i8] = ACTIONS(1449), - [anon_sym_u16] = ACTIONS(1449), - [anon_sym_i16] = ACTIONS(1449), - [anon_sym_u32] = ACTIONS(1449), - [anon_sym_i32] = ACTIONS(1449), - [anon_sym_u64] = ACTIONS(1449), - [anon_sym_i64] = ACTIONS(1449), - [anon_sym_u128] = ACTIONS(1449), - [anon_sym_i128] = ACTIONS(1449), - [anon_sym_isize] = ACTIONS(1449), - [anon_sym_usize] = ACTIONS(1449), - [anon_sym_f32] = ACTIONS(1449), - [anon_sym_f64] = ACTIONS(1449), - [anon_sym_bool] = ACTIONS(1449), - [anon_sym_str] = ACTIONS(1449), - [anon_sym_char] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1449), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_break] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1449), - [anon_sym_continue] = ACTIONS(1449), - [anon_sym_default] = ACTIONS(1449), - [anon_sym_enum] = ACTIONS(1449), - [anon_sym_fn] = ACTIONS(1449), - [anon_sym_for] = ACTIONS(1449), - [anon_sym_if] = ACTIONS(1449), - [anon_sym_impl] = ACTIONS(1449), - [anon_sym_let] = ACTIONS(1449), - [anon_sym_loop] = ACTIONS(1449), - [anon_sym_match] = ACTIONS(1449), - [anon_sym_mod] = ACTIONS(1449), - [anon_sym_pub] = ACTIONS(1449), - [anon_sym_return] = ACTIONS(1449), - [anon_sym_static] = ACTIONS(1449), - [anon_sym_struct] = ACTIONS(1449), - [anon_sym_trait] = ACTIONS(1449), - [anon_sym_type] = ACTIONS(1449), - [anon_sym_union] = ACTIONS(1449), - [anon_sym_unsafe] = ACTIONS(1449), - [anon_sym_use] = ACTIONS(1449), - [anon_sym_while] = ACTIONS(1449), - [anon_sym_POUND] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_extern] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1447), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_DOT_DOT] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1447), - [anon_sym_yield] = ACTIONS(1449), - [anon_sym_move] = ACTIONS(1449), - [sym_integer_literal] = ACTIONS(1447), - [aux_sym_string_literal_token1] = ACTIONS(1447), - [sym_char_literal] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(1449), - [anon_sym_false] = ACTIONS(1449), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1449), - [sym_super] = ACTIONS(1449), - [sym_crate] = ACTIONS(1449), - [sym_metavariable] = ACTIONS(1447), - [sym_raw_string_literal] = ACTIONS(1447), - [sym_float_literal] = ACTIONS(1447), + [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(1451), - [sym_identifier] = ACTIONS(1453), - [anon_sym_SEMI] = ACTIONS(1451), - [anon_sym_macro_rules_BANG] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_LBRACK] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_u8] = ACTIONS(1453), - [anon_sym_i8] = ACTIONS(1453), - [anon_sym_u16] = ACTIONS(1453), - [anon_sym_i16] = ACTIONS(1453), - [anon_sym_u32] = ACTIONS(1453), - [anon_sym_i32] = ACTIONS(1453), - [anon_sym_u64] = ACTIONS(1453), - [anon_sym_i64] = ACTIONS(1453), - [anon_sym_u128] = ACTIONS(1453), - [anon_sym_i128] = ACTIONS(1453), - [anon_sym_isize] = ACTIONS(1453), - [anon_sym_usize] = ACTIONS(1453), - [anon_sym_f32] = ACTIONS(1453), - [anon_sym_f64] = ACTIONS(1453), - [anon_sym_bool] = ACTIONS(1453), - [anon_sym_str] = ACTIONS(1453), - [anon_sym_char] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_async] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_default] = ACTIONS(1453), - [anon_sym_enum] = ACTIONS(1453), - [anon_sym_fn] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_impl] = ACTIONS(1453), - [anon_sym_let] = ACTIONS(1453), - [anon_sym_loop] = ACTIONS(1453), - [anon_sym_match] = ACTIONS(1453), - [anon_sym_mod] = ACTIONS(1453), - [anon_sym_pub] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1453), - [anon_sym_trait] = ACTIONS(1453), - [anon_sym_type] = ACTIONS(1453), - [anon_sym_union] = ACTIONS(1453), - [anon_sym_unsafe] = ACTIONS(1453), - [anon_sym_use] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_POUND] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym_LT] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_yield] = ACTIONS(1453), - [anon_sym_move] = ACTIONS(1453), - [sym_integer_literal] = ACTIONS(1451), - [aux_sym_string_literal_token1] = ACTIONS(1451), - [sym_char_literal] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1453), - [sym_super] = ACTIONS(1453), - [sym_crate] = ACTIONS(1453), - [sym_metavariable] = ACTIONS(1451), - [sym_raw_string_literal] = ACTIONS(1451), - [sym_float_literal] = ACTIONS(1451), + [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(1455), - [sym_identifier] = ACTIONS(1457), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym_macro_rules_BANG] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_u8] = ACTIONS(1457), - [anon_sym_i8] = ACTIONS(1457), - [anon_sym_u16] = ACTIONS(1457), - [anon_sym_i16] = ACTIONS(1457), - [anon_sym_u32] = ACTIONS(1457), - [anon_sym_i32] = ACTIONS(1457), - [anon_sym_u64] = ACTIONS(1457), - [anon_sym_i64] = ACTIONS(1457), - [anon_sym_u128] = ACTIONS(1457), - [anon_sym_i128] = ACTIONS(1457), - [anon_sym_isize] = ACTIONS(1457), - [anon_sym_usize] = ACTIONS(1457), - [anon_sym_f32] = ACTIONS(1457), - [anon_sym_f64] = ACTIONS(1457), - [anon_sym_bool] = ACTIONS(1457), - [anon_sym_str] = ACTIONS(1457), - [anon_sym_char] = ACTIONS(1457), - [anon_sym_SQUOTE] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_break] = ACTIONS(1457), - [anon_sym_const] = ACTIONS(1457), - [anon_sym_continue] = ACTIONS(1457), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_enum] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1457), - [anon_sym_for] = ACTIONS(1457), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_impl] = ACTIONS(1457), - [anon_sym_let] = ACTIONS(1457), - [anon_sym_loop] = ACTIONS(1457), - [anon_sym_match] = ACTIONS(1457), - [anon_sym_mod] = ACTIONS(1457), - [anon_sym_pub] = ACTIONS(1457), - [anon_sym_return] = ACTIONS(1457), - [anon_sym_static] = ACTIONS(1457), - [anon_sym_struct] = ACTIONS(1457), - [anon_sym_trait] = ACTIONS(1457), - [anon_sym_type] = ACTIONS(1457), - [anon_sym_union] = ACTIONS(1457), - [anon_sym_unsafe] = ACTIONS(1457), - [anon_sym_use] = ACTIONS(1457), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1455), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_yield] = ACTIONS(1457), - [anon_sym_move] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1455), - [aux_sym_string_literal_token1] = ACTIONS(1455), - [sym_char_literal] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1457), - [anon_sym_false] = ACTIONS(1457), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1457), - [sym_super] = ACTIONS(1457), - [sym_crate] = ACTIONS(1457), - [sym_metavariable] = ACTIONS(1455), - [sym_raw_string_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1455), + [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(1459), - [sym_identifier] = ACTIONS(1461), - [anon_sym_SEMI] = ACTIONS(1459), - [anon_sym_macro_rules_BANG] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_RBRACE] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_u8] = ACTIONS(1461), - [anon_sym_i8] = ACTIONS(1461), - [anon_sym_u16] = ACTIONS(1461), - [anon_sym_i16] = ACTIONS(1461), - [anon_sym_u32] = ACTIONS(1461), - [anon_sym_i32] = ACTIONS(1461), - [anon_sym_u64] = ACTIONS(1461), - [anon_sym_i64] = ACTIONS(1461), - [anon_sym_u128] = ACTIONS(1461), - [anon_sym_i128] = ACTIONS(1461), - [anon_sym_isize] = ACTIONS(1461), - [anon_sym_usize] = ACTIONS(1461), - [anon_sym_f32] = ACTIONS(1461), - [anon_sym_f64] = ACTIONS(1461), - [anon_sym_bool] = ACTIONS(1461), - [anon_sym_str] = ACTIONS(1461), - [anon_sym_char] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1461), - [anon_sym_async] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_default] = ACTIONS(1461), - [anon_sym_enum] = ACTIONS(1461), - [anon_sym_fn] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_impl] = ACTIONS(1461), - [anon_sym_let] = ACTIONS(1461), - [anon_sym_loop] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1461), - [anon_sym_mod] = ACTIONS(1461), - [anon_sym_pub] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_static] = ACTIONS(1461), - [anon_sym_struct] = ACTIONS(1461), - [anon_sym_trait] = ACTIONS(1461), - [anon_sym_type] = ACTIONS(1461), - [anon_sym_union] = ACTIONS(1461), - [anon_sym_unsafe] = ACTIONS(1461), - [anon_sym_use] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_POUND] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_PIPE] = ACTIONS(1459), - [anon_sym_yield] = ACTIONS(1461), - [anon_sym_move] = ACTIONS(1461), - [sym_integer_literal] = ACTIONS(1459), - [aux_sym_string_literal_token1] = ACTIONS(1459), - [sym_char_literal] = ACTIONS(1459), - [anon_sym_true] = ACTIONS(1461), - [anon_sym_false] = ACTIONS(1461), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1461), - [sym_crate] = ACTIONS(1461), - [sym_metavariable] = ACTIONS(1459), - [sym_raw_string_literal] = ACTIONS(1459), - [sym_float_literal] = ACTIONS(1459), + [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(1463), - [sym_identifier] = ACTIONS(1465), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym_macro_rules_BANG] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_u8] = ACTIONS(1465), - [anon_sym_i8] = ACTIONS(1465), - [anon_sym_u16] = ACTIONS(1465), - [anon_sym_i16] = ACTIONS(1465), - [anon_sym_u32] = ACTIONS(1465), - [anon_sym_i32] = ACTIONS(1465), - [anon_sym_u64] = ACTIONS(1465), - [anon_sym_i64] = ACTIONS(1465), - [anon_sym_u128] = ACTIONS(1465), - [anon_sym_i128] = ACTIONS(1465), - [anon_sym_isize] = ACTIONS(1465), - [anon_sym_usize] = ACTIONS(1465), - [anon_sym_f32] = ACTIONS(1465), - [anon_sym_f64] = ACTIONS(1465), - [anon_sym_bool] = ACTIONS(1465), - [anon_sym_str] = ACTIONS(1465), - [anon_sym_char] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_async] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_impl] = ACTIONS(1465), - [anon_sym_let] = ACTIONS(1465), - [anon_sym_loop] = ACTIONS(1465), - [anon_sym_match] = ACTIONS(1465), - [anon_sym_mod] = ACTIONS(1465), - [anon_sym_pub] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_trait] = ACTIONS(1465), - [anon_sym_type] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_unsafe] = ACTIONS(1465), - [anon_sym_use] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1463), - [anon_sym_COLON_COLON] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_DOT_DOT] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_yield] = ACTIONS(1465), - [anon_sym_move] = ACTIONS(1465), - [sym_integer_literal] = ACTIONS(1463), - [aux_sym_string_literal_token1] = ACTIONS(1463), - [sym_char_literal] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1465), - [anon_sym_false] = ACTIONS(1465), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1465), - [sym_super] = ACTIONS(1465), - [sym_crate] = ACTIONS(1465), - [sym_metavariable] = ACTIONS(1463), - [sym_raw_string_literal] = ACTIONS(1463), - [sym_float_literal] = ACTIONS(1463), + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_macro_rules_BANG] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_u8] = ACTIONS(1410), + [anon_sym_i8] = ACTIONS(1410), + [anon_sym_u16] = ACTIONS(1410), + [anon_sym_i16] = ACTIONS(1410), + [anon_sym_u32] = ACTIONS(1410), + [anon_sym_i32] = ACTIONS(1410), + [anon_sym_u64] = ACTIONS(1410), + [anon_sym_i64] = ACTIONS(1410), + [anon_sym_u128] = ACTIONS(1410), + [anon_sym_i128] = ACTIONS(1410), + [anon_sym_isize] = ACTIONS(1410), + [anon_sym_usize] = ACTIONS(1410), + [anon_sym_f32] = ACTIONS(1410), + [anon_sym_f64] = ACTIONS(1410), + [anon_sym_bool] = ACTIONS(1410), + [anon_sym_str] = ACTIONS(1410), + [anon_sym_char] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_impl] = ACTIONS(1410), + [anon_sym_let] = ACTIONS(1410), + [anon_sym_loop] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_mod] = ACTIONS(1410), + [anon_sym_pub] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_trait] = ACTIONS(1410), + [anon_sym_type] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_unsafe] = ACTIONS(1410), + [anon_sym_use] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_POUND] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1408), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_DOT_DOT] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(1408), + [anon_sym_yield] = ACTIONS(1410), + [anon_sym_move] = ACTIONS(1410), + [sym_integer_literal] = ACTIONS(1408), + [aux_sym_string_literal_token1] = ACTIONS(1408), + [sym_char_literal] = ACTIONS(1408), + [anon_sym_true] = ACTIONS(1410), + [anon_sym_false] = ACTIONS(1410), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1410), + [sym_super] = ACTIONS(1410), + [sym_crate] = ACTIONS(1410), + [sym_metavariable] = ACTIONS(1408), + [sym_raw_string_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1408), [sym_block_comment] = ACTIONS(3), }, [329] = { - [ts_builtin_sym_end] = ACTIONS(1467), - [sym_identifier] = ACTIONS(1469), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_macro_rules_BANG] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_u8] = ACTIONS(1469), - [anon_sym_i8] = ACTIONS(1469), - [anon_sym_u16] = ACTIONS(1469), - [anon_sym_i16] = ACTIONS(1469), - [anon_sym_u32] = ACTIONS(1469), - [anon_sym_i32] = ACTIONS(1469), - [anon_sym_u64] = ACTIONS(1469), - [anon_sym_i64] = ACTIONS(1469), - [anon_sym_u128] = ACTIONS(1469), - [anon_sym_i128] = ACTIONS(1469), - [anon_sym_isize] = ACTIONS(1469), - [anon_sym_usize] = ACTIONS(1469), - [anon_sym_f32] = ACTIONS(1469), - [anon_sym_f64] = ACTIONS(1469), - [anon_sym_bool] = ACTIONS(1469), - [anon_sym_str] = ACTIONS(1469), - [anon_sym_char] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_async] = ACTIONS(1469), - [anon_sym_break] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_continue] = ACTIONS(1469), - [anon_sym_default] = ACTIONS(1469), - [anon_sym_enum] = ACTIONS(1469), - [anon_sym_fn] = ACTIONS(1469), - [anon_sym_for] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1469), - [anon_sym_impl] = ACTIONS(1469), - [anon_sym_let] = ACTIONS(1469), - [anon_sym_loop] = ACTIONS(1469), - [anon_sym_match] = ACTIONS(1469), - [anon_sym_mod] = ACTIONS(1469), - [anon_sym_pub] = ACTIONS(1469), - [anon_sym_return] = ACTIONS(1469), - [anon_sym_static] = ACTIONS(1469), - [anon_sym_struct] = ACTIONS(1469), - [anon_sym_trait] = ACTIONS(1469), - [anon_sym_type] = ACTIONS(1469), - [anon_sym_union] = ACTIONS(1469), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_use] = ACTIONS(1469), - [anon_sym_while] = ACTIONS(1469), - [anon_sym_POUND] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_extern] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(1467), - [anon_sym_COLON_COLON] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_DOT_DOT] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1469), - [anon_sym_move] = ACTIONS(1469), - [sym_integer_literal] = ACTIONS(1467), - [aux_sym_string_literal_token1] = ACTIONS(1467), - [sym_char_literal] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1469), - [anon_sym_false] = ACTIONS(1469), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1469), - [sym_super] = ACTIONS(1469), - [sym_crate] = ACTIONS(1469), - [sym_metavariable] = ACTIONS(1467), - [sym_raw_string_literal] = ACTIONS(1467), - [sym_float_literal] = ACTIONS(1467), + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_identifier] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_macro_rules_BANG] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_u8] = ACTIONS(1414), + [anon_sym_i8] = ACTIONS(1414), + [anon_sym_u16] = ACTIONS(1414), + [anon_sym_i16] = ACTIONS(1414), + [anon_sym_u32] = ACTIONS(1414), + [anon_sym_i32] = ACTIONS(1414), + [anon_sym_u64] = ACTIONS(1414), + [anon_sym_i64] = ACTIONS(1414), + [anon_sym_u128] = ACTIONS(1414), + [anon_sym_i128] = ACTIONS(1414), + [anon_sym_isize] = ACTIONS(1414), + [anon_sym_usize] = ACTIONS(1414), + [anon_sym_f32] = ACTIONS(1414), + [anon_sym_f64] = ACTIONS(1414), + [anon_sym_bool] = ACTIONS(1414), + [anon_sym_str] = ACTIONS(1414), + [anon_sym_char] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_async] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_fn] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_impl] = ACTIONS(1414), + [anon_sym_let] = ACTIONS(1414), + [anon_sym_loop] = ACTIONS(1414), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_mod] = ACTIONS(1414), + [anon_sym_pub] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_trait] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_unsafe] = ACTIONS(1414), + [anon_sym_use] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_POUND] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym_LT] = ACTIONS(1412), + [anon_sym_COLON_COLON] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_DOT_DOT] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_yield] = ACTIONS(1414), + [anon_sym_move] = ACTIONS(1414), + [sym_integer_literal] = ACTIONS(1412), + [aux_sym_string_literal_token1] = ACTIONS(1412), + [sym_char_literal] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1414), + [anon_sym_false] = ACTIONS(1414), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1414), + [sym_super] = ACTIONS(1414), + [sym_crate] = ACTIONS(1414), + [sym_metavariable] = ACTIONS(1412), + [sym_raw_string_literal] = ACTIONS(1412), + [sym_float_literal] = ACTIONS(1412), [sym_block_comment] = ACTIONS(3), }, [330] = { - [ts_builtin_sym_end] = ACTIONS(1471), - [sym_identifier] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(1471), - [anon_sym_macro_rules_BANG] = ACTIONS(1471), - [anon_sym_LPAREN] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_RBRACE] = ACTIONS(1471), - [anon_sym_LBRACK] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_u8] = ACTIONS(1473), - [anon_sym_i8] = ACTIONS(1473), - [anon_sym_u16] = ACTIONS(1473), - [anon_sym_i16] = ACTIONS(1473), - [anon_sym_u32] = ACTIONS(1473), - [anon_sym_i32] = ACTIONS(1473), - [anon_sym_u64] = ACTIONS(1473), - [anon_sym_i64] = ACTIONS(1473), - [anon_sym_u128] = ACTIONS(1473), - [anon_sym_i128] = ACTIONS(1473), - [anon_sym_isize] = ACTIONS(1473), - [anon_sym_usize] = ACTIONS(1473), - [anon_sym_f32] = ACTIONS(1473), - [anon_sym_f64] = ACTIONS(1473), - [anon_sym_bool] = ACTIONS(1473), - [anon_sym_str] = ACTIONS(1473), - [anon_sym_char] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_async] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_default] = ACTIONS(1473), - [anon_sym_enum] = ACTIONS(1473), - [anon_sym_fn] = ACTIONS(1473), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_impl] = ACTIONS(1473), - [anon_sym_let] = ACTIONS(1473), - [anon_sym_loop] = ACTIONS(1473), - [anon_sym_match] = ACTIONS(1473), - [anon_sym_mod] = ACTIONS(1473), - [anon_sym_pub] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_static] = ACTIONS(1473), - [anon_sym_struct] = ACTIONS(1473), - [anon_sym_trait] = ACTIONS(1473), - [anon_sym_type] = ACTIONS(1473), - [anon_sym_union] = ACTIONS(1473), - [anon_sym_unsafe] = ACTIONS(1473), - [anon_sym_use] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_extern] = ACTIONS(1473), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_COLON_COLON] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_DOT_DOT] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_yield] = ACTIONS(1473), - [anon_sym_move] = ACTIONS(1473), - [sym_integer_literal] = ACTIONS(1471), - [aux_sym_string_literal_token1] = ACTIONS(1471), - [sym_char_literal] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1473), - [sym_super] = ACTIONS(1473), - [sym_crate] = ACTIONS(1473), - [sym_metavariable] = ACTIONS(1471), - [sym_raw_string_literal] = ACTIONS(1471), - [sym_float_literal] = ACTIONS(1471), + [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(1475), - [sym_identifier] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_macro_rules_BANG] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_u8] = ACTIONS(1477), - [anon_sym_i8] = ACTIONS(1477), - [anon_sym_u16] = ACTIONS(1477), - [anon_sym_i16] = ACTIONS(1477), - [anon_sym_u32] = ACTIONS(1477), - [anon_sym_i32] = ACTIONS(1477), - [anon_sym_u64] = ACTIONS(1477), - [anon_sym_i64] = ACTIONS(1477), - [anon_sym_u128] = ACTIONS(1477), - [anon_sym_i128] = ACTIONS(1477), - [anon_sym_isize] = ACTIONS(1477), - [anon_sym_usize] = ACTIONS(1477), - [anon_sym_f32] = ACTIONS(1477), - [anon_sym_f64] = ACTIONS(1477), - [anon_sym_bool] = ACTIONS(1477), - [anon_sym_str] = ACTIONS(1477), - [anon_sym_char] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_async] = ACTIONS(1477), - [anon_sym_break] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1477), - [anon_sym_continue] = ACTIONS(1477), - [anon_sym_default] = ACTIONS(1477), - [anon_sym_enum] = ACTIONS(1477), - [anon_sym_fn] = ACTIONS(1477), - [anon_sym_for] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1477), - [anon_sym_impl] = ACTIONS(1477), - [anon_sym_let] = ACTIONS(1477), - [anon_sym_loop] = ACTIONS(1477), - [anon_sym_match] = ACTIONS(1477), - [anon_sym_mod] = ACTIONS(1477), - [anon_sym_pub] = ACTIONS(1477), - [anon_sym_return] = ACTIONS(1477), - [anon_sym_static] = ACTIONS(1477), - [anon_sym_struct] = ACTIONS(1477), - [anon_sym_trait] = ACTIONS(1477), - [anon_sym_type] = ACTIONS(1477), - [anon_sym_union] = ACTIONS(1477), - [anon_sym_unsafe] = ACTIONS(1477), - [anon_sym_use] = ACTIONS(1477), - [anon_sym_while] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_extern] = ACTIONS(1477), - [anon_sym_LT] = ACTIONS(1475), - [anon_sym_COLON_COLON] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_yield] = ACTIONS(1477), - [anon_sym_move] = ACTIONS(1477), - [sym_integer_literal] = ACTIONS(1475), - [aux_sym_string_literal_token1] = ACTIONS(1475), - [sym_char_literal] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1477), - [anon_sym_false] = ACTIONS(1477), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1477), - [sym_super] = ACTIONS(1477), - [sym_crate] = ACTIONS(1477), - [sym_metavariable] = ACTIONS(1475), - [sym_raw_string_literal] = ACTIONS(1475), - [sym_float_literal] = ACTIONS(1475), + [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(1479), - [sym_identifier] = ACTIONS(1481), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_macro_rules_BANG] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_u8] = ACTIONS(1481), - [anon_sym_i8] = ACTIONS(1481), - [anon_sym_u16] = ACTIONS(1481), - [anon_sym_i16] = ACTIONS(1481), - [anon_sym_u32] = ACTIONS(1481), - [anon_sym_i32] = ACTIONS(1481), - [anon_sym_u64] = ACTIONS(1481), - [anon_sym_i64] = ACTIONS(1481), - [anon_sym_u128] = ACTIONS(1481), - [anon_sym_i128] = ACTIONS(1481), - [anon_sym_isize] = ACTIONS(1481), - [anon_sym_usize] = ACTIONS(1481), - [anon_sym_f32] = ACTIONS(1481), - [anon_sym_f64] = ACTIONS(1481), - [anon_sym_bool] = ACTIONS(1481), - [anon_sym_str] = ACTIONS(1481), - [anon_sym_char] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_async] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1481), - [anon_sym_fn] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_impl] = ACTIONS(1481), - [anon_sym_let] = ACTIONS(1481), - [anon_sym_loop] = ACTIONS(1481), - [anon_sym_match] = ACTIONS(1481), - [anon_sym_mod] = ACTIONS(1481), - [anon_sym_pub] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1481), - [anon_sym_static] = ACTIONS(1481), - [anon_sym_struct] = ACTIONS(1481), - [anon_sym_trait] = ACTIONS(1481), - [anon_sym_type] = ACTIONS(1481), - [anon_sym_union] = ACTIONS(1481), - [anon_sym_unsafe] = ACTIONS(1481), - [anon_sym_use] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1479), - [anon_sym_extern] = ACTIONS(1481), - [anon_sym_LT] = ACTIONS(1479), - [anon_sym_COLON_COLON] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_yield] = ACTIONS(1481), - [anon_sym_move] = ACTIONS(1481), - [sym_integer_literal] = ACTIONS(1479), - [aux_sym_string_literal_token1] = ACTIONS(1479), - [sym_char_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1481), - [anon_sym_false] = ACTIONS(1481), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1481), - [sym_super] = ACTIONS(1481), - [sym_crate] = ACTIONS(1481), - [sym_metavariable] = ACTIONS(1479), - [sym_raw_string_literal] = ACTIONS(1479), - [sym_float_literal] = ACTIONS(1479), + [ts_builtin_sym_end] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_macro_rules_BANG] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_u8] = ACTIONS(1426), + [anon_sym_i8] = ACTIONS(1426), + [anon_sym_u16] = ACTIONS(1426), + [anon_sym_i16] = ACTIONS(1426), + [anon_sym_u32] = ACTIONS(1426), + [anon_sym_i32] = ACTIONS(1426), + [anon_sym_u64] = ACTIONS(1426), + [anon_sym_i64] = ACTIONS(1426), + [anon_sym_u128] = ACTIONS(1426), + [anon_sym_i128] = ACTIONS(1426), + [anon_sym_isize] = ACTIONS(1426), + [anon_sym_usize] = ACTIONS(1426), + [anon_sym_f32] = ACTIONS(1426), + [anon_sym_f64] = ACTIONS(1426), + [anon_sym_bool] = ACTIONS(1426), + [anon_sym_str] = ACTIONS(1426), + [anon_sym_char] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_async] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_fn] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_impl] = ACTIONS(1426), + [anon_sym_let] = ACTIONS(1426), + [anon_sym_loop] = ACTIONS(1426), + [anon_sym_match] = ACTIONS(1426), + [anon_sym_mod] = ACTIONS(1426), + [anon_sym_pub] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_trait] = ACTIONS(1426), + [anon_sym_type] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_unsafe] = ACTIONS(1426), + [anon_sym_use] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_POUND] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1424), + [anon_sym_COLON_COLON] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_DOT_DOT] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_move] = ACTIONS(1426), + [sym_integer_literal] = ACTIONS(1424), + [aux_sym_string_literal_token1] = ACTIONS(1424), + [sym_char_literal] = ACTIONS(1424), + [anon_sym_true] = ACTIONS(1426), + [anon_sym_false] = ACTIONS(1426), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1426), + [sym_super] = ACTIONS(1426), + [sym_crate] = ACTIONS(1426), + [sym_metavariable] = ACTIONS(1424), + [sym_raw_string_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1424), [sym_block_comment] = ACTIONS(3), }, [333] = { - [ts_builtin_sym_end] = ACTIONS(1483), - [sym_identifier] = ACTIONS(1485), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_macro_rules_BANG] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_u8] = ACTIONS(1485), - [anon_sym_i8] = ACTIONS(1485), - [anon_sym_u16] = ACTIONS(1485), - [anon_sym_i16] = ACTIONS(1485), - [anon_sym_u32] = ACTIONS(1485), - [anon_sym_i32] = ACTIONS(1485), - [anon_sym_u64] = ACTIONS(1485), - [anon_sym_i64] = ACTIONS(1485), - [anon_sym_u128] = ACTIONS(1485), - [anon_sym_i128] = ACTIONS(1485), - [anon_sym_isize] = ACTIONS(1485), - [anon_sym_usize] = ACTIONS(1485), - [anon_sym_f32] = ACTIONS(1485), - [anon_sym_f64] = ACTIONS(1485), - [anon_sym_bool] = ACTIONS(1485), - [anon_sym_str] = ACTIONS(1485), - [anon_sym_char] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_async] = ACTIONS(1485), - [anon_sym_break] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_continue] = ACTIONS(1485), - [anon_sym_default] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1485), - [anon_sym_fn] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_impl] = ACTIONS(1485), - [anon_sym_let] = ACTIONS(1485), - [anon_sym_loop] = ACTIONS(1485), - [anon_sym_match] = ACTIONS(1485), - [anon_sym_mod] = ACTIONS(1485), - [anon_sym_pub] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_static] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1485), - [anon_sym_trait] = ACTIONS(1485), - [anon_sym_type] = ACTIONS(1485), - [anon_sym_union] = ACTIONS(1485), - [anon_sym_unsafe] = ACTIONS(1485), - [anon_sym_use] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_POUND] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_extern] = ACTIONS(1485), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_COLON_COLON] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_move] = ACTIONS(1485), - [sym_integer_literal] = ACTIONS(1483), - [aux_sym_string_literal_token1] = ACTIONS(1483), - [sym_char_literal] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1485), - [anon_sym_false] = ACTIONS(1485), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1485), - [sym_super] = ACTIONS(1485), - [sym_crate] = ACTIONS(1485), - [sym_metavariable] = ACTIONS(1483), - [sym_raw_string_literal] = ACTIONS(1483), - [sym_float_literal] = ACTIONS(1483), + [ts_builtin_sym_end] = ACTIONS(1428), + [sym_identifier] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_macro_rules_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_u8] = ACTIONS(1430), + [anon_sym_i8] = ACTIONS(1430), + [anon_sym_u16] = ACTIONS(1430), + [anon_sym_i16] = ACTIONS(1430), + [anon_sym_u32] = ACTIONS(1430), + [anon_sym_i32] = ACTIONS(1430), + [anon_sym_u64] = ACTIONS(1430), + [anon_sym_i64] = ACTIONS(1430), + [anon_sym_u128] = ACTIONS(1430), + [anon_sym_i128] = ACTIONS(1430), + [anon_sym_isize] = ACTIONS(1430), + [anon_sym_usize] = ACTIONS(1430), + [anon_sym_f32] = ACTIONS(1430), + [anon_sym_f64] = ACTIONS(1430), + [anon_sym_bool] = ACTIONS(1430), + [anon_sym_str] = ACTIONS(1430), + [anon_sym_char] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_async] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_impl] = ACTIONS(1430), + [anon_sym_let] = ACTIONS(1430), + [anon_sym_loop] = ACTIONS(1430), + [anon_sym_match] = ACTIONS(1430), + [anon_sym_mod] = ACTIONS(1430), + [anon_sym_pub] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_trait] = ACTIONS(1430), + [anon_sym_type] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_unsafe] = ACTIONS(1430), + [anon_sym_use] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_COLON_COLON] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_yield] = ACTIONS(1430), + [anon_sym_move] = ACTIONS(1430), + [sym_integer_literal] = ACTIONS(1428), + [aux_sym_string_literal_token1] = ACTIONS(1428), + [sym_char_literal] = ACTIONS(1428), + [anon_sym_true] = ACTIONS(1430), + [anon_sym_false] = ACTIONS(1430), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1430), + [sym_super] = ACTIONS(1430), + [sym_crate] = ACTIONS(1430), + [sym_metavariable] = ACTIONS(1428), + [sym_raw_string_literal] = ACTIONS(1428), + [sym_float_literal] = ACTIONS(1428), [sym_block_comment] = ACTIONS(3), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(1487), - [sym_identifier] = ACTIONS(1489), - [anon_sym_SEMI] = ACTIONS(1487), - [anon_sym_macro_rules_BANG] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1487), - [anon_sym_LBRACK] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_u8] = ACTIONS(1489), - [anon_sym_i8] = ACTIONS(1489), - [anon_sym_u16] = ACTIONS(1489), - [anon_sym_i16] = ACTIONS(1489), - [anon_sym_u32] = ACTIONS(1489), - [anon_sym_i32] = ACTIONS(1489), - [anon_sym_u64] = ACTIONS(1489), - [anon_sym_i64] = ACTIONS(1489), - [anon_sym_u128] = ACTIONS(1489), - [anon_sym_i128] = ACTIONS(1489), - [anon_sym_isize] = ACTIONS(1489), - [anon_sym_usize] = ACTIONS(1489), - [anon_sym_f32] = ACTIONS(1489), - [anon_sym_f64] = ACTIONS(1489), - [anon_sym_bool] = ACTIONS(1489), - [anon_sym_str] = ACTIONS(1489), - [anon_sym_char] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_async] = ACTIONS(1489), - [anon_sym_break] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_continue] = ACTIONS(1489), - [anon_sym_default] = ACTIONS(1489), - [anon_sym_enum] = ACTIONS(1489), - [anon_sym_fn] = ACTIONS(1489), - [anon_sym_for] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1489), - [anon_sym_impl] = ACTIONS(1489), - [anon_sym_let] = ACTIONS(1489), - [anon_sym_loop] = ACTIONS(1489), - [anon_sym_match] = ACTIONS(1489), - [anon_sym_mod] = ACTIONS(1489), - [anon_sym_pub] = ACTIONS(1489), - [anon_sym_return] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1489), - [anon_sym_trait] = ACTIONS(1489), - [anon_sym_type] = ACTIONS(1489), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_unsafe] = ACTIONS(1489), - [anon_sym_use] = ACTIONS(1489), - [anon_sym_while] = ACTIONS(1489), - [anon_sym_POUND] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_extern] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1487), - [anon_sym_COLON_COLON] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1487), - [anon_sym_yield] = ACTIONS(1489), - [anon_sym_move] = ACTIONS(1489), - [sym_integer_literal] = ACTIONS(1487), - [aux_sym_string_literal_token1] = ACTIONS(1487), - [sym_char_literal] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(1489), - [anon_sym_false] = ACTIONS(1489), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1489), - [sym_super] = ACTIONS(1489), - [sym_crate] = ACTIONS(1489), - [sym_metavariable] = ACTIONS(1487), - [sym_raw_string_literal] = ACTIONS(1487), - [sym_float_literal] = ACTIONS(1487), + [ts_builtin_sym_end] = ACTIONS(1432), + [sym_identifier] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_macro_rules_BANG] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1434), + [anon_sym_i8] = ACTIONS(1434), + [anon_sym_u16] = ACTIONS(1434), + [anon_sym_i16] = ACTIONS(1434), + [anon_sym_u32] = ACTIONS(1434), + [anon_sym_i32] = ACTIONS(1434), + [anon_sym_u64] = ACTIONS(1434), + [anon_sym_i64] = ACTIONS(1434), + [anon_sym_u128] = ACTIONS(1434), + [anon_sym_i128] = ACTIONS(1434), + [anon_sym_isize] = ACTIONS(1434), + [anon_sym_usize] = ACTIONS(1434), + [anon_sym_f32] = ACTIONS(1434), + [anon_sym_f64] = ACTIONS(1434), + [anon_sym_bool] = ACTIONS(1434), + [anon_sym_str] = ACTIONS(1434), + [anon_sym_char] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_impl] = ACTIONS(1434), + [anon_sym_let] = ACTIONS(1434), + [anon_sym_loop] = ACTIONS(1434), + [anon_sym_match] = ACTIONS(1434), + [anon_sym_mod] = ACTIONS(1434), + [anon_sym_pub] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_trait] = ACTIONS(1434), + [anon_sym_type] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_unsafe] = ACTIONS(1434), + [anon_sym_use] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_COLON_COLON] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_yield] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1432), + [aux_sym_string_literal_token1] = ACTIONS(1432), + [sym_char_literal] = ACTIONS(1432), + [anon_sym_true] = ACTIONS(1434), + [anon_sym_false] = ACTIONS(1434), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1434), + [sym_super] = ACTIONS(1434), + [sym_crate] = ACTIONS(1434), + [sym_metavariable] = ACTIONS(1432), + [sym_raw_string_literal] = ACTIONS(1432), + [sym_float_literal] = ACTIONS(1432), [sym_block_comment] = ACTIONS(3), }, [335] = { - [ts_builtin_sym_end] = ACTIONS(1491), - [sym_identifier] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym_macro_rules_BANG] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_u8] = ACTIONS(1493), - [anon_sym_i8] = ACTIONS(1493), - [anon_sym_u16] = ACTIONS(1493), - [anon_sym_i16] = ACTIONS(1493), - [anon_sym_u32] = ACTIONS(1493), - [anon_sym_i32] = ACTIONS(1493), - [anon_sym_u64] = ACTIONS(1493), - [anon_sym_i64] = ACTIONS(1493), - [anon_sym_u128] = ACTIONS(1493), - [anon_sym_i128] = ACTIONS(1493), - [anon_sym_isize] = ACTIONS(1493), - [anon_sym_usize] = ACTIONS(1493), - [anon_sym_f32] = ACTIONS(1493), - [anon_sym_f64] = ACTIONS(1493), - [anon_sym_bool] = ACTIONS(1493), - [anon_sym_str] = ACTIONS(1493), - [anon_sym_char] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_async] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_enum] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_impl] = ACTIONS(1493), - [anon_sym_let] = ACTIONS(1493), - [anon_sym_loop] = ACTIONS(1493), - [anon_sym_match] = ACTIONS(1493), - [anon_sym_mod] = ACTIONS(1493), - [anon_sym_pub] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1493), - [anon_sym_struct] = ACTIONS(1493), - [anon_sym_trait] = ACTIONS(1493), - [anon_sym_type] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_unsafe] = ACTIONS(1493), - [anon_sym_use] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_POUND] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1491), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_DOT_DOT] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_yield] = ACTIONS(1493), - [anon_sym_move] = ACTIONS(1493), - [sym_integer_literal] = ACTIONS(1491), - [aux_sym_string_literal_token1] = ACTIONS(1491), - [sym_char_literal] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = ACTIONS(1493), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1493), - [sym_super] = ACTIONS(1493), - [sym_crate] = ACTIONS(1493), - [sym_metavariable] = ACTIONS(1491), - [sym_raw_string_literal] = ACTIONS(1491), - [sym_float_literal] = ACTIONS(1491), + [ts_builtin_sym_end] = ACTIONS(1436), + [sym_identifier] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_macro_rules_BANG] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_u8] = ACTIONS(1438), + [anon_sym_i8] = ACTIONS(1438), + [anon_sym_u16] = ACTIONS(1438), + [anon_sym_i16] = ACTIONS(1438), + [anon_sym_u32] = ACTIONS(1438), + [anon_sym_i32] = ACTIONS(1438), + [anon_sym_u64] = ACTIONS(1438), + [anon_sym_i64] = ACTIONS(1438), + [anon_sym_u128] = ACTIONS(1438), + [anon_sym_i128] = ACTIONS(1438), + [anon_sym_isize] = ACTIONS(1438), + [anon_sym_usize] = ACTIONS(1438), + [anon_sym_f32] = ACTIONS(1438), + [anon_sym_f64] = ACTIONS(1438), + [anon_sym_bool] = ACTIONS(1438), + [anon_sym_str] = ACTIONS(1438), + [anon_sym_char] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_async] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_impl] = ACTIONS(1438), + [anon_sym_let] = ACTIONS(1438), + [anon_sym_loop] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1438), + [anon_sym_mod] = ACTIONS(1438), + [anon_sym_pub] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_trait] = ACTIONS(1438), + [anon_sym_type] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_unsafe] = ACTIONS(1438), + [anon_sym_use] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1436), + [anon_sym_COLON_COLON] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_yield] = ACTIONS(1438), + [anon_sym_move] = ACTIONS(1438), + [sym_integer_literal] = ACTIONS(1436), + [aux_sym_string_literal_token1] = ACTIONS(1436), + [sym_char_literal] = ACTIONS(1436), + [anon_sym_true] = ACTIONS(1438), + [anon_sym_false] = ACTIONS(1438), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1438), + [sym_super] = ACTIONS(1438), + [sym_crate] = ACTIONS(1438), + [sym_metavariable] = ACTIONS(1436), + [sym_raw_string_literal] = ACTIONS(1436), + [sym_float_literal] = ACTIONS(1436), [sym_block_comment] = ACTIONS(3), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(1495), - [sym_identifier] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_macro_rules_BANG] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_u8] = ACTIONS(1497), - [anon_sym_i8] = ACTIONS(1497), - [anon_sym_u16] = ACTIONS(1497), - [anon_sym_i16] = ACTIONS(1497), - [anon_sym_u32] = ACTIONS(1497), - [anon_sym_i32] = ACTIONS(1497), - [anon_sym_u64] = ACTIONS(1497), - [anon_sym_i64] = ACTIONS(1497), - [anon_sym_u128] = ACTIONS(1497), - [anon_sym_i128] = ACTIONS(1497), - [anon_sym_isize] = ACTIONS(1497), - [anon_sym_usize] = ACTIONS(1497), - [anon_sym_f32] = ACTIONS(1497), - [anon_sym_f64] = ACTIONS(1497), - [anon_sym_bool] = ACTIONS(1497), - [anon_sym_str] = ACTIONS(1497), - [anon_sym_char] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_async] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_enum] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_impl] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_loop] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_mod] = ACTIONS(1497), - [anon_sym_pub] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_struct] = ACTIONS(1497), - [anon_sym_trait] = ACTIONS(1497), - [anon_sym_type] = ACTIONS(1497), - [anon_sym_union] = ACTIONS(1497), - [anon_sym_unsafe] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym_LT] = ACTIONS(1495), - [anon_sym_COLON_COLON] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1495), - [anon_sym_yield] = ACTIONS(1497), - [anon_sym_move] = ACTIONS(1497), - [sym_integer_literal] = ACTIONS(1495), - [aux_sym_string_literal_token1] = ACTIONS(1495), - [sym_char_literal] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1497), - [sym_super] = ACTIONS(1497), - [sym_crate] = ACTIONS(1497), - [sym_metavariable] = ACTIONS(1495), - [sym_raw_string_literal] = ACTIONS(1495), - [sym_float_literal] = ACTIONS(1495), + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym_macro_rules_BANG] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_u8] = ACTIONS(1442), + [anon_sym_i8] = ACTIONS(1442), + [anon_sym_u16] = ACTIONS(1442), + [anon_sym_i16] = ACTIONS(1442), + [anon_sym_u32] = ACTIONS(1442), + [anon_sym_i32] = ACTIONS(1442), + [anon_sym_u64] = ACTIONS(1442), + [anon_sym_i64] = ACTIONS(1442), + [anon_sym_u128] = ACTIONS(1442), + [anon_sym_i128] = ACTIONS(1442), + [anon_sym_isize] = ACTIONS(1442), + [anon_sym_usize] = ACTIONS(1442), + [anon_sym_f32] = ACTIONS(1442), + [anon_sym_f64] = ACTIONS(1442), + [anon_sym_bool] = ACTIONS(1442), + [anon_sym_str] = ACTIONS(1442), + [anon_sym_char] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_async] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_impl] = ACTIONS(1442), + [anon_sym_let] = ACTIONS(1442), + [anon_sym_loop] = ACTIONS(1442), + [anon_sym_match] = ACTIONS(1442), + [anon_sym_mod] = ACTIONS(1442), + [anon_sym_pub] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_trait] = ACTIONS(1442), + [anon_sym_type] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_unsafe] = ACTIONS(1442), + [anon_sym_use] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1440), + [anon_sym_COLON_COLON] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_DOT_DOT] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PIPE] = ACTIONS(1440), + [anon_sym_yield] = ACTIONS(1442), + [anon_sym_move] = ACTIONS(1442), + [sym_integer_literal] = ACTIONS(1440), + [aux_sym_string_literal_token1] = ACTIONS(1440), + [sym_char_literal] = ACTIONS(1440), + [anon_sym_true] = ACTIONS(1442), + [anon_sym_false] = ACTIONS(1442), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1442), + [sym_super] = ACTIONS(1442), + [sym_crate] = ACTIONS(1442), + [sym_metavariable] = ACTIONS(1440), + [sym_raw_string_literal] = ACTIONS(1440), + [sym_float_literal] = ACTIONS(1440), [sym_block_comment] = ACTIONS(3), }, [337] = { - [ts_builtin_sym_end] = ACTIONS(1499), - [sym_identifier] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_macro_rules_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_u8] = ACTIONS(1501), - [anon_sym_i8] = ACTIONS(1501), - [anon_sym_u16] = ACTIONS(1501), - [anon_sym_i16] = ACTIONS(1501), - [anon_sym_u32] = ACTIONS(1501), - [anon_sym_i32] = ACTIONS(1501), - [anon_sym_u64] = ACTIONS(1501), - [anon_sym_i64] = ACTIONS(1501), - [anon_sym_u128] = ACTIONS(1501), - [anon_sym_i128] = ACTIONS(1501), - [anon_sym_isize] = ACTIONS(1501), - [anon_sym_usize] = ACTIONS(1501), - [anon_sym_f32] = ACTIONS(1501), - [anon_sym_f64] = ACTIONS(1501), - [anon_sym_bool] = ACTIONS(1501), - [anon_sym_str] = ACTIONS(1501), - [anon_sym_char] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_async] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1501), - [anon_sym_enum] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_impl] = ACTIONS(1501), - [anon_sym_let] = ACTIONS(1501), - [anon_sym_loop] = ACTIONS(1501), - [anon_sym_match] = ACTIONS(1501), - [anon_sym_mod] = ACTIONS(1501), - [anon_sym_pub] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_static] = ACTIONS(1501), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_trait] = ACTIONS(1501), - [anon_sym_type] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1501), - [anon_sym_unsafe] = ACTIONS(1501), - [anon_sym_use] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_POUND] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_extern] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1499), - [anon_sym_COLON_COLON] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_yield] = ACTIONS(1501), - [anon_sym_move] = ACTIONS(1501), - [sym_integer_literal] = ACTIONS(1499), - [aux_sym_string_literal_token1] = ACTIONS(1499), - [sym_char_literal] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1501), - [sym_super] = ACTIONS(1501), - [sym_crate] = ACTIONS(1501), - [sym_metavariable] = ACTIONS(1499), - [sym_raw_string_literal] = ACTIONS(1499), - [sym_float_literal] = ACTIONS(1499), + [ts_builtin_sym_end] = ACTIONS(1444), + [sym_identifier] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_macro_rules_BANG] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_u8] = ACTIONS(1446), + [anon_sym_i8] = ACTIONS(1446), + [anon_sym_u16] = ACTIONS(1446), + [anon_sym_i16] = ACTIONS(1446), + [anon_sym_u32] = ACTIONS(1446), + [anon_sym_i32] = ACTIONS(1446), + [anon_sym_u64] = ACTIONS(1446), + [anon_sym_i64] = ACTIONS(1446), + [anon_sym_u128] = ACTIONS(1446), + [anon_sym_i128] = ACTIONS(1446), + [anon_sym_isize] = ACTIONS(1446), + [anon_sym_usize] = ACTIONS(1446), + [anon_sym_f32] = ACTIONS(1446), + [anon_sym_f64] = ACTIONS(1446), + [anon_sym_bool] = ACTIONS(1446), + [anon_sym_str] = ACTIONS(1446), + [anon_sym_char] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_async] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_impl] = ACTIONS(1446), + [anon_sym_let] = ACTIONS(1446), + [anon_sym_loop] = ACTIONS(1446), + [anon_sym_match] = ACTIONS(1446), + [anon_sym_mod] = ACTIONS(1446), + [anon_sym_pub] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_trait] = ACTIONS(1446), + [anon_sym_type] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_unsafe] = ACTIONS(1446), + [anon_sym_use] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_DOT_DOT] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_move] = ACTIONS(1446), + [sym_integer_literal] = ACTIONS(1444), + [aux_sym_string_literal_token1] = ACTIONS(1444), + [sym_char_literal] = ACTIONS(1444), + [anon_sym_true] = ACTIONS(1446), + [anon_sym_false] = ACTIONS(1446), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1446), + [sym_super] = ACTIONS(1446), + [sym_crate] = ACTIONS(1446), + [sym_metavariable] = ACTIONS(1444), + [sym_raw_string_literal] = ACTIONS(1444), + [sym_float_literal] = ACTIONS(1444), [sym_block_comment] = ACTIONS(3), }, [338] = { - [ts_builtin_sym_end] = ACTIONS(1503), - [sym_identifier] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1503), - [anon_sym_macro_rules_BANG] = ACTIONS(1503), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1503), - [anon_sym_u8] = ACTIONS(1505), - [anon_sym_i8] = ACTIONS(1505), - [anon_sym_u16] = ACTIONS(1505), - [anon_sym_i16] = ACTIONS(1505), - [anon_sym_u32] = ACTIONS(1505), - [anon_sym_i32] = ACTIONS(1505), - [anon_sym_u64] = ACTIONS(1505), - [anon_sym_i64] = ACTIONS(1505), - [anon_sym_u128] = ACTIONS(1505), - [anon_sym_i128] = ACTIONS(1505), - [anon_sym_isize] = ACTIONS(1505), - [anon_sym_usize] = ACTIONS(1505), - [anon_sym_f32] = ACTIONS(1505), - [anon_sym_f64] = ACTIONS(1505), - [anon_sym_bool] = ACTIONS(1505), - [anon_sym_str] = ACTIONS(1505), - [anon_sym_char] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_async] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_default] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_impl] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_loop] = ACTIONS(1505), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_mod] = ACTIONS(1505), - [anon_sym_pub] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_static] = ACTIONS(1505), - [anon_sym_struct] = ACTIONS(1505), - [anon_sym_trait] = ACTIONS(1505), - [anon_sym_type] = ACTIONS(1505), - [anon_sym_union] = ACTIONS(1505), - [anon_sym_unsafe] = ACTIONS(1505), - [anon_sym_use] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_POUND] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym_LT] = ACTIONS(1503), - [anon_sym_COLON_COLON] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_DOT_DOT] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_yield] = ACTIONS(1505), - [anon_sym_move] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [aux_sym_string_literal_token1] = ACTIONS(1503), - [sym_char_literal] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1505), - [sym_super] = ACTIONS(1505), - [sym_crate] = ACTIONS(1505), - [sym_metavariable] = ACTIONS(1503), - [sym_raw_string_literal] = ACTIONS(1503), - [sym_float_literal] = ACTIONS(1503), + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_identifier] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_macro_rules_BANG] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_u8] = ACTIONS(1450), + [anon_sym_i8] = ACTIONS(1450), + [anon_sym_u16] = ACTIONS(1450), + [anon_sym_i16] = ACTIONS(1450), + [anon_sym_u32] = ACTIONS(1450), + [anon_sym_i32] = ACTIONS(1450), + [anon_sym_u64] = ACTIONS(1450), + [anon_sym_i64] = ACTIONS(1450), + [anon_sym_u128] = ACTIONS(1450), + [anon_sym_i128] = ACTIONS(1450), + [anon_sym_isize] = ACTIONS(1450), + [anon_sym_usize] = ACTIONS(1450), + [anon_sym_f32] = ACTIONS(1450), + [anon_sym_f64] = ACTIONS(1450), + [anon_sym_bool] = ACTIONS(1450), + [anon_sym_str] = ACTIONS(1450), + [anon_sym_char] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_async] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_impl] = ACTIONS(1450), + [anon_sym_let] = ACTIONS(1450), + [anon_sym_loop] = ACTIONS(1450), + [anon_sym_match] = ACTIONS(1450), + [anon_sym_mod] = ACTIONS(1450), + [anon_sym_pub] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_trait] = ACTIONS(1450), + [anon_sym_type] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_unsafe] = ACTIONS(1450), + [anon_sym_use] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_COLON_COLON] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_yield] = ACTIONS(1450), + [anon_sym_move] = ACTIONS(1450), + [sym_integer_literal] = ACTIONS(1448), + [aux_sym_string_literal_token1] = ACTIONS(1448), + [sym_char_literal] = ACTIONS(1448), + [anon_sym_true] = ACTIONS(1450), + [anon_sym_false] = ACTIONS(1450), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1450), + [sym_super] = ACTIONS(1450), + [sym_crate] = ACTIONS(1450), + [sym_metavariable] = ACTIONS(1448), + [sym_raw_string_literal] = ACTIONS(1448), + [sym_float_literal] = ACTIONS(1448), [sym_block_comment] = ACTIONS(3), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(1507), - [sym_identifier] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_macro_rules_BANG] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_u8] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u128] = ACTIONS(1509), - [anon_sym_i128] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_str] = ACTIONS(1509), - [anon_sym_char] = ACTIONS(1509), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_async] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_enum] = ACTIONS(1509), - [anon_sym_fn] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_impl] = ACTIONS(1509), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_loop] = ACTIONS(1509), - [anon_sym_match] = ACTIONS(1509), - [anon_sym_mod] = ACTIONS(1509), - [anon_sym_pub] = ACTIONS(1509), - [anon_sym_return] = ACTIONS(1509), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1509), - [anon_sym_trait] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_unsafe] = ACTIONS(1509), - [anon_sym_use] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_POUND] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_extern] = ACTIONS(1509), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_yield] = ACTIONS(1509), - [anon_sym_move] = ACTIONS(1509), - [sym_integer_literal] = ACTIONS(1507), - [aux_sym_string_literal_token1] = ACTIONS(1507), - [sym_char_literal] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1509), - [sym_super] = ACTIONS(1509), - [sym_crate] = ACTIONS(1509), - [sym_metavariable] = ACTIONS(1507), - [sym_raw_string_literal] = ACTIONS(1507), - [sym_float_literal] = ACTIONS(1507), + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_macro_rules_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_u8] = ACTIONS(1454), + [anon_sym_i8] = ACTIONS(1454), + [anon_sym_u16] = ACTIONS(1454), + [anon_sym_i16] = ACTIONS(1454), + [anon_sym_u32] = ACTIONS(1454), + [anon_sym_i32] = ACTIONS(1454), + [anon_sym_u64] = ACTIONS(1454), + [anon_sym_i64] = ACTIONS(1454), + [anon_sym_u128] = ACTIONS(1454), + [anon_sym_i128] = ACTIONS(1454), + [anon_sym_isize] = ACTIONS(1454), + [anon_sym_usize] = ACTIONS(1454), + [anon_sym_f32] = ACTIONS(1454), + [anon_sym_f64] = ACTIONS(1454), + [anon_sym_bool] = ACTIONS(1454), + [anon_sym_str] = ACTIONS(1454), + [anon_sym_char] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_async] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_fn] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_impl] = ACTIONS(1454), + [anon_sym_let] = ACTIONS(1454), + [anon_sym_loop] = ACTIONS(1454), + [anon_sym_match] = ACTIONS(1454), + [anon_sym_mod] = ACTIONS(1454), + [anon_sym_pub] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_trait] = ACTIONS(1454), + [anon_sym_type] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_unsafe] = ACTIONS(1454), + [anon_sym_use] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1452), + [anon_sym_COLON_COLON] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_DOT_DOT] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_yield] = ACTIONS(1454), + [anon_sym_move] = ACTIONS(1454), + [sym_integer_literal] = ACTIONS(1452), + [aux_sym_string_literal_token1] = ACTIONS(1452), + [sym_char_literal] = ACTIONS(1452), + [anon_sym_true] = ACTIONS(1454), + [anon_sym_false] = ACTIONS(1454), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1454), + [sym_super] = ACTIONS(1454), + [sym_crate] = ACTIONS(1454), + [sym_metavariable] = ACTIONS(1452), + [sym_raw_string_literal] = ACTIONS(1452), + [sym_float_literal] = ACTIONS(1452), [sym_block_comment] = ACTIONS(3), }, [340] = { - [ts_builtin_sym_end] = ACTIONS(1511), - [sym_identifier] = ACTIONS(1513), - [anon_sym_SEMI] = ACTIONS(1511), - [anon_sym_macro_rules_BANG] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_u8] = ACTIONS(1513), - [anon_sym_i8] = ACTIONS(1513), - [anon_sym_u16] = ACTIONS(1513), - [anon_sym_i16] = ACTIONS(1513), - [anon_sym_u32] = ACTIONS(1513), - [anon_sym_i32] = ACTIONS(1513), - [anon_sym_u64] = ACTIONS(1513), - [anon_sym_i64] = ACTIONS(1513), - [anon_sym_u128] = ACTIONS(1513), - [anon_sym_i128] = ACTIONS(1513), - [anon_sym_isize] = ACTIONS(1513), - [anon_sym_usize] = ACTIONS(1513), - [anon_sym_f32] = ACTIONS(1513), - [anon_sym_f64] = ACTIONS(1513), - [anon_sym_bool] = ACTIONS(1513), - [anon_sym_str] = ACTIONS(1513), - [anon_sym_char] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_async] = ACTIONS(1513), - [anon_sym_break] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_continue] = ACTIONS(1513), - [anon_sym_default] = ACTIONS(1513), - [anon_sym_enum] = ACTIONS(1513), - [anon_sym_fn] = ACTIONS(1513), - [anon_sym_for] = ACTIONS(1513), - [anon_sym_if] = ACTIONS(1513), - [anon_sym_impl] = ACTIONS(1513), - [anon_sym_let] = ACTIONS(1513), - [anon_sym_loop] = ACTIONS(1513), - [anon_sym_match] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_pub] = ACTIONS(1513), - [anon_sym_return] = ACTIONS(1513), - [anon_sym_static] = ACTIONS(1513), - [anon_sym_struct] = ACTIONS(1513), - [anon_sym_trait] = ACTIONS(1513), - [anon_sym_type] = ACTIONS(1513), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_unsafe] = ACTIONS(1513), - [anon_sym_use] = ACTIONS(1513), - [anon_sym_while] = ACTIONS(1513), - [anon_sym_POUND] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_extern] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_COLON_COLON] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_yield] = ACTIONS(1513), - [anon_sym_move] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1511), - [aux_sym_string_literal_token1] = ACTIONS(1511), - [sym_char_literal] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1513), - [anon_sym_false] = ACTIONS(1513), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1513), - [sym_super] = ACTIONS(1513), - [sym_crate] = ACTIONS(1513), - [sym_metavariable] = ACTIONS(1511), - [sym_raw_string_literal] = ACTIONS(1511), - [sym_float_literal] = ACTIONS(1511), + [ts_builtin_sym_end] = ACTIONS(1456), + [sym_identifier] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_macro_rules_BANG] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_u8] = ACTIONS(1458), + [anon_sym_i8] = ACTIONS(1458), + [anon_sym_u16] = ACTIONS(1458), + [anon_sym_i16] = ACTIONS(1458), + [anon_sym_u32] = ACTIONS(1458), + [anon_sym_i32] = ACTIONS(1458), + [anon_sym_u64] = ACTIONS(1458), + [anon_sym_i64] = ACTIONS(1458), + [anon_sym_u128] = ACTIONS(1458), + [anon_sym_i128] = ACTIONS(1458), + [anon_sym_isize] = ACTIONS(1458), + [anon_sym_usize] = ACTIONS(1458), + [anon_sym_f32] = ACTIONS(1458), + [anon_sym_f64] = ACTIONS(1458), + [anon_sym_bool] = ACTIONS(1458), + [anon_sym_str] = ACTIONS(1458), + [anon_sym_char] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_async] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_fn] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_impl] = ACTIONS(1458), + [anon_sym_let] = ACTIONS(1458), + [anon_sym_loop] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1458), + [anon_sym_mod] = ACTIONS(1458), + [anon_sym_pub] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_trait] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_unsafe] = ACTIONS(1458), + [anon_sym_use] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_COLON_COLON] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_DOT_DOT] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_yield] = ACTIONS(1458), + [anon_sym_move] = ACTIONS(1458), + [sym_integer_literal] = ACTIONS(1456), + [aux_sym_string_literal_token1] = ACTIONS(1456), + [sym_char_literal] = ACTIONS(1456), + [anon_sym_true] = ACTIONS(1458), + [anon_sym_false] = ACTIONS(1458), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1458), + [sym_super] = ACTIONS(1458), + [sym_crate] = ACTIONS(1458), + [sym_metavariable] = ACTIONS(1456), + [sym_raw_string_literal] = ACTIONS(1456), + [sym_float_literal] = ACTIONS(1456), [sym_block_comment] = ACTIONS(3), }, [341] = { - [ts_builtin_sym_end] = ACTIONS(1515), - [sym_identifier] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_macro_rules_BANG] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_u8] = ACTIONS(1517), - [anon_sym_i8] = ACTIONS(1517), - [anon_sym_u16] = ACTIONS(1517), - [anon_sym_i16] = ACTIONS(1517), - [anon_sym_u32] = ACTIONS(1517), - [anon_sym_i32] = ACTIONS(1517), - [anon_sym_u64] = ACTIONS(1517), - [anon_sym_i64] = ACTIONS(1517), - [anon_sym_u128] = ACTIONS(1517), - [anon_sym_i128] = ACTIONS(1517), - [anon_sym_isize] = ACTIONS(1517), - [anon_sym_usize] = ACTIONS(1517), - [anon_sym_f32] = ACTIONS(1517), - [anon_sym_f64] = ACTIONS(1517), - [anon_sym_bool] = ACTIONS(1517), - [anon_sym_str] = ACTIONS(1517), - [anon_sym_char] = ACTIONS(1517), - [anon_sym_SQUOTE] = ACTIONS(1517), - [anon_sym_async] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_default] = ACTIONS(1517), - [anon_sym_enum] = ACTIONS(1517), - [anon_sym_fn] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_impl] = ACTIONS(1517), - [anon_sym_let] = ACTIONS(1517), - [anon_sym_loop] = ACTIONS(1517), - [anon_sym_match] = ACTIONS(1517), - [anon_sym_mod] = ACTIONS(1517), - [anon_sym_pub] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_static] = ACTIONS(1517), - [anon_sym_struct] = ACTIONS(1517), - [anon_sym_trait] = ACTIONS(1517), - [anon_sym_type] = ACTIONS(1517), - [anon_sym_union] = ACTIONS(1517), - [anon_sym_unsafe] = ACTIONS(1517), - [anon_sym_use] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_POUND] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_extern] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1515), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_DOT_DOT] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_yield] = ACTIONS(1517), - [anon_sym_move] = ACTIONS(1517), - [sym_integer_literal] = ACTIONS(1515), - [aux_sym_string_literal_token1] = ACTIONS(1515), - [sym_char_literal] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1517), - [anon_sym_false] = ACTIONS(1517), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1517), - [sym_super] = ACTIONS(1517), - [sym_crate] = ACTIONS(1517), - [sym_metavariable] = ACTIONS(1515), - [sym_raw_string_literal] = ACTIONS(1515), - [sym_float_literal] = ACTIONS(1515), + [ts_builtin_sym_end] = ACTIONS(1460), + [sym_identifier] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym_macro_rules_BANG] = ACTIONS(1460), + [anon_sym_LPAREN] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_u8] = ACTIONS(1462), + [anon_sym_i8] = ACTIONS(1462), + [anon_sym_u16] = ACTIONS(1462), + [anon_sym_i16] = ACTIONS(1462), + [anon_sym_u32] = ACTIONS(1462), + [anon_sym_i32] = ACTIONS(1462), + [anon_sym_u64] = ACTIONS(1462), + [anon_sym_i64] = ACTIONS(1462), + [anon_sym_u128] = ACTIONS(1462), + [anon_sym_i128] = ACTIONS(1462), + [anon_sym_isize] = ACTIONS(1462), + [anon_sym_usize] = ACTIONS(1462), + [anon_sym_f32] = ACTIONS(1462), + [anon_sym_f64] = ACTIONS(1462), + [anon_sym_bool] = ACTIONS(1462), + [anon_sym_str] = ACTIONS(1462), + [anon_sym_char] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_fn] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_impl] = ACTIONS(1462), + [anon_sym_let] = ACTIONS(1462), + [anon_sym_loop] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1462), + [anon_sym_mod] = ACTIONS(1462), + [anon_sym_pub] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_trait] = ACTIONS(1462), + [anon_sym_type] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_unsafe] = ACTIONS(1462), + [anon_sym_use] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_DOT_DOT] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_yield] = ACTIONS(1462), + [anon_sym_move] = ACTIONS(1462), + [sym_integer_literal] = ACTIONS(1460), + [aux_sym_string_literal_token1] = ACTIONS(1460), + [sym_char_literal] = ACTIONS(1460), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1462), + [sym_super] = ACTIONS(1462), + [sym_crate] = ACTIONS(1462), + [sym_metavariable] = ACTIONS(1460), + [sym_raw_string_literal] = ACTIONS(1460), + [sym_float_literal] = ACTIONS(1460), [sym_block_comment] = ACTIONS(3), }, [342] = { - [sym__token_pattern] = STATE(245), - [sym_token_tree_pattern] = STATE(245), - [sym_token_binding_pattern] = STATE(245), - [sym_token_repetition_pattern] = STATE(245), - [sym__never_special_token] = STATE(245), - [sym__literal] = STATE(245), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_pattern_repeat1] = STATE(245), - [sym_identifier] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_RBRACK] = ACTIONS(1519), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_u8] = ACTIONS(1150), - [anon_sym_i8] = ACTIONS(1150), - [anon_sym_u16] = ACTIONS(1150), - [anon_sym_i16] = ACTIONS(1150), - [anon_sym_u32] = ACTIONS(1150), - [anon_sym_i32] = ACTIONS(1150), - [anon_sym_u64] = ACTIONS(1150), - [anon_sym_i64] = ACTIONS(1150), - [anon_sym_u128] = ACTIONS(1150), - [anon_sym_i128] = ACTIONS(1150), - [anon_sym_isize] = ACTIONS(1150), - [anon_sym_usize] = ACTIONS(1150), - [anon_sym_f32] = ACTIONS(1150), - [anon_sym_f64] = ACTIONS(1150), - [anon_sym_bool] = ACTIONS(1150), - [anon_sym_str] = ACTIONS(1150), - [anon_sym_char] = ACTIONS(1150), - [aux_sym__never_special_token_token1] = ACTIONS(1150), - [anon_sym_SQUOTE] = ACTIONS(1150), - [anon_sym_as] = ACTIONS(1150), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_await] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1150), - [anon_sym_const] = ACTIONS(1150), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_default] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1150), - [anon_sym_fn] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_impl] = ACTIONS(1150), - [anon_sym_let] = ACTIONS(1150), - [anon_sym_loop] = ACTIONS(1150), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_mod] = ACTIONS(1150), - [anon_sym_pub] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1150), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_struct] = ACTIONS(1150), - [anon_sym_trait] = ACTIONS(1150), - [anon_sym_type] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1150), - [anon_sym_unsafe] = ACTIONS(1150), - [anon_sym_use] = ACTIONS(1150), - [anon_sym_where] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1150), - [sym_mutable_specifier] = ACTIONS(1150), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1168), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [ts_builtin_sym_end] = ACTIONS(1464), + [sym_identifier] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_macro_rules_BANG] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_u8] = ACTIONS(1466), + [anon_sym_i8] = ACTIONS(1466), + [anon_sym_u16] = ACTIONS(1466), + [anon_sym_i16] = ACTIONS(1466), + [anon_sym_u32] = ACTIONS(1466), + [anon_sym_i32] = ACTIONS(1466), + [anon_sym_u64] = ACTIONS(1466), + [anon_sym_i64] = ACTIONS(1466), + [anon_sym_u128] = ACTIONS(1466), + [anon_sym_i128] = ACTIONS(1466), + [anon_sym_isize] = ACTIONS(1466), + [anon_sym_usize] = ACTIONS(1466), + [anon_sym_f32] = ACTIONS(1466), + [anon_sym_f64] = ACTIONS(1466), + [anon_sym_bool] = ACTIONS(1466), + [anon_sym_str] = ACTIONS(1466), + [anon_sym_char] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_async] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_fn] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_impl] = ACTIONS(1466), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_loop] = ACTIONS(1466), + [anon_sym_match] = ACTIONS(1466), + [anon_sym_mod] = ACTIONS(1466), + [anon_sym_pub] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_trait] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_unsafe] = ACTIONS(1466), + [anon_sym_use] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1464), + [anon_sym_COLON_COLON] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_DOT_DOT] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(1464), + [anon_sym_yield] = ACTIONS(1466), + [anon_sym_move] = ACTIONS(1466), + [sym_integer_literal] = ACTIONS(1464), + [aux_sym_string_literal_token1] = ACTIONS(1464), + [sym_char_literal] = ACTIONS(1464), + [anon_sym_true] = ACTIONS(1466), + [anon_sym_false] = ACTIONS(1466), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1466), + [sym_super] = ACTIONS(1466), + [sym_crate] = ACTIONS(1466), + [sym_metavariable] = ACTIONS(1464), + [sym_raw_string_literal] = ACTIONS(1464), + [sym_float_literal] = ACTIONS(1464), [sym_block_comment] = ACTIONS(3), }, [343] = { - [sym__token_pattern] = STATE(245), - [sym_token_tree_pattern] = STATE(245), - [sym_token_binding_pattern] = STATE(245), - [sym_token_repetition_pattern] = STATE(245), - [sym__never_special_token] = STATE(245), - [sym__literal] = STATE(245), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_pattern_repeat1] = STATE(245), - [sym_identifier] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_u8] = ACTIONS(1150), - [anon_sym_i8] = ACTIONS(1150), - [anon_sym_u16] = ACTIONS(1150), - [anon_sym_i16] = ACTIONS(1150), - [anon_sym_u32] = ACTIONS(1150), - [anon_sym_i32] = ACTIONS(1150), - [anon_sym_u64] = ACTIONS(1150), - [anon_sym_i64] = ACTIONS(1150), - [anon_sym_u128] = ACTIONS(1150), - [anon_sym_i128] = ACTIONS(1150), - [anon_sym_isize] = ACTIONS(1150), - [anon_sym_usize] = ACTIONS(1150), - [anon_sym_f32] = ACTIONS(1150), - [anon_sym_f64] = ACTIONS(1150), - [anon_sym_bool] = ACTIONS(1150), - [anon_sym_str] = ACTIONS(1150), - [anon_sym_char] = ACTIONS(1150), - [aux_sym__never_special_token_token1] = ACTIONS(1150), - [anon_sym_SQUOTE] = ACTIONS(1150), - [anon_sym_as] = ACTIONS(1150), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_await] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1150), - [anon_sym_const] = ACTIONS(1150), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_default] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1150), - [anon_sym_fn] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_impl] = ACTIONS(1150), - [anon_sym_let] = ACTIONS(1150), - [anon_sym_loop] = ACTIONS(1150), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_mod] = ACTIONS(1150), - [anon_sym_pub] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1150), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_struct] = ACTIONS(1150), - [anon_sym_trait] = ACTIONS(1150), - [anon_sym_type] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1150), - [anon_sym_unsafe] = ACTIONS(1150), - [anon_sym_use] = ACTIONS(1150), - [anon_sym_where] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1150), - [sym_mutable_specifier] = ACTIONS(1150), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1168), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [ts_builtin_sym_end] = ACTIONS(1468), + [sym_identifier] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_macro_rules_BANG] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_u8] = ACTIONS(1470), + [anon_sym_i8] = ACTIONS(1470), + [anon_sym_u16] = ACTIONS(1470), + [anon_sym_i16] = ACTIONS(1470), + [anon_sym_u32] = ACTIONS(1470), + [anon_sym_i32] = ACTIONS(1470), + [anon_sym_u64] = ACTIONS(1470), + [anon_sym_i64] = ACTIONS(1470), + [anon_sym_u128] = ACTIONS(1470), + [anon_sym_i128] = ACTIONS(1470), + [anon_sym_isize] = ACTIONS(1470), + [anon_sym_usize] = ACTIONS(1470), + [anon_sym_f32] = ACTIONS(1470), + [anon_sym_f64] = ACTIONS(1470), + [anon_sym_bool] = ACTIONS(1470), + [anon_sym_str] = ACTIONS(1470), + [anon_sym_char] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_async] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_fn] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_impl] = ACTIONS(1470), + [anon_sym_let] = ACTIONS(1470), + [anon_sym_loop] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_mod] = ACTIONS(1470), + [anon_sym_pub] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_trait] = ACTIONS(1470), + [anon_sym_type] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_unsafe] = ACTIONS(1470), + [anon_sym_use] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_POUND] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_COLON_COLON] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_DOT_DOT] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_yield] = ACTIONS(1470), + [anon_sym_move] = ACTIONS(1470), + [sym_integer_literal] = ACTIONS(1468), + [aux_sym_string_literal_token1] = ACTIONS(1468), + [sym_char_literal] = ACTIONS(1468), + [anon_sym_true] = ACTIONS(1470), + [anon_sym_false] = ACTIONS(1470), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1470), + [sym_super] = ACTIONS(1470), + [sym_crate] = ACTIONS(1470), + [sym_metavariable] = ACTIONS(1468), + [sym_raw_string_literal] = ACTIONS(1468), + [sym_float_literal] = ACTIONS(1468), [sym_block_comment] = ACTIONS(3), }, [344] = { - [sym__token_pattern] = STATE(245), - [sym_token_tree_pattern] = STATE(245), - [sym_token_binding_pattern] = STATE(245), - [sym_token_repetition_pattern] = STATE(245), - [sym__never_special_token] = STATE(245), - [sym__literal] = STATE(245), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_pattern_repeat1] = STATE(245), - [sym_identifier] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1152), - [anon_sym_RPAREN] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_u8] = ACTIONS(1150), - [anon_sym_i8] = ACTIONS(1150), - [anon_sym_u16] = ACTIONS(1150), - [anon_sym_i16] = ACTIONS(1150), - [anon_sym_u32] = ACTIONS(1150), - [anon_sym_i32] = ACTIONS(1150), - [anon_sym_u64] = ACTIONS(1150), - [anon_sym_i64] = ACTIONS(1150), - [anon_sym_u128] = ACTIONS(1150), - [anon_sym_i128] = ACTIONS(1150), - [anon_sym_isize] = ACTIONS(1150), - [anon_sym_usize] = ACTIONS(1150), - [anon_sym_f32] = ACTIONS(1150), - [anon_sym_f64] = ACTIONS(1150), - [anon_sym_bool] = ACTIONS(1150), - [anon_sym_str] = ACTIONS(1150), - [anon_sym_char] = ACTIONS(1150), - [aux_sym__never_special_token_token1] = ACTIONS(1150), - [anon_sym_SQUOTE] = ACTIONS(1150), - [anon_sym_as] = ACTIONS(1150), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_await] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1150), - [anon_sym_const] = ACTIONS(1150), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_default] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1150), - [anon_sym_fn] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_impl] = ACTIONS(1150), - [anon_sym_let] = ACTIONS(1150), - [anon_sym_loop] = ACTIONS(1150), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_mod] = ACTIONS(1150), - [anon_sym_pub] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1150), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_struct] = ACTIONS(1150), - [anon_sym_trait] = ACTIONS(1150), - [anon_sym_type] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1150), - [anon_sym_unsafe] = ACTIONS(1150), - [anon_sym_use] = ACTIONS(1150), - [anon_sym_where] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1150), - [sym_mutable_specifier] = ACTIONS(1150), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1168), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [ts_builtin_sym_end] = ACTIONS(1472), + [sym_identifier] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_macro_rules_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_u8] = ACTIONS(1474), + [anon_sym_i8] = ACTIONS(1474), + [anon_sym_u16] = ACTIONS(1474), + [anon_sym_i16] = ACTIONS(1474), + [anon_sym_u32] = ACTIONS(1474), + [anon_sym_i32] = ACTIONS(1474), + [anon_sym_u64] = ACTIONS(1474), + [anon_sym_i64] = ACTIONS(1474), + [anon_sym_u128] = ACTIONS(1474), + [anon_sym_i128] = ACTIONS(1474), + [anon_sym_isize] = ACTIONS(1474), + [anon_sym_usize] = ACTIONS(1474), + [anon_sym_f32] = ACTIONS(1474), + [anon_sym_f64] = ACTIONS(1474), + [anon_sym_bool] = ACTIONS(1474), + [anon_sym_str] = ACTIONS(1474), + [anon_sym_char] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_fn] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_impl] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_loop] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1474), + [anon_sym_mod] = ACTIONS(1474), + [anon_sym_pub] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_trait] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_unsafe] = ACTIONS(1474), + [anon_sym_use] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_COLON_COLON] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_DOT_DOT] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_move] = ACTIONS(1474), + [sym_integer_literal] = ACTIONS(1472), + [aux_sym_string_literal_token1] = ACTIONS(1472), + [sym_char_literal] = ACTIONS(1472), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1474), + [sym_super] = ACTIONS(1474), + [sym_crate] = ACTIONS(1474), + [sym_metavariable] = ACTIONS(1472), + [sym_raw_string_literal] = ACTIONS(1472), + [sym_float_literal] = ACTIONS(1472), [sym_block_comment] = ACTIONS(3), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(1521), - [sym_identifier] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_macro_rules_BANG] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_STAR] = ACTIONS(1521), - [anon_sym_u8] = ACTIONS(1523), - [anon_sym_i8] = ACTIONS(1523), - [anon_sym_u16] = ACTIONS(1523), - [anon_sym_i16] = ACTIONS(1523), - [anon_sym_u32] = ACTIONS(1523), - [anon_sym_i32] = ACTIONS(1523), - [anon_sym_u64] = ACTIONS(1523), - [anon_sym_i64] = ACTIONS(1523), - [anon_sym_u128] = ACTIONS(1523), - [anon_sym_i128] = ACTIONS(1523), - [anon_sym_isize] = ACTIONS(1523), - [anon_sym_usize] = ACTIONS(1523), - [anon_sym_f32] = ACTIONS(1523), - [anon_sym_f64] = ACTIONS(1523), - [anon_sym_bool] = ACTIONS(1523), - [anon_sym_str] = ACTIONS(1523), - [anon_sym_char] = ACTIONS(1523), - [anon_sym_SQUOTE] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_break] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_continue] = ACTIONS(1523), - [anon_sym_default] = ACTIONS(1523), - [anon_sym_enum] = ACTIONS(1523), - [anon_sym_fn] = ACTIONS(1523), - [anon_sym_for] = ACTIONS(1523), - [anon_sym_if] = ACTIONS(1523), - [anon_sym_impl] = ACTIONS(1523), - [anon_sym_let] = ACTIONS(1523), - [anon_sym_loop] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1523), - [anon_sym_mod] = ACTIONS(1523), - [anon_sym_pub] = ACTIONS(1523), - [anon_sym_return] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_struct] = ACTIONS(1523), - [anon_sym_trait] = ACTIONS(1523), - [anon_sym_type] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1523), - [anon_sym_unsafe] = ACTIONS(1523), - [anon_sym_use] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1523), - [anon_sym_POUND] = ACTIONS(1521), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(1523), - [anon_sym_LT] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_yield] = ACTIONS(1523), - [anon_sym_move] = ACTIONS(1523), - [sym_integer_literal] = ACTIONS(1521), - [aux_sym_string_literal_token1] = ACTIONS(1521), - [sym_char_literal] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1523), - [sym_super] = ACTIONS(1523), - [sym_crate] = ACTIONS(1523), - [sym_metavariable] = ACTIONS(1521), - [sym_raw_string_literal] = ACTIONS(1521), - [sym_float_literal] = ACTIONS(1521), + [ts_builtin_sym_end] = ACTIONS(1476), + [sym_identifier] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_macro_rules_BANG] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_u8] = ACTIONS(1478), + [anon_sym_i8] = ACTIONS(1478), + [anon_sym_u16] = ACTIONS(1478), + [anon_sym_i16] = ACTIONS(1478), + [anon_sym_u32] = ACTIONS(1478), + [anon_sym_i32] = ACTIONS(1478), + [anon_sym_u64] = ACTIONS(1478), + [anon_sym_i64] = ACTIONS(1478), + [anon_sym_u128] = ACTIONS(1478), + [anon_sym_i128] = ACTIONS(1478), + [anon_sym_isize] = ACTIONS(1478), + [anon_sym_usize] = ACTIONS(1478), + [anon_sym_f32] = ACTIONS(1478), + [anon_sym_f64] = ACTIONS(1478), + [anon_sym_bool] = ACTIONS(1478), + [anon_sym_str] = ACTIONS(1478), + [anon_sym_char] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_fn] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_impl] = ACTIONS(1478), + [anon_sym_let] = ACTIONS(1478), + [anon_sym_loop] = ACTIONS(1478), + [anon_sym_match] = ACTIONS(1478), + [anon_sym_mod] = ACTIONS(1478), + [anon_sym_pub] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_trait] = ACTIONS(1478), + [anon_sym_type] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_use] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_COLON_COLON] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_yield] = ACTIONS(1478), + [anon_sym_move] = ACTIONS(1478), + [sym_integer_literal] = ACTIONS(1476), + [aux_sym_string_literal_token1] = ACTIONS(1476), + [sym_char_literal] = ACTIONS(1476), + [anon_sym_true] = ACTIONS(1478), + [anon_sym_false] = ACTIONS(1478), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1478), + [sym_super] = ACTIONS(1478), + [sym_crate] = ACTIONS(1478), + [sym_metavariable] = ACTIONS(1476), + [sym_raw_string_literal] = ACTIONS(1476), + [sym_float_literal] = ACTIONS(1476), [sym_block_comment] = ACTIONS(3), }, [346] = { - [ts_builtin_sym_end] = ACTIONS(1525), - [sym_identifier] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_macro_rules_BANG] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_u8] = ACTIONS(1527), - [anon_sym_i8] = ACTIONS(1527), - [anon_sym_u16] = ACTIONS(1527), - [anon_sym_i16] = ACTIONS(1527), - [anon_sym_u32] = ACTIONS(1527), - [anon_sym_i32] = ACTIONS(1527), - [anon_sym_u64] = ACTIONS(1527), - [anon_sym_i64] = ACTIONS(1527), - [anon_sym_u128] = ACTIONS(1527), - [anon_sym_i128] = ACTIONS(1527), - [anon_sym_isize] = ACTIONS(1527), - [anon_sym_usize] = ACTIONS(1527), - [anon_sym_f32] = ACTIONS(1527), - [anon_sym_f64] = ACTIONS(1527), - [anon_sym_bool] = ACTIONS(1527), - [anon_sym_str] = ACTIONS(1527), - [anon_sym_char] = ACTIONS(1527), - [anon_sym_SQUOTE] = ACTIONS(1527), - [anon_sym_async] = ACTIONS(1527), - [anon_sym_break] = ACTIONS(1527), - [anon_sym_const] = ACTIONS(1527), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_default] = ACTIONS(1527), - [anon_sym_enum] = ACTIONS(1527), - [anon_sym_fn] = ACTIONS(1527), - [anon_sym_for] = ACTIONS(1527), - [anon_sym_if] = ACTIONS(1527), - [anon_sym_impl] = ACTIONS(1527), - [anon_sym_let] = ACTIONS(1527), - [anon_sym_loop] = ACTIONS(1527), - [anon_sym_match] = ACTIONS(1527), - [anon_sym_mod] = ACTIONS(1527), - [anon_sym_pub] = ACTIONS(1527), - [anon_sym_return] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(1527), - [anon_sym_struct] = ACTIONS(1527), - [anon_sym_trait] = ACTIONS(1527), - [anon_sym_type] = ACTIONS(1527), - [anon_sym_union] = ACTIONS(1527), - [anon_sym_unsafe] = ACTIONS(1527), - [anon_sym_use] = ACTIONS(1527), - [anon_sym_while] = ACTIONS(1527), - [anon_sym_POUND] = ACTIONS(1525), - [anon_sym_BANG] = ACTIONS(1525), - [anon_sym_extern] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1525), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(1525), - [anon_sym_DOT_DOT] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1525), - [anon_sym_yield] = ACTIONS(1527), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1525), - [aux_sym_string_literal_token1] = ACTIONS(1525), - [sym_char_literal] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1527), - [sym_super] = ACTIONS(1527), - [sym_crate] = ACTIONS(1527), - [sym_metavariable] = ACTIONS(1525), - [sym_raw_string_literal] = ACTIONS(1525), - [sym_float_literal] = ACTIONS(1525), + [ts_builtin_sym_end] = ACTIONS(1480), + [sym_identifier] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_macro_rules_BANG] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_u8] = ACTIONS(1482), + [anon_sym_i8] = ACTIONS(1482), + [anon_sym_u16] = ACTIONS(1482), + [anon_sym_i16] = ACTIONS(1482), + [anon_sym_u32] = ACTIONS(1482), + [anon_sym_i32] = ACTIONS(1482), + [anon_sym_u64] = ACTIONS(1482), + [anon_sym_i64] = ACTIONS(1482), + [anon_sym_u128] = ACTIONS(1482), + [anon_sym_i128] = ACTIONS(1482), + [anon_sym_isize] = ACTIONS(1482), + [anon_sym_usize] = ACTIONS(1482), + [anon_sym_f32] = ACTIONS(1482), + [anon_sym_f64] = ACTIONS(1482), + [anon_sym_bool] = ACTIONS(1482), + [anon_sym_str] = ACTIONS(1482), + [anon_sym_char] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_async] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_fn] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_impl] = ACTIONS(1482), + [anon_sym_let] = ACTIONS(1482), + [anon_sym_loop] = ACTIONS(1482), + [anon_sym_match] = ACTIONS(1482), + [anon_sym_mod] = ACTIONS(1482), + [anon_sym_pub] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_trait] = ACTIONS(1482), + [anon_sym_type] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_use] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_COLON_COLON] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_yield] = ACTIONS(1482), + [anon_sym_move] = ACTIONS(1482), + [sym_integer_literal] = ACTIONS(1480), + [aux_sym_string_literal_token1] = ACTIONS(1480), + [sym_char_literal] = ACTIONS(1480), + [anon_sym_true] = ACTIONS(1482), + [anon_sym_false] = ACTIONS(1482), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1482), + [sym_super] = ACTIONS(1482), + [sym_crate] = ACTIONS(1482), + [sym_metavariable] = ACTIONS(1480), + [sym_raw_string_literal] = ACTIONS(1480), + [sym_float_literal] = ACTIONS(1480), [sym_block_comment] = ACTIONS(3), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(1529), - [sym_identifier] = ACTIONS(1531), - [anon_sym_SEMI] = ACTIONS(1529), - [anon_sym_macro_rules_BANG] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1529), - [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_u8] = ACTIONS(1531), - [anon_sym_i8] = ACTIONS(1531), - [anon_sym_u16] = ACTIONS(1531), - [anon_sym_i16] = ACTIONS(1531), - [anon_sym_u32] = ACTIONS(1531), - [anon_sym_i32] = ACTIONS(1531), - [anon_sym_u64] = ACTIONS(1531), - [anon_sym_i64] = ACTIONS(1531), - [anon_sym_u128] = ACTIONS(1531), - [anon_sym_i128] = ACTIONS(1531), - [anon_sym_isize] = ACTIONS(1531), - [anon_sym_usize] = ACTIONS(1531), - [anon_sym_f32] = ACTIONS(1531), - [anon_sym_f64] = ACTIONS(1531), - [anon_sym_bool] = ACTIONS(1531), - [anon_sym_str] = ACTIONS(1531), - [anon_sym_char] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_async] = ACTIONS(1531), - [anon_sym_break] = ACTIONS(1531), - [anon_sym_const] = ACTIONS(1531), - [anon_sym_continue] = ACTIONS(1531), - [anon_sym_default] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1531), - [anon_sym_fn] = ACTIONS(1531), - [anon_sym_for] = ACTIONS(1531), - [anon_sym_if] = ACTIONS(1531), - [anon_sym_impl] = ACTIONS(1531), - [anon_sym_let] = ACTIONS(1531), - [anon_sym_loop] = ACTIONS(1531), - [anon_sym_match] = ACTIONS(1531), - [anon_sym_mod] = ACTIONS(1531), - [anon_sym_pub] = ACTIONS(1531), - [anon_sym_return] = ACTIONS(1531), - [anon_sym_static] = ACTIONS(1531), - [anon_sym_struct] = ACTIONS(1531), - [anon_sym_trait] = ACTIONS(1531), - [anon_sym_type] = ACTIONS(1531), - [anon_sym_union] = ACTIONS(1531), - [anon_sym_unsafe] = ACTIONS(1531), - [anon_sym_use] = ACTIONS(1531), - [anon_sym_while] = ACTIONS(1531), - [anon_sym_POUND] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_DOT_DOT] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_yield] = ACTIONS(1531), - [anon_sym_move] = ACTIONS(1531), - [sym_integer_literal] = ACTIONS(1529), - [aux_sym_string_literal_token1] = ACTIONS(1529), - [sym_char_literal] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(1531), - [anon_sym_false] = ACTIONS(1531), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1531), - [sym_super] = ACTIONS(1531), - [sym_crate] = ACTIONS(1531), - [sym_metavariable] = ACTIONS(1529), - [sym_raw_string_literal] = ACTIONS(1529), - [sym_float_literal] = ACTIONS(1529), + [ts_builtin_sym_end] = ACTIONS(1484), + [sym_identifier] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_macro_rules_BANG] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_u8] = ACTIONS(1486), + [anon_sym_i8] = ACTIONS(1486), + [anon_sym_u16] = ACTIONS(1486), + [anon_sym_i16] = ACTIONS(1486), + [anon_sym_u32] = ACTIONS(1486), + [anon_sym_i32] = ACTIONS(1486), + [anon_sym_u64] = ACTIONS(1486), + [anon_sym_i64] = ACTIONS(1486), + [anon_sym_u128] = ACTIONS(1486), + [anon_sym_i128] = ACTIONS(1486), + [anon_sym_isize] = ACTIONS(1486), + [anon_sym_usize] = ACTIONS(1486), + [anon_sym_f32] = ACTIONS(1486), + [anon_sym_f64] = ACTIONS(1486), + [anon_sym_bool] = ACTIONS(1486), + [anon_sym_str] = ACTIONS(1486), + [anon_sym_char] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_async] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_fn] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_impl] = ACTIONS(1486), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_loop] = ACTIONS(1486), + [anon_sym_match] = ACTIONS(1486), + [anon_sym_mod] = ACTIONS(1486), + [anon_sym_pub] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_trait] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_unsafe] = ACTIONS(1486), + [anon_sym_use] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_COLON_COLON] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_yield] = ACTIONS(1486), + [anon_sym_move] = ACTIONS(1486), + [sym_integer_literal] = ACTIONS(1484), + [aux_sym_string_literal_token1] = ACTIONS(1484), + [sym_char_literal] = ACTIONS(1484), + [anon_sym_true] = ACTIONS(1486), + [anon_sym_false] = ACTIONS(1486), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1486), + [sym_super] = ACTIONS(1486), + [sym_crate] = ACTIONS(1486), + [sym_metavariable] = ACTIONS(1484), + [sym_raw_string_literal] = ACTIONS(1484), + [sym_float_literal] = ACTIONS(1484), [sym_block_comment] = ACTIONS(3), }, [348] = { - [ts_builtin_sym_end] = ACTIONS(1533), - [sym_identifier] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_macro_rules_BANG] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1533), - [anon_sym_RBRACE] = ACTIONS(1533), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_u8] = ACTIONS(1535), - [anon_sym_i8] = ACTIONS(1535), - [anon_sym_u16] = ACTIONS(1535), - [anon_sym_i16] = ACTIONS(1535), - [anon_sym_u32] = ACTIONS(1535), - [anon_sym_i32] = ACTIONS(1535), - [anon_sym_u64] = ACTIONS(1535), - [anon_sym_i64] = ACTIONS(1535), - [anon_sym_u128] = ACTIONS(1535), - [anon_sym_i128] = ACTIONS(1535), - [anon_sym_isize] = ACTIONS(1535), - [anon_sym_usize] = ACTIONS(1535), - [anon_sym_f32] = ACTIONS(1535), - [anon_sym_f64] = ACTIONS(1535), - [anon_sym_bool] = ACTIONS(1535), - [anon_sym_str] = ACTIONS(1535), - [anon_sym_char] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_async] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_default] = ACTIONS(1535), - [anon_sym_enum] = ACTIONS(1535), - [anon_sym_fn] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_impl] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_loop] = ACTIONS(1535), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_mod] = ACTIONS(1535), - [anon_sym_pub] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1535), - [anon_sym_trait] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_union] = ACTIONS(1535), - [anon_sym_unsafe] = ACTIONS(1535), - [anon_sym_use] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1535), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(1535), - [anon_sym_move] = ACTIONS(1535), - [sym_integer_literal] = ACTIONS(1533), - [aux_sym_string_literal_token1] = ACTIONS(1533), - [sym_char_literal] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1535), - [sym_super] = ACTIONS(1535), - [sym_crate] = ACTIONS(1535), - [sym_metavariable] = ACTIONS(1533), - [sym_raw_string_literal] = ACTIONS(1533), - [sym_float_literal] = ACTIONS(1533), + [ts_builtin_sym_end] = ACTIONS(1488), + [sym_identifier] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_macro_rules_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_u8] = ACTIONS(1490), + [anon_sym_i8] = ACTIONS(1490), + [anon_sym_u16] = ACTIONS(1490), + [anon_sym_i16] = ACTIONS(1490), + [anon_sym_u32] = ACTIONS(1490), + [anon_sym_i32] = ACTIONS(1490), + [anon_sym_u64] = ACTIONS(1490), + [anon_sym_i64] = ACTIONS(1490), + [anon_sym_u128] = ACTIONS(1490), + [anon_sym_i128] = ACTIONS(1490), + [anon_sym_isize] = ACTIONS(1490), + [anon_sym_usize] = ACTIONS(1490), + [anon_sym_f32] = ACTIONS(1490), + [anon_sym_f64] = ACTIONS(1490), + [anon_sym_bool] = ACTIONS(1490), + [anon_sym_str] = ACTIONS(1490), + [anon_sym_char] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_async] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_default] = ACTIONS(1490), + [anon_sym_enum] = ACTIONS(1490), + [anon_sym_fn] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_impl] = ACTIONS(1490), + [anon_sym_let] = ACTIONS(1490), + [anon_sym_loop] = ACTIONS(1490), + [anon_sym_match] = ACTIONS(1490), + [anon_sym_mod] = ACTIONS(1490), + [anon_sym_pub] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_static] = ACTIONS(1490), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_trait] = ACTIONS(1490), + [anon_sym_type] = ACTIONS(1490), + [anon_sym_union] = ACTIONS(1490), + [anon_sym_unsafe] = ACTIONS(1490), + [anon_sym_use] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_COLON_COLON] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_yield] = ACTIONS(1490), + [anon_sym_move] = ACTIONS(1490), + [sym_integer_literal] = ACTIONS(1488), + [aux_sym_string_literal_token1] = ACTIONS(1488), + [sym_char_literal] = ACTIONS(1488), + [anon_sym_true] = ACTIONS(1490), + [anon_sym_false] = ACTIONS(1490), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1490), + [sym_super] = ACTIONS(1490), + [sym_crate] = ACTIONS(1490), + [sym_metavariable] = ACTIONS(1488), + [sym_raw_string_literal] = ACTIONS(1488), + [sym_float_literal] = ACTIONS(1488), [sym_block_comment] = ACTIONS(3), }, [349] = { - [ts_builtin_sym_end] = ACTIONS(1537), - [sym_identifier] = ACTIONS(1539), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_macro_rules_BANG] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_u8] = ACTIONS(1539), - [anon_sym_i8] = ACTIONS(1539), - [anon_sym_u16] = ACTIONS(1539), - [anon_sym_i16] = ACTIONS(1539), - [anon_sym_u32] = ACTIONS(1539), - [anon_sym_i32] = ACTIONS(1539), - [anon_sym_u64] = ACTIONS(1539), - [anon_sym_i64] = ACTIONS(1539), - [anon_sym_u128] = ACTIONS(1539), - [anon_sym_i128] = ACTIONS(1539), - [anon_sym_isize] = ACTIONS(1539), - [anon_sym_usize] = ACTIONS(1539), - [anon_sym_f32] = ACTIONS(1539), - [anon_sym_f64] = ACTIONS(1539), - [anon_sym_bool] = ACTIONS(1539), - [anon_sym_str] = ACTIONS(1539), - [anon_sym_char] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [anon_sym_async] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_fn] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_impl] = ACTIONS(1539), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_loop] = ACTIONS(1539), - [anon_sym_match] = ACTIONS(1539), - [anon_sym_mod] = ACTIONS(1539), - [anon_sym_pub] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_trait] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [anon_sym_unsafe] = ACTIONS(1539), - [anon_sym_use] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_POUND] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_COLON_COLON] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_yield] = ACTIONS(1539), - [anon_sym_move] = ACTIONS(1539), - [sym_integer_literal] = ACTIONS(1537), - [aux_sym_string_literal_token1] = ACTIONS(1537), - [sym_char_literal] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(1539), - [anon_sym_false] = ACTIONS(1539), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1539), - [sym_super] = ACTIONS(1539), - [sym_crate] = ACTIONS(1539), - [sym_metavariable] = ACTIONS(1537), - [sym_raw_string_literal] = ACTIONS(1537), - [sym_float_literal] = ACTIONS(1537), + [ts_builtin_sym_end] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_macro_rules_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_u8] = ACTIONS(1494), + [anon_sym_i8] = ACTIONS(1494), + [anon_sym_u16] = ACTIONS(1494), + [anon_sym_i16] = ACTIONS(1494), + [anon_sym_u32] = ACTIONS(1494), + [anon_sym_i32] = ACTIONS(1494), + [anon_sym_u64] = ACTIONS(1494), + [anon_sym_i64] = ACTIONS(1494), + [anon_sym_u128] = ACTIONS(1494), + [anon_sym_i128] = ACTIONS(1494), + [anon_sym_isize] = ACTIONS(1494), + [anon_sym_usize] = ACTIONS(1494), + [anon_sym_f32] = ACTIONS(1494), + [anon_sym_f64] = ACTIONS(1494), + [anon_sym_bool] = ACTIONS(1494), + [anon_sym_str] = ACTIONS(1494), + [anon_sym_char] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_async] = ACTIONS(1494), + [anon_sym_break] = ACTIONS(1494), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_continue] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1494), + [anon_sym_enum] = ACTIONS(1494), + [anon_sym_fn] = ACTIONS(1494), + [anon_sym_for] = ACTIONS(1494), + [anon_sym_if] = ACTIONS(1494), + [anon_sym_impl] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1494), + [anon_sym_loop] = ACTIONS(1494), + [anon_sym_match] = ACTIONS(1494), + [anon_sym_mod] = ACTIONS(1494), + [anon_sym_pub] = ACTIONS(1494), + [anon_sym_return] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1494), + [anon_sym_struct] = ACTIONS(1494), + [anon_sym_trait] = ACTIONS(1494), + [anon_sym_type] = ACTIONS(1494), + [anon_sym_union] = ACTIONS(1494), + [anon_sym_unsafe] = ACTIONS(1494), + [anon_sym_use] = ACTIONS(1494), + [anon_sym_while] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1494), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_COLON_COLON] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_DOT_DOT] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_yield] = ACTIONS(1494), + [anon_sym_move] = ACTIONS(1494), + [sym_integer_literal] = ACTIONS(1492), + [aux_sym_string_literal_token1] = ACTIONS(1492), + [sym_char_literal] = ACTIONS(1492), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1494), + [sym_super] = ACTIONS(1494), + [sym_crate] = ACTIONS(1494), + [sym_metavariable] = ACTIONS(1492), + [sym_raw_string_literal] = ACTIONS(1492), + [sym_float_literal] = ACTIONS(1492), [sym_block_comment] = ACTIONS(3), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(1541), - [sym_identifier] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_macro_rules_BANG] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_LBRACK] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_u8] = ACTIONS(1543), - [anon_sym_i8] = ACTIONS(1543), - [anon_sym_u16] = ACTIONS(1543), - [anon_sym_i16] = ACTIONS(1543), - [anon_sym_u32] = ACTIONS(1543), - [anon_sym_i32] = ACTIONS(1543), - [anon_sym_u64] = ACTIONS(1543), - [anon_sym_i64] = ACTIONS(1543), - [anon_sym_u128] = ACTIONS(1543), - [anon_sym_i128] = ACTIONS(1543), - [anon_sym_isize] = ACTIONS(1543), - [anon_sym_usize] = ACTIONS(1543), - [anon_sym_f32] = ACTIONS(1543), - [anon_sym_f64] = ACTIONS(1543), - [anon_sym_bool] = ACTIONS(1543), - [anon_sym_str] = ACTIONS(1543), - [anon_sym_char] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_async] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_enum] = ACTIONS(1543), - [anon_sym_fn] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_impl] = ACTIONS(1543), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_loop] = ACTIONS(1543), - [anon_sym_match] = ACTIONS(1543), - [anon_sym_mod] = ACTIONS(1543), - [anon_sym_pub] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_struct] = ACTIONS(1543), - [anon_sym_trait] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_union] = ACTIONS(1543), - [anon_sym_unsafe] = ACTIONS(1543), - [anon_sym_use] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_extern] = ACTIONS(1543), - [anon_sym_LT] = ACTIONS(1541), - [anon_sym_COLON_COLON] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_yield] = ACTIONS(1543), - [anon_sym_move] = ACTIONS(1543), - [sym_integer_literal] = ACTIONS(1541), - [aux_sym_string_literal_token1] = ACTIONS(1541), - [sym_char_literal] = ACTIONS(1541), - [anon_sym_true] = ACTIONS(1543), - [anon_sym_false] = ACTIONS(1543), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1543), - [sym_super] = ACTIONS(1543), - [sym_crate] = ACTIONS(1543), - [sym_metavariable] = ACTIONS(1541), - [sym_raw_string_literal] = ACTIONS(1541), - [sym_float_literal] = ACTIONS(1541), + [ts_builtin_sym_end] = ACTIONS(1496), + [sym_identifier] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_macro_rules_BANG] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_u8] = ACTIONS(1498), + [anon_sym_i8] = ACTIONS(1498), + [anon_sym_u16] = ACTIONS(1498), + [anon_sym_i16] = ACTIONS(1498), + [anon_sym_u32] = ACTIONS(1498), + [anon_sym_i32] = ACTIONS(1498), + [anon_sym_u64] = ACTIONS(1498), + [anon_sym_i64] = ACTIONS(1498), + [anon_sym_u128] = ACTIONS(1498), + [anon_sym_i128] = ACTIONS(1498), + [anon_sym_isize] = ACTIONS(1498), + [anon_sym_usize] = ACTIONS(1498), + [anon_sym_f32] = ACTIONS(1498), + [anon_sym_f64] = ACTIONS(1498), + [anon_sym_bool] = ACTIONS(1498), + [anon_sym_str] = ACTIONS(1498), + [anon_sym_char] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_async] = ACTIONS(1498), + [anon_sym_break] = ACTIONS(1498), + [anon_sym_const] = ACTIONS(1498), + [anon_sym_continue] = ACTIONS(1498), + [anon_sym_default] = ACTIONS(1498), + [anon_sym_enum] = ACTIONS(1498), + [anon_sym_fn] = ACTIONS(1498), + [anon_sym_for] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1498), + [anon_sym_impl] = ACTIONS(1498), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_loop] = ACTIONS(1498), + [anon_sym_match] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_pub] = ACTIONS(1498), + [anon_sym_return] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_struct] = ACTIONS(1498), + [anon_sym_trait] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_union] = ACTIONS(1498), + [anon_sym_unsafe] = ACTIONS(1498), + [anon_sym_use] = ACTIONS(1498), + [anon_sym_while] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_COLON_COLON] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_DOT_DOT] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_yield] = ACTIONS(1498), + [anon_sym_move] = ACTIONS(1498), + [sym_integer_literal] = ACTIONS(1496), + [aux_sym_string_literal_token1] = ACTIONS(1496), + [sym_char_literal] = ACTIONS(1496), + [anon_sym_true] = ACTIONS(1498), + [anon_sym_false] = ACTIONS(1498), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1498), + [sym_super] = ACTIONS(1498), + [sym_crate] = ACTIONS(1498), + [sym_metavariable] = ACTIONS(1496), + [sym_raw_string_literal] = ACTIONS(1496), + [sym_float_literal] = ACTIONS(1496), [sym_block_comment] = ACTIONS(3), }, [351] = { - [ts_builtin_sym_end] = ACTIONS(1545), - [sym_identifier] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_macro_rules_BANG] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_u8] = ACTIONS(1547), - [anon_sym_i8] = ACTIONS(1547), - [anon_sym_u16] = ACTIONS(1547), - [anon_sym_i16] = ACTIONS(1547), - [anon_sym_u32] = ACTIONS(1547), - [anon_sym_i32] = ACTIONS(1547), - [anon_sym_u64] = ACTIONS(1547), - [anon_sym_i64] = ACTIONS(1547), - [anon_sym_u128] = ACTIONS(1547), - [anon_sym_i128] = ACTIONS(1547), - [anon_sym_isize] = ACTIONS(1547), - [anon_sym_usize] = ACTIONS(1547), - [anon_sym_f32] = ACTIONS(1547), - [anon_sym_f64] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_str] = ACTIONS(1547), - [anon_sym_char] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_async] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_continue] = ACTIONS(1547), - [anon_sym_default] = ACTIONS(1547), - [anon_sym_enum] = ACTIONS(1547), - [anon_sym_fn] = ACTIONS(1547), - [anon_sym_for] = ACTIONS(1547), - [anon_sym_if] = ACTIONS(1547), - [anon_sym_impl] = ACTIONS(1547), - [anon_sym_let] = ACTIONS(1547), - [anon_sym_loop] = ACTIONS(1547), - [anon_sym_match] = ACTIONS(1547), - [anon_sym_mod] = ACTIONS(1547), - [anon_sym_pub] = ACTIONS(1547), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_struct] = ACTIONS(1547), - [anon_sym_trait] = ACTIONS(1547), - [anon_sym_type] = ACTIONS(1547), - [anon_sym_union] = ACTIONS(1547), - [anon_sym_unsafe] = ACTIONS(1547), - [anon_sym_use] = ACTIONS(1547), - [anon_sym_while] = ACTIONS(1547), - [anon_sym_POUND] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_extern] = ACTIONS(1547), - [anon_sym_LT] = ACTIONS(1545), - [anon_sym_COLON_COLON] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_yield] = ACTIONS(1547), - [anon_sym_move] = ACTIONS(1547), - [sym_integer_literal] = ACTIONS(1545), - [aux_sym_string_literal_token1] = ACTIONS(1545), - [sym_char_literal] = ACTIONS(1545), - [anon_sym_true] = ACTIONS(1547), - [anon_sym_false] = ACTIONS(1547), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1547), - [sym_super] = ACTIONS(1547), - [sym_crate] = ACTIONS(1547), - [sym_metavariable] = ACTIONS(1545), - [sym_raw_string_literal] = ACTIONS(1545), - [sym_float_literal] = ACTIONS(1545), + [ts_builtin_sym_end] = ACTIONS(1500), + [sym_identifier] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_macro_rules_BANG] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_u8] = ACTIONS(1502), + [anon_sym_i8] = ACTIONS(1502), + [anon_sym_u16] = ACTIONS(1502), + [anon_sym_i16] = ACTIONS(1502), + [anon_sym_u32] = ACTIONS(1502), + [anon_sym_i32] = ACTIONS(1502), + [anon_sym_u64] = ACTIONS(1502), + [anon_sym_i64] = ACTIONS(1502), + [anon_sym_u128] = ACTIONS(1502), + [anon_sym_i128] = ACTIONS(1502), + [anon_sym_isize] = ACTIONS(1502), + [anon_sym_usize] = ACTIONS(1502), + [anon_sym_f32] = ACTIONS(1502), + [anon_sym_f64] = ACTIONS(1502), + [anon_sym_bool] = ACTIONS(1502), + [anon_sym_str] = ACTIONS(1502), + [anon_sym_char] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_break] = ACTIONS(1502), + [anon_sym_const] = ACTIONS(1502), + [anon_sym_continue] = ACTIONS(1502), + [anon_sym_default] = ACTIONS(1502), + [anon_sym_enum] = ACTIONS(1502), + [anon_sym_fn] = ACTIONS(1502), + [anon_sym_for] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(1502), + [anon_sym_impl] = ACTIONS(1502), + [anon_sym_let] = ACTIONS(1502), + [anon_sym_loop] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_mod] = ACTIONS(1502), + [anon_sym_pub] = ACTIONS(1502), + [anon_sym_return] = ACTIONS(1502), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1502), + [anon_sym_trait] = ACTIONS(1502), + [anon_sym_type] = ACTIONS(1502), + [anon_sym_union] = ACTIONS(1502), + [anon_sym_unsafe] = ACTIONS(1502), + [anon_sym_use] = ACTIONS(1502), + [anon_sym_while] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_COLON_COLON] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_yield] = ACTIONS(1502), + [anon_sym_move] = ACTIONS(1502), + [sym_integer_literal] = ACTIONS(1500), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1500), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1500), + [sym_raw_string_literal] = ACTIONS(1500), + [sym_float_literal] = ACTIONS(1500), [sym_block_comment] = ACTIONS(3), }, [352] = { - [ts_builtin_sym_end] = ACTIONS(1549), - [sym_identifier] = ACTIONS(1551), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_macro_rules_BANG] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1549), - [anon_sym_u8] = ACTIONS(1551), - [anon_sym_i8] = ACTIONS(1551), - [anon_sym_u16] = ACTIONS(1551), - [anon_sym_i16] = ACTIONS(1551), - [anon_sym_u32] = ACTIONS(1551), - [anon_sym_i32] = ACTIONS(1551), - [anon_sym_u64] = ACTIONS(1551), - [anon_sym_i64] = ACTIONS(1551), - [anon_sym_u128] = ACTIONS(1551), - [anon_sym_i128] = ACTIONS(1551), - [anon_sym_isize] = ACTIONS(1551), - [anon_sym_usize] = ACTIONS(1551), - [anon_sym_f32] = ACTIONS(1551), - [anon_sym_f64] = ACTIONS(1551), - [anon_sym_bool] = ACTIONS(1551), - [anon_sym_str] = ACTIONS(1551), - [anon_sym_char] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_async] = ACTIONS(1551), - [anon_sym_break] = ACTIONS(1551), - [anon_sym_const] = ACTIONS(1551), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_enum] = ACTIONS(1551), - [anon_sym_fn] = ACTIONS(1551), - [anon_sym_for] = ACTIONS(1551), - [anon_sym_if] = ACTIONS(1551), - [anon_sym_impl] = ACTIONS(1551), - [anon_sym_let] = ACTIONS(1551), - [anon_sym_loop] = ACTIONS(1551), - [anon_sym_match] = ACTIONS(1551), - [anon_sym_mod] = ACTIONS(1551), - [anon_sym_pub] = ACTIONS(1551), - [anon_sym_return] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1551), - [anon_sym_struct] = ACTIONS(1551), - [anon_sym_trait] = ACTIONS(1551), - [anon_sym_type] = ACTIONS(1551), - [anon_sym_union] = ACTIONS(1551), - [anon_sym_unsafe] = ACTIONS(1551), - [anon_sym_use] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1551), - [anon_sym_POUND] = ACTIONS(1549), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_extern] = ACTIONS(1551), - [anon_sym_LT] = ACTIONS(1549), - [anon_sym_COLON_COLON] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_yield] = ACTIONS(1551), - [anon_sym_move] = ACTIONS(1551), - [sym_integer_literal] = ACTIONS(1549), - [aux_sym_string_literal_token1] = ACTIONS(1549), - [sym_char_literal] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(1551), - [anon_sym_false] = ACTIONS(1551), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1551), - [sym_super] = ACTIONS(1551), - [sym_crate] = ACTIONS(1551), - [sym_metavariable] = ACTIONS(1549), - [sym_raw_string_literal] = ACTIONS(1549), - [sym_float_literal] = ACTIONS(1549), + [ts_builtin_sym_end] = ACTIONS(1504), + [sym_identifier] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_macro_rules_BANG] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_u8] = ACTIONS(1506), + [anon_sym_i8] = ACTIONS(1506), + [anon_sym_u16] = ACTIONS(1506), + [anon_sym_i16] = ACTIONS(1506), + [anon_sym_u32] = ACTIONS(1506), + [anon_sym_i32] = ACTIONS(1506), + [anon_sym_u64] = ACTIONS(1506), + [anon_sym_i64] = ACTIONS(1506), + [anon_sym_u128] = ACTIONS(1506), + [anon_sym_i128] = ACTIONS(1506), + [anon_sym_isize] = ACTIONS(1506), + [anon_sym_usize] = ACTIONS(1506), + [anon_sym_f32] = ACTIONS(1506), + [anon_sym_f64] = ACTIONS(1506), + [anon_sym_bool] = ACTIONS(1506), + [anon_sym_str] = ACTIONS(1506), + [anon_sym_char] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_async] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_default] = ACTIONS(1506), + [anon_sym_enum] = ACTIONS(1506), + [anon_sym_fn] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_impl] = ACTIONS(1506), + [anon_sym_let] = ACTIONS(1506), + [anon_sym_loop] = ACTIONS(1506), + [anon_sym_match] = ACTIONS(1506), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_pub] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_static] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1506), + [anon_sym_trait] = ACTIONS(1506), + [anon_sym_type] = ACTIONS(1506), + [anon_sym_union] = ACTIONS(1506), + [anon_sym_unsafe] = ACTIONS(1506), + [anon_sym_use] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_COLON_COLON] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_DOT_DOT] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_yield] = ACTIONS(1506), + [anon_sym_move] = ACTIONS(1506), + [sym_integer_literal] = ACTIONS(1504), + [aux_sym_string_literal_token1] = ACTIONS(1504), + [sym_char_literal] = ACTIONS(1504), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1506), + [sym_super] = ACTIONS(1506), + [sym_crate] = ACTIONS(1506), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1504), + [sym_float_literal] = ACTIONS(1504), [sym_block_comment] = ACTIONS(3), }, [353] = { - [ts_builtin_sym_end] = ACTIONS(1553), - [sym_identifier] = ACTIONS(1555), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_macro_rules_BANG] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_u8] = ACTIONS(1555), - [anon_sym_i8] = ACTIONS(1555), - [anon_sym_u16] = ACTIONS(1555), - [anon_sym_i16] = ACTIONS(1555), - [anon_sym_u32] = ACTIONS(1555), - [anon_sym_i32] = ACTIONS(1555), - [anon_sym_u64] = ACTIONS(1555), - [anon_sym_i64] = ACTIONS(1555), - [anon_sym_u128] = ACTIONS(1555), - [anon_sym_i128] = ACTIONS(1555), - [anon_sym_isize] = ACTIONS(1555), - [anon_sym_usize] = ACTIONS(1555), - [anon_sym_f32] = ACTIONS(1555), - [anon_sym_f64] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_str] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1555), - [anon_sym_async] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_const] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_enum] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_impl] = ACTIONS(1555), - [anon_sym_let] = ACTIONS(1555), - [anon_sym_loop] = ACTIONS(1555), - [anon_sym_match] = ACTIONS(1555), - [anon_sym_mod] = ACTIONS(1555), - [anon_sym_pub] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_static] = ACTIONS(1555), - [anon_sym_struct] = ACTIONS(1555), - [anon_sym_trait] = ACTIONS(1555), - [anon_sym_type] = ACTIONS(1555), - [anon_sym_union] = ACTIONS(1555), - [anon_sym_unsafe] = ACTIONS(1555), - [anon_sym_use] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1553), - [anon_sym_extern] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1553), - [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_DOT_DOT] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_yield] = ACTIONS(1555), - [anon_sym_move] = ACTIONS(1555), - [sym_integer_literal] = ACTIONS(1553), - [aux_sym_string_literal_token1] = ACTIONS(1553), - [sym_char_literal] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(1555), - [anon_sym_false] = ACTIONS(1555), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1555), - [sym_super] = ACTIONS(1555), - [sym_crate] = ACTIONS(1555), - [sym_metavariable] = ACTIONS(1553), - [sym_raw_string_literal] = ACTIONS(1553), - [sym_float_literal] = ACTIONS(1553), + [ts_builtin_sym_end] = ACTIONS(1508), + [sym_identifier] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_macro_rules_BANG] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_u8] = ACTIONS(1510), + [anon_sym_i8] = ACTIONS(1510), + [anon_sym_u16] = ACTIONS(1510), + [anon_sym_i16] = ACTIONS(1510), + [anon_sym_u32] = ACTIONS(1510), + [anon_sym_i32] = ACTIONS(1510), + [anon_sym_u64] = ACTIONS(1510), + [anon_sym_i64] = ACTIONS(1510), + [anon_sym_u128] = ACTIONS(1510), + [anon_sym_i128] = ACTIONS(1510), + [anon_sym_isize] = ACTIONS(1510), + [anon_sym_usize] = ACTIONS(1510), + [anon_sym_f32] = ACTIONS(1510), + [anon_sym_f64] = ACTIONS(1510), + [anon_sym_bool] = ACTIONS(1510), + [anon_sym_str] = ACTIONS(1510), + [anon_sym_char] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_async] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_fn] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_impl] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_mod] = ACTIONS(1510), + [anon_sym_pub] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1510), + [anon_sym_trait] = ACTIONS(1510), + [anon_sym_type] = ACTIONS(1510), + [anon_sym_union] = ACTIONS(1510), + [anon_sym_unsafe] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_COLON_COLON] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_move] = ACTIONS(1510), + [sym_integer_literal] = ACTIONS(1508), + [aux_sym_string_literal_token1] = ACTIONS(1508), + [sym_char_literal] = ACTIONS(1508), + [anon_sym_true] = ACTIONS(1510), + [anon_sym_false] = ACTIONS(1510), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1510), + [sym_super] = ACTIONS(1510), + [sym_crate] = ACTIONS(1510), + [sym_metavariable] = ACTIONS(1508), + [sym_raw_string_literal] = ACTIONS(1508), + [sym_float_literal] = ACTIONS(1508), [sym_block_comment] = ACTIONS(3), }, [354] = { - [ts_builtin_sym_end] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_macro_rules_BANG] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1557), - [anon_sym_u8] = ACTIONS(1559), - [anon_sym_i8] = ACTIONS(1559), - [anon_sym_u16] = ACTIONS(1559), - [anon_sym_i16] = ACTIONS(1559), - [anon_sym_u32] = ACTIONS(1559), - [anon_sym_i32] = ACTIONS(1559), - [anon_sym_u64] = ACTIONS(1559), - [anon_sym_i64] = ACTIONS(1559), - [anon_sym_u128] = ACTIONS(1559), - [anon_sym_i128] = ACTIONS(1559), - [anon_sym_isize] = ACTIONS(1559), - [anon_sym_usize] = ACTIONS(1559), - [anon_sym_f32] = ACTIONS(1559), - [anon_sym_f64] = ACTIONS(1559), - [anon_sym_bool] = ACTIONS(1559), - [anon_sym_str] = ACTIONS(1559), - [anon_sym_char] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1559), - [anon_sym_async] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_default] = ACTIONS(1559), - [anon_sym_enum] = ACTIONS(1559), - [anon_sym_fn] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_impl] = ACTIONS(1559), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_loop] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), - [anon_sym_mod] = ACTIONS(1559), - [anon_sym_pub] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_struct] = ACTIONS(1559), - [anon_sym_trait] = ACTIONS(1559), - [anon_sym_type] = ACTIONS(1559), - [anon_sym_union] = ACTIONS(1559), - [anon_sym_unsafe] = ACTIONS(1559), - [anon_sym_use] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_POUND] = ACTIONS(1557), - [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_COLON_COLON] = ACTIONS(1557), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_DOT_DOT] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_yield] = ACTIONS(1559), - [anon_sym_move] = ACTIONS(1559), - [sym_integer_literal] = ACTIONS(1557), - [aux_sym_string_literal_token1] = ACTIONS(1557), - [sym_char_literal] = ACTIONS(1557), - [anon_sym_true] = ACTIONS(1559), - [anon_sym_false] = ACTIONS(1559), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1559), - [sym_super] = ACTIONS(1559), - [sym_crate] = ACTIONS(1559), - [sym_metavariable] = ACTIONS(1557), - [sym_raw_string_literal] = ACTIONS(1557), - [sym_float_literal] = ACTIONS(1557), + [ts_builtin_sym_end] = ACTIONS(1512), + [sym_identifier] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_macro_rules_BANG] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_u8] = ACTIONS(1514), + [anon_sym_i8] = ACTIONS(1514), + [anon_sym_u16] = ACTIONS(1514), + [anon_sym_i16] = ACTIONS(1514), + [anon_sym_u32] = ACTIONS(1514), + [anon_sym_i32] = ACTIONS(1514), + [anon_sym_u64] = ACTIONS(1514), + [anon_sym_i64] = ACTIONS(1514), + [anon_sym_u128] = ACTIONS(1514), + [anon_sym_i128] = ACTIONS(1514), + [anon_sym_isize] = ACTIONS(1514), + [anon_sym_usize] = ACTIONS(1514), + [anon_sym_f32] = ACTIONS(1514), + [anon_sym_f64] = ACTIONS(1514), + [anon_sym_bool] = ACTIONS(1514), + [anon_sym_str] = ACTIONS(1514), + [anon_sym_char] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_async] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_default] = ACTIONS(1514), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_fn] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_impl] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_loop] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_pub] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(1514), + [anon_sym_trait] = ACTIONS(1514), + [anon_sym_type] = ACTIONS(1514), + [anon_sym_union] = ACTIONS(1514), + [anon_sym_unsafe] = ACTIONS(1514), + [anon_sym_use] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_COLON_COLON] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_yield] = ACTIONS(1514), + [anon_sym_move] = ACTIONS(1514), + [sym_integer_literal] = ACTIONS(1512), + [aux_sym_string_literal_token1] = ACTIONS(1512), + [sym_char_literal] = ACTIONS(1512), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1514), + [sym_super] = ACTIONS(1514), + [sym_crate] = ACTIONS(1514), + [sym_metavariable] = ACTIONS(1512), + [sym_raw_string_literal] = ACTIONS(1512), + [sym_float_literal] = ACTIONS(1512), [sym_block_comment] = ACTIONS(3), }, [355] = { - [ts_builtin_sym_end] = ACTIONS(1561), - [sym_identifier] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_macro_rules_BANG] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1561), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_u8] = ACTIONS(1563), - [anon_sym_i8] = ACTIONS(1563), - [anon_sym_u16] = ACTIONS(1563), - [anon_sym_i16] = ACTIONS(1563), - [anon_sym_u32] = ACTIONS(1563), - [anon_sym_i32] = ACTIONS(1563), - [anon_sym_u64] = ACTIONS(1563), - [anon_sym_i64] = ACTIONS(1563), - [anon_sym_u128] = ACTIONS(1563), - [anon_sym_i128] = ACTIONS(1563), - [anon_sym_isize] = ACTIONS(1563), - [anon_sym_usize] = ACTIONS(1563), - [anon_sym_f32] = ACTIONS(1563), - [anon_sym_f64] = ACTIONS(1563), - [anon_sym_bool] = ACTIONS(1563), - [anon_sym_str] = ACTIONS(1563), - [anon_sym_char] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_async] = ACTIONS(1563), - [anon_sym_break] = ACTIONS(1563), - [anon_sym_const] = ACTIONS(1563), - [anon_sym_continue] = ACTIONS(1563), - [anon_sym_default] = ACTIONS(1563), - [anon_sym_enum] = ACTIONS(1563), - [anon_sym_fn] = ACTIONS(1563), - [anon_sym_for] = ACTIONS(1563), - [anon_sym_if] = ACTIONS(1563), - [anon_sym_impl] = ACTIONS(1563), - [anon_sym_let] = ACTIONS(1563), - [anon_sym_loop] = ACTIONS(1563), - [anon_sym_match] = ACTIONS(1563), - [anon_sym_mod] = ACTIONS(1563), - [anon_sym_pub] = ACTIONS(1563), - [anon_sym_return] = ACTIONS(1563), - [anon_sym_static] = ACTIONS(1563), - [anon_sym_struct] = ACTIONS(1563), - [anon_sym_trait] = ACTIONS(1563), - [anon_sym_type] = ACTIONS(1563), - [anon_sym_union] = ACTIONS(1563), - [anon_sym_unsafe] = ACTIONS(1563), - [anon_sym_use] = ACTIONS(1563), - [anon_sym_while] = ACTIONS(1563), - [anon_sym_POUND] = ACTIONS(1561), - [anon_sym_BANG] = ACTIONS(1561), - [anon_sym_extern] = ACTIONS(1563), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_COLON_COLON] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_DOT_DOT] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_yield] = ACTIONS(1563), - [anon_sym_move] = ACTIONS(1563), - [sym_integer_literal] = ACTIONS(1561), - [aux_sym_string_literal_token1] = ACTIONS(1561), - [sym_char_literal] = ACTIONS(1561), - [anon_sym_true] = ACTIONS(1563), - [anon_sym_false] = ACTIONS(1563), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1563), - [sym_super] = ACTIONS(1563), - [sym_crate] = ACTIONS(1563), - [sym_metavariable] = ACTIONS(1561), - [sym_raw_string_literal] = ACTIONS(1561), - [sym_float_literal] = ACTIONS(1561), + [ts_builtin_sym_end] = ACTIONS(1516), + [sym_identifier] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_macro_rules_BANG] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_enum] = ACTIONS(1518), + [anon_sym_fn] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_impl] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_mod] = ACTIONS(1518), + [anon_sym_pub] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_trait] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_union] = ACTIONS(1518), + [anon_sym_unsafe] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_COLON_COLON] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_yield] = ACTIONS(1518), + [anon_sym_move] = ACTIONS(1518), + [sym_integer_literal] = ACTIONS(1516), + [aux_sym_string_literal_token1] = ACTIONS(1516), + [sym_char_literal] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1518), + [anon_sym_false] = ACTIONS(1518), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1518), + [sym_super] = ACTIONS(1518), + [sym_crate] = ACTIONS(1518), + [sym_metavariable] = ACTIONS(1516), + [sym_raw_string_literal] = ACTIONS(1516), + [sym_float_literal] = ACTIONS(1516), [sym_block_comment] = ACTIONS(3), }, [356] = { - [ts_builtin_sym_end] = ACTIONS(1565), - [sym_identifier] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_macro_rules_BANG] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_u8] = ACTIONS(1567), - [anon_sym_i8] = ACTIONS(1567), - [anon_sym_u16] = ACTIONS(1567), - [anon_sym_i16] = ACTIONS(1567), - [anon_sym_u32] = ACTIONS(1567), - [anon_sym_i32] = ACTIONS(1567), - [anon_sym_u64] = ACTIONS(1567), - [anon_sym_i64] = ACTIONS(1567), - [anon_sym_u128] = ACTIONS(1567), - [anon_sym_i128] = ACTIONS(1567), - [anon_sym_isize] = ACTIONS(1567), - [anon_sym_usize] = ACTIONS(1567), - [anon_sym_f32] = ACTIONS(1567), - [anon_sym_f64] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_str] = ACTIONS(1567), - [anon_sym_char] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_async] = ACTIONS(1567), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_const] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1567), - [anon_sym_default] = ACTIONS(1567), - [anon_sym_enum] = ACTIONS(1567), - [anon_sym_fn] = ACTIONS(1567), - [anon_sym_for] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_impl] = ACTIONS(1567), - [anon_sym_let] = ACTIONS(1567), - [anon_sym_loop] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_mod] = ACTIONS(1567), - [anon_sym_pub] = ACTIONS(1567), - [anon_sym_return] = ACTIONS(1567), - [anon_sym_static] = ACTIONS(1567), - [anon_sym_struct] = ACTIONS(1567), - [anon_sym_trait] = ACTIONS(1567), - [anon_sym_type] = ACTIONS(1567), - [anon_sym_union] = ACTIONS(1567), - [anon_sym_unsafe] = ACTIONS(1567), - [anon_sym_use] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1567), - [anon_sym_POUND] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1567), - [anon_sym_LT] = ACTIONS(1565), - [anon_sym_COLON_COLON] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1565), - [anon_sym_yield] = ACTIONS(1567), - [anon_sym_move] = ACTIONS(1567), - [sym_integer_literal] = ACTIONS(1565), - [aux_sym_string_literal_token1] = ACTIONS(1565), - [sym_char_literal] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1567), - [sym_super] = ACTIONS(1567), - [sym_crate] = ACTIONS(1567), - [sym_metavariable] = ACTIONS(1565), - [sym_raw_string_literal] = ACTIONS(1565), - [sym_float_literal] = ACTIONS(1565), + [ts_builtin_sym_end] = ACTIONS(1520), + [sym_identifier] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_macro_rules_BANG] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_async] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_enum] = ACTIONS(1522), + [anon_sym_fn] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_impl] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_mod] = ACTIONS(1522), + [anon_sym_pub] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_static] = ACTIONS(1522), + [anon_sym_struct] = ACTIONS(1522), + [anon_sym_trait] = ACTIONS(1522), + [anon_sym_type] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_unsafe] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_COLON_COLON] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_yield] = ACTIONS(1522), + [anon_sym_move] = ACTIONS(1522), + [sym_integer_literal] = ACTIONS(1520), + [aux_sym_string_literal_token1] = ACTIONS(1520), + [sym_char_literal] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1522), + [anon_sym_false] = ACTIONS(1522), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1522), + [sym_super] = ACTIONS(1522), + [sym_crate] = ACTIONS(1522), + [sym_metavariable] = ACTIONS(1520), + [sym_raw_string_literal] = ACTIONS(1520), + [sym_float_literal] = ACTIONS(1520), [sym_block_comment] = ACTIONS(3), }, [357] = { - [ts_builtin_sym_end] = ACTIONS(1569), - [sym_identifier] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1569), - [anon_sym_macro_rules_BANG] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_u8] = ACTIONS(1571), - [anon_sym_i8] = ACTIONS(1571), - [anon_sym_u16] = ACTIONS(1571), - [anon_sym_i16] = ACTIONS(1571), - [anon_sym_u32] = ACTIONS(1571), - [anon_sym_i32] = ACTIONS(1571), - [anon_sym_u64] = ACTIONS(1571), - [anon_sym_i64] = ACTIONS(1571), - [anon_sym_u128] = ACTIONS(1571), - [anon_sym_i128] = ACTIONS(1571), - [anon_sym_isize] = ACTIONS(1571), - [anon_sym_usize] = ACTIONS(1571), - [anon_sym_f32] = ACTIONS(1571), - [anon_sym_f64] = ACTIONS(1571), - [anon_sym_bool] = ACTIONS(1571), - [anon_sym_str] = ACTIONS(1571), - [anon_sym_char] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_break] = ACTIONS(1571), - [anon_sym_const] = ACTIONS(1571), - [anon_sym_continue] = ACTIONS(1571), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_enum] = ACTIONS(1571), - [anon_sym_fn] = ACTIONS(1571), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_impl] = ACTIONS(1571), - [anon_sym_let] = ACTIONS(1571), - [anon_sym_loop] = ACTIONS(1571), - [anon_sym_match] = ACTIONS(1571), - [anon_sym_mod] = ACTIONS(1571), - [anon_sym_pub] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1571), - [anon_sym_static] = ACTIONS(1571), - [anon_sym_struct] = ACTIONS(1571), - [anon_sym_trait] = ACTIONS(1571), - [anon_sym_type] = ACTIONS(1571), - [anon_sym_union] = ACTIONS(1571), - [anon_sym_unsafe] = ACTIONS(1571), - [anon_sym_use] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1571), - [anon_sym_POUND] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1569), - [anon_sym_COLON_COLON] = ACTIONS(1569), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_yield] = ACTIONS(1571), - [anon_sym_move] = ACTIONS(1571), - [sym_integer_literal] = ACTIONS(1569), - [aux_sym_string_literal_token1] = ACTIONS(1569), - [sym_char_literal] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1571), - [sym_super] = ACTIONS(1571), - [sym_crate] = ACTIONS(1571), - [sym_metavariable] = ACTIONS(1569), - [sym_raw_string_literal] = ACTIONS(1569), - [sym_float_literal] = ACTIONS(1569), + [ts_builtin_sym_end] = ACTIONS(1524), + [sym_identifier] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_macro_rules_BANG] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_async] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_enum] = ACTIONS(1526), + [anon_sym_fn] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_impl] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_loop] = ACTIONS(1526), + [anon_sym_match] = ACTIONS(1526), + [anon_sym_mod] = ACTIONS(1526), + [anon_sym_pub] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_static] = ACTIONS(1526), + [anon_sym_struct] = ACTIONS(1526), + [anon_sym_trait] = ACTIONS(1526), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_unsafe] = ACTIONS(1526), + [anon_sym_use] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_DOT_DOT] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_yield] = ACTIONS(1526), + [anon_sym_move] = ACTIONS(1526), + [sym_integer_literal] = ACTIONS(1524), + [aux_sym_string_literal_token1] = ACTIONS(1524), + [sym_char_literal] = ACTIONS(1524), + [anon_sym_true] = ACTIONS(1526), + [anon_sym_false] = ACTIONS(1526), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1526), + [sym_super] = ACTIONS(1526), + [sym_crate] = ACTIONS(1526), + [sym_metavariable] = ACTIONS(1524), + [sym_raw_string_literal] = ACTIONS(1524), + [sym_float_literal] = ACTIONS(1524), [sym_block_comment] = ACTIONS(3), }, [358] = { - [ts_builtin_sym_end] = ACTIONS(1573), - [sym_identifier] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_macro_rules_BANG] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_LBRACK] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_u8] = ACTIONS(1575), - [anon_sym_i8] = ACTIONS(1575), - [anon_sym_u16] = ACTIONS(1575), - [anon_sym_i16] = ACTIONS(1575), - [anon_sym_u32] = ACTIONS(1575), - [anon_sym_i32] = ACTIONS(1575), - [anon_sym_u64] = ACTIONS(1575), - [anon_sym_i64] = ACTIONS(1575), - [anon_sym_u128] = ACTIONS(1575), - [anon_sym_i128] = ACTIONS(1575), - [anon_sym_isize] = ACTIONS(1575), - [anon_sym_usize] = ACTIONS(1575), - [anon_sym_f32] = ACTIONS(1575), - [anon_sym_f64] = ACTIONS(1575), - [anon_sym_bool] = ACTIONS(1575), - [anon_sym_str] = ACTIONS(1575), - [anon_sym_char] = ACTIONS(1575), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_async] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1575), - [anon_sym_enum] = ACTIONS(1575), - [anon_sym_fn] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_impl] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1575), - [anon_sym_loop] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_mod] = ACTIONS(1575), - [anon_sym_pub] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_static] = ACTIONS(1575), - [anon_sym_struct] = ACTIONS(1575), - [anon_sym_trait] = ACTIONS(1575), - [anon_sym_type] = ACTIONS(1575), - [anon_sym_union] = ACTIONS(1575), - [anon_sym_unsafe] = ACTIONS(1575), - [anon_sym_use] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_POUND] = ACTIONS(1573), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_COLON_COLON] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1573), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_yield] = ACTIONS(1575), - [anon_sym_move] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1573), - [aux_sym_string_literal_token1] = ACTIONS(1573), - [sym_char_literal] = ACTIONS(1573), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1575), - [sym_super] = ACTIONS(1575), - [sym_crate] = ACTIONS(1575), - [sym_metavariable] = ACTIONS(1573), - [sym_raw_string_literal] = ACTIONS(1573), - [sym_float_literal] = ACTIONS(1573), + [ts_builtin_sym_end] = ACTIONS(1528), + [sym_identifier] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_macro_rules_BANG] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_u8] = ACTIONS(1530), + [anon_sym_i8] = ACTIONS(1530), + [anon_sym_u16] = ACTIONS(1530), + [anon_sym_i16] = ACTIONS(1530), + [anon_sym_u32] = ACTIONS(1530), + [anon_sym_i32] = ACTIONS(1530), + [anon_sym_u64] = ACTIONS(1530), + [anon_sym_i64] = ACTIONS(1530), + [anon_sym_u128] = ACTIONS(1530), + [anon_sym_i128] = ACTIONS(1530), + [anon_sym_isize] = ACTIONS(1530), + [anon_sym_usize] = ACTIONS(1530), + [anon_sym_f32] = ACTIONS(1530), + [anon_sym_f64] = ACTIONS(1530), + [anon_sym_bool] = ACTIONS(1530), + [anon_sym_str] = ACTIONS(1530), + [anon_sym_char] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_async] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_enum] = ACTIONS(1530), + [anon_sym_fn] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_impl] = ACTIONS(1530), + [anon_sym_let] = ACTIONS(1530), + [anon_sym_loop] = ACTIONS(1530), + [anon_sym_match] = ACTIONS(1530), + [anon_sym_mod] = ACTIONS(1530), + [anon_sym_pub] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_static] = ACTIONS(1530), + [anon_sym_struct] = ACTIONS(1530), + [anon_sym_trait] = ACTIONS(1530), + [anon_sym_type] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_unsafe] = ACTIONS(1530), + [anon_sym_use] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym_LT] = ACTIONS(1528), + [anon_sym_COLON_COLON] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_move] = ACTIONS(1530), + [sym_integer_literal] = ACTIONS(1528), + [aux_sym_string_literal_token1] = ACTIONS(1528), + [sym_char_literal] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1530), + [sym_super] = ACTIONS(1530), + [sym_crate] = ACTIONS(1530), + [sym_metavariable] = ACTIONS(1528), + [sym_raw_string_literal] = ACTIONS(1528), + [sym_float_literal] = ACTIONS(1528), [sym_block_comment] = ACTIONS(3), }, [359] = { - [ts_builtin_sym_end] = ACTIONS(1577), - [sym_identifier] = ACTIONS(1579), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_macro_rules_BANG] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_u8] = ACTIONS(1579), - [anon_sym_i8] = ACTIONS(1579), - [anon_sym_u16] = ACTIONS(1579), - [anon_sym_i16] = ACTIONS(1579), - [anon_sym_u32] = ACTIONS(1579), - [anon_sym_i32] = ACTIONS(1579), - [anon_sym_u64] = ACTIONS(1579), - [anon_sym_i64] = ACTIONS(1579), - [anon_sym_u128] = ACTIONS(1579), - [anon_sym_i128] = ACTIONS(1579), - [anon_sym_isize] = ACTIONS(1579), - [anon_sym_usize] = ACTIONS(1579), - [anon_sym_f32] = ACTIONS(1579), - [anon_sym_f64] = ACTIONS(1579), - [anon_sym_bool] = ACTIONS(1579), - [anon_sym_str] = ACTIONS(1579), - [anon_sym_char] = ACTIONS(1579), - [anon_sym_SQUOTE] = ACTIONS(1579), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_enum] = ACTIONS(1579), - [anon_sym_fn] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_impl] = ACTIONS(1579), - [anon_sym_let] = ACTIONS(1579), - [anon_sym_loop] = ACTIONS(1579), - [anon_sym_match] = ACTIONS(1579), - [anon_sym_mod] = ACTIONS(1579), - [anon_sym_pub] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_struct] = ACTIONS(1579), - [anon_sym_trait] = ACTIONS(1579), - [anon_sym_type] = ACTIONS(1579), - [anon_sym_union] = ACTIONS(1579), - [anon_sym_unsafe] = ACTIONS(1579), - [anon_sym_use] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_POUND] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_extern] = ACTIONS(1579), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_yield] = ACTIONS(1579), - [anon_sym_move] = ACTIONS(1579), - [sym_integer_literal] = ACTIONS(1577), - [aux_sym_string_literal_token1] = ACTIONS(1577), - [sym_char_literal] = ACTIONS(1577), - [anon_sym_true] = ACTIONS(1579), - [anon_sym_false] = ACTIONS(1579), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1579), - [sym_super] = ACTIONS(1579), - [sym_crate] = ACTIONS(1579), - [sym_metavariable] = ACTIONS(1577), - [sym_raw_string_literal] = ACTIONS(1577), - [sym_float_literal] = ACTIONS(1577), + [ts_builtin_sym_end] = ACTIONS(1532), + [sym_identifier] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_macro_rules_BANG] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_async] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1534), + [anon_sym_enum] = ACTIONS(1534), + [anon_sym_fn] = ACTIONS(1534), + [anon_sym_for] = ACTIONS(1534), + [anon_sym_if] = ACTIONS(1534), + [anon_sym_impl] = ACTIONS(1534), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_loop] = ACTIONS(1534), + [anon_sym_match] = ACTIONS(1534), + [anon_sym_mod] = ACTIONS(1534), + [anon_sym_pub] = ACTIONS(1534), + [anon_sym_return] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_struct] = ACTIONS(1534), + [anon_sym_trait] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_union] = ACTIONS(1534), + [anon_sym_unsafe] = ACTIONS(1534), + [anon_sym_use] = ACTIONS(1534), + [anon_sym_while] = ACTIONS(1534), + [anon_sym_POUND] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_DOT_DOT] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_yield] = ACTIONS(1534), + [anon_sym_move] = ACTIONS(1534), + [sym_integer_literal] = ACTIONS(1532), + [aux_sym_string_literal_token1] = ACTIONS(1532), + [sym_char_literal] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1534), + [anon_sym_false] = ACTIONS(1534), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1534), + [sym_super] = ACTIONS(1534), + [sym_crate] = ACTIONS(1534), + [sym_metavariable] = ACTIONS(1532), + [sym_raw_string_literal] = ACTIONS(1532), + [sym_float_literal] = ACTIONS(1532), [sym_block_comment] = ACTIONS(3), }, [360] = { + [ts_builtin_sym_end] = ACTIONS(1536), + [sym_identifier] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_macro_rules_BANG] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_u8] = ACTIONS(1538), + [anon_sym_i8] = ACTIONS(1538), + [anon_sym_u16] = ACTIONS(1538), + [anon_sym_i16] = ACTIONS(1538), + [anon_sym_u32] = ACTIONS(1538), + [anon_sym_i32] = ACTIONS(1538), + [anon_sym_u64] = ACTIONS(1538), + [anon_sym_i64] = ACTIONS(1538), + [anon_sym_u128] = ACTIONS(1538), + [anon_sym_i128] = ACTIONS(1538), + [anon_sym_isize] = ACTIONS(1538), + [anon_sym_usize] = ACTIONS(1538), + [anon_sym_f32] = ACTIONS(1538), + [anon_sym_f64] = ACTIONS(1538), + [anon_sym_bool] = ACTIONS(1538), + [anon_sym_str] = ACTIONS(1538), + [anon_sym_char] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_async] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1538), + [anon_sym_enum] = ACTIONS(1538), + [anon_sym_fn] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_impl] = ACTIONS(1538), + [anon_sym_let] = ACTIONS(1538), + [anon_sym_loop] = ACTIONS(1538), + [anon_sym_match] = ACTIONS(1538), + [anon_sym_mod] = ACTIONS(1538), + [anon_sym_pub] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_static] = ACTIONS(1538), + [anon_sym_struct] = ACTIONS(1538), + [anon_sym_trait] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1538), + [anon_sym_union] = ACTIONS(1538), + [anon_sym_unsafe] = ACTIONS(1538), + [anon_sym_use] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_yield] = ACTIONS(1538), + [anon_sym_move] = ACTIONS(1538), + [sym_integer_literal] = ACTIONS(1536), + [aux_sym_string_literal_token1] = ACTIONS(1536), + [sym_char_literal] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1538), + [sym_super] = ACTIONS(1538), + [sym_crate] = ACTIONS(1538), + [sym_metavariable] = ACTIONS(1536), + [sym_raw_string_literal] = ACTIONS(1536), + [sym_float_literal] = ACTIONS(1536), + [sym_block_comment] = ACTIONS(3), + }, + [361] = { [sym_attribute_item] = STATE(548), [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), @@ -49451,7 +49520,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_invocation] = STATE(2349), [sym_scoped_identifier] = STATE(1578), [sym_scoped_type_identifier] = STATE(1974), - [sym_match_arm] = STATE(500), + [sym_match_arm] = STATE(482), [sym_last_match_arm] = STATE(2356), [sym_match_pattern] = STATE(2359), [sym_const_block] = STATE(1473), @@ -49472,37 +49541,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [aux_sym_enum_variant_list_repeat1] = STATE(548), - [aux_sym_match_block_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_RBRACE] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1194), - [anon_sym_union] = ACTIONS(1194), + [aux_sym_match_block_repeat1] = STATE(482), + [sym_identifier] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -49512,1324 +49581,1478 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [361] = { - [ts_builtin_sym_end] = ACTIONS(1583), - [sym_identifier] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_macro_rules_BANG] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_RBRACE] = ACTIONS(1583), - [anon_sym_LBRACK] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_u8] = ACTIONS(1585), - [anon_sym_i8] = ACTIONS(1585), - [anon_sym_u16] = ACTIONS(1585), - [anon_sym_i16] = ACTIONS(1585), - [anon_sym_u32] = ACTIONS(1585), - [anon_sym_i32] = ACTIONS(1585), - [anon_sym_u64] = ACTIONS(1585), - [anon_sym_i64] = ACTIONS(1585), - [anon_sym_u128] = ACTIONS(1585), - [anon_sym_i128] = ACTIONS(1585), - [anon_sym_isize] = ACTIONS(1585), - [anon_sym_usize] = ACTIONS(1585), - [anon_sym_f32] = ACTIONS(1585), - [anon_sym_f64] = ACTIONS(1585), - [anon_sym_bool] = ACTIONS(1585), - [anon_sym_str] = ACTIONS(1585), - [anon_sym_char] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [anon_sym_fn] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_impl] = ACTIONS(1585), - [anon_sym_let] = ACTIONS(1585), - [anon_sym_loop] = ACTIONS(1585), - [anon_sym_match] = ACTIONS(1585), - [anon_sym_mod] = ACTIONS(1585), - [anon_sym_pub] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_struct] = ACTIONS(1585), - [anon_sym_trait] = ACTIONS(1585), - [anon_sym_type] = ACTIONS(1585), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_unsafe] = ACTIONS(1585), - [anon_sym_use] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_COLON_COLON] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_DOT_DOT] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1583), - [anon_sym_yield] = ACTIONS(1585), - [anon_sym_move] = ACTIONS(1585), - [sym_integer_literal] = ACTIONS(1583), - [aux_sym_string_literal_token1] = ACTIONS(1583), - [sym_char_literal] = ACTIONS(1583), - [anon_sym_true] = ACTIONS(1585), - [anon_sym_false] = ACTIONS(1585), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1585), - [sym_super] = ACTIONS(1585), - [sym_crate] = ACTIONS(1585), - [sym_metavariable] = ACTIONS(1583), - [sym_raw_string_literal] = ACTIONS(1583), - [sym_float_literal] = ACTIONS(1583), - [sym_block_comment] = ACTIONS(3), - }, [362] = { - [ts_builtin_sym_end] = ACTIONS(1587), - [sym_identifier] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_macro_rules_BANG] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_u8] = ACTIONS(1589), - [anon_sym_i8] = ACTIONS(1589), - [anon_sym_u16] = ACTIONS(1589), - [anon_sym_i16] = ACTIONS(1589), - [anon_sym_u32] = ACTIONS(1589), - [anon_sym_i32] = ACTIONS(1589), - [anon_sym_u64] = ACTIONS(1589), - [anon_sym_i64] = ACTIONS(1589), - [anon_sym_u128] = ACTIONS(1589), - [anon_sym_i128] = ACTIONS(1589), - [anon_sym_isize] = ACTIONS(1589), - [anon_sym_usize] = ACTIONS(1589), - [anon_sym_f32] = ACTIONS(1589), - [anon_sym_f64] = ACTIONS(1589), - [anon_sym_bool] = ACTIONS(1589), - [anon_sym_str] = ACTIONS(1589), - [anon_sym_char] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_async] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_default] = ACTIONS(1589), - [anon_sym_enum] = ACTIONS(1589), - [anon_sym_fn] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_impl] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_pub] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1589), - [anon_sym_struct] = ACTIONS(1589), - [anon_sym_trait] = ACTIONS(1589), - [anon_sym_type] = ACTIONS(1589), - [anon_sym_union] = ACTIONS(1589), - [anon_sym_unsafe] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_COLON_COLON] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_yield] = ACTIONS(1589), - [anon_sym_move] = ACTIONS(1589), - [sym_integer_literal] = ACTIONS(1587), - [aux_sym_string_literal_token1] = ACTIONS(1587), - [sym_char_literal] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1589), - [sym_super] = ACTIONS(1589), - [sym_crate] = ACTIONS(1589), - [sym_metavariable] = ACTIONS(1587), - [sym_raw_string_literal] = ACTIONS(1587), - [sym_float_literal] = ACTIONS(1587), + [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), }, [363] = { - [ts_builtin_sym_end] = ACTIONS(1591), - [sym_identifier] = ACTIONS(1593), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_macro_rules_BANG] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_u8] = ACTIONS(1593), - [anon_sym_i8] = ACTIONS(1593), - [anon_sym_u16] = ACTIONS(1593), - [anon_sym_i16] = ACTIONS(1593), - [anon_sym_u32] = ACTIONS(1593), - [anon_sym_i32] = ACTIONS(1593), - [anon_sym_u64] = ACTIONS(1593), - [anon_sym_i64] = ACTIONS(1593), - [anon_sym_u128] = ACTIONS(1593), - [anon_sym_i128] = ACTIONS(1593), - [anon_sym_isize] = ACTIONS(1593), - [anon_sym_usize] = ACTIONS(1593), - [anon_sym_f32] = ACTIONS(1593), - [anon_sym_f64] = ACTIONS(1593), - [anon_sym_bool] = ACTIONS(1593), - [anon_sym_str] = ACTIONS(1593), - [anon_sym_char] = ACTIONS(1593), - [anon_sym_SQUOTE] = ACTIONS(1593), - [anon_sym_async] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_fn] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_impl] = ACTIONS(1593), - [anon_sym_let] = ACTIONS(1593), - [anon_sym_loop] = ACTIONS(1593), - [anon_sym_match] = ACTIONS(1593), - [anon_sym_mod] = ACTIONS(1593), - [anon_sym_pub] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_trait] = ACTIONS(1593), - [anon_sym_type] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_unsafe] = ACTIONS(1593), - [anon_sym_use] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_POUND] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(1591), - [anon_sym_COLON_COLON] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_yield] = ACTIONS(1593), - [anon_sym_move] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [aux_sym_string_literal_token1] = ACTIONS(1591), - [sym_char_literal] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1593), - [sym_super] = ACTIONS(1593), - [sym_crate] = ACTIONS(1593), - [sym_metavariable] = ACTIONS(1591), - [sym_raw_string_literal] = ACTIONS(1591), - [sym_float_literal] = ACTIONS(1591), + [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), }, [364] = { - [ts_builtin_sym_end] = ACTIONS(1595), - [sym_identifier] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_macro_rules_BANG] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_u8] = ACTIONS(1597), - [anon_sym_i8] = ACTIONS(1597), - [anon_sym_u16] = ACTIONS(1597), - [anon_sym_i16] = ACTIONS(1597), - [anon_sym_u32] = ACTIONS(1597), - [anon_sym_i32] = ACTIONS(1597), - [anon_sym_u64] = ACTIONS(1597), - [anon_sym_i64] = ACTIONS(1597), - [anon_sym_u128] = ACTIONS(1597), - [anon_sym_i128] = ACTIONS(1597), - [anon_sym_isize] = ACTIONS(1597), - [anon_sym_usize] = ACTIONS(1597), - [anon_sym_f32] = ACTIONS(1597), - [anon_sym_f64] = ACTIONS(1597), - [anon_sym_bool] = ACTIONS(1597), - [anon_sym_str] = ACTIONS(1597), - [anon_sym_char] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1597), - [anon_sym_async] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_default] = ACTIONS(1597), - [anon_sym_enum] = ACTIONS(1597), - [anon_sym_fn] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_impl] = ACTIONS(1597), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_loop] = ACTIONS(1597), - [anon_sym_match] = ACTIONS(1597), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_pub] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_struct] = ACTIONS(1597), - [anon_sym_trait] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_union] = ACTIONS(1597), - [anon_sym_unsafe] = ACTIONS(1597), - [anon_sym_use] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_POUND] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_extern] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_DOT_DOT] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1597), - [anon_sym_move] = ACTIONS(1597), - [sym_integer_literal] = ACTIONS(1595), - [aux_sym_string_literal_token1] = ACTIONS(1595), - [sym_char_literal] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1597), - [anon_sym_false] = ACTIONS(1597), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1597), - [sym_super] = ACTIONS(1597), - [sym_crate] = ACTIONS(1597), - [sym_metavariable] = ACTIONS(1595), - [sym_raw_string_literal] = ACTIONS(1595), - [sym_float_literal] = ACTIONS(1595), + [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), }, [365] = { - [ts_builtin_sym_end] = ACTIONS(1599), - [sym_identifier] = ACTIONS(1601), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_macro_rules_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_u8] = ACTIONS(1601), - [anon_sym_i8] = ACTIONS(1601), - [anon_sym_u16] = ACTIONS(1601), - [anon_sym_i16] = ACTIONS(1601), - [anon_sym_u32] = ACTIONS(1601), - [anon_sym_i32] = ACTIONS(1601), - [anon_sym_u64] = ACTIONS(1601), - [anon_sym_i64] = ACTIONS(1601), - [anon_sym_u128] = ACTIONS(1601), - [anon_sym_i128] = ACTIONS(1601), - [anon_sym_isize] = ACTIONS(1601), - [anon_sym_usize] = ACTIONS(1601), - [anon_sym_f32] = ACTIONS(1601), - [anon_sym_f64] = ACTIONS(1601), - [anon_sym_bool] = ACTIONS(1601), - [anon_sym_str] = ACTIONS(1601), - [anon_sym_char] = ACTIONS(1601), - [anon_sym_SQUOTE] = ACTIONS(1601), - [anon_sym_async] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_const] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_enum] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_impl] = ACTIONS(1601), - [anon_sym_let] = ACTIONS(1601), - [anon_sym_loop] = ACTIONS(1601), - [anon_sym_match] = ACTIONS(1601), - [anon_sym_mod] = ACTIONS(1601), - [anon_sym_pub] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_static] = ACTIONS(1601), - [anon_sym_struct] = ACTIONS(1601), - [anon_sym_trait] = ACTIONS(1601), - [anon_sym_type] = ACTIONS(1601), - [anon_sym_union] = ACTIONS(1601), - [anon_sym_unsafe] = ACTIONS(1601), - [anon_sym_use] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_POUND] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_extern] = ACTIONS(1601), - [anon_sym_LT] = ACTIONS(1599), - [anon_sym_COLON_COLON] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_DOT_DOT] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_yield] = ACTIONS(1601), - [anon_sym_move] = ACTIONS(1601), - [sym_integer_literal] = ACTIONS(1599), - [aux_sym_string_literal_token1] = ACTIONS(1599), - [sym_char_literal] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1601), - [anon_sym_false] = ACTIONS(1601), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1601), - [sym_super] = ACTIONS(1601), - [sym_crate] = ACTIONS(1601), - [sym_metavariable] = ACTIONS(1599), - [sym_raw_string_literal] = ACTIONS(1599), - [sym_float_literal] = ACTIONS(1599), + [ts_builtin_sym_end] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym_macro_rules_BANG] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1554), + [anon_sym_u8] = ACTIONS(1556), + [anon_sym_i8] = ACTIONS(1556), + [anon_sym_u16] = ACTIONS(1556), + [anon_sym_i16] = ACTIONS(1556), + [anon_sym_u32] = ACTIONS(1556), + [anon_sym_i32] = ACTIONS(1556), + [anon_sym_u64] = ACTIONS(1556), + [anon_sym_i64] = ACTIONS(1556), + [anon_sym_u128] = ACTIONS(1556), + [anon_sym_i128] = ACTIONS(1556), + [anon_sym_isize] = ACTIONS(1556), + [anon_sym_usize] = ACTIONS(1556), + [anon_sym_f32] = ACTIONS(1556), + [anon_sym_f64] = ACTIONS(1556), + [anon_sym_bool] = ACTIONS(1556), + [anon_sym_str] = ACTIONS(1556), + [anon_sym_char] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_break] = ACTIONS(1556), + [anon_sym_const] = ACTIONS(1556), + [anon_sym_continue] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1556), + [anon_sym_enum] = ACTIONS(1556), + [anon_sym_fn] = ACTIONS(1556), + [anon_sym_for] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(1556), + [anon_sym_impl] = ACTIONS(1556), + [anon_sym_let] = ACTIONS(1556), + [anon_sym_loop] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_mod] = ACTIONS(1556), + [anon_sym_pub] = ACTIONS(1556), + [anon_sym_return] = ACTIONS(1556), + [anon_sym_static] = ACTIONS(1556), + [anon_sym_struct] = ACTIONS(1556), + [anon_sym_trait] = ACTIONS(1556), + [anon_sym_type] = ACTIONS(1556), + [anon_sym_union] = ACTIONS(1556), + [anon_sym_unsafe] = ACTIONS(1556), + [anon_sym_use] = ACTIONS(1556), + [anon_sym_while] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_extern] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(1554), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_DOT_DOT] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_yield] = ACTIONS(1556), + [anon_sym_move] = ACTIONS(1556), + [sym_integer_literal] = ACTIONS(1554), + [aux_sym_string_literal_token1] = ACTIONS(1554), + [sym_char_literal] = ACTIONS(1554), + [anon_sym_true] = ACTIONS(1556), + [anon_sym_false] = ACTIONS(1556), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1556), + [sym_super] = ACTIONS(1556), + [sym_crate] = ACTIONS(1556), + [sym_metavariable] = ACTIONS(1554), + [sym_raw_string_literal] = ACTIONS(1554), + [sym_float_literal] = ACTIONS(1554), [sym_block_comment] = ACTIONS(3), }, [366] = { - [ts_builtin_sym_end] = ACTIONS(1603), - [sym_identifier] = ACTIONS(1605), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_macro_rules_BANG] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_u8] = ACTIONS(1605), - [anon_sym_i8] = ACTIONS(1605), - [anon_sym_u16] = ACTIONS(1605), - [anon_sym_i16] = ACTIONS(1605), - [anon_sym_u32] = ACTIONS(1605), - [anon_sym_i32] = ACTIONS(1605), - [anon_sym_u64] = ACTIONS(1605), - [anon_sym_i64] = ACTIONS(1605), - [anon_sym_u128] = ACTIONS(1605), - [anon_sym_i128] = ACTIONS(1605), - [anon_sym_isize] = ACTIONS(1605), - [anon_sym_usize] = ACTIONS(1605), - [anon_sym_f32] = ACTIONS(1605), - [anon_sym_f64] = ACTIONS(1605), - [anon_sym_bool] = ACTIONS(1605), - [anon_sym_str] = ACTIONS(1605), - [anon_sym_char] = ACTIONS(1605), - [anon_sym_SQUOTE] = ACTIONS(1605), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_default] = ACTIONS(1605), - [anon_sym_enum] = ACTIONS(1605), - [anon_sym_fn] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_impl] = ACTIONS(1605), - [anon_sym_let] = ACTIONS(1605), - [anon_sym_loop] = ACTIONS(1605), - [anon_sym_match] = ACTIONS(1605), - [anon_sym_mod] = ACTIONS(1605), - [anon_sym_pub] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_trait] = ACTIONS(1605), - [anon_sym_type] = ACTIONS(1605), - [anon_sym_union] = ACTIONS(1605), - [anon_sym_unsafe] = ACTIONS(1605), - [anon_sym_use] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_POUND] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(1603), - [anon_sym_COLON_COLON] = ACTIONS(1603), - [anon_sym_AMP] = ACTIONS(1603), - [anon_sym_DOT_DOT] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_yield] = ACTIONS(1605), - [anon_sym_move] = ACTIONS(1605), - [sym_integer_literal] = ACTIONS(1603), - [aux_sym_string_literal_token1] = ACTIONS(1603), - [sym_char_literal] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1605), - [anon_sym_false] = ACTIONS(1605), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1605), - [sym_super] = ACTIONS(1605), - [sym_crate] = ACTIONS(1605), - [sym_metavariable] = ACTIONS(1603), - [sym_raw_string_literal] = ACTIONS(1603), - [sym_float_literal] = ACTIONS(1603), + [ts_builtin_sym_end] = ACTIONS(1558), + [sym_identifier] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_macro_rules_BANG] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_u8] = ACTIONS(1560), + [anon_sym_i8] = ACTIONS(1560), + [anon_sym_u16] = ACTIONS(1560), + [anon_sym_i16] = ACTIONS(1560), + [anon_sym_u32] = ACTIONS(1560), + [anon_sym_i32] = ACTIONS(1560), + [anon_sym_u64] = ACTIONS(1560), + [anon_sym_i64] = ACTIONS(1560), + [anon_sym_u128] = ACTIONS(1560), + [anon_sym_i128] = ACTIONS(1560), + [anon_sym_isize] = ACTIONS(1560), + [anon_sym_usize] = ACTIONS(1560), + [anon_sym_f32] = ACTIONS(1560), + [anon_sym_f64] = ACTIONS(1560), + [anon_sym_bool] = ACTIONS(1560), + [anon_sym_str] = ACTIONS(1560), + [anon_sym_char] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [anon_sym_continue] = ACTIONS(1560), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_enum] = ACTIONS(1560), + [anon_sym_fn] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_impl] = ACTIONS(1560), + [anon_sym_let] = ACTIONS(1560), + [anon_sym_loop] = ACTIONS(1560), + [anon_sym_match] = ACTIONS(1560), + [anon_sym_mod] = ACTIONS(1560), + [anon_sym_pub] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1560), + [anon_sym_struct] = ACTIONS(1560), + [anon_sym_trait] = ACTIONS(1560), + [anon_sym_type] = ACTIONS(1560), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_unsafe] = ACTIONS(1560), + [anon_sym_use] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_extern] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1558), + [anon_sym_COLON_COLON] = ACTIONS(1558), + [anon_sym_AMP] = ACTIONS(1558), + [anon_sym_DOT_DOT] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_yield] = ACTIONS(1560), + [anon_sym_move] = ACTIONS(1560), + [sym_integer_literal] = ACTIONS(1558), + [aux_sym_string_literal_token1] = ACTIONS(1558), + [sym_char_literal] = ACTIONS(1558), + [anon_sym_true] = ACTIONS(1560), + [anon_sym_false] = ACTIONS(1560), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1560), + [sym_super] = ACTIONS(1560), + [sym_crate] = ACTIONS(1560), + [sym_metavariable] = ACTIONS(1558), + [sym_raw_string_literal] = ACTIONS(1558), + [sym_float_literal] = ACTIONS(1558), [sym_block_comment] = ACTIONS(3), }, [367] = { - [ts_builtin_sym_end] = ACTIONS(1607), - [sym_identifier] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_macro_rules_BANG] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1609), - [anon_sym_async] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_const] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym_default] = ACTIONS(1609), - [anon_sym_enum] = ACTIONS(1609), - [anon_sym_fn] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1609), - [anon_sym_impl] = ACTIONS(1609), - [anon_sym_let] = ACTIONS(1609), - [anon_sym_loop] = ACTIONS(1609), - [anon_sym_match] = ACTIONS(1609), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_pub] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_static] = ACTIONS(1609), - [anon_sym_struct] = ACTIONS(1609), - [anon_sym_trait] = ACTIONS(1609), - [anon_sym_type] = ACTIONS(1609), - [anon_sym_union] = ACTIONS(1609), - [anon_sym_unsafe] = ACTIONS(1609), - [anon_sym_use] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1607), - [anon_sym_extern] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1607), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1609), - [anon_sym_move] = ACTIONS(1609), - [sym_integer_literal] = ACTIONS(1607), - [aux_sym_string_literal_token1] = ACTIONS(1607), - [sym_char_literal] = ACTIONS(1607), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1609), - [sym_super] = ACTIONS(1609), - [sym_crate] = ACTIONS(1609), - [sym_metavariable] = ACTIONS(1607), - [sym_raw_string_literal] = ACTIONS(1607), - [sym_float_literal] = ACTIONS(1607), + [ts_builtin_sym_end] = ACTIONS(1562), + [sym_identifier] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym_macro_rules_BANG] = ACTIONS(1562), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1562), + [anon_sym_RBRACE] = ACTIONS(1562), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1562), + [anon_sym_u8] = ACTIONS(1564), + [anon_sym_i8] = ACTIONS(1564), + [anon_sym_u16] = ACTIONS(1564), + [anon_sym_i16] = ACTIONS(1564), + [anon_sym_u32] = ACTIONS(1564), + [anon_sym_i32] = ACTIONS(1564), + [anon_sym_u64] = ACTIONS(1564), + [anon_sym_i64] = ACTIONS(1564), + [anon_sym_u128] = ACTIONS(1564), + [anon_sym_i128] = ACTIONS(1564), + [anon_sym_isize] = ACTIONS(1564), + [anon_sym_usize] = ACTIONS(1564), + [anon_sym_f32] = ACTIONS(1564), + [anon_sym_f64] = ACTIONS(1564), + [anon_sym_bool] = ACTIONS(1564), + [anon_sym_str] = ACTIONS(1564), + [anon_sym_char] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_async] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_const] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_default] = ACTIONS(1564), + [anon_sym_enum] = ACTIONS(1564), + [anon_sym_fn] = ACTIONS(1564), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_impl] = ACTIONS(1564), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_loop] = ACTIONS(1564), + [anon_sym_match] = ACTIONS(1564), + [anon_sym_mod] = ACTIONS(1564), + [anon_sym_pub] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_struct] = ACTIONS(1564), + [anon_sym_trait] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_union] = ACTIONS(1564), + [anon_sym_unsafe] = ACTIONS(1564), + [anon_sym_use] = ACTIONS(1564), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_POUND] = ACTIONS(1562), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_extern] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1562), + [anon_sym_COLON_COLON] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_DOT_DOT] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_move] = ACTIONS(1564), + [sym_integer_literal] = ACTIONS(1562), + [aux_sym_string_literal_token1] = ACTIONS(1562), + [sym_char_literal] = ACTIONS(1562), + [anon_sym_true] = ACTIONS(1564), + [anon_sym_false] = ACTIONS(1564), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1564), + [sym_super] = ACTIONS(1564), + [sym_crate] = ACTIONS(1564), + [sym_metavariable] = ACTIONS(1562), + [sym_raw_string_literal] = ACTIONS(1562), + [sym_float_literal] = ACTIONS(1562), [sym_block_comment] = ACTIONS(3), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(1611), - [sym_identifier] = ACTIONS(1613), - [anon_sym_SEMI] = ACTIONS(1611), - [anon_sym_macro_rules_BANG] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_RBRACE] = ACTIONS(1611), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_u8] = ACTIONS(1613), - [anon_sym_i8] = ACTIONS(1613), - [anon_sym_u16] = ACTIONS(1613), - [anon_sym_i16] = ACTIONS(1613), - [anon_sym_u32] = ACTIONS(1613), - [anon_sym_i32] = ACTIONS(1613), - [anon_sym_u64] = ACTIONS(1613), - [anon_sym_i64] = ACTIONS(1613), - [anon_sym_u128] = ACTIONS(1613), - [anon_sym_i128] = ACTIONS(1613), - [anon_sym_isize] = ACTIONS(1613), - [anon_sym_usize] = ACTIONS(1613), - [anon_sym_f32] = ACTIONS(1613), - [anon_sym_f64] = ACTIONS(1613), - [anon_sym_bool] = ACTIONS(1613), - [anon_sym_str] = ACTIONS(1613), - [anon_sym_char] = ACTIONS(1613), - [anon_sym_SQUOTE] = ACTIONS(1613), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_break] = ACTIONS(1613), - [anon_sym_const] = ACTIONS(1613), - [anon_sym_continue] = ACTIONS(1613), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_enum] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1613), - [anon_sym_for] = ACTIONS(1613), - [anon_sym_if] = ACTIONS(1613), - [anon_sym_impl] = ACTIONS(1613), - [anon_sym_let] = ACTIONS(1613), - [anon_sym_loop] = ACTIONS(1613), - [anon_sym_match] = ACTIONS(1613), - [anon_sym_mod] = ACTIONS(1613), - [anon_sym_pub] = ACTIONS(1613), - [anon_sym_return] = ACTIONS(1613), - [anon_sym_static] = ACTIONS(1613), - [anon_sym_struct] = ACTIONS(1613), - [anon_sym_trait] = ACTIONS(1613), - [anon_sym_type] = ACTIONS(1613), - [anon_sym_union] = ACTIONS(1613), - [anon_sym_unsafe] = ACTIONS(1613), - [anon_sym_use] = ACTIONS(1613), - [anon_sym_while] = ACTIONS(1613), - [anon_sym_POUND] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_extern] = ACTIONS(1613), - [anon_sym_LT] = ACTIONS(1611), - [anon_sym_COLON_COLON] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_DOT_DOT] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_PIPE] = ACTIONS(1611), - [anon_sym_yield] = ACTIONS(1613), - [anon_sym_move] = ACTIONS(1613), - [sym_integer_literal] = ACTIONS(1611), - [aux_sym_string_literal_token1] = ACTIONS(1611), - [sym_char_literal] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1613), - [sym_super] = ACTIONS(1613), - [sym_crate] = ACTIONS(1613), - [sym_metavariable] = ACTIONS(1611), - [sym_raw_string_literal] = ACTIONS(1611), - [sym_float_literal] = ACTIONS(1611), + [ts_builtin_sym_end] = ACTIONS(1566), + [sym_identifier] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_macro_rules_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_u8] = ACTIONS(1568), + [anon_sym_i8] = ACTIONS(1568), + [anon_sym_u16] = ACTIONS(1568), + [anon_sym_i16] = ACTIONS(1568), + [anon_sym_u32] = ACTIONS(1568), + [anon_sym_i32] = ACTIONS(1568), + [anon_sym_u64] = ACTIONS(1568), + [anon_sym_i64] = ACTIONS(1568), + [anon_sym_u128] = ACTIONS(1568), + [anon_sym_i128] = ACTIONS(1568), + [anon_sym_isize] = ACTIONS(1568), + [anon_sym_usize] = ACTIONS(1568), + [anon_sym_f32] = ACTIONS(1568), + [anon_sym_f64] = ACTIONS(1568), + [anon_sym_bool] = ACTIONS(1568), + [anon_sym_str] = ACTIONS(1568), + [anon_sym_char] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1568), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_break] = ACTIONS(1568), + [anon_sym_const] = ACTIONS(1568), + [anon_sym_continue] = ACTIONS(1568), + [anon_sym_default] = ACTIONS(1568), + [anon_sym_enum] = ACTIONS(1568), + [anon_sym_fn] = ACTIONS(1568), + [anon_sym_for] = ACTIONS(1568), + [anon_sym_if] = ACTIONS(1568), + [anon_sym_impl] = ACTIONS(1568), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_loop] = ACTIONS(1568), + [anon_sym_match] = ACTIONS(1568), + [anon_sym_mod] = ACTIONS(1568), + [anon_sym_pub] = ACTIONS(1568), + [anon_sym_return] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_struct] = ACTIONS(1568), + [anon_sym_trait] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_union] = ACTIONS(1568), + [anon_sym_unsafe] = ACTIONS(1568), + [anon_sym_use] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_POUND] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_extern] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(1566), + [anon_sym_COLON_COLON] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1568), + [anon_sym_move] = ACTIONS(1568), + [sym_integer_literal] = ACTIONS(1566), + [aux_sym_string_literal_token1] = ACTIONS(1566), + [sym_char_literal] = ACTIONS(1566), + [anon_sym_true] = ACTIONS(1568), + [anon_sym_false] = ACTIONS(1568), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1568), + [sym_super] = ACTIONS(1568), + [sym_crate] = ACTIONS(1568), + [sym_metavariable] = ACTIONS(1566), + [sym_raw_string_literal] = ACTIONS(1566), + [sym_float_literal] = ACTIONS(1566), [sym_block_comment] = ACTIONS(3), }, [369] = { - [ts_builtin_sym_end] = ACTIONS(1615), - [sym_identifier] = ACTIONS(1617), - [anon_sym_SEMI] = ACTIONS(1615), - [anon_sym_macro_rules_BANG] = ACTIONS(1615), - [anon_sym_LPAREN] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1615), - [anon_sym_RBRACE] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_u8] = ACTIONS(1617), - [anon_sym_i8] = ACTIONS(1617), - [anon_sym_u16] = ACTIONS(1617), - [anon_sym_i16] = ACTIONS(1617), - [anon_sym_u32] = ACTIONS(1617), - [anon_sym_i32] = ACTIONS(1617), - [anon_sym_u64] = ACTIONS(1617), - [anon_sym_i64] = ACTIONS(1617), - [anon_sym_u128] = ACTIONS(1617), - [anon_sym_i128] = ACTIONS(1617), - [anon_sym_isize] = ACTIONS(1617), - [anon_sym_usize] = ACTIONS(1617), - [anon_sym_f32] = ACTIONS(1617), - [anon_sym_f64] = ACTIONS(1617), - [anon_sym_bool] = ACTIONS(1617), - [anon_sym_str] = ACTIONS(1617), - [anon_sym_char] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_const] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_default] = ACTIONS(1617), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_fn] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_impl] = ACTIONS(1617), - [anon_sym_let] = ACTIONS(1617), - [anon_sym_loop] = ACTIONS(1617), - [anon_sym_match] = ACTIONS(1617), - [anon_sym_mod] = ACTIONS(1617), - [anon_sym_pub] = ACTIONS(1617), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_static] = ACTIONS(1617), - [anon_sym_struct] = ACTIONS(1617), - [anon_sym_trait] = ACTIONS(1617), - [anon_sym_type] = ACTIONS(1617), - [anon_sym_union] = ACTIONS(1617), - [anon_sym_unsafe] = ACTIONS(1617), - [anon_sym_use] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [anon_sym_POUND] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(1615), - [anon_sym_extern] = ACTIONS(1617), - [anon_sym_LT] = ACTIONS(1615), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_DOT_DOT] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1615), - [anon_sym_yield] = ACTIONS(1617), - [anon_sym_move] = ACTIONS(1617), - [sym_integer_literal] = ACTIONS(1615), - [aux_sym_string_literal_token1] = ACTIONS(1615), - [sym_char_literal] = ACTIONS(1615), - [anon_sym_true] = ACTIONS(1617), - [anon_sym_false] = ACTIONS(1617), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1617), - [sym_super] = ACTIONS(1617), - [sym_crate] = ACTIONS(1617), - [sym_metavariable] = ACTIONS(1615), - [sym_raw_string_literal] = ACTIONS(1615), - [sym_float_literal] = ACTIONS(1615), + [ts_builtin_sym_end] = ACTIONS(1570), + [sym_identifier] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1570), + [anon_sym_macro_rules_BANG] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1570), + [anon_sym_RBRACE] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1570), + [anon_sym_STAR] = ACTIONS(1570), + [anon_sym_u8] = ACTIONS(1572), + [anon_sym_i8] = ACTIONS(1572), + [anon_sym_u16] = ACTIONS(1572), + [anon_sym_i16] = ACTIONS(1572), + [anon_sym_u32] = ACTIONS(1572), + [anon_sym_i32] = ACTIONS(1572), + [anon_sym_u64] = ACTIONS(1572), + [anon_sym_i64] = ACTIONS(1572), + [anon_sym_u128] = ACTIONS(1572), + [anon_sym_i128] = ACTIONS(1572), + [anon_sym_isize] = ACTIONS(1572), + [anon_sym_usize] = ACTIONS(1572), + [anon_sym_f32] = ACTIONS(1572), + [anon_sym_f64] = ACTIONS(1572), + [anon_sym_bool] = ACTIONS(1572), + [anon_sym_str] = ACTIONS(1572), + [anon_sym_char] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(1572), + [anon_sym_async] = ACTIONS(1572), + [anon_sym_break] = ACTIONS(1572), + [anon_sym_const] = ACTIONS(1572), + [anon_sym_continue] = ACTIONS(1572), + [anon_sym_default] = ACTIONS(1572), + [anon_sym_enum] = ACTIONS(1572), + [anon_sym_fn] = ACTIONS(1572), + [anon_sym_for] = ACTIONS(1572), + [anon_sym_if] = ACTIONS(1572), + [anon_sym_impl] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1572), + [anon_sym_loop] = ACTIONS(1572), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_mod] = ACTIONS(1572), + [anon_sym_pub] = ACTIONS(1572), + [anon_sym_return] = ACTIONS(1572), + [anon_sym_static] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1572), + [anon_sym_trait] = ACTIONS(1572), + [anon_sym_type] = ACTIONS(1572), + [anon_sym_union] = ACTIONS(1572), + [anon_sym_unsafe] = ACTIONS(1572), + [anon_sym_use] = ACTIONS(1572), + [anon_sym_while] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(1570), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_extern] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1570), + [anon_sym_COLON_COLON] = ACTIONS(1570), + [anon_sym_AMP] = ACTIONS(1570), + [anon_sym_DOT_DOT] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_PIPE] = ACTIONS(1570), + [anon_sym_yield] = ACTIONS(1572), + [anon_sym_move] = ACTIONS(1572), + [sym_integer_literal] = ACTIONS(1570), + [aux_sym_string_literal_token1] = ACTIONS(1570), + [sym_char_literal] = ACTIONS(1570), + [anon_sym_true] = ACTIONS(1572), + [anon_sym_false] = ACTIONS(1572), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1572), + [sym_super] = ACTIONS(1572), + [sym_crate] = ACTIONS(1572), + [sym_metavariable] = ACTIONS(1570), + [sym_raw_string_literal] = ACTIONS(1570), + [sym_float_literal] = ACTIONS(1570), [sym_block_comment] = ACTIONS(3), }, [370] = { - [sym__token_pattern] = STATE(342), - [sym_token_tree_pattern] = STATE(342), - [sym_token_binding_pattern] = STATE(342), - [sym_token_repetition_pattern] = STATE(342), - [sym__never_special_token] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_pattern_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_RBRACK] = ACTIONS(1621), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_u8] = ACTIONS(1619), - [anon_sym_i8] = ACTIONS(1619), - [anon_sym_u16] = ACTIONS(1619), - [anon_sym_i16] = ACTIONS(1619), - [anon_sym_u32] = ACTIONS(1619), - [anon_sym_i32] = ACTIONS(1619), - [anon_sym_u64] = ACTIONS(1619), - [anon_sym_i64] = ACTIONS(1619), - [anon_sym_u128] = ACTIONS(1619), - [anon_sym_i128] = ACTIONS(1619), - [anon_sym_isize] = ACTIONS(1619), - [anon_sym_usize] = ACTIONS(1619), - [anon_sym_f32] = ACTIONS(1619), - [anon_sym_f64] = ACTIONS(1619), - [anon_sym_bool] = ACTIONS(1619), - [anon_sym_str] = ACTIONS(1619), - [anon_sym_char] = ACTIONS(1619), - [aux_sym__never_special_token_token1] = ACTIONS(1619), - [anon_sym_SQUOTE] = ACTIONS(1619), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(1619), - [anon_sym_await] = ACTIONS(1619), - [anon_sym_break] = ACTIONS(1619), - [anon_sym_const] = ACTIONS(1619), - [anon_sym_continue] = ACTIONS(1619), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_enum] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1619), - [anon_sym_for] = ACTIONS(1619), - [anon_sym_if] = ACTIONS(1619), - [anon_sym_impl] = ACTIONS(1619), - [anon_sym_let] = ACTIONS(1619), - [anon_sym_loop] = ACTIONS(1619), - [anon_sym_match] = ACTIONS(1619), - [anon_sym_mod] = ACTIONS(1619), - [anon_sym_pub] = ACTIONS(1619), - [anon_sym_return] = ACTIONS(1619), - [anon_sym_static] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1619), - [anon_sym_trait] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(1619), - [anon_sym_union] = ACTIONS(1619), - [anon_sym_unsafe] = ACTIONS(1619), - [anon_sym_use] = ACTIONS(1619), - [anon_sym_where] = ACTIONS(1619), - [anon_sym_while] = ACTIONS(1619), - [sym_mutable_specifier] = ACTIONS(1619), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1168), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [ts_builtin_sym_end] = ACTIONS(1574), + [sym_identifier] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_macro_rules_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1574), + [anon_sym_LBRACE] = ACTIONS(1574), + [anon_sym_RBRACE] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1574), + [anon_sym_STAR] = ACTIONS(1574), + [anon_sym_u8] = ACTIONS(1576), + [anon_sym_i8] = ACTIONS(1576), + [anon_sym_u16] = ACTIONS(1576), + [anon_sym_i16] = ACTIONS(1576), + [anon_sym_u32] = ACTIONS(1576), + [anon_sym_i32] = ACTIONS(1576), + [anon_sym_u64] = ACTIONS(1576), + [anon_sym_i64] = ACTIONS(1576), + [anon_sym_u128] = ACTIONS(1576), + [anon_sym_i128] = ACTIONS(1576), + [anon_sym_isize] = ACTIONS(1576), + [anon_sym_usize] = ACTIONS(1576), + [anon_sym_f32] = ACTIONS(1576), + [anon_sym_f64] = ACTIONS(1576), + [anon_sym_bool] = ACTIONS(1576), + [anon_sym_str] = ACTIONS(1576), + [anon_sym_char] = ACTIONS(1576), + [anon_sym_SQUOTE] = ACTIONS(1576), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_break] = ACTIONS(1576), + [anon_sym_const] = ACTIONS(1576), + [anon_sym_continue] = ACTIONS(1576), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_enum] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1576), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_if] = ACTIONS(1576), + [anon_sym_impl] = ACTIONS(1576), + [anon_sym_let] = ACTIONS(1576), + [anon_sym_loop] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1576), + [anon_sym_mod] = ACTIONS(1576), + [anon_sym_pub] = ACTIONS(1576), + [anon_sym_return] = ACTIONS(1576), + [anon_sym_static] = ACTIONS(1576), + [anon_sym_struct] = ACTIONS(1576), + [anon_sym_trait] = ACTIONS(1576), + [anon_sym_type] = ACTIONS(1576), + [anon_sym_union] = ACTIONS(1576), + [anon_sym_unsafe] = ACTIONS(1576), + [anon_sym_use] = ACTIONS(1576), + [anon_sym_while] = ACTIONS(1576), + [anon_sym_POUND] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_extern] = ACTIONS(1576), + [anon_sym_LT] = ACTIONS(1574), + [anon_sym_COLON_COLON] = ACTIONS(1574), + [anon_sym_AMP] = ACTIONS(1574), + [anon_sym_DOT_DOT] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_yield] = ACTIONS(1576), + [anon_sym_move] = ACTIONS(1576), + [sym_integer_literal] = ACTIONS(1574), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1574), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1576), + [sym_super] = ACTIONS(1576), + [sym_crate] = ACTIONS(1576), + [sym_metavariable] = ACTIONS(1574), + [sym_raw_string_literal] = ACTIONS(1574), + [sym_float_literal] = ACTIONS(1574), [sym_block_comment] = ACTIONS(3), }, [371] = { - [ts_builtin_sym_end] = ACTIONS(1623), - [sym_identifier] = ACTIONS(1625), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_macro_rules_BANG] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_u8] = ACTIONS(1625), - [anon_sym_i8] = ACTIONS(1625), - [anon_sym_u16] = ACTIONS(1625), - [anon_sym_i16] = ACTIONS(1625), - [anon_sym_u32] = ACTIONS(1625), - [anon_sym_i32] = ACTIONS(1625), - [anon_sym_u64] = ACTIONS(1625), - [anon_sym_i64] = ACTIONS(1625), - [anon_sym_u128] = ACTIONS(1625), - [anon_sym_i128] = ACTIONS(1625), - [anon_sym_isize] = ACTIONS(1625), - [anon_sym_usize] = ACTIONS(1625), - [anon_sym_f32] = ACTIONS(1625), - [anon_sym_f64] = ACTIONS(1625), - [anon_sym_bool] = ACTIONS(1625), - [anon_sym_str] = ACTIONS(1625), - [anon_sym_char] = ACTIONS(1625), - [anon_sym_SQUOTE] = ACTIONS(1625), - [anon_sym_async] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_default] = ACTIONS(1625), - [anon_sym_enum] = ACTIONS(1625), - [anon_sym_fn] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_let] = ACTIONS(1625), - [anon_sym_loop] = ACTIONS(1625), - [anon_sym_match] = ACTIONS(1625), - [anon_sym_mod] = ACTIONS(1625), - [anon_sym_pub] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_static] = ACTIONS(1625), - [anon_sym_struct] = ACTIONS(1625), - [anon_sym_trait] = ACTIONS(1625), - [anon_sym_type] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1625), - [anon_sym_unsafe] = ACTIONS(1625), - [anon_sym_use] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_POUND] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_extern] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_COLON_COLON] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_yield] = ACTIONS(1625), - [anon_sym_move] = ACTIONS(1625), - [sym_integer_literal] = ACTIONS(1623), - [aux_sym_string_literal_token1] = ACTIONS(1623), - [sym_char_literal] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1625), - [anon_sym_false] = ACTIONS(1625), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1625), - [sym_super] = ACTIONS(1625), - [sym_crate] = ACTIONS(1625), - [sym_metavariable] = ACTIONS(1623), - [sym_raw_string_literal] = ACTIONS(1623), - [sym_float_literal] = ACTIONS(1623), + [ts_builtin_sym_end] = ACTIONS(1578), + [sym_identifier] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_macro_rules_BANG] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_STAR] = ACTIONS(1578), + [anon_sym_u8] = ACTIONS(1580), + [anon_sym_i8] = ACTIONS(1580), + [anon_sym_u16] = ACTIONS(1580), + [anon_sym_i16] = ACTIONS(1580), + [anon_sym_u32] = ACTIONS(1580), + [anon_sym_i32] = ACTIONS(1580), + [anon_sym_u64] = ACTIONS(1580), + [anon_sym_i64] = ACTIONS(1580), + [anon_sym_u128] = ACTIONS(1580), + [anon_sym_i128] = ACTIONS(1580), + [anon_sym_isize] = ACTIONS(1580), + [anon_sym_usize] = ACTIONS(1580), + [anon_sym_f32] = ACTIONS(1580), + [anon_sym_f64] = ACTIONS(1580), + [anon_sym_bool] = ACTIONS(1580), + [anon_sym_str] = ACTIONS(1580), + [anon_sym_char] = ACTIONS(1580), + [anon_sym_SQUOTE] = ACTIONS(1580), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_break] = ACTIONS(1580), + [anon_sym_const] = ACTIONS(1580), + [anon_sym_continue] = ACTIONS(1580), + [anon_sym_default] = ACTIONS(1580), + [anon_sym_enum] = ACTIONS(1580), + [anon_sym_fn] = ACTIONS(1580), + [anon_sym_for] = ACTIONS(1580), + [anon_sym_if] = ACTIONS(1580), + [anon_sym_impl] = ACTIONS(1580), + [anon_sym_let] = ACTIONS(1580), + [anon_sym_loop] = ACTIONS(1580), + [anon_sym_match] = ACTIONS(1580), + [anon_sym_mod] = ACTIONS(1580), + [anon_sym_pub] = ACTIONS(1580), + [anon_sym_return] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1580), + [anon_sym_struct] = ACTIONS(1580), + [anon_sym_trait] = ACTIONS(1580), + [anon_sym_type] = ACTIONS(1580), + [anon_sym_union] = ACTIONS(1580), + [anon_sym_unsafe] = ACTIONS(1580), + [anon_sym_use] = ACTIONS(1580), + [anon_sym_while] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(1578), + [anon_sym_BANG] = ACTIONS(1578), + [anon_sym_extern] = ACTIONS(1580), + [anon_sym_LT] = ACTIONS(1578), + [anon_sym_COLON_COLON] = ACTIONS(1578), + [anon_sym_AMP] = ACTIONS(1578), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_DASH] = ACTIONS(1578), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_yield] = ACTIONS(1580), + [anon_sym_move] = ACTIONS(1580), + [sym_integer_literal] = ACTIONS(1578), + [aux_sym_string_literal_token1] = ACTIONS(1578), + [sym_char_literal] = ACTIONS(1578), + [anon_sym_true] = ACTIONS(1580), + [anon_sym_false] = ACTIONS(1580), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1580), + [sym_super] = ACTIONS(1580), + [sym_crate] = ACTIONS(1580), + [sym_metavariable] = ACTIONS(1578), + [sym_raw_string_literal] = ACTIONS(1578), + [sym_float_literal] = ACTIONS(1578), [sym_block_comment] = ACTIONS(3), }, [372] = { - [sym__token_pattern] = STATE(343), - [sym_token_tree_pattern] = STATE(343), - [sym_token_binding_pattern] = STATE(343), - [sym_token_repetition_pattern] = STATE(343), - [sym__never_special_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_pattern_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_u8] = ACTIONS(1627), - [anon_sym_i8] = ACTIONS(1627), - [anon_sym_u16] = ACTIONS(1627), - [anon_sym_i16] = ACTIONS(1627), - [anon_sym_u32] = ACTIONS(1627), - [anon_sym_i32] = ACTIONS(1627), - [anon_sym_u64] = ACTIONS(1627), - [anon_sym_i64] = ACTIONS(1627), - [anon_sym_u128] = ACTIONS(1627), - [anon_sym_i128] = ACTIONS(1627), - [anon_sym_isize] = ACTIONS(1627), - [anon_sym_usize] = ACTIONS(1627), - [anon_sym_f32] = ACTIONS(1627), - [anon_sym_f64] = ACTIONS(1627), - [anon_sym_bool] = ACTIONS(1627), - [anon_sym_str] = ACTIONS(1627), - [anon_sym_char] = ACTIONS(1627), - [aux_sym__never_special_token_token1] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_as] = ACTIONS(1627), - [anon_sym_async] = ACTIONS(1627), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_break] = ACTIONS(1627), - [anon_sym_const] = ACTIONS(1627), - [anon_sym_continue] = ACTIONS(1627), - [anon_sym_default] = ACTIONS(1627), - [anon_sym_enum] = ACTIONS(1627), - [anon_sym_fn] = ACTIONS(1627), - [anon_sym_for] = ACTIONS(1627), - [anon_sym_if] = ACTIONS(1627), - [anon_sym_impl] = ACTIONS(1627), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_loop] = ACTIONS(1627), - [anon_sym_match] = ACTIONS(1627), - [anon_sym_mod] = ACTIONS(1627), - [anon_sym_pub] = ACTIONS(1627), - [anon_sym_return] = ACTIONS(1627), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_struct] = ACTIONS(1627), - [anon_sym_trait] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_union] = ACTIONS(1627), - [anon_sym_unsafe] = ACTIONS(1627), - [anon_sym_use] = ACTIONS(1627), - [anon_sym_where] = ACTIONS(1627), - [anon_sym_while] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(1627), - [sym_super] = ACTIONS(1627), - [sym_crate] = ACTIONS(1627), - [sym_metavariable] = ACTIONS(1168), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [ts_builtin_sym_end] = ACTIONS(1582), + [sym_identifier] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_macro_rules_BANG] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(1582), + [anon_sym_u8] = ACTIONS(1584), + [anon_sym_i8] = ACTIONS(1584), + [anon_sym_u16] = ACTIONS(1584), + [anon_sym_i16] = ACTIONS(1584), + [anon_sym_u32] = ACTIONS(1584), + [anon_sym_i32] = ACTIONS(1584), + [anon_sym_u64] = ACTIONS(1584), + [anon_sym_i64] = ACTIONS(1584), + [anon_sym_u128] = ACTIONS(1584), + [anon_sym_i128] = ACTIONS(1584), + [anon_sym_isize] = ACTIONS(1584), + [anon_sym_usize] = ACTIONS(1584), + [anon_sym_f32] = ACTIONS(1584), + [anon_sym_f64] = ACTIONS(1584), + [anon_sym_bool] = ACTIONS(1584), + [anon_sym_str] = ACTIONS(1584), + [anon_sym_char] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1584), + [anon_sym_async] = ACTIONS(1584), + [anon_sym_break] = ACTIONS(1584), + [anon_sym_const] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_default] = ACTIONS(1584), + [anon_sym_enum] = ACTIONS(1584), + [anon_sym_fn] = ACTIONS(1584), + [anon_sym_for] = ACTIONS(1584), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_impl] = ACTIONS(1584), + [anon_sym_let] = ACTIONS(1584), + [anon_sym_loop] = ACTIONS(1584), + [anon_sym_match] = ACTIONS(1584), + [anon_sym_mod] = ACTIONS(1584), + [anon_sym_pub] = ACTIONS(1584), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_static] = ACTIONS(1584), + [anon_sym_struct] = ACTIONS(1584), + [anon_sym_trait] = ACTIONS(1584), + [anon_sym_type] = ACTIONS(1584), + [anon_sym_union] = ACTIONS(1584), + [anon_sym_unsafe] = ACTIONS(1584), + [anon_sym_use] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_extern] = ACTIONS(1584), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_COLON_COLON] = ACTIONS(1582), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_yield] = ACTIONS(1584), + [anon_sym_move] = ACTIONS(1584), + [sym_integer_literal] = ACTIONS(1582), + [aux_sym_string_literal_token1] = ACTIONS(1582), + [sym_char_literal] = ACTIONS(1582), + [anon_sym_true] = ACTIONS(1584), + [anon_sym_false] = ACTIONS(1584), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1584), + [sym_super] = ACTIONS(1584), + [sym_crate] = ACTIONS(1584), + [sym_metavariable] = ACTIONS(1582), + [sym_raw_string_literal] = ACTIONS(1582), + [sym_float_literal] = ACTIONS(1582), [sym_block_comment] = ACTIONS(3), }, [373] = { - [sym__token_pattern] = STATE(344), - [sym_token_tree_pattern] = STATE(344), - [sym_token_binding_pattern] = STATE(344), - [sym_token_repetition_pattern] = STATE(344), - [sym__never_special_token] = STATE(344), - [sym__literal] = STATE(344), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_pattern_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1152), - [anon_sym_RPAREN] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_u8] = ACTIONS(1629), - [anon_sym_i8] = ACTIONS(1629), - [anon_sym_u16] = ACTIONS(1629), - [anon_sym_i16] = ACTIONS(1629), - [anon_sym_u32] = ACTIONS(1629), - [anon_sym_i32] = ACTIONS(1629), - [anon_sym_u64] = ACTIONS(1629), - [anon_sym_i64] = ACTIONS(1629), - [anon_sym_u128] = ACTIONS(1629), - [anon_sym_i128] = ACTIONS(1629), - [anon_sym_isize] = ACTIONS(1629), - [anon_sym_usize] = ACTIONS(1629), - [anon_sym_f32] = ACTIONS(1629), - [anon_sym_f64] = ACTIONS(1629), - [anon_sym_bool] = ACTIONS(1629), - [anon_sym_str] = ACTIONS(1629), - [anon_sym_char] = ACTIONS(1629), - [aux_sym__never_special_token_token1] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1629), - [anon_sym_as] = ACTIONS(1629), - [anon_sym_async] = ACTIONS(1629), - [anon_sym_await] = ACTIONS(1629), - [anon_sym_break] = ACTIONS(1629), - [anon_sym_const] = ACTIONS(1629), - [anon_sym_continue] = ACTIONS(1629), - [anon_sym_default] = ACTIONS(1629), - [anon_sym_enum] = ACTIONS(1629), - [anon_sym_fn] = ACTIONS(1629), - [anon_sym_for] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1629), - [anon_sym_impl] = ACTIONS(1629), - [anon_sym_let] = ACTIONS(1629), - [anon_sym_loop] = ACTIONS(1629), - [anon_sym_match] = ACTIONS(1629), - [anon_sym_mod] = ACTIONS(1629), - [anon_sym_pub] = ACTIONS(1629), - [anon_sym_return] = ACTIONS(1629), - [anon_sym_static] = ACTIONS(1629), - [anon_sym_struct] = ACTIONS(1629), - [anon_sym_trait] = ACTIONS(1629), - [anon_sym_type] = ACTIONS(1629), - [anon_sym_union] = ACTIONS(1629), - [anon_sym_unsafe] = ACTIONS(1629), - [anon_sym_use] = ACTIONS(1629), - [anon_sym_where] = ACTIONS(1629), - [anon_sym_while] = ACTIONS(1629), - [sym_mutable_specifier] = ACTIONS(1629), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(1629), - [sym_super] = ACTIONS(1629), - [sym_crate] = ACTIONS(1629), - [sym_metavariable] = ACTIONS(1168), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [ts_builtin_sym_end] = ACTIONS(1586), + [sym_identifier] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_macro_rules_BANG] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(1586), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [anon_sym_async] = ACTIONS(1588), + [anon_sym_break] = ACTIONS(1588), + [anon_sym_const] = ACTIONS(1588), + [anon_sym_continue] = ACTIONS(1588), + [anon_sym_default] = ACTIONS(1588), + [anon_sym_enum] = ACTIONS(1588), + [anon_sym_fn] = ACTIONS(1588), + [anon_sym_for] = ACTIONS(1588), + [anon_sym_if] = ACTIONS(1588), + [anon_sym_impl] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1588), + [anon_sym_loop] = ACTIONS(1588), + [anon_sym_match] = ACTIONS(1588), + [anon_sym_mod] = ACTIONS(1588), + [anon_sym_pub] = ACTIONS(1588), + [anon_sym_return] = ACTIONS(1588), + [anon_sym_static] = ACTIONS(1588), + [anon_sym_struct] = ACTIONS(1588), + [anon_sym_trait] = ACTIONS(1588), + [anon_sym_type] = ACTIONS(1588), + [anon_sym_union] = ACTIONS(1588), + [anon_sym_unsafe] = ACTIONS(1588), + [anon_sym_use] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_POUND] = ACTIONS(1586), + [anon_sym_BANG] = ACTIONS(1586), + [anon_sym_extern] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1586), + [anon_sym_COLON_COLON] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1586), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_yield] = ACTIONS(1588), + [anon_sym_move] = ACTIONS(1588), + [sym_integer_literal] = ACTIONS(1586), + [aux_sym_string_literal_token1] = ACTIONS(1586), + [sym_char_literal] = ACTIONS(1586), + [anon_sym_true] = ACTIONS(1588), + [anon_sym_false] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1588), + [sym_super] = ACTIONS(1588), + [sym_crate] = ACTIONS(1588), + [sym_metavariable] = ACTIONS(1586), + [sym_raw_string_literal] = ACTIONS(1586), + [sym_float_literal] = ACTIONS(1586), [sym_block_comment] = ACTIONS(3), }, [374] = { - [ts_builtin_sym_end] = ACTIONS(1631), - [sym_identifier] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_macro_rules_BANG] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1631), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_u8] = ACTIONS(1633), - [anon_sym_i8] = ACTIONS(1633), - [anon_sym_u16] = ACTIONS(1633), - [anon_sym_i16] = ACTIONS(1633), - [anon_sym_u32] = ACTIONS(1633), - [anon_sym_i32] = ACTIONS(1633), - [anon_sym_u64] = ACTIONS(1633), - [anon_sym_i64] = ACTIONS(1633), - [anon_sym_u128] = ACTIONS(1633), - [anon_sym_i128] = ACTIONS(1633), - [anon_sym_isize] = ACTIONS(1633), - [anon_sym_usize] = ACTIONS(1633), - [anon_sym_f32] = ACTIONS(1633), - [anon_sym_f64] = ACTIONS(1633), - [anon_sym_bool] = ACTIONS(1633), - [anon_sym_str] = ACTIONS(1633), - [anon_sym_char] = ACTIONS(1633), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_async] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_enum] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_impl] = ACTIONS(1633), - [anon_sym_let] = ACTIONS(1633), - [anon_sym_loop] = ACTIONS(1633), - [anon_sym_match] = ACTIONS(1633), - [anon_sym_mod] = ACTIONS(1633), - [anon_sym_pub] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_static] = ACTIONS(1633), - [anon_sym_struct] = ACTIONS(1633), - [anon_sym_trait] = ACTIONS(1633), - [anon_sym_type] = ACTIONS(1633), - [anon_sym_union] = ACTIONS(1633), - [anon_sym_unsafe] = ACTIONS(1633), - [anon_sym_use] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_POUND] = ACTIONS(1631), - [anon_sym_BANG] = ACTIONS(1631), - [anon_sym_extern] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(1631), - [anon_sym_COLON_COLON] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1631), - [anon_sym_DOT_DOT] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_yield] = ACTIONS(1633), - [anon_sym_move] = ACTIONS(1633), - [sym_integer_literal] = ACTIONS(1631), - [aux_sym_string_literal_token1] = ACTIONS(1631), - [sym_char_literal] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1633), - [sym_super] = ACTIONS(1633), - [sym_crate] = ACTIONS(1633), - [sym_metavariable] = ACTIONS(1631), - [sym_raw_string_literal] = ACTIONS(1631), - [sym_float_literal] = ACTIONS(1631), + [ts_builtin_sym_end] = ACTIONS(1590), + [sym_identifier] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_macro_rules_BANG] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_u8] = ACTIONS(1592), + [anon_sym_i8] = ACTIONS(1592), + [anon_sym_u16] = ACTIONS(1592), + [anon_sym_i16] = ACTIONS(1592), + [anon_sym_u32] = ACTIONS(1592), + [anon_sym_i32] = ACTIONS(1592), + [anon_sym_u64] = ACTIONS(1592), + [anon_sym_i64] = ACTIONS(1592), + [anon_sym_u128] = ACTIONS(1592), + [anon_sym_i128] = ACTIONS(1592), + [anon_sym_isize] = ACTIONS(1592), + [anon_sym_usize] = ACTIONS(1592), + [anon_sym_f32] = ACTIONS(1592), + [anon_sym_f64] = ACTIONS(1592), + [anon_sym_bool] = ACTIONS(1592), + [anon_sym_str] = ACTIONS(1592), + [anon_sym_char] = ACTIONS(1592), + [anon_sym_SQUOTE] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_break] = ACTIONS(1592), + [anon_sym_const] = ACTIONS(1592), + [anon_sym_continue] = ACTIONS(1592), + [anon_sym_default] = ACTIONS(1592), + [anon_sym_enum] = ACTIONS(1592), + [anon_sym_fn] = ACTIONS(1592), + [anon_sym_for] = ACTIONS(1592), + [anon_sym_if] = ACTIONS(1592), + [anon_sym_impl] = ACTIONS(1592), + [anon_sym_let] = ACTIONS(1592), + [anon_sym_loop] = ACTIONS(1592), + [anon_sym_match] = ACTIONS(1592), + [anon_sym_mod] = ACTIONS(1592), + [anon_sym_pub] = ACTIONS(1592), + [anon_sym_return] = ACTIONS(1592), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_struct] = ACTIONS(1592), + [anon_sym_trait] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_union] = ACTIONS(1592), + [anon_sym_unsafe] = ACTIONS(1592), + [anon_sym_use] = ACTIONS(1592), + [anon_sym_while] = ACTIONS(1592), + [anon_sym_POUND] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_extern] = ACTIONS(1592), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_COLON_COLON] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_DOT_DOT] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_move] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(1590), + [aux_sym_string_literal_token1] = ACTIONS(1590), + [sym_char_literal] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1592), + [anon_sym_false] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1592), + [sym_super] = ACTIONS(1592), + [sym_crate] = ACTIONS(1592), + [sym_metavariable] = ACTIONS(1590), + [sym_raw_string_literal] = ACTIONS(1590), + [sym_float_literal] = ACTIONS(1590), [sym_block_comment] = ACTIONS(3), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(1635), - [sym_identifier] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1635), - [anon_sym_macro_rules_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACE] = ACTIONS(1635), - [anon_sym_RBRACE] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1635), - [anon_sym_STAR] = ACTIONS(1635), - [anon_sym_u8] = ACTIONS(1637), - [anon_sym_i8] = ACTIONS(1637), - [anon_sym_u16] = ACTIONS(1637), - [anon_sym_i16] = ACTIONS(1637), - [anon_sym_u32] = ACTIONS(1637), - [anon_sym_i32] = ACTIONS(1637), - [anon_sym_u64] = ACTIONS(1637), - [anon_sym_i64] = ACTIONS(1637), - [anon_sym_u128] = ACTIONS(1637), - [anon_sym_i128] = ACTIONS(1637), - [anon_sym_isize] = ACTIONS(1637), - [anon_sym_usize] = ACTIONS(1637), - [anon_sym_f32] = ACTIONS(1637), - [anon_sym_f64] = ACTIONS(1637), - [anon_sym_bool] = ACTIONS(1637), - [anon_sym_str] = ACTIONS(1637), - [anon_sym_char] = ACTIONS(1637), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_enum] = ACTIONS(1637), - [anon_sym_fn] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1637), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_loop] = ACTIONS(1637), - [anon_sym_match] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1637), - [anon_sym_pub] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(1637), - [anon_sym_trait] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1637), - [anon_sym_use] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(1635), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_extern] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1635), - [anon_sym_COLON_COLON] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1635), - [anon_sym_DOT_DOT] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_PIPE] = ACTIONS(1635), - [anon_sym_yield] = ACTIONS(1637), - [anon_sym_move] = ACTIONS(1637), - [sym_integer_literal] = ACTIONS(1635), - [aux_sym_string_literal_token1] = ACTIONS(1635), - [sym_char_literal] = ACTIONS(1635), - [anon_sym_true] = ACTIONS(1637), - [anon_sym_false] = ACTIONS(1637), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1637), - [sym_super] = ACTIONS(1637), - [sym_crate] = ACTIONS(1637), - [sym_metavariable] = ACTIONS(1635), - [sym_raw_string_literal] = ACTIONS(1635), - [sym_float_literal] = ACTIONS(1635), + [ts_builtin_sym_end] = ACTIONS(1594), + [sym_identifier] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_macro_rules_BANG] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LBRACK] = ACTIONS(1594), + [anon_sym_STAR] = ACTIONS(1594), + [anon_sym_u8] = ACTIONS(1596), + [anon_sym_i8] = ACTIONS(1596), + [anon_sym_u16] = ACTIONS(1596), + [anon_sym_i16] = ACTIONS(1596), + [anon_sym_u32] = ACTIONS(1596), + [anon_sym_i32] = ACTIONS(1596), + [anon_sym_u64] = ACTIONS(1596), + [anon_sym_i64] = ACTIONS(1596), + [anon_sym_u128] = ACTIONS(1596), + [anon_sym_i128] = ACTIONS(1596), + [anon_sym_isize] = ACTIONS(1596), + [anon_sym_usize] = ACTIONS(1596), + [anon_sym_f32] = ACTIONS(1596), + [anon_sym_f64] = ACTIONS(1596), + [anon_sym_bool] = ACTIONS(1596), + [anon_sym_str] = ACTIONS(1596), + [anon_sym_char] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(1596), + [anon_sym_break] = ACTIONS(1596), + [anon_sym_const] = ACTIONS(1596), + [anon_sym_continue] = ACTIONS(1596), + [anon_sym_default] = ACTIONS(1596), + [anon_sym_enum] = ACTIONS(1596), + [anon_sym_fn] = ACTIONS(1596), + [anon_sym_for] = ACTIONS(1596), + [anon_sym_if] = ACTIONS(1596), + [anon_sym_impl] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1596), + [anon_sym_loop] = ACTIONS(1596), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_mod] = ACTIONS(1596), + [anon_sym_pub] = ACTIONS(1596), + [anon_sym_return] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1596), + [anon_sym_struct] = ACTIONS(1596), + [anon_sym_trait] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1596), + [anon_sym_union] = ACTIONS(1596), + [anon_sym_unsafe] = ACTIONS(1596), + [anon_sym_use] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1594), + [anon_sym_extern] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1594), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1594), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_DASH] = ACTIONS(1594), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_yield] = ACTIONS(1596), + [anon_sym_move] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(1594), + [aux_sym_string_literal_token1] = ACTIONS(1594), + [sym_char_literal] = ACTIONS(1594), + [anon_sym_true] = ACTIONS(1596), + [anon_sym_false] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1596), + [sym_super] = ACTIONS(1596), + [sym_crate] = ACTIONS(1596), + [sym_metavariable] = ACTIONS(1594), + [sym_raw_string_literal] = ACTIONS(1594), + [sym_float_literal] = ACTIONS(1594), [sym_block_comment] = ACTIONS(3), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(1639), - [sym_identifier] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_macro_rules_BANG] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_u8] = ACTIONS(1641), - [anon_sym_i8] = ACTIONS(1641), - [anon_sym_u16] = ACTIONS(1641), - [anon_sym_i16] = ACTIONS(1641), - [anon_sym_u32] = ACTIONS(1641), - [anon_sym_i32] = ACTIONS(1641), - [anon_sym_u64] = ACTIONS(1641), - [anon_sym_i64] = ACTIONS(1641), - [anon_sym_u128] = ACTIONS(1641), - [anon_sym_i128] = ACTIONS(1641), - [anon_sym_isize] = ACTIONS(1641), - [anon_sym_usize] = ACTIONS(1641), - [anon_sym_f32] = ACTIONS(1641), - [anon_sym_f64] = ACTIONS(1641), - [anon_sym_bool] = ACTIONS(1641), - [anon_sym_str] = ACTIONS(1641), - [anon_sym_char] = ACTIONS(1641), - [anon_sym_SQUOTE] = ACTIONS(1641), - [anon_sym_async] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_default] = ACTIONS(1641), - [anon_sym_enum] = ACTIONS(1641), - [anon_sym_fn] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_impl] = ACTIONS(1641), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_loop] = ACTIONS(1641), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_mod] = ACTIONS(1641), - [anon_sym_pub] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_struct] = ACTIONS(1641), - [anon_sym_trait] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_union] = ACTIONS(1641), - [anon_sym_unsafe] = ACTIONS(1641), - [anon_sym_use] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_extern] = ACTIONS(1641), - [anon_sym_LT] = ACTIONS(1639), - [anon_sym_COLON_COLON] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_DOT_DOT] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1641), - [anon_sym_move] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1639), - [aux_sym_string_literal_token1] = ACTIONS(1639), - [sym_char_literal] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(1641), - [anon_sym_false] = ACTIONS(1641), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1641), - [sym_super] = ACTIONS(1641), - [sym_crate] = ACTIONS(1641), - [sym_metavariable] = ACTIONS(1639), - [sym_raw_string_literal] = ACTIONS(1639), - [sym_float_literal] = ACTIONS(1639), + [ts_builtin_sym_end] = ACTIONS(1598), + [sym_identifier] = ACTIONS(1600), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_macro_rules_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_u8] = ACTIONS(1600), + [anon_sym_i8] = ACTIONS(1600), + [anon_sym_u16] = ACTIONS(1600), + [anon_sym_i16] = ACTIONS(1600), + [anon_sym_u32] = ACTIONS(1600), + [anon_sym_i32] = ACTIONS(1600), + [anon_sym_u64] = ACTIONS(1600), + [anon_sym_i64] = ACTIONS(1600), + [anon_sym_u128] = ACTIONS(1600), + [anon_sym_i128] = ACTIONS(1600), + [anon_sym_isize] = ACTIONS(1600), + [anon_sym_usize] = ACTIONS(1600), + [anon_sym_f32] = ACTIONS(1600), + [anon_sym_f64] = ACTIONS(1600), + [anon_sym_bool] = ACTIONS(1600), + [anon_sym_str] = ACTIONS(1600), + [anon_sym_char] = ACTIONS(1600), + [anon_sym_SQUOTE] = ACTIONS(1600), + [anon_sym_async] = ACTIONS(1600), + [anon_sym_break] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1600), + [anon_sym_continue] = ACTIONS(1600), + [anon_sym_default] = ACTIONS(1600), + [anon_sym_enum] = ACTIONS(1600), + [anon_sym_fn] = ACTIONS(1600), + [anon_sym_for] = ACTIONS(1600), + [anon_sym_if] = ACTIONS(1600), + [anon_sym_impl] = ACTIONS(1600), + [anon_sym_let] = ACTIONS(1600), + [anon_sym_loop] = ACTIONS(1600), + [anon_sym_match] = ACTIONS(1600), + [anon_sym_mod] = ACTIONS(1600), + [anon_sym_pub] = ACTIONS(1600), + [anon_sym_return] = ACTIONS(1600), + [anon_sym_static] = ACTIONS(1600), + [anon_sym_struct] = ACTIONS(1600), + [anon_sym_trait] = ACTIONS(1600), + [anon_sym_type] = ACTIONS(1600), + [anon_sym_union] = ACTIONS(1600), + [anon_sym_unsafe] = ACTIONS(1600), + [anon_sym_use] = ACTIONS(1600), + [anon_sym_while] = ACTIONS(1600), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_extern] = ACTIONS(1600), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_COLON_COLON] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_DOT_DOT] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_yield] = ACTIONS(1600), + [anon_sym_move] = ACTIONS(1600), + [sym_integer_literal] = ACTIONS(1598), + [aux_sym_string_literal_token1] = ACTIONS(1598), + [sym_char_literal] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1600), + [anon_sym_false] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1600), + [sym_super] = ACTIONS(1600), + [sym_crate] = ACTIONS(1600), + [sym_metavariable] = ACTIONS(1598), + [sym_raw_string_literal] = ACTIONS(1598), + [sym_float_literal] = ACTIONS(1598), [sym_block_comment] = ACTIONS(3), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(1643), - [sym_identifier] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_macro_rules_BANG] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_u8] = ACTIONS(1645), - [anon_sym_i8] = ACTIONS(1645), - [anon_sym_u16] = ACTIONS(1645), - [anon_sym_i16] = ACTIONS(1645), - [anon_sym_u32] = ACTIONS(1645), - [anon_sym_i32] = ACTIONS(1645), - [anon_sym_u64] = ACTIONS(1645), - [anon_sym_i64] = ACTIONS(1645), - [anon_sym_u128] = ACTIONS(1645), - [anon_sym_i128] = ACTIONS(1645), - [anon_sym_isize] = ACTIONS(1645), - [anon_sym_usize] = ACTIONS(1645), - [anon_sym_f32] = ACTIONS(1645), - [anon_sym_f64] = ACTIONS(1645), - [anon_sym_bool] = ACTIONS(1645), - [anon_sym_str] = ACTIONS(1645), - [anon_sym_char] = ACTIONS(1645), - [anon_sym_SQUOTE] = ACTIONS(1645), - [anon_sym_async] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_default] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1645), - [anon_sym_fn] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_impl] = ACTIONS(1645), - [anon_sym_let] = ACTIONS(1645), - [anon_sym_loop] = ACTIONS(1645), - [anon_sym_match] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1645), - [anon_sym_pub] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_trait] = ACTIONS(1645), - [anon_sym_type] = ACTIONS(1645), - [anon_sym_union] = ACTIONS(1645), - [anon_sym_unsafe] = ACTIONS(1645), - [anon_sym_use] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym_LT] = ACTIONS(1643), - [anon_sym_COLON_COLON] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_yield] = ACTIONS(1645), - [anon_sym_move] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [aux_sym_string_literal_token1] = ACTIONS(1643), - [sym_char_literal] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1643), - [sym_raw_string_literal] = ACTIONS(1643), - [sym_float_literal] = ACTIONS(1643), + [ts_builtin_sym_end] = ACTIONS(1602), + [sym_identifier] = ACTIONS(1604), + [anon_sym_SEMI] = ACTIONS(1602), + [anon_sym_macro_rules_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1602), + [anon_sym_u8] = ACTIONS(1604), + [anon_sym_i8] = ACTIONS(1604), + [anon_sym_u16] = ACTIONS(1604), + [anon_sym_i16] = ACTIONS(1604), + [anon_sym_u32] = ACTIONS(1604), + [anon_sym_i32] = ACTIONS(1604), + [anon_sym_u64] = ACTIONS(1604), + [anon_sym_i64] = ACTIONS(1604), + [anon_sym_u128] = ACTIONS(1604), + [anon_sym_i128] = ACTIONS(1604), + [anon_sym_isize] = ACTIONS(1604), + [anon_sym_usize] = ACTIONS(1604), + [anon_sym_f32] = ACTIONS(1604), + [anon_sym_f64] = ACTIONS(1604), + [anon_sym_bool] = ACTIONS(1604), + [anon_sym_str] = ACTIONS(1604), + [anon_sym_char] = ACTIONS(1604), + [anon_sym_SQUOTE] = ACTIONS(1604), + [anon_sym_async] = ACTIONS(1604), + [anon_sym_break] = ACTIONS(1604), + [anon_sym_const] = ACTIONS(1604), + [anon_sym_continue] = ACTIONS(1604), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_enum] = ACTIONS(1604), + [anon_sym_fn] = ACTIONS(1604), + [anon_sym_for] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1604), + [anon_sym_impl] = ACTIONS(1604), + [anon_sym_let] = ACTIONS(1604), + [anon_sym_loop] = ACTIONS(1604), + [anon_sym_match] = ACTIONS(1604), + [anon_sym_mod] = ACTIONS(1604), + [anon_sym_pub] = ACTIONS(1604), + [anon_sym_return] = ACTIONS(1604), + [anon_sym_static] = ACTIONS(1604), + [anon_sym_struct] = ACTIONS(1604), + [anon_sym_trait] = ACTIONS(1604), + [anon_sym_type] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_unsafe] = ACTIONS(1604), + [anon_sym_use] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1604), + [anon_sym_POUND] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_extern] = ACTIONS(1604), + [anon_sym_LT] = ACTIONS(1602), + [anon_sym_COLON_COLON] = ACTIONS(1602), + [anon_sym_AMP] = ACTIONS(1602), + [anon_sym_DOT_DOT] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_PIPE] = ACTIONS(1602), + [anon_sym_yield] = ACTIONS(1604), + [anon_sym_move] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(1602), + [aux_sym_string_literal_token1] = ACTIONS(1602), + [sym_char_literal] = ACTIONS(1602), + [anon_sym_true] = ACTIONS(1604), + [anon_sym_false] = ACTIONS(1604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1604), + [sym_super] = ACTIONS(1604), + [sym_crate] = ACTIONS(1604), + [sym_metavariable] = ACTIONS(1602), + [sym_raw_string_literal] = ACTIONS(1602), + [sym_float_literal] = ACTIONS(1602), [sym_block_comment] = ACTIONS(3), }, [378] = { + [ts_builtin_sym_end] = ACTIONS(1606), + [sym_identifier] = ACTIONS(1608), + [anon_sym_SEMI] = ACTIONS(1606), + [anon_sym_macro_rules_BANG] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_u8] = ACTIONS(1608), + [anon_sym_i8] = ACTIONS(1608), + [anon_sym_u16] = ACTIONS(1608), + [anon_sym_i16] = ACTIONS(1608), + [anon_sym_u32] = ACTIONS(1608), + [anon_sym_i32] = ACTIONS(1608), + [anon_sym_u64] = ACTIONS(1608), + [anon_sym_i64] = ACTIONS(1608), + [anon_sym_u128] = ACTIONS(1608), + [anon_sym_i128] = ACTIONS(1608), + [anon_sym_isize] = ACTIONS(1608), + [anon_sym_usize] = ACTIONS(1608), + [anon_sym_f32] = ACTIONS(1608), + [anon_sym_f64] = ACTIONS(1608), + [anon_sym_bool] = ACTIONS(1608), + [anon_sym_str] = ACTIONS(1608), + [anon_sym_char] = ACTIONS(1608), + [anon_sym_SQUOTE] = ACTIONS(1608), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_break] = ACTIONS(1608), + [anon_sym_const] = ACTIONS(1608), + [anon_sym_continue] = ACTIONS(1608), + [anon_sym_default] = ACTIONS(1608), + [anon_sym_enum] = ACTIONS(1608), + [anon_sym_fn] = ACTIONS(1608), + [anon_sym_for] = ACTIONS(1608), + [anon_sym_if] = ACTIONS(1608), + [anon_sym_impl] = ACTIONS(1608), + [anon_sym_let] = ACTIONS(1608), + [anon_sym_loop] = ACTIONS(1608), + [anon_sym_match] = ACTIONS(1608), + [anon_sym_mod] = ACTIONS(1608), + [anon_sym_pub] = ACTIONS(1608), + [anon_sym_return] = ACTIONS(1608), + [anon_sym_static] = ACTIONS(1608), + [anon_sym_struct] = ACTIONS(1608), + [anon_sym_trait] = ACTIONS(1608), + [anon_sym_type] = ACTIONS(1608), + [anon_sym_union] = ACTIONS(1608), + [anon_sym_unsafe] = ACTIONS(1608), + [anon_sym_use] = ACTIONS(1608), + [anon_sym_while] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1606), + [anon_sym_extern] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(1606), + [anon_sym_COLON_COLON] = ACTIONS(1606), + [anon_sym_AMP] = ACTIONS(1606), + [anon_sym_DOT_DOT] = ACTIONS(1606), + [anon_sym_DASH] = ACTIONS(1606), + [anon_sym_PIPE] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_move] = ACTIONS(1608), + [sym_integer_literal] = ACTIONS(1606), + [aux_sym_string_literal_token1] = ACTIONS(1606), + [sym_char_literal] = ACTIONS(1606), + [anon_sym_true] = ACTIONS(1608), + [anon_sym_false] = ACTIONS(1608), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1608), + [sym_super] = ACTIONS(1608), + [sym_crate] = ACTIONS(1608), + [sym_metavariable] = ACTIONS(1606), + [sym_raw_string_literal] = ACTIONS(1606), + [sym_float_literal] = ACTIONS(1606), + [sym_block_comment] = ACTIONS(3), + }, + [379] = { + [ts_builtin_sym_end] = ACTIONS(1610), + [sym_identifier] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_macro_rules_BANG] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1610), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_u8] = ACTIONS(1612), + [anon_sym_i8] = ACTIONS(1612), + [anon_sym_u16] = ACTIONS(1612), + [anon_sym_i16] = ACTIONS(1612), + [anon_sym_u32] = ACTIONS(1612), + [anon_sym_i32] = ACTIONS(1612), + [anon_sym_u64] = ACTIONS(1612), + [anon_sym_i64] = ACTIONS(1612), + [anon_sym_u128] = ACTIONS(1612), + [anon_sym_i128] = ACTIONS(1612), + [anon_sym_isize] = ACTIONS(1612), + [anon_sym_usize] = ACTIONS(1612), + [anon_sym_f32] = ACTIONS(1612), + [anon_sym_f64] = ACTIONS(1612), + [anon_sym_bool] = ACTIONS(1612), + [anon_sym_str] = ACTIONS(1612), + [anon_sym_char] = ACTIONS(1612), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_async] = ACTIONS(1612), + [anon_sym_break] = ACTIONS(1612), + [anon_sym_const] = ACTIONS(1612), + [anon_sym_continue] = ACTIONS(1612), + [anon_sym_default] = ACTIONS(1612), + [anon_sym_enum] = ACTIONS(1612), + [anon_sym_fn] = ACTIONS(1612), + [anon_sym_for] = ACTIONS(1612), + [anon_sym_if] = ACTIONS(1612), + [anon_sym_impl] = ACTIONS(1612), + [anon_sym_let] = ACTIONS(1612), + [anon_sym_loop] = ACTIONS(1612), + [anon_sym_match] = ACTIONS(1612), + [anon_sym_mod] = ACTIONS(1612), + [anon_sym_pub] = ACTIONS(1612), + [anon_sym_return] = ACTIONS(1612), + [anon_sym_static] = ACTIONS(1612), + [anon_sym_struct] = ACTIONS(1612), + [anon_sym_trait] = ACTIONS(1612), + [anon_sym_type] = ACTIONS(1612), + [anon_sym_union] = ACTIONS(1612), + [anon_sym_unsafe] = ACTIONS(1612), + [anon_sym_use] = ACTIONS(1612), + [anon_sym_while] = ACTIONS(1612), + [anon_sym_POUND] = ACTIONS(1610), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_extern] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1610), + [anon_sym_COLON_COLON] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_yield] = ACTIONS(1612), + [anon_sym_move] = ACTIONS(1612), + [sym_integer_literal] = ACTIONS(1610), + [aux_sym_string_literal_token1] = ACTIONS(1610), + [sym_char_literal] = ACTIONS(1610), + [anon_sym_true] = ACTIONS(1612), + [anon_sym_false] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1612), + [sym_super] = ACTIONS(1612), + [sym_crate] = ACTIONS(1612), + [sym_metavariable] = ACTIONS(1610), + [sym_raw_string_literal] = ACTIONS(1610), + [sym_float_literal] = ACTIONS(1610), + [sym_block_comment] = ACTIONS(3), + }, + [380] = { + [ts_builtin_sym_end] = ACTIONS(1614), + [sym_identifier] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_macro_rules_BANG] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_u8] = ACTIONS(1616), + [anon_sym_i8] = ACTIONS(1616), + [anon_sym_u16] = ACTIONS(1616), + [anon_sym_i16] = ACTIONS(1616), + [anon_sym_u32] = ACTIONS(1616), + [anon_sym_i32] = ACTIONS(1616), + [anon_sym_u64] = ACTIONS(1616), + [anon_sym_i64] = ACTIONS(1616), + [anon_sym_u128] = ACTIONS(1616), + [anon_sym_i128] = ACTIONS(1616), + [anon_sym_isize] = ACTIONS(1616), + [anon_sym_usize] = ACTIONS(1616), + [anon_sym_f32] = ACTIONS(1616), + [anon_sym_f64] = ACTIONS(1616), + [anon_sym_bool] = ACTIONS(1616), + [anon_sym_str] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1616), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1616), + [anon_sym_break] = ACTIONS(1616), + [anon_sym_const] = ACTIONS(1616), + [anon_sym_continue] = ACTIONS(1616), + [anon_sym_default] = ACTIONS(1616), + [anon_sym_enum] = ACTIONS(1616), + [anon_sym_fn] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_impl] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1616), + [anon_sym_loop] = ACTIONS(1616), + [anon_sym_match] = ACTIONS(1616), + [anon_sym_mod] = ACTIONS(1616), + [anon_sym_pub] = ACTIONS(1616), + [anon_sym_return] = ACTIONS(1616), + [anon_sym_static] = ACTIONS(1616), + [anon_sym_struct] = ACTIONS(1616), + [anon_sym_trait] = ACTIONS(1616), + [anon_sym_type] = ACTIONS(1616), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1616), + [anon_sym_use] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [anon_sym_POUND] = ACTIONS(1614), + [anon_sym_BANG] = ACTIONS(1614), + [anon_sym_extern] = ACTIONS(1616), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1614), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [anon_sym_yield] = ACTIONS(1616), + [anon_sym_move] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(1614), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1614), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1616), + [sym_super] = ACTIONS(1616), + [sym_crate] = ACTIONS(1616), + [sym_metavariable] = ACTIONS(1614), + [sym_raw_string_literal] = ACTIONS(1614), + [sym_float_literal] = ACTIONS(1614), + [sym_block_comment] = ACTIONS(3), + }, + [381] = { [sym_attribute_item] = STATE(548), [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), @@ -50837,7 +51060,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_invocation] = STATE(2349), [sym_scoped_identifier] = STATE(1578), [sym_scoped_type_identifier] = STATE(1974), - [sym_match_arm] = STATE(498), + [sym_match_arm] = STATE(491), [sym_last_match_arm] = STATE(2544), [sym_match_pattern] = STATE(2359), [sym_const_block] = STATE(1473), @@ -50858,37 +51081,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [aux_sym_enum_variant_list_repeat1] = STATE(548), - [aux_sym_match_block_repeat1] = STATE(498), - [sym_identifier] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1194), - [anon_sym_union] = ACTIONS(1194), + [aux_sym_match_block_repeat1] = STATE(491), + [sym_identifier] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -50898,4404 +51121,4327 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [379] = { - [sym__token_pattern] = STATE(245), - [sym_token_tree_pattern] = STATE(245), - [sym_token_binding_pattern] = STATE(245), - [sym_token_repetition_pattern] = STATE(245), - [sym__never_special_token] = STATE(245), - [sym__literal] = STATE(245), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_pattern_repeat1] = STATE(245), - [sym_identifier] = ACTIONS(1150), - [anon_sym_LPAREN] = ACTIONS(1152), - [anon_sym_RPAREN] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_u8] = ACTIONS(1150), - [anon_sym_i8] = ACTIONS(1150), - [anon_sym_u16] = ACTIONS(1150), - [anon_sym_i16] = ACTIONS(1150), - [anon_sym_u32] = ACTIONS(1150), - [anon_sym_i32] = ACTIONS(1150), - [anon_sym_u64] = ACTIONS(1150), - [anon_sym_i64] = ACTIONS(1150), - [anon_sym_u128] = ACTIONS(1150), - [anon_sym_i128] = ACTIONS(1150), - [anon_sym_isize] = ACTIONS(1150), - [anon_sym_usize] = ACTIONS(1150), - [anon_sym_f32] = ACTIONS(1150), - [anon_sym_f64] = ACTIONS(1150), - [anon_sym_bool] = ACTIONS(1150), - [anon_sym_str] = ACTIONS(1150), - [anon_sym_char] = ACTIONS(1150), - [aux_sym__never_special_token_token1] = ACTIONS(1150), - [anon_sym_SQUOTE] = ACTIONS(1150), - [anon_sym_as] = ACTIONS(1150), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_await] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1150), - [anon_sym_const] = ACTIONS(1150), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_default] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1150), - [anon_sym_fn] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_impl] = ACTIONS(1150), - [anon_sym_let] = ACTIONS(1150), - [anon_sym_loop] = ACTIONS(1150), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_mod] = ACTIONS(1150), - [anon_sym_pub] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1150), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_struct] = ACTIONS(1150), - [anon_sym_trait] = ACTIONS(1150), - [anon_sym_type] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1150), - [anon_sym_unsafe] = ACTIONS(1150), - [anon_sym_use] = ACTIONS(1150), - [anon_sym_where] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1150), - [sym_mutable_specifier] = ACTIONS(1150), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1168), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), - [sym_block_comment] = ACTIONS(3), - }, - [380] = { - [ts_builtin_sym_end] = ACTIONS(1651), - [sym_identifier] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_macro_rules_BANG] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1651), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1651), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_SQUOTE] = ACTIONS(1653), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_default] = ACTIONS(1653), - [anon_sym_enum] = ACTIONS(1653), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_impl] = ACTIONS(1653), - [anon_sym_let] = ACTIONS(1653), - [anon_sym_loop] = ACTIONS(1653), - [anon_sym_match] = ACTIONS(1653), - [anon_sym_mod] = ACTIONS(1653), - [anon_sym_pub] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_struct] = ACTIONS(1653), - [anon_sym_trait] = ACTIONS(1653), - [anon_sym_type] = ACTIONS(1653), - [anon_sym_union] = ACTIONS(1653), - [anon_sym_unsafe] = ACTIONS(1653), - [anon_sym_use] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(1651), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_extern] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1651), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(1651), - [anon_sym_yield] = ACTIONS(1653), - [anon_sym_move] = ACTIONS(1653), - [sym_integer_literal] = ACTIONS(1651), - [aux_sym_string_literal_token1] = ACTIONS(1651), - [sym_char_literal] = ACTIONS(1651), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1653), - [sym_super] = ACTIONS(1653), - [sym_crate] = ACTIONS(1653), - [sym_metavariable] = ACTIONS(1651), - [sym_raw_string_literal] = ACTIONS(1651), - [sym_float_literal] = ACTIONS(1651), - [sym_block_comment] = ACTIONS(3), - }, - [381] = { - [ts_builtin_sym_end] = ACTIONS(1655), - [sym_identifier] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_macro_rules_BANG] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_u8] = ACTIONS(1657), - [anon_sym_i8] = ACTIONS(1657), - [anon_sym_u16] = ACTIONS(1657), - [anon_sym_i16] = ACTIONS(1657), - [anon_sym_u32] = ACTIONS(1657), - [anon_sym_i32] = ACTIONS(1657), - [anon_sym_u64] = ACTIONS(1657), - [anon_sym_i64] = ACTIONS(1657), - [anon_sym_u128] = ACTIONS(1657), - [anon_sym_i128] = ACTIONS(1657), - [anon_sym_isize] = ACTIONS(1657), - [anon_sym_usize] = ACTIONS(1657), - [anon_sym_f32] = ACTIONS(1657), - [anon_sym_f64] = ACTIONS(1657), - [anon_sym_bool] = ACTIONS(1657), - [anon_sym_str] = ACTIONS(1657), - [anon_sym_char] = ACTIONS(1657), - [anon_sym_SQUOTE] = ACTIONS(1657), - [anon_sym_async] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1657), - [anon_sym_enum] = ACTIONS(1657), - [anon_sym_fn] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_impl] = ACTIONS(1657), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_loop] = ACTIONS(1657), - [anon_sym_match] = ACTIONS(1657), - [anon_sym_mod] = ACTIONS(1657), - [anon_sym_pub] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_struct] = ACTIONS(1657), - [anon_sym_trait] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_union] = ACTIONS(1657), - [anon_sym_unsafe] = ACTIONS(1657), - [anon_sym_use] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_POUND] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_extern] = ACTIONS(1657), - [anon_sym_LT] = ACTIONS(1655), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_DOT_DOT] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_yield] = ACTIONS(1657), - [anon_sym_move] = ACTIONS(1657), - [sym_integer_literal] = ACTIONS(1655), - [aux_sym_string_literal_token1] = ACTIONS(1655), - [sym_char_literal] = ACTIONS(1655), - [anon_sym_true] = ACTIONS(1657), - [anon_sym_false] = ACTIONS(1657), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1657), - [sym_super] = ACTIONS(1657), - [sym_crate] = ACTIONS(1657), - [sym_metavariable] = ACTIONS(1655), - [sym_raw_string_literal] = ACTIONS(1655), - [sym_float_literal] = ACTIONS(1655), - [sym_block_comment] = ACTIONS(3), - }, [382] = { - [ts_builtin_sym_end] = ACTIONS(1659), - [sym_identifier] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_macro_rules_BANG] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_u8] = ACTIONS(1661), - [anon_sym_i8] = ACTIONS(1661), - [anon_sym_u16] = ACTIONS(1661), - [anon_sym_i16] = ACTIONS(1661), - [anon_sym_u32] = ACTIONS(1661), - [anon_sym_i32] = ACTIONS(1661), - [anon_sym_u64] = ACTIONS(1661), - [anon_sym_i64] = ACTIONS(1661), - [anon_sym_u128] = ACTIONS(1661), - [anon_sym_i128] = ACTIONS(1661), - [anon_sym_isize] = ACTIONS(1661), - [anon_sym_usize] = ACTIONS(1661), - [anon_sym_f32] = ACTIONS(1661), - [anon_sym_f64] = ACTIONS(1661), - [anon_sym_bool] = ACTIONS(1661), - [anon_sym_str] = ACTIONS(1661), - [anon_sym_char] = ACTIONS(1661), - [anon_sym_SQUOTE] = ACTIONS(1661), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [anon_sym_fn] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_impl] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_loop] = ACTIONS(1661), - [anon_sym_match] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1661), - [anon_sym_pub] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_struct] = ACTIONS(1661), - [anon_sym_trait] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_union] = ACTIONS(1661), - [anon_sym_unsafe] = ACTIONS(1661), - [anon_sym_use] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_COLON_COLON] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_DOT_DOT] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_yield] = ACTIONS(1661), - [anon_sym_move] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [aux_sym_string_literal_token1] = ACTIONS(1659), - [sym_char_literal] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1661), - [sym_super] = ACTIONS(1661), - [sym_crate] = ACTIONS(1661), - [sym_metavariable] = ACTIONS(1659), - [sym_raw_string_literal] = ACTIONS(1659), - [sym_float_literal] = ACTIONS(1659), + [ts_builtin_sym_end] = ACTIONS(1620), + [sym_identifier] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_macro_rules_BANG] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_u8] = ACTIONS(1622), + [anon_sym_i8] = ACTIONS(1622), + [anon_sym_u16] = ACTIONS(1622), + [anon_sym_i16] = ACTIONS(1622), + [anon_sym_u32] = ACTIONS(1622), + [anon_sym_i32] = ACTIONS(1622), + [anon_sym_u64] = ACTIONS(1622), + [anon_sym_i64] = ACTIONS(1622), + [anon_sym_u128] = ACTIONS(1622), + [anon_sym_i128] = ACTIONS(1622), + [anon_sym_isize] = ACTIONS(1622), + [anon_sym_usize] = ACTIONS(1622), + [anon_sym_f32] = ACTIONS(1622), + [anon_sym_f64] = ACTIONS(1622), + [anon_sym_bool] = ACTIONS(1622), + [anon_sym_str] = ACTIONS(1622), + [anon_sym_char] = ACTIONS(1622), + [anon_sym_SQUOTE] = ACTIONS(1622), + [anon_sym_async] = ACTIONS(1622), + [anon_sym_break] = ACTIONS(1622), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_continue] = ACTIONS(1622), + [anon_sym_default] = ACTIONS(1622), + [anon_sym_enum] = ACTIONS(1622), + [anon_sym_fn] = ACTIONS(1622), + [anon_sym_for] = ACTIONS(1622), + [anon_sym_if] = ACTIONS(1622), + [anon_sym_impl] = ACTIONS(1622), + [anon_sym_let] = ACTIONS(1622), + [anon_sym_loop] = ACTIONS(1622), + [anon_sym_match] = ACTIONS(1622), + [anon_sym_mod] = ACTIONS(1622), + [anon_sym_pub] = ACTIONS(1622), + [anon_sym_return] = ACTIONS(1622), + [anon_sym_static] = ACTIONS(1622), + [anon_sym_struct] = ACTIONS(1622), + [anon_sym_trait] = ACTIONS(1622), + [anon_sym_type] = ACTIONS(1622), + [anon_sym_union] = ACTIONS(1622), + [anon_sym_unsafe] = ACTIONS(1622), + [anon_sym_use] = ACTIONS(1622), + [anon_sym_while] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1620), + [anon_sym_extern] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1620), + [anon_sym_COLON_COLON] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_yield] = ACTIONS(1622), + [anon_sym_move] = ACTIONS(1622), + [sym_integer_literal] = ACTIONS(1620), + [aux_sym_string_literal_token1] = ACTIONS(1620), + [sym_char_literal] = ACTIONS(1620), + [anon_sym_true] = ACTIONS(1622), + [anon_sym_false] = ACTIONS(1622), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1622), + [sym_super] = ACTIONS(1622), + [sym_crate] = ACTIONS(1622), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1620), + [sym_float_literal] = ACTIONS(1620), [sym_block_comment] = ACTIONS(3), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(1663), - [sym_identifier] = ACTIONS(1665), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_macro_rules_BANG] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1663), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_SQUOTE] = ACTIONS(1665), - [anon_sym_async] = ACTIONS(1665), - [anon_sym_break] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1665), - [anon_sym_continue] = ACTIONS(1665), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_enum] = ACTIONS(1665), - [anon_sym_fn] = ACTIONS(1665), - [anon_sym_for] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1665), - [anon_sym_impl] = ACTIONS(1665), - [anon_sym_let] = ACTIONS(1665), - [anon_sym_loop] = ACTIONS(1665), - [anon_sym_match] = ACTIONS(1665), - [anon_sym_mod] = ACTIONS(1665), - [anon_sym_pub] = ACTIONS(1665), - [anon_sym_return] = ACTIONS(1665), - [anon_sym_static] = ACTIONS(1665), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_trait] = ACTIONS(1665), - [anon_sym_type] = ACTIONS(1665), - [anon_sym_union] = ACTIONS(1665), - [anon_sym_unsafe] = ACTIONS(1665), - [anon_sym_use] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1663), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_extern] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_yield] = ACTIONS(1665), - [anon_sym_move] = ACTIONS(1665), - [sym_integer_literal] = ACTIONS(1663), - [aux_sym_string_literal_token1] = ACTIONS(1663), - [sym_char_literal] = ACTIONS(1663), - [anon_sym_true] = ACTIONS(1665), - [anon_sym_false] = ACTIONS(1665), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1665), - [sym_super] = ACTIONS(1665), - [sym_crate] = ACTIONS(1665), - [sym_metavariable] = ACTIONS(1663), - [sym_raw_string_literal] = ACTIONS(1663), - [sym_float_literal] = ACTIONS(1663), + [ts_builtin_sym_end] = ACTIONS(1624), + [sym_identifier] = ACTIONS(1626), + [anon_sym_SEMI] = ACTIONS(1624), + [anon_sym_macro_rules_BANG] = ACTIONS(1624), + [anon_sym_LPAREN] = ACTIONS(1624), + [anon_sym_LBRACE] = ACTIONS(1624), + [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_u8] = ACTIONS(1626), + [anon_sym_i8] = ACTIONS(1626), + [anon_sym_u16] = ACTIONS(1626), + [anon_sym_i16] = ACTIONS(1626), + [anon_sym_u32] = ACTIONS(1626), + [anon_sym_i32] = ACTIONS(1626), + [anon_sym_u64] = ACTIONS(1626), + [anon_sym_i64] = ACTIONS(1626), + [anon_sym_u128] = ACTIONS(1626), + [anon_sym_i128] = ACTIONS(1626), + [anon_sym_isize] = ACTIONS(1626), + [anon_sym_usize] = ACTIONS(1626), + [anon_sym_f32] = ACTIONS(1626), + [anon_sym_f64] = ACTIONS(1626), + [anon_sym_bool] = ACTIONS(1626), + [anon_sym_str] = ACTIONS(1626), + [anon_sym_char] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_break] = ACTIONS(1626), + [anon_sym_const] = ACTIONS(1626), + [anon_sym_continue] = ACTIONS(1626), + [anon_sym_default] = ACTIONS(1626), + [anon_sym_enum] = ACTIONS(1626), + [anon_sym_fn] = ACTIONS(1626), + [anon_sym_for] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_impl] = ACTIONS(1626), + [anon_sym_let] = ACTIONS(1626), + [anon_sym_loop] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_mod] = ACTIONS(1626), + [anon_sym_pub] = ACTIONS(1626), + [anon_sym_return] = ACTIONS(1626), + [anon_sym_static] = ACTIONS(1626), + [anon_sym_struct] = ACTIONS(1626), + [anon_sym_trait] = ACTIONS(1626), + [anon_sym_type] = ACTIONS(1626), + [anon_sym_union] = ACTIONS(1626), + [anon_sym_unsafe] = ACTIONS(1626), + [anon_sym_use] = ACTIONS(1626), + [anon_sym_while] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1624), + [anon_sym_extern] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1624), + [anon_sym_COLON_COLON] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1624), + [anon_sym_DOT_DOT] = ACTIONS(1624), + [anon_sym_DASH] = ACTIONS(1624), + [anon_sym_PIPE] = ACTIONS(1624), + [anon_sym_yield] = ACTIONS(1626), + [anon_sym_move] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(1624), + [aux_sym_string_literal_token1] = ACTIONS(1624), + [sym_char_literal] = ACTIONS(1624), + [anon_sym_true] = ACTIONS(1626), + [anon_sym_false] = ACTIONS(1626), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1626), + [sym_super] = ACTIONS(1626), + [sym_crate] = ACTIONS(1626), + [sym_metavariable] = ACTIONS(1624), + [sym_raw_string_literal] = ACTIONS(1624), + [sym_float_literal] = ACTIONS(1624), [sym_block_comment] = ACTIONS(3), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(1667), - [sym_identifier] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_macro_rules_BANG] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_u8] = ACTIONS(1669), - [anon_sym_i8] = ACTIONS(1669), - [anon_sym_u16] = ACTIONS(1669), - [anon_sym_i16] = ACTIONS(1669), - [anon_sym_u32] = ACTIONS(1669), - [anon_sym_i32] = ACTIONS(1669), - [anon_sym_u64] = ACTIONS(1669), - [anon_sym_i64] = ACTIONS(1669), - [anon_sym_u128] = ACTIONS(1669), - [anon_sym_i128] = ACTIONS(1669), - [anon_sym_isize] = ACTIONS(1669), - [anon_sym_usize] = ACTIONS(1669), - [anon_sym_f32] = ACTIONS(1669), - [anon_sym_f64] = ACTIONS(1669), - [anon_sym_bool] = ACTIONS(1669), - [anon_sym_str] = ACTIONS(1669), - [anon_sym_char] = ACTIONS(1669), - [anon_sym_SQUOTE] = ACTIONS(1669), - [anon_sym_async] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1669), - [anon_sym_enum] = ACTIONS(1669), - [anon_sym_fn] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_impl] = ACTIONS(1669), - [anon_sym_let] = ACTIONS(1669), - [anon_sym_loop] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_pub] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_static] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1669), - [anon_sym_trait] = ACTIONS(1669), - [anon_sym_type] = ACTIONS(1669), - [anon_sym_union] = ACTIONS(1669), - [anon_sym_unsafe] = ACTIONS(1669), - [anon_sym_use] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1667), - [anon_sym_yield] = ACTIONS(1669), - [anon_sym_move] = ACTIONS(1669), - [sym_integer_literal] = ACTIONS(1667), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1669), - [sym_super] = ACTIONS(1669), - [sym_crate] = ACTIONS(1669), - [sym_metavariable] = ACTIONS(1667), - [sym_raw_string_literal] = ACTIONS(1667), - [sym_float_literal] = ACTIONS(1667), + [ts_builtin_sym_end] = ACTIONS(1628), + [sym_identifier] = ACTIONS(1630), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_macro_rules_BANG] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_u8] = ACTIONS(1630), + [anon_sym_i8] = ACTIONS(1630), + [anon_sym_u16] = ACTIONS(1630), + [anon_sym_i16] = ACTIONS(1630), + [anon_sym_u32] = ACTIONS(1630), + [anon_sym_i32] = ACTIONS(1630), + [anon_sym_u64] = ACTIONS(1630), + [anon_sym_i64] = ACTIONS(1630), + [anon_sym_u128] = ACTIONS(1630), + [anon_sym_i128] = ACTIONS(1630), + [anon_sym_isize] = ACTIONS(1630), + [anon_sym_usize] = ACTIONS(1630), + [anon_sym_f32] = ACTIONS(1630), + [anon_sym_f64] = ACTIONS(1630), + [anon_sym_bool] = ACTIONS(1630), + [anon_sym_str] = ACTIONS(1630), + [anon_sym_char] = ACTIONS(1630), + [anon_sym_SQUOTE] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_const] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(1630), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_enum] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1630), + [anon_sym_for] = ACTIONS(1630), + [anon_sym_if] = ACTIONS(1630), + [anon_sym_impl] = ACTIONS(1630), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_loop] = ACTIONS(1630), + [anon_sym_match] = ACTIONS(1630), + [anon_sym_mod] = ACTIONS(1630), + [anon_sym_pub] = ACTIONS(1630), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_struct] = ACTIONS(1630), + [anon_sym_trait] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_unsafe] = ACTIONS(1630), + [anon_sym_use] = ACTIONS(1630), + [anon_sym_while] = ACTIONS(1630), + [anon_sym_POUND] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1628), + [anon_sym_extern] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1628), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_yield] = ACTIONS(1630), + [anon_sym_move] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(1628), + [aux_sym_string_literal_token1] = ACTIONS(1628), + [sym_char_literal] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1630), + [anon_sym_false] = ACTIONS(1630), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1630), + [sym_super] = ACTIONS(1630), + [sym_crate] = ACTIONS(1630), + [sym_metavariable] = ACTIONS(1628), + [sym_raw_string_literal] = ACTIONS(1628), + [sym_float_literal] = ACTIONS(1628), [sym_block_comment] = ACTIONS(3), }, [385] = { - [ts_builtin_sym_end] = ACTIONS(1671), - [sym_identifier] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_macro_rules_BANG] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1671), - [anon_sym_u8] = ACTIONS(1673), - [anon_sym_i8] = ACTIONS(1673), - [anon_sym_u16] = ACTIONS(1673), - [anon_sym_i16] = ACTIONS(1673), - [anon_sym_u32] = ACTIONS(1673), - [anon_sym_i32] = ACTIONS(1673), - [anon_sym_u64] = ACTIONS(1673), - [anon_sym_i64] = ACTIONS(1673), - [anon_sym_u128] = ACTIONS(1673), - [anon_sym_i128] = ACTIONS(1673), - [anon_sym_isize] = ACTIONS(1673), - [anon_sym_usize] = ACTIONS(1673), - [anon_sym_f32] = ACTIONS(1673), - [anon_sym_f64] = ACTIONS(1673), - [anon_sym_bool] = ACTIONS(1673), - [anon_sym_str] = ACTIONS(1673), - [anon_sym_char] = ACTIONS(1673), - [anon_sym_SQUOTE] = ACTIONS(1673), - [anon_sym_async] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_const] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_enum] = ACTIONS(1673), - [anon_sym_fn] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_impl] = ACTIONS(1673), - [anon_sym_let] = ACTIONS(1673), - [anon_sym_loop] = ACTIONS(1673), - [anon_sym_match] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1673), - [anon_sym_pub] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_static] = ACTIONS(1673), - [anon_sym_struct] = ACTIONS(1673), - [anon_sym_trait] = ACTIONS(1673), - [anon_sym_type] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_unsafe] = ACTIONS(1673), - [anon_sym_use] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1671), - [anon_sym_extern] = ACTIONS(1673), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_COLON_COLON] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_yield] = ACTIONS(1673), - [anon_sym_move] = ACTIONS(1673), - [sym_integer_literal] = ACTIONS(1671), - [aux_sym_string_literal_token1] = ACTIONS(1671), - [sym_char_literal] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1673), - [anon_sym_false] = ACTIONS(1673), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1673), - [sym_super] = ACTIONS(1673), - [sym_crate] = ACTIONS(1673), - [sym_metavariable] = ACTIONS(1671), - [sym_raw_string_literal] = ACTIONS(1671), - [sym_float_literal] = ACTIONS(1671), + [ts_builtin_sym_end] = ACTIONS(1632), + [sym_identifier] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1632), + [anon_sym_macro_rules_BANG] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_RBRACE] = ACTIONS(1632), + [anon_sym_LBRACK] = ACTIONS(1632), + [anon_sym_STAR] = ACTIONS(1632), + [anon_sym_u8] = ACTIONS(1634), + [anon_sym_i8] = ACTIONS(1634), + [anon_sym_u16] = ACTIONS(1634), + [anon_sym_i16] = ACTIONS(1634), + [anon_sym_u32] = ACTIONS(1634), + [anon_sym_i32] = ACTIONS(1634), + [anon_sym_u64] = ACTIONS(1634), + [anon_sym_i64] = ACTIONS(1634), + [anon_sym_u128] = ACTIONS(1634), + [anon_sym_i128] = ACTIONS(1634), + [anon_sym_isize] = ACTIONS(1634), + [anon_sym_usize] = ACTIONS(1634), + [anon_sym_f32] = ACTIONS(1634), + [anon_sym_f64] = ACTIONS(1634), + [anon_sym_bool] = ACTIONS(1634), + [anon_sym_str] = ACTIONS(1634), + [anon_sym_char] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1634), + [anon_sym_async] = ACTIONS(1634), + [anon_sym_break] = ACTIONS(1634), + [anon_sym_const] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1634), + [anon_sym_enum] = ACTIONS(1634), + [anon_sym_fn] = ACTIONS(1634), + [anon_sym_for] = ACTIONS(1634), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1634), + [anon_sym_let] = ACTIONS(1634), + [anon_sym_loop] = ACTIONS(1634), + [anon_sym_match] = ACTIONS(1634), + [anon_sym_mod] = ACTIONS(1634), + [anon_sym_pub] = ACTIONS(1634), + [anon_sym_return] = ACTIONS(1634), + [anon_sym_static] = ACTIONS(1634), + [anon_sym_struct] = ACTIONS(1634), + [anon_sym_trait] = ACTIONS(1634), + [anon_sym_type] = ACTIONS(1634), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1634), + [anon_sym_use] = ACTIONS(1634), + [anon_sym_while] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1632), + [anon_sym_extern] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1632), + [anon_sym_COLON_COLON] = ACTIONS(1632), + [anon_sym_AMP] = ACTIONS(1632), + [anon_sym_DOT_DOT] = ACTIONS(1632), + [anon_sym_DASH] = ACTIONS(1632), + [anon_sym_PIPE] = ACTIONS(1632), + [anon_sym_yield] = ACTIONS(1634), + [anon_sym_move] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1632), + [aux_sym_string_literal_token1] = ACTIONS(1632), + [sym_char_literal] = ACTIONS(1632), + [anon_sym_true] = ACTIONS(1634), + [anon_sym_false] = ACTIONS(1634), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1634), + [sym_super] = ACTIONS(1634), + [sym_crate] = ACTIONS(1634), + [sym_metavariable] = ACTIONS(1632), + [sym_raw_string_literal] = ACTIONS(1632), + [sym_float_literal] = ACTIONS(1632), [sym_block_comment] = ACTIONS(3), }, [386] = { - [ts_builtin_sym_end] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_macro_rules_BANG] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_u8] = ACTIONS(1677), - [anon_sym_i8] = ACTIONS(1677), - [anon_sym_u16] = ACTIONS(1677), - [anon_sym_i16] = ACTIONS(1677), - [anon_sym_u32] = ACTIONS(1677), - [anon_sym_i32] = ACTIONS(1677), - [anon_sym_u64] = ACTIONS(1677), - [anon_sym_i64] = ACTIONS(1677), - [anon_sym_u128] = ACTIONS(1677), - [anon_sym_i128] = ACTIONS(1677), - [anon_sym_isize] = ACTIONS(1677), - [anon_sym_usize] = ACTIONS(1677), - [anon_sym_f32] = ACTIONS(1677), - [anon_sym_f64] = ACTIONS(1677), - [anon_sym_bool] = ACTIONS(1677), - [anon_sym_str] = ACTIONS(1677), - [anon_sym_char] = ACTIONS(1677), - [anon_sym_SQUOTE] = ACTIONS(1677), - [anon_sym_async] = ACTIONS(1677), - [anon_sym_break] = ACTIONS(1677), - [anon_sym_const] = ACTIONS(1677), - [anon_sym_continue] = ACTIONS(1677), - [anon_sym_default] = ACTIONS(1677), - [anon_sym_enum] = ACTIONS(1677), - [anon_sym_fn] = ACTIONS(1677), - [anon_sym_for] = ACTIONS(1677), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_impl] = ACTIONS(1677), - [anon_sym_let] = ACTIONS(1677), - [anon_sym_loop] = ACTIONS(1677), - [anon_sym_match] = ACTIONS(1677), - [anon_sym_mod] = ACTIONS(1677), - [anon_sym_pub] = ACTIONS(1677), - [anon_sym_return] = ACTIONS(1677), - [anon_sym_static] = ACTIONS(1677), - [anon_sym_struct] = ACTIONS(1677), - [anon_sym_trait] = ACTIONS(1677), - [anon_sym_type] = ACTIONS(1677), - [anon_sym_union] = ACTIONS(1677), - [anon_sym_unsafe] = ACTIONS(1677), - [anon_sym_use] = ACTIONS(1677), - [anon_sym_while] = ACTIONS(1677), - [anon_sym_POUND] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(1677), - [anon_sym_LT] = ACTIONS(1675), - [anon_sym_COLON_COLON] = ACTIONS(1675), - [anon_sym_AMP] = ACTIONS(1675), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1677), - [anon_sym_move] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [aux_sym_string_literal_token1] = ACTIONS(1675), - [sym_char_literal] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1677), - [anon_sym_false] = ACTIONS(1677), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1677), - [sym_super] = ACTIONS(1677), - [sym_crate] = ACTIONS(1677), - [sym_metavariable] = ACTIONS(1675), - [sym_raw_string_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1675), + [ts_builtin_sym_end] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_macro_rules_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_u8] = ACTIONS(1638), + [anon_sym_i8] = ACTIONS(1638), + [anon_sym_u16] = ACTIONS(1638), + [anon_sym_i16] = ACTIONS(1638), + [anon_sym_u32] = ACTIONS(1638), + [anon_sym_i32] = ACTIONS(1638), + [anon_sym_u64] = ACTIONS(1638), + [anon_sym_i64] = ACTIONS(1638), + [anon_sym_u128] = ACTIONS(1638), + [anon_sym_i128] = ACTIONS(1638), + [anon_sym_isize] = ACTIONS(1638), + [anon_sym_usize] = ACTIONS(1638), + [anon_sym_f32] = ACTIONS(1638), + [anon_sym_f64] = ACTIONS(1638), + [anon_sym_bool] = ACTIONS(1638), + [anon_sym_str] = ACTIONS(1638), + [anon_sym_char] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [anon_sym_async] = ACTIONS(1638), + [anon_sym_break] = ACTIONS(1638), + [anon_sym_const] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(1638), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_enum] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1638), + [anon_sym_for] = ACTIONS(1638), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_impl] = ACTIONS(1638), + [anon_sym_let] = ACTIONS(1638), + [anon_sym_loop] = ACTIONS(1638), + [anon_sym_match] = ACTIONS(1638), + [anon_sym_mod] = ACTIONS(1638), + [anon_sym_pub] = ACTIONS(1638), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1638), + [anon_sym_struct] = ACTIONS(1638), + [anon_sym_trait] = ACTIONS(1638), + [anon_sym_type] = ACTIONS(1638), + [anon_sym_union] = ACTIONS(1638), + [anon_sym_unsafe] = ACTIONS(1638), + [anon_sym_use] = ACTIONS(1638), + [anon_sym_while] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_extern] = ACTIONS(1638), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_COLON_COLON] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_DOT_DOT] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_yield] = ACTIONS(1638), + [anon_sym_move] = ACTIONS(1638), + [sym_integer_literal] = ACTIONS(1636), + [aux_sym_string_literal_token1] = ACTIONS(1636), + [sym_char_literal] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1638), + [anon_sym_false] = ACTIONS(1638), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1638), + [sym_super] = ACTIONS(1638), + [sym_crate] = ACTIONS(1638), + [sym_metavariable] = ACTIONS(1636), + [sym_raw_string_literal] = ACTIONS(1636), + [sym_float_literal] = ACTIONS(1636), [sym_block_comment] = ACTIONS(3), }, [387] = { - [ts_builtin_sym_end] = ACTIONS(1679), - [sym_identifier] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_macro_rules_BANG] = ACTIONS(1679), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_u8] = ACTIONS(1681), - [anon_sym_i8] = ACTIONS(1681), - [anon_sym_u16] = ACTIONS(1681), - [anon_sym_i16] = ACTIONS(1681), - [anon_sym_u32] = ACTIONS(1681), - [anon_sym_i32] = ACTIONS(1681), - [anon_sym_u64] = ACTIONS(1681), - [anon_sym_i64] = ACTIONS(1681), - [anon_sym_u128] = ACTIONS(1681), - [anon_sym_i128] = ACTIONS(1681), - [anon_sym_isize] = ACTIONS(1681), - [anon_sym_usize] = ACTIONS(1681), - [anon_sym_f32] = ACTIONS(1681), - [anon_sym_f64] = ACTIONS(1681), - [anon_sym_bool] = ACTIONS(1681), - [anon_sym_str] = ACTIONS(1681), - [anon_sym_char] = ACTIONS(1681), - [anon_sym_SQUOTE] = ACTIONS(1681), - [anon_sym_async] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_default] = ACTIONS(1681), - [anon_sym_enum] = ACTIONS(1681), - [anon_sym_fn] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_impl] = ACTIONS(1681), - [anon_sym_let] = ACTIONS(1681), - [anon_sym_loop] = ACTIONS(1681), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_mod] = ACTIONS(1681), - [anon_sym_pub] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_static] = ACTIONS(1681), - [anon_sym_struct] = ACTIONS(1681), - [anon_sym_trait] = ACTIONS(1681), - [anon_sym_type] = ACTIONS(1681), - [anon_sym_union] = ACTIONS(1681), - [anon_sym_unsafe] = ACTIONS(1681), - [anon_sym_use] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_POUND] = ACTIONS(1679), - [anon_sym_BANG] = ACTIONS(1679), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1679), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1679), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_yield] = ACTIONS(1681), - [anon_sym_move] = ACTIONS(1681), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1681), - [sym_super] = ACTIONS(1681), - [sym_crate] = ACTIONS(1681), - [sym_metavariable] = ACTIONS(1679), - [sym_raw_string_literal] = ACTIONS(1679), - [sym_float_literal] = ACTIONS(1679), + [ts_builtin_sym_end] = ACTIONS(1640), + [sym_identifier] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_macro_rules_BANG] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_u8] = ACTIONS(1642), + [anon_sym_i8] = ACTIONS(1642), + [anon_sym_u16] = ACTIONS(1642), + [anon_sym_i16] = ACTIONS(1642), + [anon_sym_u32] = ACTIONS(1642), + [anon_sym_i32] = ACTIONS(1642), + [anon_sym_u64] = ACTIONS(1642), + [anon_sym_i64] = ACTIONS(1642), + [anon_sym_u128] = ACTIONS(1642), + [anon_sym_i128] = ACTIONS(1642), + [anon_sym_isize] = ACTIONS(1642), + [anon_sym_usize] = ACTIONS(1642), + [anon_sym_f32] = ACTIONS(1642), + [anon_sym_f64] = ACTIONS(1642), + [anon_sym_bool] = ACTIONS(1642), + [anon_sym_str] = ACTIONS(1642), + [anon_sym_char] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_break] = ACTIONS(1642), + [anon_sym_const] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(1642), + [anon_sym_default] = ACTIONS(1642), + [anon_sym_enum] = ACTIONS(1642), + [anon_sym_fn] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1642), + [anon_sym_let] = ACTIONS(1642), + [anon_sym_loop] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_mod] = ACTIONS(1642), + [anon_sym_pub] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_static] = ACTIONS(1642), + [anon_sym_struct] = ACTIONS(1642), + [anon_sym_trait] = ACTIONS(1642), + [anon_sym_type] = ACTIONS(1642), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_use] = ACTIONS(1642), + [anon_sym_while] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_extern] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_COLON_COLON] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1640), + [anon_sym_DOT_DOT] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_move] = ACTIONS(1642), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1640), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1642), + [anon_sym_false] = ACTIONS(1642), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1640), + [sym_raw_string_literal] = ACTIONS(1640), + [sym_float_literal] = ACTIONS(1640), [sym_block_comment] = ACTIONS(3), }, [388] = { - [ts_builtin_sym_end] = ACTIONS(1683), - [sym_identifier] = ACTIONS(1685), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_macro_rules_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1683), - [anon_sym_u8] = ACTIONS(1685), - [anon_sym_i8] = ACTIONS(1685), - [anon_sym_u16] = ACTIONS(1685), - [anon_sym_i16] = ACTIONS(1685), - [anon_sym_u32] = ACTIONS(1685), - [anon_sym_i32] = ACTIONS(1685), - [anon_sym_u64] = ACTIONS(1685), - [anon_sym_i64] = ACTIONS(1685), - [anon_sym_u128] = ACTIONS(1685), - [anon_sym_i128] = ACTIONS(1685), - [anon_sym_isize] = ACTIONS(1685), - [anon_sym_usize] = ACTIONS(1685), - [anon_sym_f32] = ACTIONS(1685), - [anon_sym_f64] = ACTIONS(1685), - [anon_sym_bool] = ACTIONS(1685), - [anon_sym_str] = ACTIONS(1685), - [anon_sym_char] = ACTIONS(1685), - [anon_sym_SQUOTE] = ACTIONS(1685), - [anon_sym_async] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_enum] = ACTIONS(1685), - [anon_sym_fn] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_impl] = ACTIONS(1685), - [anon_sym_let] = ACTIONS(1685), - [anon_sym_loop] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1685), - [anon_sym_mod] = ACTIONS(1685), - [anon_sym_pub] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_trait] = ACTIONS(1685), - [anon_sym_type] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1685), - [anon_sym_use] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_POUND] = ACTIONS(1683), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_extern] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1683), - [anon_sym_COLON_COLON] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_DOT_DOT] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_yield] = ACTIONS(1685), - [anon_sym_move] = ACTIONS(1685), - [sym_integer_literal] = ACTIONS(1683), - [aux_sym_string_literal_token1] = ACTIONS(1683), - [sym_char_literal] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1685), - [anon_sym_false] = ACTIONS(1685), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1683), - [sym_raw_string_literal] = ACTIONS(1683), - [sym_float_literal] = ACTIONS(1683), + [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(1687), - [sym_identifier] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_macro_rules_BANG] = ACTIONS(1687), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_u8] = ACTIONS(1689), - [anon_sym_i8] = ACTIONS(1689), - [anon_sym_u16] = ACTIONS(1689), - [anon_sym_i16] = ACTIONS(1689), - [anon_sym_u32] = ACTIONS(1689), - [anon_sym_i32] = ACTIONS(1689), - [anon_sym_u64] = ACTIONS(1689), - [anon_sym_i64] = ACTIONS(1689), - [anon_sym_u128] = ACTIONS(1689), - [anon_sym_i128] = ACTIONS(1689), - [anon_sym_isize] = ACTIONS(1689), - [anon_sym_usize] = ACTIONS(1689), - [anon_sym_f32] = ACTIONS(1689), - [anon_sym_f64] = ACTIONS(1689), - [anon_sym_bool] = ACTIONS(1689), - [anon_sym_str] = ACTIONS(1689), - [anon_sym_char] = ACTIONS(1689), - [anon_sym_SQUOTE] = ACTIONS(1689), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1689), - [anon_sym_const] = ACTIONS(1689), - [anon_sym_continue] = ACTIONS(1689), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_enum] = ACTIONS(1689), - [anon_sym_fn] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1689), - [anon_sym_impl] = ACTIONS(1689), - [anon_sym_let] = ACTIONS(1689), - [anon_sym_loop] = ACTIONS(1689), - [anon_sym_match] = ACTIONS(1689), - [anon_sym_mod] = ACTIONS(1689), - [anon_sym_pub] = ACTIONS(1689), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_static] = ACTIONS(1689), - [anon_sym_struct] = ACTIONS(1689), - [anon_sym_trait] = ACTIONS(1689), - [anon_sym_type] = ACTIONS(1689), - [anon_sym_union] = ACTIONS(1689), - [anon_sym_unsafe] = ACTIONS(1689), - [anon_sym_use] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1689), - [anon_sym_POUND] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(1689), - [anon_sym_LT] = ACTIONS(1687), - [anon_sym_COLON_COLON] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_yield] = ACTIONS(1689), - [anon_sym_move] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1687), - [aux_sym_string_literal_token1] = ACTIONS(1687), - [sym_char_literal] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1689), - [anon_sym_false] = ACTIONS(1689), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1689), - [sym_super] = ACTIONS(1689), - [sym_crate] = ACTIONS(1689), - [sym_metavariable] = ACTIONS(1687), - [sym_raw_string_literal] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1687), + [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(1691), - [sym_identifier] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1691), - [anon_sym_macro_rules_BANG] = ACTIONS(1691), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1691), - [anon_sym_RBRACE] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_u8] = ACTIONS(1693), - [anon_sym_i8] = ACTIONS(1693), - [anon_sym_u16] = ACTIONS(1693), - [anon_sym_i16] = ACTIONS(1693), - [anon_sym_u32] = ACTIONS(1693), - [anon_sym_i32] = ACTIONS(1693), - [anon_sym_u64] = ACTIONS(1693), - [anon_sym_i64] = ACTIONS(1693), - [anon_sym_u128] = ACTIONS(1693), - [anon_sym_i128] = ACTIONS(1693), - [anon_sym_isize] = ACTIONS(1693), - [anon_sym_usize] = ACTIONS(1693), - [anon_sym_f32] = ACTIONS(1693), - [anon_sym_f64] = ACTIONS(1693), - [anon_sym_bool] = ACTIONS(1693), - [anon_sym_str] = ACTIONS(1693), - [anon_sym_char] = ACTIONS(1693), - [anon_sym_SQUOTE] = ACTIONS(1693), - [anon_sym_async] = ACTIONS(1693), - [anon_sym_break] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1693), - [anon_sym_continue] = ACTIONS(1693), - [anon_sym_default] = ACTIONS(1693), - [anon_sym_enum] = ACTIONS(1693), - [anon_sym_fn] = ACTIONS(1693), - [anon_sym_for] = ACTIONS(1693), - [anon_sym_if] = ACTIONS(1693), - [anon_sym_impl] = ACTIONS(1693), - [anon_sym_let] = ACTIONS(1693), - [anon_sym_loop] = ACTIONS(1693), - [anon_sym_match] = ACTIONS(1693), - [anon_sym_mod] = ACTIONS(1693), - [anon_sym_pub] = ACTIONS(1693), - [anon_sym_return] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(1693), - [anon_sym_struct] = ACTIONS(1693), - [anon_sym_trait] = ACTIONS(1693), - [anon_sym_type] = ACTIONS(1693), - [anon_sym_union] = ACTIONS(1693), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_use] = ACTIONS(1693), - [anon_sym_while] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1691), - [anon_sym_extern] = ACTIONS(1693), - [anon_sym_LT] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_DOT_DOT] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1691), - [anon_sym_yield] = ACTIONS(1693), - [anon_sym_move] = ACTIONS(1693), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1691), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1693), - [anon_sym_false] = ACTIONS(1693), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1693), - [sym_super] = ACTIONS(1693), - [sym_crate] = ACTIONS(1693), - [sym_metavariable] = ACTIONS(1691), - [sym_raw_string_literal] = ACTIONS(1691), - [sym_float_literal] = ACTIONS(1691), + [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(1695), - [sym_identifier] = ACTIONS(1697), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_macro_rules_BANG] = ACTIONS(1695), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1695), - [anon_sym_u8] = ACTIONS(1697), - [anon_sym_i8] = ACTIONS(1697), - [anon_sym_u16] = ACTIONS(1697), - [anon_sym_i16] = ACTIONS(1697), - [anon_sym_u32] = ACTIONS(1697), - [anon_sym_i32] = ACTIONS(1697), - [anon_sym_u64] = ACTIONS(1697), - [anon_sym_i64] = ACTIONS(1697), - [anon_sym_u128] = ACTIONS(1697), - [anon_sym_i128] = ACTIONS(1697), - [anon_sym_isize] = ACTIONS(1697), - [anon_sym_usize] = ACTIONS(1697), - [anon_sym_f32] = ACTIONS(1697), - [anon_sym_f64] = ACTIONS(1697), - [anon_sym_bool] = ACTIONS(1697), - [anon_sym_str] = ACTIONS(1697), - [anon_sym_char] = ACTIONS(1697), - [anon_sym_SQUOTE] = ACTIONS(1697), - [anon_sym_async] = ACTIONS(1697), - [anon_sym_break] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_continue] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1697), - [anon_sym_fn] = ACTIONS(1697), - [anon_sym_for] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(1697), - [anon_sym_impl] = ACTIONS(1697), - [anon_sym_let] = ACTIONS(1697), - [anon_sym_loop] = ACTIONS(1697), - [anon_sym_match] = ACTIONS(1697), - [anon_sym_mod] = ACTIONS(1697), - [anon_sym_pub] = ACTIONS(1697), - [anon_sym_return] = ACTIONS(1697), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_struct] = ACTIONS(1697), - [anon_sym_trait] = ACTIONS(1697), - [anon_sym_type] = ACTIONS(1697), - [anon_sym_union] = ACTIONS(1697), - [anon_sym_unsafe] = ACTIONS(1697), - [anon_sym_use] = ACTIONS(1697), - [anon_sym_while] = ACTIONS(1697), - [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_BANG] = ACTIONS(1695), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym_LT] = ACTIONS(1695), - [anon_sym_COLON_COLON] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_DASH] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_yield] = ACTIONS(1697), - [anon_sym_move] = ACTIONS(1697), - [sym_integer_literal] = ACTIONS(1695), - [aux_sym_string_literal_token1] = ACTIONS(1695), - [sym_char_literal] = ACTIONS(1695), - [anon_sym_true] = ACTIONS(1697), - [anon_sym_false] = ACTIONS(1697), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1695), - [sym_raw_string_literal] = ACTIONS(1695), - [sym_float_literal] = ACTIONS(1695), + [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(1699), - [sym_identifier] = ACTIONS(1701), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_macro_rules_BANG] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1699), - [anon_sym_u8] = ACTIONS(1701), - [anon_sym_i8] = ACTIONS(1701), - [anon_sym_u16] = ACTIONS(1701), - [anon_sym_i16] = ACTIONS(1701), - [anon_sym_u32] = ACTIONS(1701), - [anon_sym_i32] = ACTIONS(1701), - [anon_sym_u64] = ACTIONS(1701), - [anon_sym_i64] = ACTIONS(1701), - [anon_sym_u128] = ACTIONS(1701), - [anon_sym_i128] = ACTIONS(1701), - [anon_sym_isize] = ACTIONS(1701), - [anon_sym_usize] = ACTIONS(1701), - [anon_sym_f32] = ACTIONS(1701), - [anon_sym_f64] = ACTIONS(1701), - [anon_sym_bool] = ACTIONS(1701), - [anon_sym_str] = ACTIONS(1701), - [anon_sym_char] = ACTIONS(1701), - [anon_sym_SQUOTE] = ACTIONS(1701), - [anon_sym_async] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_default] = ACTIONS(1701), - [anon_sym_enum] = ACTIONS(1701), - [anon_sym_fn] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_impl] = ACTIONS(1701), - [anon_sym_let] = ACTIONS(1701), - [anon_sym_loop] = ACTIONS(1701), - [anon_sym_match] = ACTIONS(1701), - [anon_sym_mod] = ACTIONS(1701), - [anon_sym_pub] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_static] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1701), - [anon_sym_trait] = ACTIONS(1701), - [anon_sym_type] = ACTIONS(1701), - [anon_sym_union] = ACTIONS(1701), - [anon_sym_unsafe] = ACTIONS(1701), - [anon_sym_use] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(1699), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_extern] = ACTIONS(1701), - [anon_sym_LT] = ACTIONS(1699), - [anon_sym_COLON_COLON] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_DOT_DOT] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_move] = ACTIONS(1701), - [sym_integer_literal] = ACTIONS(1699), - [aux_sym_string_literal_token1] = ACTIONS(1699), - [sym_char_literal] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1701), - [anon_sym_false] = ACTIONS(1701), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1701), - [sym_super] = ACTIONS(1701), - [sym_crate] = ACTIONS(1701), - [sym_metavariable] = ACTIONS(1699), - [sym_raw_string_literal] = ACTIONS(1699), - [sym_float_literal] = ACTIONS(1699), + [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(1703), - [sym_identifier] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_macro_rules_BANG] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_u8] = ACTIONS(1705), - [anon_sym_i8] = ACTIONS(1705), - [anon_sym_u16] = ACTIONS(1705), - [anon_sym_i16] = ACTIONS(1705), - [anon_sym_u32] = ACTIONS(1705), - [anon_sym_i32] = ACTIONS(1705), - [anon_sym_u64] = ACTIONS(1705), - [anon_sym_i64] = ACTIONS(1705), - [anon_sym_u128] = ACTIONS(1705), - [anon_sym_i128] = ACTIONS(1705), - [anon_sym_isize] = ACTIONS(1705), - [anon_sym_usize] = ACTIONS(1705), - [anon_sym_f32] = ACTIONS(1705), - [anon_sym_f64] = ACTIONS(1705), - [anon_sym_bool] = ACTIONS(1705), - [anon_sym_str] = ACTIONS(1705), - [anon_sym_char] = ACTIONS(1705), - [anon_sym_SQUOTE] = ACTIONS(1705), - [anon_sym_async] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_default] = ACTIONS(1705), - [anon_sym_enum] = ACTIONS(1705), - [anon_sym_fn] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_impl] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_mod] = ACTIONS(1705), - [anon_sym_pub] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1705), - [anon_sym_trait] = ACTIONS(1705), - [anon_sym_type] = ACTIONS(1705), - [anon_sym_union] = ACTIONS(1705), - [anon_sym_unsafe] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_POUND] = ACTIONS(1703), - [anon_sym_BANG] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_COLON_COLON] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_yield] = ACTIONS(1705), - [anon_sym_move] = ACTIONS(1705), - [sym_integer_literal] = ACTIONS(1703), - [aux_sym_string_literal_token1] = ACTIONS(1703), - [sym_char_literal] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1705), - [sym_super] = ACTIONS(1705), - [sym_crate] = ACTIONS(1705), - [sym_metavariable] = ACTIONS(1703), - [sym_raw_string_literal] = ACTIONS(1703), - [sym_float_literal] = ACTIONS(1703), + [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(1707), - [sym_identifier] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_macro_rules_BANG] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_u8] = ACTIONS(1709), - [anon_sym_i8] = ACTIONS(1709), - [anon_sym_u16] = ACTIONS(1709), - [anon_sym_i16] = ACTIONS(1709), - [anon_sym_u32] = ACTIONS(1709), - [anon_sym_i32] = ACTIONS(1709), - [anon_sym_u64] = ACTIONS(1709), - [anon_sym_i64] = ACTIONS(1709), - [anon_sym_u128] = ACTIONS(1709), - [anon_sym_i128] = ACTIONS(1709), - [anon_sym_isize] = ACTIONS(1709), - [anon_sym_usize] = ACTIONS(1709), - [anon_sym_f32] = ACTIONS(1709), - [anon_sym_f64] = ACTIONS(1709), - [anon_sym_bool] = ACTIONS(1709), - [anon_sym_str] = ACTIONS(1709), - [anon_sym_char] = ACTIONS(1709), - [anon_sym_SQUOTE] = ACTIONS(1709), - [anon_sym_async] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_const] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_default] = ACTIONS(1709), - [anon_sym_enum] = ACTIONS(1709), - [anon_sym_fn] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_impl] = ACTIONS(1709), - [anon_sym_let] = ACTIONS(1709), - [anon_sym_loop] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_mod] = ACTIONS(1709), - [anon_sym_pub] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_static] = ACTIONS(1709), - [anon_sym_struct] = ACTIONS(1709), - [anon_sym_trait] = ACTIONS(1709), - [anon_sym_type] = ACTIONS(1709), - [anon_sym_union] = ACTIONS(1709), - [anon_sym_unsafe] = ACTIONS(1709), - [anon_sym_use] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_POUND] = ACTIONS(1707), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1709), - [anon_sym_LT] = ACTIONS(1707), - [anon_sym_COLON_COLON] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_yield] = ACTIONS(1709), - [anon_sym_move] = ACTIONS(1709), - [sym_integer_literal] = ACTIONS(1707), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1709), - [sym_super] = ACTIONS(1709), - [sym_crate] = ACTIONS(1709), - [sym_metavariable] = ACTIONS(1707), - [sym_raw_string_literal] = ACTIONS(1707), - [sym_float_literal] = ACTIONS(1707), + [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(1711), - [sym_identifier] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_macro_rules_BANG] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_u8] = ACTIONS(1713), - [anon_sym_i8] = ACTIONS(1713), - [anon_sym_u16] = ACTIONS(1713), - [anon_sym_i16] = ACTIONS(1713), - [anon_sym_u32] = ACTIONS(1713), - [anon_sym_i32] = ACTIONS(1713), - [anon_sym_u64] = ACTIONS(1713), - [anon_sym_i64] = ACTIONS(1713), - [anon_sym_u128] = ACTIONS(1713), - [anon_sym_i128] = ACTIONS(1713), - [anon_sym_isize] = ACTIONS(1713), - [anon_sym_usize] = ACTIONS(1713), - [anon_sym_f32] = ACTIONS(1713), - [anon_sym_f64] = ACTIONS(1713), - [anon_sym_bool] = ACTIONS(1713), - [anon_sym_str] = ACTIONS(1713), - [anon_sym_char] = ACTIONS(1713), - [anon_sym_SQUOTE] = ACTIONS(1713), - [anon_sym_async] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_default] = ACTIONS(1713), - [anon_sym_enum] = ACTIONS(1713), - [anon_sym_fn] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_impl] = ACTIONS(1713), - [anon_sym_let] = ACTIONS(1713), - [anon_sym_loop] = ACTIONS(1713), - [anon_sym_match] = ACTIONS(1713), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_pub] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_static] = ACTIONS(1713), - [anon_sym_struct] = ACTIONS(1713), - [anon_sym_trait] = ACTIONS(1713), - [anon_sym_type] = ACTIONS(1713), - [anon_sym_union] = ACTIONS(1713), - [anon_sym_unsafe] = ACTIONS(1713), - [anon_sym_use] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(1711), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_COLON_COLON] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_yield] = ACTIONS(1713), - [anon_sym_move] = ACTIONS(1713), - [sym_integer_literal] = ACTIONS(1711), - [aux_sym_string_literal_token1] = ACTIONS(1711), - [sym_char_literal] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1713), - [sym_super] = ACTIONS(1713), - [sym_crate] = ACTIONS(1713), - [sym_metavariable] = ACTIONS(1711), - [sym_raw_string_literal] = ACTIONS(1711), - [sym_float_literal] = ACTIONS(1711), + [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(1715), - [sym_identifier] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_macro_rules_BANG] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_u8] = ACTIONS(1717), - [anon_sym_i8] = ACTIONS(1717), - [anon_sym_u16] = ACTIONS(1717), - [anon_sym_i16] = ACTIONS(1717), - [anon_sym_u32] = ACTIONS(1717), - [anon_sym_i32] = ACTIONS(1717), - [anon_sym_u64] = ACTIONS(1717), - [anon_sym_i64] = ACTIONS(1717), - [anon_sym_u128] = ACTIONS(1717), - [anon_sym_i128] = ACTIONS(1717), - [anon_sym_isize] = ACTIONS(1717), - [anon_sym_usize] = ACTIONS(1717), - [anon_sym_f32] = ACTIONS(1717), - [anon_sym_f64] = ACTIONS(1717), - [anon_sym_bool] = ACTIONS(1717), - [anon_sym_str] = ACTIONS(1717), - [anon_sym_char] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_async] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [anon_sym_fn] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_impl] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_pub] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_trait] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_union] = ACTIONS(1717), - [anon_sym_unsafe] = ACTIONS(1717), - [anon_sym_use] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_POUND] = ACTIONS(1715), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_COLON_COLON] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_yield] = ACTIONS(1717), - [anon_sym_move] = ACTIONS(1717), - [sym_integer_literal] = ACTIONS(1715), - [aux_sym_string_literal_token1] = ACTIONS(1715), - [sym_char_literal] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1717), - [sym_super] = ACTIONS(1717), - [sym_crate] = ACTIONS(1717), - [sym_metavariable] = ACTIONS(1715), - [sym_raw_string_literal] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1715), + [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(1719), - [sym_identifier] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_macro_rules_BANG] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_u8] = ACTIONS(1721), - [anon_sym_i8] = ACTIONS(1721), - [anon_sym_u16] = ACTIONS(1721), - [anon_sym_i16] = ACTIONS(1721), - [anon_sym_u32] = ACTIONS(1721), - [anon_sym_i32] = ACTIONS(1721), - [anon_sym_u64] = ACTIONS(1721), - [anon_sym_i64] = ACTIONS(1721), - [anon_sym_u128] = ACTIONS(1721), - [anon_sym_i128] = ACTIONS(1721), - [anon_sym_isize] = ACTIONS(1721), - [anon_sym_usize] = ACTIONS(1721), - [anon_sym_f32] = ACTIONS(1721), - [anon_sym_f64] = ACTIONS(1721), - [anon_sym_bool] = ACTIONS(1721), - [anon_sym_str] = ACTIONS(1721), - [anon_sym_char] = ACTIONS(1721), - [anon_sym_SQUOTE] = ACTIONS(1721), - [anon_sym_async] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_default] = ACTIONS(1721), - [anon_sym_enum] = ACTIONS(1721), - [anon_sym_fn] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_impl] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_mod] = ACTIONS(1721), - [anon_sym_pub] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_static] = ACTIONS(1721), - [anon_sym_struct] = ACTIONS(1721), - [anon_sym_trait] = ACTIONS(1721), - [anon_sym_type] = ACTIONS(1721), - [anon_sym_union] = ACTIONS(1721), - [anon_sym_unsafe] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_COLON_COLON] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1721), - [anon_sym_move] = ACTIONS(1721), - [sym_integer_literal] = ACTIONS(1719), - [aux_sym_string_literal_token1] = ACTIONS(1719), - [sym_char_literal] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1721), - [sym_super] = ACTIONS(1721), - [sym_crate] = ACTIONS(1721), - [sym_metavariable] = ACTIONS(1719), - [sym_raw_string_literal] = ACTIONS(1719), - [sym_float_literal] = ACTIONS(1719), + [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(1723), - [sym_identifier] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_macro_rules_BANG] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_u8] = ACTIONS(1725), - [anon_sym_i8] = ACTIONS(1725), - [anon_sym_u16] = ACTIONS(1725), - [anon_sym_i16] = ACTIONS(1725), - [anon_sym_u32] = ACTIONS(1725), - [anon_sym_i32] = ACTIONS(1725), - [anon_sym_u64] = ACTIONS(1725), - [anon_sym_i64] = ACTIONS(1725), - [anon_sym_u128] = ACTIONS(1725), - [anon_sym_i128] = ACTIONS(1725), - [anon_sym_isize] = ACTIONS(1725), - [anon_sym_usize] = ACTIONS(1725), - [anon_sym_f32] = ACTIONS(1725), - [anon_sym_f64] = ACTIONS(1725), - [anon_sym_bool] = ACTIONS(1725), - [anon_sym_str] = ACTIONS(1725), - [anon_sym_char] = ACTIONS(1725), - [anon_sym_SQUOTE] = ACTIONS(1725), - [anon_sym_async] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_default] = ACTIONS(1725), - [anon_sym_enum] = ACTIONS(1725), - [anon_sym_fn] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_impl] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_mod] = ACTIONS(1725), - [anon_sym_pub] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_static] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(1725), - [anon_sym_trait] = ACTIONS(1725), - [anon_sym_type] = ACTIONS(1725), - [anon_sym_union] = ACTIONS(1725), - [anon_sym_unsafe] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(1723), - [anon_sym_BANG] = ACTIONS(1723), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_COLON_COLON] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_yield] = ACTIONS(1725), - [anon_sym_move] = ACTIONS(1725), - [sym_integer_literal] = ACTIONS(1723), - [aux_sym_string_literal_token1] = ACTIONS(1723), - [sym_char_literal] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1725), - [sym_super] = ACTIONS(1725), - [sym_crate] = ACTIONS(1725), - [sym_metavariable] = ACTIONS(1723), - [sym_raw_string_literal] = ACTIONS(1723), - [sym_float_literal] = ACTIONS(1723), + [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(1727), - [sym_identifier] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_macro_rules_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_u8] = ACTIONS(1729), - [anon_sym_i8] = ACTIONS(1729), - [anon_sym_u16] = ACTIONS(1729), - [anon_sym_i16] = ACTIONS(1729), - [anon_sym_u32] = ACTIONS(1729), - [anon_sym_i32] = ACTIONS(1729), - [anon_sym_u64] = ACTIONS(1729), - [anon_sym_i64] = ACTIONS(1729), - [anon_sym_u128] = ACTIONS(1729), - [anon_sym_i128] = ACTIONS(1729), - [anon_sym_isize] = ACTIONS(1729), - [anon_sym_usize] = ACTIONS(1729), - [anon_sym_f32] = ACTIONS(1729), - [anon_sym_f64] = ACTIONS(1729), - [anon_sym_bool] = ACTIONS(1729), - [anon_sym_str] = ACTIONS(1729), - [anon_sym_char] = ACTIONS(1729), - [anon_sym_SQUOTE] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_default] = ACTIONS(1729), - [anon_sym_enum] = ACTIONS(1729), - [anon_sym_fn] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_impl] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_loop] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1729), - [anon_sym_mod] = ACTIONS(1729), - [anon_sym_pub] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_static] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1729), - [anon_sym_trait] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(1729), - [anon_sym_union] = ACTIONS(1729), - [anon_sym_unsafe] = ACTIONS(1729), - [anon_sym_use] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_POUND] = ACTIONS(1727), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_COLON_COLON] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_yield] = ACTIONS(1729), - [anon_sym_move] = ACTIONS(1729), - [sym_integer_literal] = ACTIONS(1727), - [aux_sym_string_literal_token1] = ACTIONS(1727), - [sym_char_literal] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1729), - [anon_sym_false] = ACTIONS(1729), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1729), - [sym_super] = ACTIONS(1729), - [sym_crate] = ACTIONS(1729), - [sym_metavariable] = ACTIONS(1727), - [sym_raw_string_literal] = ACTIONS(1727), - [sym_float_literal] = ACTIONS(1727), + [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(1731), - [sym_identifier] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1731), - [anon_sym_macro_rules_BANG] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_SQUOTE] = ACTIONS(1733), - [anon_sym_async] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_default] = ACTIONS(1733), - [anon_sym_enum] = ACTIONS(1733), - [anon_sym_fn] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_impl] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1733), - [anon_sym_pub] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_static] = ACTIONS(1733), - [anon_sym_struct] = ACTIONS(1733), - [anon_sym_trait] = ACTIONS(1733), - [anon_sym_type] = ACTIONS(1733), - [anon_sym_union] = ACTIONS(1733), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1731), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1731), - [anon_sym_COLON_COLON] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1731), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1731), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_move] = ACTIONS(1733), - [sym_integer_literal] = ACTIONS(1731), - [aux_sym_string_literal_token1] = ACTIONS(1731), - [sym_char_literal] = ACTIONS(1731), - [anon_sym_true] = ACTIONS(1733), - [anon_sym_false] = ACTIONS(1733), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1733), - [sym_super] = ACTIONS(1733), - [sym_crate] = ACTIONS(1733), - [sym_metavariable] = ACTIONS(1731), - [sym_raw_string_literal] = ACTIONS(1731), - [sym_float_literal] = ACTIONS(1731), + [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(1735), - [sym_identifier] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_macro_rules_BANG] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_u8] = ACTIONS(1737), - [anon_sym_i8] = ACTIONS(1737), - [anon_sym_u16] = ACTIONS(1737), - [anon_sym_i16] = ACTIONS(1737), - [anon_sym_u32] = ACTIONS(1737), - [anon_sym_i32] = ACTIONS(1737), - [anon_sym_u64] = ACTIONS(1737), - [anon_sym_i64] = ACTIONS(1737), - [anon_sym_u128] = ACTIONS(1737), - [anon_sym_i128] = ACTIONS(1737), - [anon_sym_isize] = ACTIONS(1737), - [anon_sym_usize] = ACTIONS(1737), - [anon_sym_f32] = ACTIONS(1737), - [anon_sym_f64] = ACTIONS(1737), - [anon_sym_bool] = ACTIONS(1737), - [anon_sym_str] = ACTIONS(1737), - [anon_sym_char] = ACTIONS(1737), - [anon_sym_SQUOTE] = ACTIONS(1737), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_fn] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_impl] = ACTIONS(1737), - [anon_sym_let] = ACTIONS(1737), - [anon_sym_loop] = ACTIONS(1737), - [anon_sym_match] = ACTIONS(1737), - [anon_sym_mod] = ACTIONS(1737), - [anon_sym_pub] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_trait] = ACTIONS(1737), - [anon_sym_type] = ACTIONS(1737), - [anon_sym_union] = ACTIONS(1737), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_use] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_DOT_DOT] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_yield] = ACTIONS(1737), - [anon_sym_move] = ACTIONS(1737), - [sym_integer_literal] = ACTIONS(1735), - [aux_sym_string_literal_token1] = ACTIONS(1735), - [sym_char_literal] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1737), - [anon_sym_false] = ACTIONS(1737), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1737), - [sym_super] = ACTIONS(1737), - [sym_crate] = ACTIONS(1737), - [sym_metavariable] = ACTIONS(1735), - [sym_raw_string_literal] = ACTIONS(1735), - [sym_float_literal] = ACTIONS(1735), + [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(1739), - [sym_identifier] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_macro_rules_BANG] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1739), - [anon_sym_u8] = ACTIONS(1741), - [anon_sym_i8] = ACTIONS(1741), - [anon_sym_u16] = ACTIONS(1741), - [anon_sym_i16] = ACTIONS(1741), - [anon_sym_u32] = ACTIONS(1741), - [anon_sym_i32] = ACTIONS(1741), - [anon_sym_u64] = ACTIONS(1741), - [anon_sym_i64] = ACTIONS(1741), - [anon_sym_u128] = ACTIONS(1741), - [anon_sym_i128] = ACTIONS(1741), - [anon_sym_isize] = ACTIONS(1741), - [anon_sym_usize] = ACTIONS(1741), - [anon_sym_f32] = ACTIONS(1741), - [anon_sym_f64] = ACTIONS(1741), - [anon_sym_bool] = ACTIONS(1741), - [anon_sym_str] = ACTIONS(1741), - [anon_sym_char] = ACTIONS(1741), - [anon_sym_SQUOTE] = ACTIONS(1741), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_default] = ACTIONS(1741), - [anon_sym_enum] = ACTIONS(1741), - [anon_sym_fn] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_impl] = ACTIONS(1741), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_loop] = ACTIONS(1741), - [anon_sym_match] = ACTIONS(1741), - [anon_sym_mod] = ACTIONS(1741), - [anon_sym_pub] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_static] = ACTIONS(1741), - [anon_sym_struct] = ACTIONS(1741), - [anon_sym_trait] = ACTIONS(1741), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_union] = ACTIONS(1741), - [anon_sym_unsafe] = ACTIONS(1741), - [anon_sym_use] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(1739), - [anon_sym_BANG] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_yield] = ACTIONS(1741), - [anon_sym_move] = ACTIONS(1741), - [sym_integer_literal] = ACTIONS(1739), - [aux_sym_string_literal_token1] = ACTIONS(1739), - [sym_char_literal] = ACTIONS(1739), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1741), - [sym_super] = ACTIONS(1741), - [sym_crate] = ACTIONS(1741), - [sym_metavariable] = ACTIONS(1739), - [sym_raw_string_literal] = ACTIONS(1739), - [sym_float_literal] = ACTIONS(1739), + [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(1743), - [sym_identifier] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_macro_rules_BANG] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_u8] = ACTIONS(1745), - [anon_sym_i8] = ACTIONS(1745), - [anon_sym_u16] = ACTIONS(1745), - [anon_sym_i16] = ACTIONS(1745), - [anon_sym_u32] = ACTIONS(1745), - [anon_sym_i32] = ACTIONS(1745), - [anon_sym_u64] = ACTIONS(1745), - [anon_sym_i64] = ACTIONS(1745), - [anon_sym_u128] = ACTIONS(1745), - [anon_sym_i128] = ACTIONS(1745), - [anon_sym_isize] = ACTIONS(1745), - [anon_sym_usize] = ACTIONS(1745), - [anon_sym_f32] = ACTIONS(1745), - [anon_sym_f64] = ACTIONS(1745), - [anon_sym_bool] = ACTIONS(1745), - [anon_sym_str] = ACTIONS(1745), - [anon_sym_char] = ACTIONS(1745), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_enum] = ACTIONS(1745), - [anon_sym_fn] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_impl] = ACTIONS(1745), - [anon_sym_let] = ACTIONS(1745), - [anon_sym_loop] = ACTIONS(1745), - [anon_sym_match] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1745), - [anon_sym_pub] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1745), - [anon_sym_struct] = ACTIONS(1745), - [anon_sym_trait] = ACTIONS(1745), - [anon_sym_type] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_unsafe] = ACTIONS(1745), - [anon_sym_use] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(1743), - [anon_sym_BANG] = ACTIONS(1743), - [anon_sym_extern] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_COLON_COLON] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_DOT_DOT] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_yield] = ACTIONS(1745), - [anon_sym_move] = ACTIONS(1745), - [sym_integer_literal] = ACTIONS(1743), - [aux_sym_string_literal_token1] = ACTIONS(1743), - [sym_char_literal] = ACTIONS(1743), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1745), - [sym_super] = ACTIONS(1745), - [sym_crate] = ACTIONS(1745), - [sym_metavariable] = ACTIONS(1743), - [sym_raw_string_literal] = ACTIONS(1743), - [sym_float_literal] = ACTIONS(1743), + [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(1747), - [sym_identifier] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_macro_rules_BANG] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1747), - [anon_sym_u8] = ACTIONS(1749), - [anon_sym_i8] = ACTIONS(1749), - [anon_sym_u16] = ACTIONS(1749), - [anon_sym_i16] = ACTIONS(1749), - [anon_sym_u32] = ACTIONS(1749), - [anon_sym_i32] = ACTIONS(1749), - [anon_sym_u64] = ACTIONS(1749), - [anon_sym_i64] = ACTIONS(1749), - [anon_sym_u128] = ACTIONS(1749), - [anon_sym_i128] = ACTIONS(1749), - [anon_sym_isize] = ACTIONS(1749), - [anon_sym_usize] = ACTIONS(1749), - [anon_sym_f32] = ACTIONS(1749), - [anon_sym_f64] = ACTIONS(1749), - [anon_sym_bool] = ACTIONS(1749), - [anon_sym_str] = ACTIONS(1749), - [anon_sym_char] = ACTIONS(1749), - [anon_sym_SQUOTE] = ACTIONS(1749), - [anon_sym_async] = ACTIONS(1749), - [anon_sym_break] = ACTIONS(1749), - [anon_sym_const] = ACTIONS(1749), - [anon_sym_continue] = ACTIONS(1749), - [anon_sym_default] = ACTIONS(1749), - [anon_sym_enum] = ACTIONS(1749), - [anon_sym_fn] = ACTIONS(1749), - [anon_sym_for] = ACTIONS(1749), - [anon_sym_if] = ACTIONS(1749), - [anon_sym_impl] = ACTIONS(1749), - [anon_sym_let] = ACTIONS(1749), - [anon_sym_loop] = ACTIONS(1749), - [anon_sym_match] = ACTIONS(1749), - [anon_sym_mod] = ACTIONS(1749), - [anon_sym_pub] = ACTIONS(1749), - [anon_sym_return] = ACTIONS(1749), - [anon_sym_static] = ACTIONS(1749), - [anon_sym_struct] = ACTIONS(1749), - [anon_sym_trait] = ACTIONS(1749), - [anon_sym_type] = ACTIONS(1749), - [anon_sym_union] = ACTIONS(1749), - [anon_sym_unsafe] = ACTIONS(1749), - [anon_sym_use] = ACTIONS(1749), - [anon_sym_while] = ACTIONS(1749), - [anon_sym_POUND] = ACTIONS(1747), - [anon_sym_BANG] = ACTIONS(1747), - [anon_sym_extern] = ACTIONS(1749), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_COLON_COLON] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_yield] = ACTIONS(1749), - [anon_sym_move] = ACTIONS(1749), - [sym_integer_literal] = ACTIONS(1747), - [aux_sym_string_literal_token1] = ACTIONS(1747), - [sym_char_literal] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1749), - [anon_sym_false] = ACTIONS(1749), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1749), - [sym_super] = ACTIONS(1749), - [sym_crate] = ACTIONS(1749), - [sym_metavariable] = ACTIONS(1747), - [sym_raw_string_literal] = ACTIONS(1747), - [sym_float_literal] = ACTIONS(1747), + [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(1751), - [sym_identifier] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_macro_rules_BANG] = ACTIONS(1751), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_LBRACE] = ACTIONS(1751), - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_LBRACK] = ACTIONS(1751), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_u8] = ACTIONS(1753), - [anon_sym_i8] = ACTIONS(1753), - [anon_sym_u16] = ACTIONS(1753), - [anon_sym_i16] = ACTIONS(1753), - [anon_sym_u32] = ACTIONS(1753), - [anon_sym_i32] = ACTIONS(1753), - [anon_sym_u64] = ACTIONS(1753), - [anon_sym_i64] = ACTIONS(1753), - [anon_sym_u128] = ACTIONS(1753), - [anon_sym_i128] = ACTIONS(1753), - [anon_sym_isize] = ACTIONS(1753), - [anon_sym_usize] = ACTIONS(1753), - [anon_sym_f32] = ACTIONS(1753), - [anon_sym_f64] = ACTIONS(1753), - [anon_sym_bool] = ACTIONS(1753), - [anon_sym_str] = ACTIONS(1753), - [anon_sym_char] = ACTIONS(1753), - [anon_sym_SQUOTE] = ACTIONS(1753), - [anon_sym_async] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_fn] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_impl] = ACTIONS(1753), - [anon_sym_let] = ACTIONS(1753), - [anon_sym_loop] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1753), - [anon_sym_mod] = ACTIONS(1753), - [anon_sym_pub] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_static] = ACTIONS(1753), - [anon_sym_struct] = ACTIONS(1753), - [anon_sym_trait] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_union] = ACTIONS(1753), - [anon_sym_unsafe] = ACTIONS(1753), - [anon_sym_use] = ACTIONS(1753), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_POUND] = ACTIONS(1751), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_extern] = ACTIONS(1753), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_COLON_COLON] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_DOT_DOT] = ACTIONS(1751), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_yield] = ACTIONS(1753), - [anon_sym_move] = ACTIONS(1753), - [sym_integer_literal] = ACTIONS(1751), - [aux_sym_string_literal_token1] = ACTIONS(1751), - [sym_char_literal] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1753), - [anon_sym_false] = ACTIONS(1753), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1753), - [sym_super] = ACTIONS(1753), - [sym_crate] = ACTIONS(1753), - [sym_metavariable] = ACTIONS(1751), - [sym_raw_string_literal] = ACTIONS(1751), - [sym_float_literal] = ACTIONS(1751), + [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(1755), - [sym_identifier] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym_macro_rules_BANG] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_u8] = ACTIONS(1757), - [anon_sym_i8] = ACTIONS(1757), - [anon_sym_u16] = ACTIONS(1757), - [anon_sym_i16] = ACTIONS(1757), - [anon_sym_u32] = ACTIONS(1757), - [anon_sym_i32] = ACTIONS(1757), - [anon_sym_u64] = ACTIONS(1757), - [anon_sym_i64] = ACTIONS(1757), - [anon_sym_u128] = ACTIONS(1757), - [anon_sym_i128] = ACTIONS(1757), - [anon_sym_isize] = ACTIONS(1757), - [anon_sym_usize] = ACTIONS(1757), - [anon_sym_f32] = ACTIONS(1757), - [anon_sym_f64] = ACTIONS(1757), - [anon_sym_bool] = ACTIONS(1757), - [anon_sym_str] = ACTIONS(1757), - [anon_sym_char] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(1757), - [anon_sym_async] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_default] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [anon_sym_fn] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_impl] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_mod] = ACTIONS(1757), - [anon_sym_pub] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_static] = ACTIONS(1757), - [anon_sym_struct] = ACTIONS(1757), - [anon_sym_trait] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_unsafe] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(1755), - [anon_sym_BANG] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1755), - [anon_sym_COLON_COLON] = ACTIONS(1755), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_PIPE] = ACTIONS(1755), - [anon_sym_yield] = ACTIONS(1757), - [anon_sym_move] = ACTIONS(1757), - [sym_integer_literal] = ACTIONS(1755), - [aux_sym_string_literal_token1] = ACTIONS(1755), - [sym_char_literal] = ACTIONS(1755), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1757), - [sym_super] = ACTIONS(1757), - [sym_crate] = ACTIONS(1757), - [sym_metavariable] = ACTIONS(1755), - [sym_raw_string_literal] = ACTIONS(1755), - [sym_float_literal] = ACTIONS(1755), + [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(1759), - [sym_identifier] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_macro_rules_BANG] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_u8] = ACTIONS(1761), - [anon_sym_i8] = ACTIONS(1761), - [anon_sym_u16] = ACTIONS(1761), - [anon_sym_i16] = ACTIONS(1761), - [anon_sym_u32] = ACTIONS(1761), - [anon_sym_i32] = ACTIONS(1761), - [anon_sym_u64] = ACTIONS(1761), - [anon_sym_i64] = ACTIONS(1761), - [anon_sym_u128] = ACTIONS(1761), - [anon_sym_i128] = ACTIONS(1761), - [anon_sym_isize] = ACTIONS(1761), - [anon_sym_usize] = ACTIONS(1761), - [anon_sym_f32] = ACTIONS(1761), - [anon_sym_f64] = ACTIONS(1761), - [anon_sym_bool] = ACTIONS(1761), - [anon_sym_str] = ACTIONS(1761), - [anon_sym_char] = ACTIONS(1761), - [anon_sym_SQUOTE] = ACTIONS(1761), - [anon_sym_async] = ACTIONS(1761), - [anon_sym_break] = ACTIONS(1761), - [anon_sym_const] = ACTIONS(1761), - [anon_sym_continue] = ACTIONS(1761), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_enum] = ACTIONS(1761), - [anon_sym_fn] = ACTIONS(1761), - [anon_sym_for] = ACTIONS(1761), - [anon_sym_if] = ACTIONS(1761), - [anon_sym_impl] = ACTIONS(1761), - [anon_sym_let] = ACTIONS(1761), - [anon_sym_loop] = ACTIONS(1761), - [anon_sym_match] = ACTIONS(1761), - [anon_sym_mod] = ACTIONS(1761), - [anon_sym_pub] = ACTIONS(1761), - [anon_sym_return] = ACTIONS(1761), - [anon_sym_static] = ACTIONS(1761), - [anon_sym_struct] = ACTIONS(1761), - [anon_sym_trait] = ACTIONS(1761), - [anon_sym_type] = ACTIONS(1761), - [anon_sym_union] = ACTIONS(1761), - [anon_sym_unsafe] = ACTIONS(1761), - [anon_sym_use] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(1759), - [anon_sym_BANG] = ACTIONS(1759), - [anon_sym_extern] = ACTIONS(1761), - [anon_sym_LT] = ACTIONS(1759), - [anon_sym_COLON_COLON] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_yield] = ACTIONS(1761), - [anon_sym_move] = ACTIONS(1761), - [sym_integer_literal] = ACTIONS(1759), - [aux_sym_string_literal_token1] = ACTIONS(1759), - [sym_char_literal] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1761), - [anon_sym_false] = ACTIONS(1761), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1761), - [sym_super] = ACTIONS(1761), - [sym_crate] = ACTIONS(1761), - [sym_metavariable] = ACTIONS(1759), - [sym_raw_string_literal] = ACTIONS(1759), - [sym_float_literal] = ACTIONS(1759), + [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(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_macro_rules_BANG] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_u8] = ACTIONS(1765), - [anon_sym_i8] = ACTIONS(1765), - [anon_sym_u16] = ACTIONS(1765), - [anon_sym_i16] = ACTIONS(1765), - [anon_sym_u32] = ACTIONS(1765), - [anon_sym_i32] = ACTIONS(1765), - [anon_sym_u64] = ACTIONS(1765), - [anon_sym_i64] = ACTIONS(1765), - [anon_sym_u128] = ACTIONS(1765), - [anon_sym_i128] = ACTIONS(1765), - [anon_sym_isize] = ACTIONS(1765), - [anon_sym_usize] = ACTIONS(1765), - [anon_sym_f32] = ACTIONS(1765), - [anon_sym_f64] = ACTIONS(1765), - [anon_sym_bool] = ACTIONS(1765), - [anon_sym_str] = ACTIONS(1765), - [anon_sym_char] = ACTIONS(1765), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_async] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_default] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_impl] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_mod] = ACTIONS(1765), - [anon_sym_pub] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_static] = ACTIONS(1765), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_trait] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_COLON_COLON] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_yield] = ACTIONS(1765), - [anon_sym_move] = ACTIONS(1765), - [sym_integer_literal] = ACTIONS(1763), - [aux_sym_string_literal_token1] = ACTIONS(1763), - [sym_char_literal] = ACTIONS(1763), - [anon_sym_true] = ACTIONS(1765), - [anon_sym_false] = ACTIONS(1765), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1765), - [sym_super] = ACTIONS(1765), - [sym_crate] = ACTIONS(1765), - [sym_metavariable] = ACTIONS(1763), - [sym_raw_string_literal] = ACTIONS(1763), - [sym_float_literal] = ACTIONS(1763), + [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(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_macro_rules_BANG] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_u8] = ACTIONS(1769), - [anon_sym_i8] = ACTIONS(1769), - [anon_sym_u16] = ACTIONS(1769), - [anon_sym_i16] = ACTIONS(1769), - [anon_sym_u32] = ACTIONS(1769), - [anon_sym_i32] = ACTIONS(1769), - [anon_sym_u64] = ACTIONS(1769), - [anon_sym_i64] = ACTIONS(1769), - [anon_sym_u128] = ACTIONS(1769), - [anon_sym_i128] = ACTIONS(1769), - [anon_sym_isize] = ACTIONS(1769), - [anon_sym_usize] = ACTIONS(1769), - [anon_sym_f32] = ACTIONS(1769), - [anon_sym_f64] = ACTIONS(1769), - [anon_sym_bool] = ACTIONS(1769), - [anon_sym_str] = ACTIONS(1769), - [anon_sym_char] = ACTIONS(1769), - [anon_sym_SQUOTE] = ACTIONS(1769), - [anon_sym_async] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [anon_sym_fn] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_impl] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_pub] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_static] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_trait] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_union] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(1767), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_COLON_COLON] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_yield] = ACTIONS(1769), - [anon_sym_move] = ACTIONS(1769), - [sym_integer_literal] = ACTIONS(1767), - [aux_sym_string_literal_token1] = ACTIONS(1767), - [sym_char_literal] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1769), - [anon_sym_false] = ACTIONS(1769), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1769), - [sym_super] = ACTIONS(1769), - [sym_crate] = ACTIONS(1769), - [sym_metavariable] = ACTIONS(1767), - [sym_raw_string_literal] = ACTIONS(1767), - [sym_float_literal] = ACTIONS(1767), + [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(1771), - [sym_identifier] = ACTIONS(1773), - [anon_sym_SEMI] = ACTIONS(1771), - [anon_sym_macro_rules_BANG] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1771), - [anon_sym_u8] = ACTIONS(1773), - [anon_sym_i8] = ACTIONS(1773), - [anon_sym_u16] = ACTIONS(1773), - [anon_sym_i16] = ACTIONS(1773), - [anon_sym_u32] = ACTIONS(1773), - [anon_sym_i32] = ACTIONS(1773), - [anon_sym_u64] = ACTIONS(1773), - [anon_sym_i64] = ACTIONS(1773), - [anon_sym_u128] = ACTIONS(1773), - [anon_sym_i128] = ACTIONS(1773), - [anon_sym_isize] = ACTIONS(1773), - [anon_sym_usize] = ACTIONS(1773), - [anon_sym_f32] = ACTIONS(1773), - [anon_sym_f64] = ACTIONS(1773), - [anon_sym_bool] = ACTIONS(1773), - [anon_sym_str] = ACTIONS(1773), - [anon_sym_char] = ACTIONS(1773), - [anon_sym_SQUOTE] = ACTIONS(1773), - [anon_sym_async] = ACTIONS(1773), - [anon_sym_break] = ACTIONS(1773), - [anon_sym_const] = ACTIONS(1773), - [anon_sym_continue] = ACTIONS(1773), - [anon_sym_default] = ACTIONS(1773), - [anon_sym_enum] = ACTIONS(1773), - [anon_sym_fn] = ACTIONS(1773), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_impl] = ACTIONS(1773), - [anon_sym_let] = ACTIONS(1773), - [anon_sym_loop] = ACTIONS(1773), - [anon_sym_match] = ACTIONS(1773), - [anon_sym_mod] = ACTIONS(1773), - [anon_sym_pub] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(1773), - [anon_sym_static] = ACTIONS(1773), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_trait] = ACTIONS(1773), - [anon_sym_type] = ACTIONS(1773), - [anon_sym_union] = ACTIONS(1773), - [anon_sym_unsafe] = ACTIONS(1773), - [anon_sym_use] = ACTIONS(1773), - [anon_sym_while] = ACTIONS(1773), - [anon_sym_POUND] = ACTIONS(1771), - [anon_sym_BANG] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1773), - [anon_sym_LT] = ACTIONS(1771), - [anon_sym_COLON_COLON] = ACTIONS(1771), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_PIPE] = ACTIONS(1771), - [anon_sym_yield] = ACTIONS(1773), - [anon_sym_move] = ACTIONS(1773), - [sym_integer_literal] = ACTIONS(1771), - [aux_sym_string_literal_token1] = ACTIONS(1771), - [sym_char_literal] = ACTIONS(1771), - [anon_sym_true] = ACTIONS(1773), - [anon_sym_false] = ACTIONS(1773), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1773), - [sym_super] = ACTIONS(1773), - [sym_crate] = ACTIONS(1773), - [sym_metavariable] = ACTIONS(1771), - [sym_raw_string_literal] = ACTIONS(1771), - [sym_float_literal] = ACTIONS(1771), + [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(1775), - [sym_identifier] = ACTIONS(1777), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_macro_rules_BANG] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1775), - [anon_sym_RBRACE] = ACTIONS(1775), - [anon_sym_LBRACK] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_u8] = ACTIONS(1777), - [anon_sym_i8] = ACTIONS(1777), - [anon_sym_u16] = ACTIONS(1777), - [anon_sym_i16] = ACTIONS(1777), - [anon_sym_u32] = ACTIONS(1777), - [anon_sym_i32] = ACTIONS(1777), - [anon_sym_u64] = ACTIONS(1777), - [anon_sym_i64] = ACTIONS(1777), - [anon_sym_u128] = ACTIONS(1777), - [anon_sym_i128] = ACTIONS(1777), - [anon_sym_isize] = ACTIONS(1777), - [anon_sym_usize] = ACTIONS(1777), - [anon_sym_f32] = ACTIONS(1777), - [anon_sym_f64] = ACTIONS(1777), - [anon_sym_bool] = ACTIONS(1777), - [anon_sym_str] = ACTIONS(1777), - [anon_sym_char] = ACTIONS(1777), - [anon_sym_SQUOTE] = ACTIONS(1777), - [anon_sym_async] = ACTIONS(1777), - [anon_sym_break] = ACTIONS(1777), - [anon_sym_const] = ACTIONS(1777), - [anon_sym_continue] = ACTIONS(1777), - [anon_sym_default] = ACTIONS(1777), - [anon_sym_enum] = ACTIONS(1777), - [anon_sym_fn] = ACTIONS(1777), - [anon_sym_for] = ACTIONS(1777), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_impl] = ACTIONS(1777), - [anon_sym_let] = ACTIONS(1777), - [anon_sym_loop] = ACTIONS(1777), - [anon_sym_match] = ACTIONS(1777), - [anon_sym_mod] = ACTIONS(1777), - [anon_sym_pub] = ACTIONS(1777), - [anon_sym_return] = ACTIONS(1777), - [anon_sym_static] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1777), - [anon_sym_trait] = ACTIONS(1777), - [anon_sym_type] = ACTIONS(1777), - [anon_sym_union] = ACTIONS(1777), - [anon_sym_unsafe] = ACTIONS(1777), - [anon_sym_use] = ACTIONS(1777), - [anon_sym_while] = ACTIONS(1777), - [anon_sym_POUND] = ACTIONS(1775), - [anon_sym_BANG] = ACTIONS(1775), - [anon_sym_extern] = ACTIONS(1777), - [anon_sym_LT] = ACTIONS(1775), - [anon_sym_COLON_COLON] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_DOT_DOT] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_PIPE] = ACTIONS(1775), - [anon_sym_yield] = ACTIONS(1777), - [anon_sym_move] = ACTIONS(1777), - [sym_integer_literal] = ACTIONS(1775), - [aux_sym_string_literal_token1] = ACTIONS(1775), - [sym_char_literal] = ACTIONS(1775), - [anon_sym_true] = ACTIONS(1777), - [anon_sym_false] = ACTIONS(1777), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1777), - [sym_super] = ACTIONS(1777), - [sym_crate] = ACTIONS(1777), - [sym_metavariable] = ACTIONS(1775), - [sym_raw_string_literal] = ACTIONS(1775), - [sym_float_literal] = ACTIONS(1775), + [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(1779), - [sym_identifier] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_macro_rules_BANG] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1779), - [anon_sym_u8] = ACTIONS(1781), - [anon_sym_i8] = ACTIONS(1781), - [anon_sym_u16] = ACTIONS(1781), - [anon_sym_i16] = ACTIONS(1781), - [anon_sym_u32] = ACTIONS(1781), - [anon_sym_i32] = ACTIONS(1781), - [anon_sym_u64] = ACTIONS(1781), - [anon_sym_i64] = ACTIONS(1781), - [anon_sym_u128] = ACTIONS(1781), - [anon_sym_i128] = ACTIONS(1781), - [anon_sym_isize] = ACTIONS(1781), - [anon_sym_usize] = ACTIONS(1781), - [anon_sym_f32] = ACTIONS(1781), - [anon_sym_f64] = ACTIONS(1781), - [anon_sym_bool] = ACTIONS(1781), - [anon_sym_str] = ACTIONS(1781), - [anon_sym_char] = ACTIONS(1781), - [anon_sym_SQUOTE] = ACTIONS(1781), - [anon_sym_async] = ACTIONS(1781), - [anon_sym_break] = ACTIONS(1781), - [anon_sym_const] = ACTIONS(1781), - [anon_sym_continue] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1781), - [anon_sym_enum] = ACTIONS(1781), - [anon_sym_fn] = ACTIONS(1781), - [anon_sym_for] = ACTIONS(1781), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_impl] = ACTIONS(1781), - [anon_sym_let] = ACTIONS(1781), - [anon_sym_loop] = ACTIONS(1781), - [anon_sym_match] = ACTIONS(1781), - [anon_sym_mod] = ACTIONS(1781), - [anon_sym_pub] = ACTIONS(1781), - [anon_sym_return] = ACTIONS(1781), - [anon_sym_static] = ACTIONS(1781), - [anon_sym_struct] = ACTIONS(1781), - [anon_sym_trait] = ACTIONS(1781), - [anon_sym_type] = ACTIONS(1781), - [anon_sym_union] = ACTIONS(1781), - [anon_sym_unsafe] = ACTIONS(1781), - [anon_sym_use] = ACTIONS(1781), - [anon_sym_while] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1781), - [anon_sym_LT] = ACTIONS(1779), - [anon_sym_COLON_COLON] = ACTIONS(1779), - [anon_sym_AMP] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(1781), - [anon_sym_move] = ACTIONS(1781), - [sym_integer_literal] = ACTIONS(1779), - [aux_sym_string_literal_token1] = ACTIONS(1779), - [sym_char_literal] = ACTIONS(1779), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1781), - [sym_super] = ACTIONS(1781), - [sym_crate] = ACTIONS(1781), - [sym_metavariable] = ACTIONS(1779), - [sym_raw_string_literal] = ACTIONS(1779), - [sym_float_literal] = ACTIONS(1779), + [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(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_macro_rules_BANG] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1783), - [anon_sym_u8] = ACTIONS(1785), - [anon_sym_i8] = ACTIONS(1785), - [anon_sym_u16] = ACTIONS(1785), - [anon_sym_i16] = ACTIONS(1785), - [anon_sym_u32] = ACTIONS(1785), - [anon_sym_i32] = ACTIONS(1785), - [anon_sym_u64] = ACTIONS(1785), - [anon_sym_i64] = ACTIONS(1785), - [anon_sym_u128] = ACTIONS(1785), - [anon_sym_i128] = ACTIONS(1785), - [anon_sym_isize] = ACTIONS(1785), - [anon_sym_usize] = ACTIONS(1785), - [anon_sym_f32] = ACTIONS(1785), - [anon_sym_f64] = ACTIONS(1785), - [anon_sym_bool] = ACTIONS(1785), - [anon_sym_str] = ACTIONS(1785), - [anon_sym_char] = ACTIONS(1785), - [anon_sym_SQUOTE] = ACTIONS(1785), - [anon_sym_async] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_default] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_impl] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_mod] = ACTIONS(1785), - [anon_sym_pub] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_static] = ACTIONS(1785), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_trait] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(1783), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_COLON_COLON] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(1783), - [anon_sym_yield] = ACTIONS(1785), - [anon_sym_move] = ACTIONS(1785), - [sym_integer_literal] = ACTIONS(1783), - [aux_sym_string_literal_token1] = ACTIONS(1783), - [sym_char_literal] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1785), - [sym_super] = ACTIONS(1785), - [sym_crate] = ACTIONS(1785), - [sym_metavariable] = ACTIONS(1783), - [sym_raw_string_literal] = ACTIONS(1783), - [sym_float_literal] = ACTIONS(1783), + [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(1787), - [sym_identifier] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_macro_rules_BANG] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_STAR] = ACTIONS(1787), - [anon_sym_u8] = ACTIONS(1789), - [anon_sym_i8] = ACTIONS(1789), - [anon_sym_u16] = ACTIONS(1789), - [anon_sym_i16] = ACTIONS(1789), - [anon_sym_u32] = ACTIONS(1789), - [anon_sym_i32] = ACTIONS(1789), - [anon_sym_u64] = ACTIONS(1789), - [anon_sym_i64] = ACTIONS(1789), - [anon_sym_u128] = ACTIONS(1789), - [anon_sym_i128] = ACTIONS(1789), - [anon_sym_isize] = ACTIONS(1789), - [anon_sym_usize] = ACTIONS(1789), - [anon_sym_f32] = ACTIONS(1789), - [anon_sym_f64] = ACTIONS(1789), - [anon_sym_bool] = ACTIONS(1789), - [anon_sym_str] = ACTIONS(1789), - [anon_sym_char] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_break] = ACTIONS(1789), - [anon_sym_const] = ACTIONS(1789), - [anon_sym_continue] = ACTIONS(1789), - [anon_sym_default] = ACTIONS(1789), - [anon_sym_enum] = ACTIONS(1789), - [anon_sym_fn] = ACTIONS(1789), - [anon_sym_for] = ACTIONS(1789), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_impl] = ACTIONS(1789), - [anon_sym_let] = ACTIONS(1789), - [anon_sym_loop] = ACTIONS(1789), - [anon_sym_match] = ACTIONS(1789), - [anon_sym_mod] = ACTIONS(1789), - [anon_sym_pub] = ACTIONS(1789), - [anon_sym_return] = ACTIONS(1789), - [anon_sym_static] = ACTIONS(1789), - [anon_sym_struct] = ACTIONS(1789), - [anon_sym_trait] = ACTIONS(1789), - [anon_sym_type] = ACTIONS(1789), - [anon_sym_union] = ACTIONS(1789), - [anon_sym_unsafe] = ACTIONS(1789), - [anon_sym_use] = ACTIONS(1789), - [anon_sym_while] = ACTIONS(1789), - [anon_sym_POUND] = ACTIONS(1787), - [anon_sym_BANG] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1789), - [anon_sym_LT] = ACTIONS(1787), - [anon_sym_COLON_COLON] = ACTIONS(1787), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_yield] = ACTIONS(1789), - [anon_sym_move] = ACTIONS(1789), - [sym_integer_literal] = ACTIONS(1787), - [aux_sym_string_literal_token1] = ACTIONS(1787), - [sym_char_literal] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1789), - [anon_sym_false] = ACTIONS(1789), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1789), - [sym_super] = ACTIONS(1789), - [sym_crate] = ACTIONS(1789), - [sym_metavariable] = ACTIONS(1787), - [sym_raw_string_literal] = ACTIONS(1787), - [sym_float_literal] = ACTIONS(1787), + [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(1791), - [sym_identifier] = ACTIONS(1793), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_macro_rules_BANG] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(1791), - [anon_sym_u8] = ACTIONS(1793), - [anon_sym_i8] = ACTIONS(1793), - [anon_sym_u16] = ACTIONS(1793), - [anon_sym_i16] = ACTIONS(1793), - [anon_sym_u32] = ACTIONS(1793), - [anon_sym_i32] = ACTIONS(1793), - [anon_sym_u64] = ACTIONS(1793), - [anon_sym_i64] = ACTIONS(1793), - [anon_sym_u128] = ACTIONS(1793), - [anon_sym_i128] = ACTIONS(1793), - [anon_sym_isize] = ACTIONS(1793), - [anon_sym_usize] = ACTIONS(1793), - [anon_sym_f32] = ACTIONS(1793), - [anon_sym_f64] = ACTIONS(1793), - [anon_sym_bool] = ACTIONS(1793), - [anon_sym_str] = ACTIONS(1793), - [anon_sym_char] = ACTIONS(1793), - [anon_sym_SQUOTE] = ACTIONS(1793), - [anon_sym_async] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_default] = ACTIONS(1793), - [anon_sym_enum] = ACTIONS(1793), - [anon_sym_fn] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_impl] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_mod] = ACTIONS(1793), - [anon_sym_pub] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_static] = ACTIONS(1793), - [anon_sym_struct] = ACTIONS(1793), - [anon_sym_trait] = ACTIONS(1793), - [anon_sym_type] = ACTIONS(1793), - [anon_sym_union] = ACTIONS(1793), - [anon_sym_unsafe] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(1791), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_DOT_DOT] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1793), - [anon_sym_move] = ACTIONS(1793), - [sym_integer_literal] = ACTIONS(1791), - [aux_sym_string_literal_token1] = ACTIONS(1791), - [sym_char_literal] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1793), - [anon_sym_false] = ACTIONS(1793), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1793), - [sym_super] = ACTIONS(1793), - [sym_crate] = ACTIONS(1793), - [sym_metavariable] = ACTIONS(1791), - [sym_raw_string_literal] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), + [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] = { - [ts_builtin_sym_end] = ACTIONS(1795), - [sym_identifier] = ACTIONS(1797), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_macro_rules_BANG] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_u8] = ACTIONS(1797), - [anon_sym_i8] = ACTIONS(1797), - [anon_sym_u16] = ACTIONS(1797), - [anon_sym_i16] = ACTIONS(1797), - [anon_sym_u32] = ACTIONS(1797), - [anon_sym_i32] = ACTIONS(1797), - [anon_sym_u64] = ACTIONS(1797), - [anon_sym_i64] = ACTIONS(1797), - [anon_sym_u128] = ACTIONS(1797), - [anon_sym_i128] = ACTIONS(1797), - [anon_sym_isize] = ACTIONS(1797), - [anon_sym_usize] = ACTIONS(1797), - [anon_sym_f32] = ACTIONS(1797), - [anon_sym_f64] = ACTIONS(1797), - [anon_sym_bool] = ACTIONS(1797), - [anon_sym_str] = ACTIONS(1797), - [anon_sym_char] = ACTIONS(1797), - [anon_sym_SQUOTE] = ACTIONS(1797), - [anon_sym_async] = ACTIONS(1797), - [anon_sym_break] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1797), - [anon_sym_continue] = ACTIONS(1797), - [anon_sym_default] = ACTIONS(1797), - [anon_sym_enum] = ACTIONS(1797), - [anon_sym_fn] = ACTIONS(1797), - [anon_sym_for] = ACTIONS(1797), - [anon_sym_if] = ACTIONS(1797), - [anon_sym_impl] = ACTIONS(1797), - [anon_sym_let] = ACTIONS(1797), - [anon_sym_loop] = ACTIONS(1797), - [anon_sym_match] = ACTIONS(1797), - [anon_sym_mod] = ACTIONS(1797), - [anon_sym_pub] = ACTIONS(1797), - [anon_sym_return] = ACTIONS(1797), - [anon_sym_static] = ACTIONS(1797), - [anon_sym_struct] = ACTIONS(1797), - [anon_sym_trait] = ACTIONS(1797), - [anon_sym_type] = ACTIONS(1797), - [anon_sym_union] = ACTIONS(1797), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_use] = ACTIONS(1797), - [anon_sym_while] = ACTIONS(1797), - [anon_sym_POUND] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_extern] = ACTIONS(1797), - [anon_sym_LT] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1795), - [anon_sym_DASH] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_yield] = ACTIONS(1797), - [anon_sym_move] = ACTIONS(1797), - [sym_integer_literal] = ACTIONS(1795), - [aux_sym_string_literal_token1] = ACTIONS(1795), - [sym_char_literal] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1797), - [anon_sym_false] = ACTIONS(1797), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1797), - [sym_super] = ACTIONS(1797), - [sym_crate] = ACTIONS(1797), - [sym_metavariable] = ACTIONS(1795), - [sym_raw_string_literal] = ACTIONS(1795), - [sym_float_literal] = ACTIONS(1795), + [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(1799), - [sym_identifier] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_macro_rules_BANG] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_u8] = ACTIONS(1801), - [anon_sym_i8] = ACTIONS(1801), - [anon_sym_u16] = ACTIONS(1801), - [anon_sym_i16] = ACTIONS(1801), - [anon_sym_u32] = ACTIONS(1801), - [anon_sym_i32] = ACTIONS(1801), - [anon_sym_u64] = ACTIONS(1801), - [anon_sym_i64] = ACTIONS(1801), - [anon_sym_u128] = ACTIONS(1801), - [anon_sym_i128] = ACTIONS(1801), - [anon_sym_isize] = ACTIONS(1801), - [anon_sym_usize] = ACTIONS(1801), - [anon_sym_f32] = ACTIONS(1801), - [anon_sym_f64] = ACTIONS(1801), - [anon_sym_bool] = ACTIONS(1801), - [anon_sym_str] = ACTIONS(1801), - [anon_sym_char] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_async] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_default] = ACTIONS(1801), - [anon_sym_enum] = ACTIONS(1801), - [anon_sym_fn] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_impl] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_mod] = ACTIONS(1801), - [anon_sym_pub] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_struct] = ACTIONS(1801), - [anon_sym_trait] = ACTIONS(1801), - [anon_sym_type] = ACTIONS(1801), - [anon_sym_union] = ACTIONS(1801), - [anon_sym_unsafe] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(1799), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1799), - [anon_sym_COLON_COLON] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_DOT_DOT] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_PIPE] = ACTIONS(1799), - [anon_sym_yield] = ACTIONS(1801), - [anon_sym_move] = ACTIONS(1801), - [sym_integer_literal] = ACTIONS(1799), - [aux_sym_string_literal_token1] = ACTIONS(1799), - [sym_char_literal] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1801), - [sym_super] = ACTIONS(1801), - [sym_crate] = ACTIONS(1801), - [sym_metavariable] = ACTIONS(1799), - [sym_raw_string_literal] = ACTIONS(1799), - [sym_float_literal] = ACTIONS(1799), + [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(1803), - [sym_identifier] = ACTIONS(1805), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_macro_rules_BANG] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1803), - [anon_sym_u8] = ACTIONS(1805), - [anon_sym_i8] = ACTIONS(1805), - [anon_sym_u16] = ACTIONS(1805), - [anon_sym_i16] = ACTIONS(1805), - [anon_sym_u32] = ACTIONS(1805), - [anon_sym_i32] = ACTIONS(1805), - [anon_sym_u64] = ACTIONS(1805), - [anon_sym_i64] = ACTIONS(1805), - [anon_sym_u128] = ACTIONS(1805), - [anon_sym_i128] = ACTIONS(1805), - [anon_sym_isize] = ACTIONS(1805), - [anon_sym_usize] = ACTIONS(1805), - [anon_sym_f32] = ACTIONS(1805), - [anon_sym_f64] = ACTIONS(1805), - [anon_sym_bool] = ACTIONS(1805), - [anon_sym_str] = ACTIONS(1805), - [anon_sym_char] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(1805), - [anon_sym_async] = ACTIONS(1805), - [anon_sym_break] = ACTIONS(1805), - [anon_sym_const] = ACTIONS(1805), - [anon_sym_continue] = ACTIONS(1805), - [anon_sym_default] = ACTIONS(1805), - [anon_sym_enum] = ACTIONS(1805), - [anon_sym_fn] = ACTIONS(1805), - [anon_sym_for] = ACTIONS(1805), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_impl] = ACTIONS(1805), - [anon_sym_let] = ACTIONS(1805), - [anon_sym_loop] = ACTIONS(1805), - [anon_sym_match] = ACTIONS(1805), - [anon_sym_mod] = ACTIONS(1805), - [anon_sym_pub] = ACTIONS(1805), - [anon_sym_return] = ACTIONS(1805), - [anon_sym_static] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1805), - [anon_sym_trait] = ACTIONS(1805), - [anon_sym_type] = ACTIONS(1805), - [anon_sym_union] = ACTIONS(1805), - [anon_sym_unsafe] = ACTIONS(1805), - [anon_sym_use] = ACTIONS(1805), - [anon_sym_while] = ACTIONS(1805), - [anon_sym_POUND] = ACTIONS(1803), - [anon_sym_BANG] = ACTIONS(1803), - [anon_sym_extern] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_COLON_COLON] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_DOT_DOT] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_yield] = ACTIONS(1805), - [anon_sym_move] = ACTIONS(1805), - [sym_integer_literal] = ACTIONS(1803), - [aux_sym_string_literal_token1] = ACTIONS(1803), - [sym_char_literal] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1805), - [anon_sym_false] = ACTIONS(1805), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1805), - [sym_super] = ACTIONS(1805), - [sym_crate] = ACTIONS(1805), - [sym_metavariable] = ACTIONS(1803), - [sym_raw_string_literal] = ACTIONS(1803), - [sym_float_literal] = ACTIONS(1803), + [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(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1807), - [anon_sym_macro_rules_BANG] = ACTIONS(1807), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_u8] = ACTIONS(1809), - [anon_sym_i8] = ACTIONS(1809), - [anon_sym_u16] = ACTIONS(1809), - [anon_sym_i16] = ACTIONS(1809), - [anon_sym_u32] = ACTIONS(1809), - [anon_sym_i32] = ACTIONS(1809), - [anon_sym_u64] = ACTIONS(1809), - [anon_sym_i64] = ACTIONS(1809), - [anon_sym_u128] = ACTIONS(1809), - [anon_sym_i128] = ACTIONS(1809), - [anon_sym_isize] = ACTIONS(1809), - [anon_sym_usize] = ACTIONS(1809), - [anon_sym_f32] = ACTIONS(1809), - [anon_sym_f64] = ACTIONS(1809), - [anon_sym_bool] = ACTIONS(1809), - [anon_sym_str] = ACTIONS(1809), - [anon_sym_char] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_async] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_default] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_impl] = ACTIONS(1809), - [anon_sym_let] = ACTIONS(1809), - [anon_sym_loop] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_mod] = ACTIONS(1809), - [anon_sym_pub] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_trait] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_use] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_POUND] = ACTIONS(1807), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_extern] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1807), - [anon_sym_COLON_COLON] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_DOT_DOT] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_PIPE] = ACTIONS(1807), - [anon_sym_yield] = ACTIONS(1809), - [anon_sym_move] = ACTIONS(1809), - [sym_integer_literal] = ACTIONS(1807), - [aux_sym_string_literal_token1] = ACTIONS(1807), - [sym_char_literal] = ACTIONS(1807), - [anon_sym_true] = ACTIONS(1809), - [anon_sym_false] = ACTIONS(1809), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1809), - [sym_super] = ACTIONS(1809), - [sym_crate] = ACTIONS(1809), - [sym_metavariable] = ACTIONS(1807), - [sym_raw_string_literal] = ACTIONS(1807), - [sym_float_literal] = ACTIONS(1807), + [ts_builtin_sym_end] = ACTIONS(1768), + [sym_identifier] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_macro_rules_BANG] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_u8] = ACTIONS(1770), + [anon_sym_i8] = ACTIONS(1770), + [anon_sym_u16] = ACTIONS(1770), + [anon_sym_i16] = ACTIONS(1770), + [anon_sym_u32] = ACTIONS(1770), + [anon_sym_i32] = ACTIONS(1770), + [anon_sym_u64] = ACTIONS(1770), + [anon_sym_i64] = ACTIONS(1770), + [anon_sym_u128] = ACTIONS(1770), + [anon_sym_i128] = ACTIONS(1770), + [anon_sym_isize] = ACTIONS(1770), + [anon_sym_usize] = ACTIONS(1770), + [anon_sym_f32] = ACTIONS(1770), + [anon_sym_f64] = ACTIONS(1770), + [anon_sym_bool] = ACTIONS(1770), + [anon_sym_str] = ACTIONS(1770), + [anon_sym_char] = ACTIONS(1770), + [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_async] = ACTIONS(1770), + [anon_sym_break] = ACTIONS(1770), + [anon_sym_const] = ACTIONS(1770), + [anon_sym_continue] = ACTIONS(1770), + [anon_sym_default] = ACTIONS(1770), + [anon_sym_enum] = ACTIONS(1770), + [anon_sym_fn] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_impl] = ACTIONS(1770), + [anon_sym_let] = ACTIONS(1770), + [anon_sym_loop] = ACTIONS(1770), + [anon_sym_match] = ACTIONS(1770), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_pub] = ACTIONS(1770), + [anon_sym_return] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1770), + [anon_sym_struct] = ACTIONS(1770), + [anon_sym_trait] = ACTIONS(1770), + [anon_sym_type] = ACTIONS(1770), + [anon_sym_union] = ACTIONS(1770), + [anon_sym_unsafe] = ACTIONS(1770), + [anon_sym_use] = ACTIONS(1770), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_extern] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_yield] = ACTIONS(1770), + [anon_sym_move] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [aux_sym_string_literal_token1] = ACTIONS(1768), + [sym_char_literal] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1770), + [anon_sym_false] = ACTIONS(1770), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1770), + [sym_super] = ACTIONS(1770), + [sym_crate] = ACTIONS(1770), + [sym_metavariable] = ACTIONS(1768), + [sym_raw_string_literal] = ACTIONS(1768), + [sym_float_literal] = ACTIONS(1768), [sym_block_comment] = ACTIONS(3), }, [420] = { - [ts_builtin_sym_end] = ACTIONS(1811), - [sym_identifier] = ACTIONS(1813), - [anon_sym_SEMI] = ACTIONS(1811), - [anon_sym_macro_rules_BANG] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_u8] = ACTIONS(1813), - [anon_sym_i8] = ACTIONS(1813), - [anon_sym_u16] = ACTIONS(1813), - [anon_sym_i16] = ACTIONS(1813), - [anon_sym_u32] = ACTIONS(1813), - [anon_sym_i32] = ACTIONS(1813), - [anon_sym_u64] = ACTIONS(1813), - [anon_sym_i64] = ACTIONS(1813), - [anon_sym_u128] = ACTIONS(1813), - [anon_sym_i128] = ACTIONS(1813), - [anon_sym_isize] = ACTIONS(1813), - [anon_sym_usize] = ACTIONS(1813), - [anon_sym_f32] = ACTIONS(1813), - [anon_sym_f64] = ACTIONS(1813), - [anon_sym_bool] = ACTIONS(1813), - [anon_sym_str] = ACTIONS(1813), - [anon_sym_char] = ACTIONS(1813), - [anon_sym_SQUOTE] = ACTIONS(1813), - [anon_sym_async] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_default] = ACTIONS(1813), - [anon_sym_enum] = ACTIONS(1813), - [anon_sym_fn] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_impl] = ACTIONS(1813), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_loop] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_mod] = ACTIONS(1813), - [anon_sym_pub] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_static] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_trait] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1813), - [anon_sym_union] = ACTIONS(1813), - [anon_sym_unsafe] = ACTIONS(1813), - [anon_sym_use] = ACTIONS(1813), - [anon_sym_while] = ACTIONS(1813), - [anon_sym_POUND] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1811), - [anon_sym_extern] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1811), - [anon_sym_COLON_COLON] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_DOT_DOT] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_PIPE] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1813), - [anon_sym_move] = ACTIONS(1813), - [sym_integer_literal] = ACTIONS(1811), - [aux_sym_string_literal_token1] = ACTIONS(1811), - [sym_char_literal] = ACTIONS(1811), - [anon_sym_true] = ACTIONS(1813), - [anon_sym_false] = ACTIONS(1813), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1813), - [sym_super] = ACTIONS(1813), - [sym_crate] = ACTIONS(1813), - [sym_metavariable] = ACTIONS(1811), - [sym_raw_string_literal] = ACTIONS(1811), - [sym_float_literal] = ACTIONS(1811), + [ts_builtin_sym_end] = ACTIONS(1772), + [sym_identifier] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_macro_rules_BANG] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_u8] = ACTIONS(1774), + [anon_sym_i8] = ACTIONS(1774), + [anon_sym_u16] = ACTIONS(1774), + [anon_sym_i16] = ACTIONS(1774), + [anon_sym_u32] = ACTIONS(1774), + [anon_sym_i32] = ACTIONS(1774), + [anon_sym_u64] = ACTIONS(1774), + [anon_sym_i64] = ACTIONS(1774), + [anon_sym_u128] = ACTIONS(1774), + [anon_sym_i128] = ACTIONS(1774), + [anon_sym_isize] = ACTIONS(1774), + [anon_sym_usize] = ACTIONS(1774), + [anon_sym_f32] = ACTIONS(1774), + [anon_sym_f64] = ACTIONS(1774), + [anon_sym_bool] = ACTIONS(1774), + [anon_sym_str] = ACTIONS(1774), + [anon_sym_char] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_async] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_const] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1774), + [anon_sym_enum] = ACTIONS(1774), + [anon_sym_fn] = ACTIONS(1774), + [anon_sym_for] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_impl] = ACTIONS(1774), + [anon_sym_let] = ACTIONS(1774), + [anon_sym_loop] = ACTIONS(1774), + [anon_sym_match] = ACTIONS(1774), + [anon_sym_mod] = ACTIONS(1774), + [anon_sym_pub] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1774), + [anon_sym_struct] = ACTIONS(1774), + [anon_sym_trait] = ACTIONS(1774), + [anon_sym_type] = ACTIONS(1774), + [anon_sym_union] = ACTIONS(1774), + [anon_sym_unsafe] = ACTIONS(1774), + [anon_sym_use] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_BANG] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_COLON_COLON] = ACTIONS(1772), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym_DOT_DOT] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_yield] = ACTIONS(1774), + [anon_sym_move] = ACTIONS(1774), + [sym_integer_literal] = ACTIONS(1772), + [aux_sym_string_literal_token1] = ACTIONS(1772), + [sym_char_literal] = ACTIONS(1772), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1774), + [sym_super] = ACTIONS(1774), + [sym_crate] = ACTIONS(1774), + [sym_metavariable] = ACTIONS(1772), + [sym_raw_string_literal] = ACTIONS(1772), + [sym_float_literal] = ACTIONS(1772), [sym_block_comment] = ACTIONS(3), }, [421] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [sym_identifier] = ACTIONS(1817), - [anon_sym_SEMI] = ACTIONS(1815), - [anon_sym_macro_rules_BANG] = ACTIONS(1815), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1815), - [anon_sym_RBRACE] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_u8] = ACTIONS(1817), - [anon_sym_i8] = ACTIONS(1817), - [anon_sym_u16] = ACTIONS(1817), - [anon_sym_i16] = ACTIONS(1817), - [anon_sym_u32] = ACTIONS(1817), - [anon_sym_i32] = ACTIONS(1817), - [anon_sym_u64] = ACTIONS(1817), - [anon_sym_i64] = ACTIONS(1817), - [anon_sym_u128] = ACTIONS(1817), - [anon_sym_i128] = ACTIONS(1817), - [anon_sym_isize] = ACTIONS(1817), - [anon_sym_usize] = ACTIONS(1817), - [anon_sym_f32] = ACTIONS(1817), - [anon_sym_f64] = ACTIONS(1817), - [anon_sym_bool] = ACTIONS(1817), - [anon_sym_str] = ACTIONS(1817), - [anon_sym_char] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_async] = ACTIONS(1817), - [anon_sym_break] = ACTIONS(1817), - [anon_sym_const] = ACTIONS(1817), - [anon_sym_continue] = ACTIONS(1817), - [anon_sym_default] = ACTIONS(1817), - [anon_sym_enum] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_for] = ACTIONS(1817), - [anon_sym_if] = ACTIONS(1817), - [anon_sym_impl] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1817), - [anon_sym_loop] = ACTIONS(1817), - [anon_sym_match] = ACTIONS(1817), - [anon_sym_mod] = ACTIONS(1817), - [anon_sym_pub] = ACTIONS(1817), - [anon_sym_return] = ACTIONS(1817), - [anon_sym_static] = ACTIONS(1817), - [anon_sym_struct] = ACTIONS(1817), - [anon_sym_trait] = ACTIONS(1817), - [anon_sym_type] = ACTIONS(1817), - [anon_sym_union] = ACTIONS(1817), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_use] = ACTIONS(1817), - [anon_sym_while] = ACTIONS(1817), - [anon_sym_POUND] = ACTIONS(1815), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_extern] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1815), - [anon_sym_COLON_COLON] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1815), - [anon_sym_yield] = ACTIONS(1817), - [anon_sym_move] = ACTIONS(1817), - [sym_integer_literal] = ACTIONS(1815), - [aux_sym_string_literal_token1] = ACTIONS(1815), - [sym_char_literal] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1817), - [sym_super] = ACTIONS(1817), - [sym_crate] = ACTIONS(1817), - [sym_metavariable] = ACTIONS(1815), - [sym_raw_string_literal] = ACTIONS(1815), - [sym_float_literal] = ACTIONS(1815), + [ts_builtin_sym_end] = ACTIONS(1776), + [sym_identifier] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_macro_rules_BANG] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_u8] = ACTIONS(1778), + [anon_sym_i8] = ACTIONS(1778), + [anon_sym_u16] = ACTIONS(1778), + [anon_sym_i16] = ACTIONS(1778), + [anon_sym_u32] = ACTIONS(1778), + [anon_sym_i32] = ACTIONS(1778), + [anon_sym_u64] = ACTIONS(1778), + [anon_sym_i64] = ACTIONS(1778), + [anon_sym_u128] = ACTIONS(1778), + [anon_sym_i128] = ACTIONS(1778), + [anon_sym_isize] = ACTIONS(1778), + [anon_sym_usize] = ACTIONS(1778), + [anon_sym_f32] = ACTIONS(1778), + [anon_sym_f64] = ACTIONS(1778), + [anon_sym_bool] = ACTIONS(1778), + [anon_sym_str] = ACTIONS(1778), + [anon_sym_char] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(1778), + [anon_sym_async] = ACTIONS(1778), + [anon_sym_break] = ACTIONS(1778), + [anon_sym_const] = ACTIONS(1778), + [anon_sym_continue] = ACTIONS(1778), + [anon_sym_default] = ACTIONS(1778), + [anon_sym_enum] = ACTIONS(1778), + [anon_sym_fn] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1778), + [anon_sym_if] = ACTIONS(1778), + [anon_sym_impl] = ACTIONS(1778), + [anon_sym_let] = ACTIONS(1778), + [anon_sym_loop] = ACTIONS(1778), + [anon_sym_match] = ACTIONS(1778), + [anon_sym_mod] = ACTIONS(1778), + [anon_sym_pub] = ACTIONS(1778), + [anon_sym_return] = ACTIONS(1778), + [anon_sym_static] = ACTIONS(1778), + [anon_sym_struct] = ACTIONS(1778), + [anon_sym_trait] = ACTIONS(1778), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_union] = ACTIONS(1778), + [anon_sym_unsafe] = ACTIONS(1778), + [anon_sym_use] = ACTIONS(1778), + [anon_sym_while] = ACTIONS(1778), + [anon_sym_POUND] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1776), + [anon_sym_extern] = ACTIONS(1778), + [anon_sym_LT] = ACTIONS(1776), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(1776), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1776), + [anon_sym_yield] = ACTIONS(1778), + [anon_sym_move] = ACTIONS(1778), + [sym_integer_literal] = ACTIONS(1776), + [aux_sym_string_literal_token1] = ACTIONS(1776), + [sym_char_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1778), + [anon_sym_false] = ACTIONS(1778), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1778), + [sym_super] = ACTIONS(1778), + [sym_crate] = ACTIONS(1778), + [sym_metavariable] = ACTIONS(1776), + [sym_raw_string_literal] = ACTIONS(1776), + [sym_float_literal] = ACTIONS(1776), [sym_block_comment] = ACTIONS(3), }, [422] = { - [ts_builtin_sym_end] = ACTIONS(1819), - [sym_identifier] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_macro_rules_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_u8] = ACTIONS(1821), - [anon_sym_i8] = ACTIONS(1821), - [anon_sym_u16] = ACTIONS(1821), - [anon_sym_i16] = ACTIONS(1821), - [anon_sym_u32] = ACTIONS(1821), - [anon_sym_i32] = ACTIONS(1821), - [anon_sym_u64] = ACTIONS(1821), - [anon_sym_i64] = ACTIONS(1821), - [anon_sym_u128] = ACTIONS(1821), - [anon_sym_i128] = ACTIONS(1821), - [anon_sym_isize] = ACTIONS(1821), - [anon_sym_usize] = ACTIONS(1821), - [anon_sym_f32] = ACTIONS(1821), - [anon_sym_f64] = ACTIONS(1821), - [anon_sym_bool] = ACTIONS(1821), - [anon_sym_str] = ACTIONS(1821), - [anon_sym_char] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1821), - [anon_sym_async] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_default] = ACTIONS(1821), - [anon_sym_enum] = ACTIONS(1821), - [anon_sym_fn] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_impl] = ACTIONS(1821), - [anon_sym_let] = ACTIONS(1821), - [anon_sym_loop] = ACTIONS(1821), - [anon_sym_match] = ACTIONS(1821), - [anon_sym_mod] = ACTIONS(1821), - [anon_sym_pub] = ACTIONS(1821), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1821), - [anon_sym_struct] = ACTIONS(1821), - [anon_sym_trait] = ACTIONS(1821), - [anon_sym_type] = ACTIONS(1821), - [anon_sym_union] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1821), - [anon_sym_use] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_POUND] = ACTIONS(1819), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_extern] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_COLON_COLON] = ACTIONS(1819), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_yield] = ACTIONS(1821), - [anon_sym_move] = ACTIONS(1821), - [sym_integer_literal] = ACTIONS(1819), - [aux_sym_string_literal_token1] = ACTIONS(1819), - [sym_char_literal] = ACTIONS(1819), - [anon_sym_true] = ACTIONS(1821), - [anon_sym_false] = ACTIONS(1821), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1821), - [sym_super] = ACTIONS(1821), - [sym_crate] = ACTIONS(1821), - [sym_metavariable] = ACTIONS(1819), - [sym_raw_string_literal] = ACTIONS(1819), - [sym_float_literal] = ACTIONS(1819), + [ts_builtin_sym_end] = ACTIONS(1780), + [sym_identifier] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1780), + [anon_sym_macro_rules_BANG] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_u8] = ACTIONS(1782), + [anon_sym_i8] = ACTIONS(1782), + [anon_sym_u16] = ACTIONS(1782), + [anon_sym_i16] = ACTIONS(1782), + [anon_sym_u32] = ACTIONS(1782), + [anon_sym_i32] = ACTIONS(1782), + [anon_sym_u64] = ACTIONS(1782), + [anon_sym_i64] = ACTIONS(1782), + [anon_sym_u128] = ACTIONS(1782), + [anon_sym_i128] = ACTIONS(1782), + [anon_sym_isize] = ACTIONS(1782), + [anon_sym_usize] = ACTIONS(1782), + [anon_sym_f32] = ACTIONS(1782), + [anon_sym_f64] = ACTIONS(1782), + [anon_sym_bool] = ACTIONS(1782), + [anon_sym_str] = ACTIONS(1782), + [anon_sym_char] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [anon_sym_async] = ACTIONS(1782), + [anon_sym_break] = ACTIONS(1782), + [anon_sym_const] = ACTIONS(1782), + [anon_sym_continue] = ACTIONS(1782), + [anon_sym_default] = ACTIONS(1782), + [anon_sym_enum] = ACTIONS(1782), + [anon_sym_fn] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1782), + [anon_sym_impl] = ACTIONS(1782), + [anon_sym_let] = ACTIONS(1782), + [anon_sym_loop] = ACTIONS(1782), + [anon_sym_match] = ACTIONS(1782), + [anon_sym_mod] = ACTIONS(1782), + [anon_sym_pub] = ACTIONS(1782), + [anon_sym_return] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1782), + [anon_sym_struct] = ACTIONS(1782), + [anon_sym_trait] = ACTIONS(1782), + [anon_sym_type] = ACTIONS(1782), + [anon_sym_union] = ACTIONS(1782), + [anon_sym_unsafe] = ACTIONS(1782), + [anon_sym_use] = ACTIONS(1782), + [anon_sym_while] = ACTIONS(1782), + [anon_sym_POUND] = ACTIONS(1780), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_extern] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1780), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [anon_sym_yield] = ACTIONS(1782), + [anon_sym_move] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [aux_sym_string_literal_token1] = ACTIONS(1780), + [sym_char_literal] = ACTIONS(1780), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1782), + [sym_super] = ACTIONS(1782), + [sym_crate] = ACTIONS(1782), + [sym_metavariable] = ACTIONS(1780), + [sym_raw_string_literal] = ACTIONS(1780), + [sym_float_literal] = ACTIONS(1780), [sym_block_comment] = ACTIONS(3), }, [423] = { - [ts_builtin_sym_end] = ACTIONS(1823), - [sym_identifier] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_macro_rules_BANG] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_u8] = ACTIONS(1825), - [anon_sym_i8] = ACTIONS(1825), - [anon_sym_u16] = ACTIONS(1825), - [anon_sym_i16] = ACTIONS(1825), - [anon_sym_u32] = ACTIONS(1825), - [anon_sym_i32] = ACTIONS(1825), - [anon_sym_u64] = ACTIONS(1825), - [anon_sym_i64] = ACTIONS(1825), - [anon_sym_u128] = ACTIONS(1825), - [anon_sym_i128] = ACTIONS(1825), - [anon_sym_isize] = ACTIONS(1825), - [anon_sym_usize] = ACTIONS(1825), - [anon_sym_f32] = ACTIONS(1825), - [anon_sym_f64] = ACTIONS(1825), - [anon_sym_bool] = ACTIONS(1825), - [anon_sym_str] = ACTIONS(1825), - [anon_sym_char] = ACTIONS(1825), - [anon_sym_SQUOTE] = ACTIONS(1825), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_break] = ACTIONS(1825), - [anon_sym_const] = ACTIONS(1825), - [anon_sym_continue] = ACTIONS(1825), - [anon_sym_default] = ACTIONS(1825), - [anon_sym_enum] = ACTIONS(1825), - [anon_sym_fn] = ACTIONS(1825), - [anon_sym_for] = ACTIONS(1825), - [anon_sym_if] = ACTIONS(1825), - [anon_sym_impl] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1825), - [anon_sym_loop] = ACTIONS(1825), - [anon_sym_match] = ACTIONS(1825), - [anon_sym_mod] = ACTIONS(1825), - [anon_sym_pub] = ACTIONS(1825), - [anon_sym_return] = ACTIONS(1825), - [anon_sym_static] = ACTIONS(1825), - [anon_sym_struct] = ACTIONS(1825), - [anon_sym_trait] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1825), - [anon_sym_union] = ACTIONS(1825), - [anon_sym_unsafe] = ACTIONS(1825), - [anon_sym_use] = ACTIONS(1825), - [anon_sym_while] = ACTIONS(1825), - [anon_sym_POUND] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_extern] = ACTIONS(1825), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_yield] = ACTIONS(1825), - [anon_sym_move] = ACTIONS(1825), - [sym_integer_literal] = ACTIONS(1823), - [aux_sym_string_literal_token1] = ACTIONS(1823), - [sym_char_literal] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1825), - [anon_sym_false] = ACTIONS(1825), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1825), - [sym_super] = ACTIONS(1825), - [sym_crate] = ACTIONS(1825), - [sym_metavariable] = ACTIONS(1823), - [sym_raw_string_literal] = ACTIONS(1823), - [sym_float_literal] = ACTIONS(1823), + [ts_builtin_sym_end] = ACTIONS(1784), + [sym_identifier] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_macro_rules_BANG] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_u8] = ACTIONS(1786), + [anon_sym_i8] = ACTIONS(1786), + [anon_sym_u16] = ACTIONS(1786), + [anon_sym_i16] = ACTIONS(1786), + [anon_sym_u32] = ACTIONS(1786), + [anon_sym_i32] = ACTIONS(1786), + [anon_sym_u64] = ACTIONS(1786), + [anon_sym_i64] = ACTIONS(1786), + [anon_sym_u128] = ACTIONS(1786), + [anon_sym_i128] = ACTIONS(1786), + [anon_sym_isize] = ACTIONS(1786), + [anon_sym_usize] = ACTIONS(1786), + [anon_sym_f32] = ACTIONS(1786), + [anon_sym_f64] = ACTIONS(1786), + [anon_sym_bool] = ACTIONS(1786), + [anon_sym_str] = ACTIONS(1786), + [anon_sym_char] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_async] = ACTIONS(1786), + [anon_sym_break] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_default] = ACTIONS(1786), + [anon_sym_enum] = ACTIONS(1786), + [anon_sym_fn] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_impl] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_loop] = ACTIONS(1786), + [anon_sym_match] = ACTIONS(1786), + [anon_sym_mod] = ACTIONS(1786), + [anon_sym_pub] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_static] = ACTIONS(1786), + [anon_sym_struct] = ACTIONS(1786), + [anon_sym_trait] = ACTIONS(1786), + [anon_sym_type] = ACTIONS(1786), + [anon_sym_union] = ACTIONS(1786), + [anon_sym_unsafe] = ACTIONS(1786), + [anon_sym_use] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(1784), + [anon_sym_COLON_COLON] = ACTIONS(1784), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_DOT_DOT] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_yield] = ACTIONS(1786), + [anon_sym_move] = ACTIONS(1786), + [sym_integer_literal] = ACTIONS(1784), + [aux_sym_string_literal_token1] = ACTIONS(1784), + [sym_char_literal] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1786), + [anon_sym_false] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1786), + [sym_super] = ACTIONS(1786), + [sym_crate] = ACTIONS(1786), + [sym_metavariable] = ACTIONS(1784), + [sym_raw_string_literal] = ACTIONS(1784), + [sym_float_literal] = ACTIONS(1784), [sym_block_comment] = ACTIONS(3), }, [424] = { - [ts_builtin_sym_end] = ACTIONS(1827), - [sym_identifier] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [anon_sym_macro_rules_BANG] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_RBRACE] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_u8] = ACTIONS(1829), - [anon_sym_i8] = ACTIONS(1829), - [anon_sym_u16] = ACTIONS(1829), - [anon_sym_i16] = ACTIONS(1829), - [anon_sym_u32] = ACTIONS(1829), - [anon_sym_i32] = ACTIONS(1829), - [anon_sym_u64] = ACTIONS(1829), - [anon_sym_i64] = ACTIONS(1829), - [anon_sym_u128] = ACTIONS(1829), - [anon_sym_i128] = ACTIONS(1829), - [anon_sym_isize] = ACTIONS(1829), - [anon_sym_usize] = ACTIONS(1829), - [anon_sym_f32] = ACTIONS(1829), - [anon_sym_f64] = ACTIONS(1829), - [anon_sym_bool] = ACTIONS(1829), - [anon_sym_str] = ACTIONS(1829), - [anon_sym_char] = ACTIONS(1829), - [anon_sym_SQUOTE] = ACTIONS(1829), - [anon_sym_async] = ACTIONS(1829), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_const] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1829), - [anon_sym_default] = ACTIONS(1829), - [anon_sym_enum] = ACTIONS(1829), - [anon_sym_fn] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_impl] = ACTIONS(1829), - [anon_sym_let] = ACTIONS(1829), - [anon_sym_loop] = ACTIONS(1829), - [anon_sym_match] = ACTIONS(1829), - [anon_sym_mod] = ACTIONS(1829), - [anon_sym_pub] = ACTIONS(1829), - [anon_sym_return] = ACTIONS(1829), - [anon_sym_static] = ACTIONS(1829), - [anon_sym_struct] = ACTIONS(1829), - [anon_sym_trait] = ACTIONS(1829), - [anon_sym_type] = ACTIONS(1829), - [anon_sym_union] = ACTIONS(1829), - [anon_sym_unsafe] = ACTIONS(1829), - [anon_sym_use] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1829), - [anon_sym_POUND] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_extern] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_DOT_DOT] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_yield] = ACTIONS(1829), - [anon_sym_move] = ACTIONS(1829), - [sym_integer_literal] = ACTIONS(1827), - [aux_sym_string_literal_token1] = ACTIONS(1827), - [sym_char_literal] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1829), - [anon_sym_false] = ACTIONS(1829), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1829), - [sym_super] = ACTIONS(1829), - [sym_crate] = ACTIONS(1829), - [sym_metavariable] = ACTIONS(1827), - [sym_raw_string_literal] = ACTIONS(1827), - [sym_float_literal] = ACTIONS(1827), + [ts_builtin_sym_end] = ACTIONS(1788), + [sym_identifier] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_macro_rules_BANG] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_LBRACK] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1788), + [anon_sym_u8] = ACTIONS(1790), + [anon_sym_i8] = ACTIONS(1790), + [anon_sym_u16] = ACTIONS(1790), + [anon_sym_i16] = ACTIONS(1790), + [anon_sym_u32] = ACTIONS(1790), + [anon_sym_i32] = ACTIONS(1790), + [anon_sym_u64] = ACTIONS(1790), + [anon_sym_i64] = ACTIONS(1790), + [anon_sym_u128] = ACTIONS(1790), + [anon_sym_i128] = ACTIONS(1790), + [anon_sym_isize] = ACTIONS(1790), + [anon_sym_usize] = ACTIONS(1790), + [anon_sym_f32] = ACTIONS(1790), + [anon_sym_f64] = ACTIONS(1790), + [anon_sym_bool] = ACTIONS(1790), + [anon_sym_str] = ACTIONS(1790), + [anon_sym_char] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_default] = ACTIONS(1790), + [anon_sym_enum] = ACTIONS(1790), + [anon_sym_fn] = ACTIONS(1790), + [anon_sym_for] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_impl] = ACTIONS(1790), + [anon_sym_let] = ACTIONS(1790), + [anon_sym_loop] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_mod] = ACTIONS(1790), + [anon_sym_pub] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1790), + [anon_sym_struct] = ACTIONS(1790), + [anon_sym_trait] = ACTIONS(1790), + [anon_sym_type] = ACTIONS(1790), + [anon_sym_union] = ACTIONS(1790), + [anon_sym_unsafe] = ACTIONS(1790), + [anon_sym_use] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_POUND] = ACTIONS(1788), + [anon_sym_BANG] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1790), + [anon_sym_LT] = ACTIONS(1788), + [anon_sym_COLON_COLON] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_yield] = ACTIONS(1790), + [anon_sym_move] = ACTIONS(1790), + [sym_integer_literal] = ACTIONS(1788), + [aux_sym_string_literal_token1] = ACTIONS(1788), + [sym_char_literal] = ACTIONS(1788), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1790), + [sym_super] = ACTIONS(1790), + [sym_crate] = ACTIONS(1790), + [sym_metavariable] = ACTIONS(1788), + [sym_raw_string_literal] = ACTIONS(1788), + [sym_float_literal] = ACTIONS(1788), [sym_block_comment] = ACTIONS(3), }, [425] = { - [ts_builtin_sym_end] = ACTIONS(1831), - [sym_identifier] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_macro_rules_BANG] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_u8] = ACTIONS(1833), - [anon_sym_i8] = ACTIONS(1833), - [anon_sym_u16] = ACTIONS(1833), - [anon_sym_i16] = ACTIONS(1833), - [anon_sym_u32] = ACTIONS(1833), - [anon_sym_i32] = ACTIONS(1833), - [anon_sym_u64] = ACTIONS(1833), - [anon_sym_i64] = ACTIONS(1833), - [anon_sym_u128] = ACTIONS(1833), - [anon_sym_i128] = ACTIONS(1833), - [anon_sym_isize] = ACTIONS(1833), - [anon_sym_usize] = ACTIONS(1833), - [anon_sym_f32] = ACTIONS(1833), - [anon_sym_f64] = ACTIONS(1833), - [anon_sym_bool] = ACTIONS(1833), - [anon_sym_str] = ACTIONS(1833), - [anon_sym_char] = ACTIONS(1833), - [anon_sym_SQUOTE] = ACTIONS(1833), - [anon_sym_async] = ACTIONS(1833), - [anon_sym_break] = ACTIONS(1833), - [anon_sym_const] = ACTIONS(1833), - [anon_sym_continue] = ACTIONS(1833), - [anon_sym_default] = ACTIONS(1833), - [anon_sym_enum] = ACTIONS(1833), - [anon_sym_fn] = ACTIONS(1833), - [anon_sym_for] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_impl] = ACTIONS(1833), - [anon_sym_let] = ACTIONS(1833), - [anon_sym_loop] = ACTIONS(1833), - [anon_sym_match] = ACTIONS(1833), - [anon_sym_mod] = ACTIONS(1833), - [anon_sym_pub] = ACTIONS(1833), - [anon_sym_return] = ACTIONS(1833), - [anon_sym_static] = ACTIONS(1833), - [anon_sym_struct] = ACTIONS(1833), - [anon_sym_trait] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), - [anon_sym_union] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_use] = ACTIONS(1833), - [anon_sym_while] = ACTIONS(1833), - [anon_sym_POUND] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_extern] = ACTIONS(1833), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_yield] = ACTIONS(1833), - [anon_sym_move] = ACTIONS(1833), - [sym_integer_literal] = ACTIONS(1831), - [aux_sym_string_literal_token1] = ACTIONS(1831), - [sym_char_literal] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1833), - [anon_sym_false] = ACTIONS(1833), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1833), - [sym_super] = ACTIONS(1833), - [sym_crate] = ACTIONS(1833), - [sym_metavariable] = ACTIONS(1831), - [sym_raw_string_literal] = ACTIONS(1831), - [sym_float_literal] = ACTIONS(1831), + [ts_builtin_sym_end] = ACTIONS(1792), + [sym_identifier] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_macro_rules_BANG] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_u8] = ACTIONS(1794), + [anon_sym_i8] = ACTIONS(1794), + [anon_sym_u16] = ACTIONS(1794), + [anon_sym_i16] = ACTIONS(1794), + [anon_sym_u32] = ACTIONS(1794), + [anon_sym_i32] = ACTIONS(1794), + [anon_sym_u64] = ACTIONS(1794), + [anon_sym_i64] = ACTIONS(1794), + [anon_sym_u128] = ACTIONS(1794), + [anon_sym_i128] = ACTIONS(1794), + [anon_sym_isize] = ACTIONS(1794), + [anon_sym_usize] = ACTIONS(1794), + [anon_sym_f32] = ACTIONS(1794), + [anon_sym_f64] = ACTIONS(1794), + [anon_sym_bool] = ACTIONS(1794), + [anon_sym_str] = ACTIONS(1794), + [anon_sym_char] = ACTIONS(1794), + [anon_sym_SQUOTE] = ACTIONS(1794), + [anon_sym_async] = ACTIONS(1794), + [anon_sym_break] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1794), + [anon_sym_continue] = ACTIONS(1794), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_enum] = ACTIONS(1794), + [anon_sym_fn] = ACTIONS(1794), + [anon_sym_for] = ACTIONS(1794), + [anon_sym_if] = ACTIONS(1794), + [anon_sym_impl] = ACTIONS(1794), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_loop] = ACTIONS(1794), + [anon_sym_match] = ACTIONS(1794), + [anon_sym_mod] = ACTIONS(1794), + [anon_sym_pub] = ACTIONS(1794), + [anon_sym_return] = ACTIONS(1794), + [anon_sym_static] = ACTIONS(1794), + [anon_sym_struct] = ACTIONS(1794), + [anon_sym_trait] = ACTIONS(1794), + [anon_sym_type] = ACTIONS(1794), + [anon_sym_union] = ACTIONS(1794), + [anon_sym_unsafe] = ACTIONS(1794), + [anon_sym_use] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1794), + [anon_sym_POUND] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_extern] = ACTIONS(1794), + [anon_sym_LT] = ACTIONS(1792), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_AMP] = ACTIONS(1792), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_yield] = ACTIONS(1794), + [anon_sym_move] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(1792), + [aux_sym_string_literal_token1] = ACTIONS(1792), + [sym_char_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1794), + [anon_sym_false] = ACTIONS(1794), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1794), + [sym_super] = ACTIONS(1794), + [sym_crate] = ACTIONS(1794), + [sym_metavariable] = ACTIONS(1792), + [sym_raw_string_literal] = ACTIONS(1792), + [sym_float_literal] = ACTIONS(1792), [sym_block_comment] = ACTIONS(3), }, [426] = { - [ts_builtin_sym_end] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1835), - [anon_sym_macro_rules_BANG] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1835), - [anon_sym_u8] = ACTIONS(1837), - [anon_sym_i8] = ACTIONS(1837), - [anon_sym_u16] = ACTIONS(1837), - [anon_sym_i16] = ACTIONS(1837), - [anon_sym_u32] = ACTIONS(1837), - [anon_sym_i32] = ACTIONS(1837), - [anon_sym_u64] = ACTIONS(1837), - [anon_sym_i64] = ACTIONS(1837), - [anon_sym_u128] = ACTIONS(1837), - [anon_sym_i128] = ACTIONS(1837), - [anon_sym_isize] = ACTIONS(1837), - [anon_sym_usize] = ACTIONS(1837), - [anon_sym_f32] = ACTIONS(1837), - [anon_sym_f64] = ACTIONS(1837), - [anon_sym_bool] = ACTIONS(1837), - [anon_sym_str] = ACTIONS(1837), - [anon_sym_char] = ACTIONS(1837), - [anon_sym_SQUOTE] = ACTIONS(1837), - [anon_sym_async] = ACTIONS(1837), - [anon_sym_break] = ACTIONS(1837), - [anon_sym_const] = ACTIONS(1837), - [anon_sym_continue] = ACTIONS(1837), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_enum] = ACTIONS(1837), - [anon_sym_fn] = ACTIONS(1837), - [anon_sym_for] = ACTIONS(1837), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_impl] = ACTIONS(1837), - [anon_sym_let] = ACTIONS(1837), - [anon_sym_loop] = ACTIONS(1837), - [anon_sym_match] = ACTIONS(1837), - [anon_sym_mod] = ACTIONS(1837), - [anon_sym_pub] = ACTIONS(1837), - [anon_sym_return] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_struct] = ACTIONS(1837), - [anon_sym_trait] = ACTIONS(1837), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_union] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1837), - [anon_sym_use] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1837), - [anon_sym_POUND] = ACTIONS(1835), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_extern] = ACTIONS(1837), - [anon_sym_LT] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1837), - [anon_sym_move] = ACTIONS(1837), - [sym_integer_literal] = ACTIONS(1835), - [aux_sym_string_literal_token1] = ACTIONS(1835), - [sym_char_literal] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = ACTIONS(1837), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1837), - [sym_super] = ACTIONS(1837), - [sym_crate] = ACTIONS(1837), - [sym_metavariable] = ACTIONS(1835), - [sym_raw_string_literal] = ACTIONS(1835), - [sym_float_literal] = ACTIONS(1835), + [ts_builtin_sym_end] = ACTIONS(1796), + [sym_identifier] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1796), + [anon_sym_macro_rules_BANG] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_u8] = ACTIONS(1798), + [anon_sym_i8] = ACTIONS(1798), + [anon_sym_u16] = ACTIONS(1798), + [anon_sym_i16] = ACTIONS(1798), + [anon_sym_u32] = ACTIONS(1798), + [anon_sym_i32] = ACTIONS(1798), + [anon_sym_u64] = ACTIONS(1798), + [anon_sym_i64] = ACTIONS(1798), + [anon_sym_u128] = ACTIONS(1798), + [anon_sym_i128] = ACTIONS(1798), + [anon_sym_isize] = ACTIONS(1798), + [anon_sym_usize] = ACTIONS(1798), + [anon_sym_f32] = ACTIONS(1798), + [anon_sym_f64] = ACTIONS(1798), + [anon_sym_bool] = ACTIONS(1798), + [anon_sym_str] = ACTIONS(1798), + [anon_sym_char] = ACTIONS(1798), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_async] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1798), + [anon_sym_const] = ACTIONS(1798), + [anon_sym_continue] = ACTIONS(1798), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_enum] = ACTIONS(1798), + [anon_sym_fn] = ACTIONS(1798), + [anon_sym_for] = ACTIONS(1798), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_impl] = ACTIONS(1798), + [anon_sym_let] = ACTIONS(1798), + [anon_sym_loop] = ACTIONS(1798), + [anon_sym_match] = ACTIONS(1798), + [anon_sym_mod] = ACTIONS(1798), + [anon_sym_pub] = ACTIONS(1798), + [anon_sym_return] = ACTIONS(1798), + [anon_sym_static] = ACTIONS(1798), + [anon_sym_struct] = ACTIONS(1798), + [anon_sym_trait] = ACTIONS(1798), + [anon_sym_type] = ACTIONS(1798), + [anon_sym_union] = ACTIONS(1798), + [anon_sym_unsafe] = ACTIONS(1798), + [anon_sym_use] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1798), + [anon_sym_POUND] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_extern] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1796), + [anon_sym_AMP] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PIPE] = ACTIONS(1796), + [anon_sym_yield] = ACTIONS(1798), + [anon_sym_move] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [aux_sym_string_literal_token1] = ACTIONS(1796), + [sym_char_literal] = ACTIONS(1796), + [anon_sym_true] = ACTIONS(1798), + [anon_sym_false] = ACTIONS(1798), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1798), + [sym_super] = ACTIONS(1798), + [sym_crate] = ACTIONS(1798), + [sym_metavariable] = ACTIONS(1796), + [sym_raw_string_literal] = ACTIONS(1796), + [sym_float_literal] = ACTIONS(1796), [sym_block_comment] = ACTIONS(3), }, [427] = { - [ts_builtin_sym_end] = ACTIONS(1839), - [sym_identifier] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_macro_rules_BANG] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1839), - [anon_sym_u8] = ACTIONS(1841), - [anon_sym_i8] = ACTIONS(1841), - [anon_sym_u16] = ACTIONS(1841), - [anon_sym_i16] = ACTIONS(1841), - [anon_sym_u32] = ACTIONS(1841), - [anon_sym_i32] = ACTIONS(1841), - [anon_sym_u64] = ACTIONS(1841), - [anon_sym_i64] = ACTIONS(1841), - [anon_sym_u128] = ACTIONS(1841), - [anon_sym_i128] = ACTIONS(1841), - [anon_sym_isize] = ACTIONS(1841), - [anon_sym_usize] = ACTIONS(1841), - [anon_sym_f32] = ACTIONS(1841), - [anon_sym_f64] = ACTIONS(1841), - [anon_sym_bool] = ACTIONS(1841), - [anon_sym_str] = ACTIONS(1841), - [anon_sym_char] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_default] = ACTIONS(1841), - [anon_sym_enum] = ACTIONS(1841), - [anon_sym_fn] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_impl] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_loop] = ACTIONS(1841), - [anon_sym_match] = ACTIONS(1841), - [anon_sym_mod] = ACTIONS(1841), - [anon_sym_pub] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_static] = ACTIONS(1841), - [anon_sym_struct] = ACTIONS(1841), - [anon_sym_trait] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), - [anon_sym_union] = ACTIONS(1841), - [anon_sym_unsafe] = ACTIONS(1841), - [anon_sym_use] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_POUND] = ACTIONS(1839), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1839), - [anon_sym_COLON_COLON] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(1839), - [anon_sym_yield] = ACTIONS(1841), - [anon_sym_move] = ACTIONS(1841), - [sym_integer_literal] = ACTIONS(1839), - [aux_sym_string_literal_token1] = ACTIONS(1839), - [sym_char_literal] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1841), - [anon_sym_false] = ACTIONS(1841), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1841), - [sym_super] = ACTIONS(1841), - [sym_crate] = ACTIONS(1841), - [sym_metavariable] = ACTIONS(1839), - [sym_raw_string_literal] = ACTIONS(1839), - [sym_float_literal] = ACTIONS(1839), + [ts_builtin_sym_end] = ACTIONS(1800), + [sym_identifier] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_macro_rules_BANG] = ACTIONS(1800), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1800), + [anon_sym_u8] = ACTIONS(1802), + [anon_sym_i8] = ACTIONS(1802), + [anon_sym_u16] = ACTIONS(1802), + [anon_sym_i16] = ACTIONS(1802), + [anon_sym_u32] = ACTIONS(1802), + [anon_sym_i32] = ACTIONS(1802), + [anon_sym_u64] = ACTIONS(1802), + [anon_sym_i64] = ACTIONS(1802), + [anon_sym_u128] = ACTIONS(1802), + [anon_sym_i128] = ACTIONS(1802), + [anon_sym_isize] = ACTIONS(1802), + [anon_sym_usize] = ACTIONS(1802), + [anon_sym_f32] = ACTIONS(1802), + [anon_sym_f64] = ACTIONS(1802), + [anon_sym_bool] = ACTIONS(1802), + [anon_sym_str] = ACTIONS(1802), + [anon_sym_char] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_async] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1802), + [anon_sym_enum] = ACTIONS(1802), + [anon_sym_fn] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_impl] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1802), + [anon_sym_loop] = ACTIONS(1802), + [anon_sym_match] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_pub] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_struct] = ACTIONS(1802), + [anon_sym_trait] = ACTIONS(1802), + [anon_sym_type] = ACTIONS(1802), + [anon_sym_union] = ACTIONS(1802), + [anon_sym_unsafe] = ACTIONS(1802), + [anon_sym_use] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_POUND] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_AMP] = ACTIONS(1800), + [anon_sym_DOT_DOT] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_yield] = ACTIONS(1802), + [anon_sym_move] = ACTIONS(1802), + [sym_integer_literal] = ACTIONS(1800), + [aux_sym_string_literal_token1] = ACTIONS(1800), + [sym_char_literal] = ACTIONS(1800), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1802), + [sym_super] = ACTIONS(1802), + [sym_crate] = ACTIONS(1802), + [sym_metavariable] = ACTIONS(1800), + [sym_raw_string_literal] = ACTIONS(1800), + [sym_float_literal] = ACTIONS(1800), [sym_block_comment] = ACTIONS(3), }, [428] = { - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_macro_rules_BANG] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1843), - [anon_sym_u8] = ACTIONS(1845), - [anon_sym_i8] = ACTIONS(1845), - [anon_sym_u16] = ACTIONS(1845), - [anon_sym_i16] = ACTIONS(1845), - [anon_sym_u32] = ACTIONS(1845), - [anon_sym_i32] = ACTIONS(1845), - [anon_sym_u64] = ACTIONS(1845), - [anon_sym_i64] = ACTIONS(1845), - [anon_sym_u128] = ACTIONS(1845), - [anon_sym_i128] = ACTIONS(1845), - [anon_sym_isize] = ACTIONS(1845), - [anon_sym_usize] = ACTIONS(1845), - [anon_sym_f32] = ACTIONS(1845), - [anon_sym_f64] = ACTIONS(1845), - [anon_sym_bool] = ACTIONS(1845), - [anon_sym_str] = ACTIONS(1845), - [anon_sym_char] = ACTIONS(1845), - [anon_sym_SQUOTE] = ACTIONS(1845), - [anon_sym_async] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [anon_sym_fn] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_impl] = ACTIONS(1845), - [anon_sym_let] = ACTIONS(1845), - [anon_sym_loop] = ACTIONS(1845), - [anon_sym_match] = ACTIONS(1845), - [anon_sym_mod] = ACTIONS(1845), - [anon_sym_pub] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_static] = ACTIONS(1845), - [anon_sym_struct] = ACTIONS(1845), - [anon_sym_trait] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_union] = ACTIONS(1845), - [anon_sym_unsafe] = ACTIONS(1845), - [anon_sym_use] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_POUND] = ACTIONS(1843), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1843), - [anon_sym_COLON_COLON] = ACTIONS(1843), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_DOT_DOT] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_move] = ACTIONS(1845), - [sym_integer_literal] = ACTIONS(1843), - [aux_sym_string_literal_token1] = ACTIONS(1843), - [sym_char_literal] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1845), - [anon_sym_false] = ACTIONS(1845), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1845), - [sym_super] = ACTIONS(1845), - [sym_crate] = ACTIONS(1845), - [sym_metavariable] = ACTIONS(1843), - [sym_raw_string_literal] = ACTIONS(1843), - [sym_float_literal] = ACTIONS(1843), + [ts_builtin_sym_end] = ACTIONS(1804), + [sym_identifier] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_macro_rules_BANG] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_u8] = ACTIONS(1806), + [anon_sym_i8] = ACTIONS(1806), + [anon_sym_u16] = ACTIONS(1806), + [anon_sym_i16] = ACTIONS(1806), + [anon_sym_u32] = ACTIONS(1806), + [anon_sym_i32] = ACTIONS(1806), + [anon_sym_u64] = ACTIONS(1806), + [anon_sym_i64] = ACTIONS(1806), + [anon_sym_u128] = ACTIONS(1806), + [anon_sym_i128] = ACTIONS(1806), + [anon_sym_isize] = ACTIONS(1806), + [anon_sym_usize] = ACTIONS(1806), + [anon_sym_f32] = ACTIONS(1806), + [anon_sym_f64] = ACTIONS(1806), + [anon_sym_bool] = ACTIONS(1806), + [anon_sym_str] = ACTIONS(1806), + [anon_sym_char] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1806), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_break] = ACTIONS(1806), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_continue] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_fn] = ACTIONS(1806), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_impl] = ACTIONS(1806), + [anon_sym_let] = ACTIONS(1806), + [anon_sym_loop] = ACTIONS(1806), + [anon_sym_match] = ACTIONS(1806), + [anon_sym_mod] = ACTIONS(1806), + [anon_sym_pub] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1806), + [anon_sym_trait] = ACTIONS(1806), + [anon_sym_type] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_unsafe] = ACTIONS(1806), + [anon_sym_use] = ACTIONS(1806), + [anon_sym_while] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1804), + [anon_sym_extern] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(1804), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_AMP] = ACTIONS(1804), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_PIPE] = ACTIONS(1804), + [anon_sym_yield] = ACTIONS(1806), + [anon_sym_move] = ACTIONS(1806), + [sym_integer_literal] = ACTIONS(1804), + [aux_sym_string_literal_token1] = ACTIONS(1804), + [sym_char_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1806), + [anon_sym_false] = ACTIONS(1806), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1804), + [sym_raw_string_literal] = ACTIONS(1804), + [sym_float_literal] = ACTIONS(1804), [sym_block_comment] = ACTIONS(3), }, [429] = { - [ts_builtin_sym_end] = ACTIONS(1847), - [sym_identifier] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1847), - [anon_sym_macro_rules_BANG] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_u8] = ACTIONS(1849), - [anon_sym_i8] = ACTIONS(1849), - [anon_sym_u16] = ACTIONS(1849), - [anon_sym_i16] = ACTIONS(1849), - [anon_sym_u32] = ACTIONS(1849), - [anon_sym_i32] = ACTIONS(1849), - [anon_sym_u64] = ACTIONS(1849), - [anon_sym_i64] = ACTIONS(1849), - [anon_sym_u128] = ACTIONS(1849), - [anon_sym_i128] = ACTIONS(1849), - [anon_sym_isize] = ACTIONS(1849), - [anon_sym_usize] = ACTIONS(1849), - [anon_sym_f32] = ACTIONS(1849), - [anon_sym_f64] = ACTIONS(1849), - [anon_sym_bool] = ACTIONS(1849), - [anon_sym_str] = ACTIONS(1849), - [anon_sym_char] = ACTIONS(1849), - [anon_sym_SQUOTE] = ACTIONS(1849), - [anon_sym_async] = ACTIONS(1849), - [anon_sym_break] = ACTIONS(1849), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_continue] = ACTIONS(1849), - [anon_sym_default] = ACTIONS(1849), - [anon_sym_enum] = ACTIONS(1849), - [anon_sym_fn] = ACTIONS(1849), - [anon_sym_for] = ACTIONS(1849), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_impl] = ACTIONS(1849), - [anon_sym_let] = ACTIONS(1849), - [anon_sym_loop] = ACTIONS(1849), - [anon_sym_match] = ACTIONS(1849), - [anon_sym_mod] = ACTIONS(1849), - [anon_sym_pub] = ACTIONS(1849), - [anon_sym_return] = ACTIONS(1849), - [anon_sym_static] = ACTIONS(1849), - [anon_sym_struct] = ACTIONS(1849), - [anon_sym_trait] = ACTIONS(1849), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_union] = ACTIONS(1849), - [anon_sym_unsafe] = ACTIONS(1849), - [anon_sym_use] = ACTIONS(1849), - [anon_sym_while] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1849), - [anon_sym_LT] = ACTIONS(1847), - [anon_sym_COLON_COLON] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_DOT_DOT] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_PIPE] = ACTIONS(1847), - [anon_sym_yield] = ACTIONS(1849), - [anon_sym_move] = ACTIONS(1849), - [sym_integer_literal] = ACTIONS(1847), - [aux_sym_string_literal_token1] = ACTIONS(1847), - [sym_char_literal] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1849), - [anon_sym_false] = ACTIONS(1849), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1849), - [sym_super] = ACTIONS(1849), - [sym_crate] = ACTIONS(1849), - [sym_metavariable] = ACTIONS(1847), - [sym_raw_string_literal] = ACTIONS(1847), - [sym_float_literal] = ACTIONS(1847), + [ts_builtin_sym_end] = ACTIONS(1808), + [sym_identifier] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1808), + [anon_sym_macro_rules_BANG] = ACTIONS(1808), + [anon_sym_LPAREN] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1808), + [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_u8] = ACTIONS(1810), + [anon_sym_i8] = ACTIONS(1810), + [anon_sym_u16] = ACTIONS(1810), + [anon_sym_i16] = ACTIONS(1810), + [anon_sym_u32] = ACTIONS(1810), + [anon_sym_i32] = ACTIONS(1810), + [anon_sym_u64] = ACTIONS(1810), + [anon_sym_i64] = ACTIONS(1810), + [anon_sym_u128] = ACTIONS(1810), + [anon_sym_i128] = ACTIONS(1810), + [anon_sym_isize] = ACTIONS(1810), + [anon_sym_usize] = ACTIONS(1810), + [anon_sym_f32] = ACTIONS(1810), + [anon_sym_f64] = ACTIONS(1810), + [anon_sym_bool] = ACTIONS(1810), + [anon_sym_str] = ACTIONS(1810), + [anon_sym_char] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1810), + [anon_sym_async] = ACTIONS(1810), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_const] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1810), + [anon_sym_default] = ACTIONS(1810), + [anon_sym_enum] = ACTIONS(1810), + [anon_sym_fn] = ACTIONS(1810), + [anon_sym_for] = ACTIONS(1810), + [anon_sym_if] = ACTIONS(1810), + [anon_sym_impl] = ACTIONS(1810), + [anon_sym_let] = ACTIONS(1810), + [anon_sym_loop] = ACTIONS(1810), + [anon_sym_match] = ACTIONS(1810), + [anon_sym_mod] = ACTIONS(1810), + [anon_sym_pub] = ACTIONS(1810), + [anon_sym_return] = ACTIONS(1810), + [anon_sym_static] = ACTIONS(1810), + [anon_sym_struct] = ACTIONS(1810), + [anon_sym_trait] = ACTIONS(1810), + [anon_sym_type] = ACTIONS(1810), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_unsafe] = ACTIONS(1810), + [anon_sym_use] = ACTIONS(1810), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_POUND] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_extern] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1808), + [anon_sym_AMP] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_yield] = ACTIONS(1810), + [anon_sym_move] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [aux_sym_string_literal_token1] = ACTIONS(1808), + [sym_char_literal] = ACTIONS(1808), + [anon_sym_true] = ACTIONS(1810), + [anon_sym_false] = ACTIONS(1810), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1808), + [sym_raw_string_literal] = ACTIONS(1808), + [sym_float_literal] = ACTIONS(1808), [sym_block_comment] = ACTIONS(3), }, [430] = { - [ts_builtin_sym_end] = ACTIONS(1851), - [sym_identifier] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_macro_rules_BANG] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_u8] = ACTIONS(1853), - [anon_sym_i8] = ACTIONS(1853), - [anon_sym_u16] = ACTIONS(1853), - [anon_sym_i16] = ACTIONS(1853), - [anon_sym_u32] = ACTIONS(1853), - [anon_sym_i32] = ACTIONS(1853), - [anon_sym_u64] = ACTIONS(1853), - [anon_sym_i64] = ACTIONS(1853), - [anon_sym_u128] = ACTIONS(1853), - [anon_sym_i128] = ACTIONS(1853), - [anon_sym_isize] = ACTIONS(1853), - [anon_sym_usize] = ACTIONS(1853), - [anon_sym_f32] = ACTIONS(1853), - [anon_sym_f64] = ACTIONS(1853), - [anon_sym_bool] = ACTIONS(1853), - [anon_sym_str] = ACTIONS(1853), - [anon_sym_char] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_async] = ACTIONS(1853), - [anon_sym_break] = ACTIONS(1853), - [anon_sym_const] = ACTIONS(1853), - [anon_sym_continue] = ACTIONS(1853), - [anon_sym_default] = ACTIONS(1853), - [anon_sym_enum] = ACTIONS(1853), - [anon_sym_fn] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1853), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_impl] = ACTIONS(1853), - [anon_sym_let] = ACTIONS(1853), - [anon_sym_loop] = ACTIONS(1853), - [anon_sym_match] = ACTIONS(1853), - [anon_sym_mod] = ACTIONS(1853), - [anon_sym_pub] = ACTIONS(1853), - [anon_sym_return] = ACTIONS(1853), - [anon_sym_static] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1853), - [anon_sym_trait] = ACTIONS(1853), - [anon_sym_type] = ACTIONS(1853), - [anon_sym_union] = ACTIONS(1853), - [anon_sym_unsafe] = ACTIONS(1853), - [anon_sym_use] = ACTIONS(1853), - [anon_sym_while] = ACTIONS(1853), - [anon_sym_POUND] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_COLON_COLON] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_yield] = ACTIONS(1853), - [anon_sym_move] = ACTIONS(1853), - [sym_integer_literal] = ACTIONS(1851), - [aux_sym_string_literal_token1] = ACTIONS(1851), - [sym_char_literal] = ACTIONS(1851), - [anon_sym_true] = ACTIONS(1853), - [anon_sym_false] = ACTIONS(1853), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1853), - [sym_super] = ACTIONS(1853), - [sym_crate] = ACTIONS(1853), - [sym_metavariable] = ACTIONS(1851), - [sym_raw_string_literal] = ACTIONS(1851), - [sym_float_literal] = ACTIONS(1851), + [ts_builtin_sym_end] = ACTIONS(1812), + [sym_identifier] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_macro_rules_BANG] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_LBRACK] = ACTIONS(1812), + [anon_sym_STAR] = ACTIONS(1812), + [anon_sym_u8] = ACTIONS(1814), + [anon_sym_i8] = ACTIONS(1814), + [anon_sym_u16] = ACTIONS(1814), + [anon_sym_i16] = ACTIONS(1814), + [anon_sym_u32] = ACTIONS(1814), + [anon_sym_i32] = ACTIONS(1814), + [anon_sym_u64] = ACTIONS(1814), + [anon_sym_i64] = ACTIONS(1814), + [anon_sym_u128] = ACTIONS(1814), + [anon_sym_i128] = ACTIONS(1814), + [anon_sym_isize] = ACTIONS(1814), + [anon_sym_usize] = ACTIONS(1814), + [anon_sym_f32] = ACTIONS(1814), + [anon_sym_f64] = ACTIONS(1814), + [anon_sym_bool] = ACTIONS(1814), + [anon_sym_str] = ACTIONS(1814), + [anon_sym_char] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1814), + [anon_sym_async] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_const] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_default] = ACTIONS(1814), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_fn] = ACTIONS(1814), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_impl] = ACTIONS(1814), + [anon_sym_let] = ACTIONS(1814), + [anon_sym_loop] = ACTIONS(1814), + [anon_sym_match] = ACTIONS(1814), + [anon_sym_mod] = ACTIONS(1814), + [anon_sym_pub] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_static] = ACTIONS(1814), + [anon_sym_struct] = ACTIONS(1814), + [anon_sym_trait] = ACTIONS(1814), + [anon_sym_type] = ACTIONS(1814), + [anon_sym_union] = ACTIONS(1814), + [anon_sym_unsafe] = ACTIONS(1814), + [anon_sym_use] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_POUND] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1812), + [anon_sym_extern] = ACTIONS(1814), + [anon_sym_LT] = ACTIONS(1812), + [anon_sym_COLON_COLON] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1812), + [anon_sym_DOT_DOT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_yield] = ACTIONS(1814), + [anon_sym_move] = ACTIONS(1814), + [sym_integer_literal] = ACTIONS(1812), + [aux_sym_string_literal_token1] = ACTIONS(1812), + [sym_char_literal] = ACTIONS(1812), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1814), + [sym_super] = ACTIONS(1814), + [sym_crate] = ACTIONS(1814), + [sym_metavariable] = ACTIONS(1812), + [sym_raw_string_literal] = ACTIONS(1812), + [sym_float_literal] = ACTIONS(1812), [sym_block_comment] = ACTIONS(3), }, [431] = { - [ts_builtin_sym_end] = ACTIONS(1855), - [sym_identifier] = ACTIONS(1857), - [anon_sym_SEMI] = ACTIONS(1855), - [anon_sym_macro_rules_BANG] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_u8] = ACTIONS(1857), - [anon_sym_i8] = ACTIONS(1857), - [anon_sym_u16] = ACTIONS(1857), - [anon_sym_i16] = ACTIONS(1857), - [anon_sym_u32] = ACTIONS(1857), - [anon_sym_i32] = ACTIONS(1857), - [anon_sym_u64] = ACTIONS(1857), - [anon_sym_i64] = ACTIONS(1857), - [anon_sym_u128] = ACTIONS(1857), - [anon_sym_i128] = ACTIONS(1857), - [anon_sym_isize] = ACTIONS(1857), - [anon_sym_usize] = ACTIONS(1857), - [anon_sym_f32] = ACTIONS(1857), - [anon_sym_f64] = ACTIONS(1857), - [anon_sym_bool] = ACTIONS(1857), - [anon_sym_str] = ACTIONS(1857), - [anon_sym_char] = ACTIONS(1857), - [anon_sym_SQUOTE] = ACTIONS(1857), - [anon_sym_async] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1857), - [anon_sym_const] = ACTIONS(1857), - [anon_sym_continue] = ACTIONS(1857), - [anon_sym_default] = ACTIONS(1857), - [anon_sym_enum] = ACTIONS(1857), - [anon_sym_fn] = ACTIONS(1857), - [anon_sym_for] = ACTIONS(1857), - [anon_sym_if] = ACTIONS(1857), - [anon_sym_impl] = ACTIONS(1857), - [anon_sym_let] = ACTIONS(1857), - [anon_sym_loop] = ACTIONS(1857), - [anon_sym_match] = ACTIONS(1857), - [anon_sym_mod] = ACTIONS(1857), - [anon_sym_pub] = ACTIONS(1857), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_static] = ACTIONS(1857), - [anon_sym_struct] = ACTIONS(1857), - [anon_sym_trait] = ACTIONS(1857), - [anon_sym_type] = ACTIONS(1857), - [anon_sym_union] = ACTIONS(1857), - [anon_sym_unsafe] = ACTIONS(1857), - [anon_sym_use] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_POUND] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_extern] = ACTIONS(1857), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_COLON_COLON] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_yield] = ACTIONS(1857), - [anon_sym_move] = ACTIONS(1857), - [sym_integer_literal] = ACTIONS(1855), - [aux_sym_string_literal_token1] = ACTIONS(1855), - [sym_char_literal] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1857), - [anon_sym_false] = ACTIONS(1857), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1857), - [sym_super] = ACTIONS(1857), - [sym_crate] = ACTIONS(1857), - [sym_metavariable] = ACTIONS(1855), - [sym_raw_string_literal] = ACTIONS(1855), - [sym_float_literal] = ACTIONS(1855), + [ts_builtin_sym_end] = ACTIONS(1816), + [sym_identifier] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_macro_rules_BANG] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_STAR] = ACTIONS(1816), + [anon_sym_u8] = ACTIONS(1818), + [anon_sym_i8] = ACTIONS(1818), + [anon_sym_u16] = ACTIONS(1818), + [anon_sym_i16] = ACTIONS(1818), + [anon_sym_u32] = ACTIONS(1818), + [anon_sym_i32] = ACTIONS(1818), + [anon_sym_u64] = ACTIONS(1818), + [anon_sym_i64] = ACTIONS(1818), + [anon_sym_u128] = ACTIONS(1818), + [anon_sym_i128] = ACTIONS(1818), + [anon_sym_isize] = ACTIONS(1818), + [anon_sym_usize] = ACTIONS(1818), + [anon_sym_f32] = ACTIONS(1818), + [anon_sym_f64] = ACTIONS(1818), + [anon_sym_bool] = ACTIONS(1818), + [anon_sym_str] = ACTIONS(1818), + [anon_sym_char] = ACTIONS(1818), + [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_async] = ACTIONS(1818), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_default] = ACTIONS(1818), + [anon_sym_enum] = ACTIONS(1818), + [anon_sym_fn] = ACTIONS(1818), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_impl] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(1818), + [anon_sym_loop] = ACTIONS(1818), + [anon_sym_match] = ACTIONS(1818), + [anon_sym_mod] = ACTIONS(1818), + [anon_sym_pub] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1818), + [anon_sym_static] = ACTIONS(1818), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_trait] = ACTIONS(1818), + [anon_sym_type] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1818), + [anon_sym_unsafe] = ACTIONS(1818), + [anon_sym_use] = ACTIONS(1818), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_extern] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(1816), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1816), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_yield] = ACTIONS(1818), + [anon_sym_move] = ACTIONS(1818), + [sym_integer_literal] = ACTIONS(1816), + [aux_sym_string_literal_token1] = ACTIONS(1816), + [sym_char_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1818), + [anon_sym_false] = ACTIONS(1818), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1818), + [sym_super] = ACTIONS(1818), + [sym_crate] = ACTIONS(1818), + [sym_metavariable] = ACTIONS(1816), + [sym_raw_string_literal] = ACTIONS(1816), + [sym_float_literal] = ACTIONS(1816), [sym_block_comment] = ACTIONS(3), }, [432] = { - [ts_builtin_sym_end] = ACTIONS(1859), - [sym_identifier] = ACTIONS(1861), - [anon_sym_SEMI] = ACTIONS(1859), - [anon_sym_macro_rules_BANG] = ACTIONS(1859), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_STAR] = ACTIONS(1859), - [anon_sym_u8] = ACTIONS(1861), - [anon_sym_i8] = ACTIONS(1861), - [anon_sym_u16] = ACTIONS(1861), - [anon_sym_i16] = ACTIONS(1861), - [anon_sym_u32] = ACTIONS(1861), - [anon_sym_i32] = ACTIONS(1861), - [anon_sym_u64] = ACTIONS(1861), - [anon_sym_i64] = ACTIONS(1861), - [anon_sym_u128] = ACTIONS(1861), - [anon_sym_i128] = ACTIONS(1861), - [anon_sym_isize] = ACTIONS(1861), - [anon_sym_usize] = ACTIONS(1861), - [anon_sym_f32] = ACTIONS(1861), - [anon_sym_f64] = ACTIONS(1861), - [anon_sym_bool] = ACTIONS(1861), - [anon_sym_str] = ACTIONS(1861), - [anon_sym_char] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_default] = ACTIONS(1861), - [anon_sym_enum] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_impl] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_loop] = ACTIONS(1861), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_mod] = ACTIONS(1861), - [anon_sym_pub] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_static] = ACTIONS(1861), - [anon_sym_struct] = ACTIONS(1861), - [anon_sym_trait] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_union] = ACTIONS(1861), - [anon_sym_unsafe] = ACTIONS(1861), - [anon_sym_use] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(1859), - [anon_sym_BANG] = ACTIONS(1859), - [anon_sym_extern] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1859), - [anon_sym_COLON_COLON] = ACTIONS(1859), - [anon_sym_AMP] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1859), - [anon_sym_DASH] = ACTIONS(1859), - [anon_sym_PIPE] = ACTIONS(1859), - [anon_sym_yield] = ACTIONS(1861), - [anon_sym_move] = ACTIONS(1861), - [sym_integer_literal] = ACTIONS(1859), - [aux_sym_string_literal_token1] = ACTIONS(1859), - [sym_char_literal] = ACTIONS(1859), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1861), - [sym_super] = ACTIONS(1861), - [sym_crate] = ACTIONS(1861), - [sym_metavariable] = ACTIONS(1859), - [sym_raw_string_literal] = ACTIONS(1859), - [sym_float_literal] = ACTIONS(1859), + [ts_builtin_sym_end] = ACTIONS(1820), + [sym_identifier] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_macro_rules_BANG] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_u8] = ACTIONS(1822), + [anon_sym_i8] = ACTIONS(1822), + [anon_sym_u16] = ACTIONS(1822), + [anon_sym_i16] = ACTIONS(1822), + [anon_sym_u32] = ACTIONS(1822), + [anon_sym_i32] = ACTIONS(1822), + [anon_sym_u64] = ACTIONS(1822), + [anon_sym_i64] = ACTIONS(1822), + [anon_sym_u128] = ACTIONS(1822), + [anon_sym_i128] = ACTIONS(1822), + [anon_sym_isize] = ACTIONS(1822), + [anon_sym_usize] = ACTIONS(1822), + [anon_sym_f32] = ACTIONS(1822), + [anon_sym_f64] = ACTIONS(1822), + [anon_sym_bool] = ACTIONS(1822), + [anon_sym_str] = ACTIONS(1822), + [anon_sym_char] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_async] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_const] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_default] = ACTIONS(1822), + [anon_sym_enum] = ACTIONS(1822), + [anon_sym_fn] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_impl] = ACTIONS(1822), + [anon_sym_let] = ACTIONS(1822), + [anon_sym_loop] = ACTIONS(1822), + [anon_sym_match] = ACTIONS(1822), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_pub] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_static] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1822), + [anon_sym_trait] = ACTIONS(1822), + [anon_sym_type] = ACTIONS(1822), + [anon_sym_union] = ACTIONS(1822), + [anon_sym_unsafe] = ACTIONS(1822), + [anon_sym_use] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1820), + [anon_sym_BANG] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_COLON_COLON] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1820), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_yield] = ACTIONS(1822), + [anon_sym_move] = ACTIONS(1822), + [sym_integer_literal] = ACTIONS(1820), + [aux_sym_string_literal_token1] = ACTIONS(1820), + [sym_char_literal] = ACTIONS(1820), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1822), + [sym_super] = ACTIONS(1822), + [sym_crate] = ACTIONS(1822), + [sym_metavariable] = ACTIONS(1820), + [sym_raw_string_literal] = ACTIONS(1820), + [sym_float_literal] = ACTIONS(1820), [sym_block_comment] = ACTIONS(3), }, [433] = { - [ts_builtin_sym_end] = ACTIONS(1863), - [sym_identifier] = ACTIONS(1865), - [anon_sym_SEMI] = ACTIONS(1863), - [anon_sym_macro_rules_BANG] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1863), - [anon_sym_u8] = ACTIONS(1865), - [anon_sym_i8] = ACTIONS(1865), - [anon_sym_u16] = ACTIONS(1865), - [anon_sym_i16] = ACTIONS(1865), - [anon_sym_u32] = ACTIONS(1865), - [anon_sym_i32] = ACTIONS(1865), - [anon_sym_u64] = ACTIONS(1865), - [anon_sym_i64] = ACTIONS(1865), - [anon_sym_u128] = ACTIONS(1865), - [anon_sym_i128] = ACTIONS(1865), - [anon_sym_isize] = ACTIONS(1865), - [anon_sym_usize] = ACTIONS(1865), - [anon_sym_f32] = ACTIONS(1865), - [anon_sym_f64] = ACTIONS(1865), - [anon_sym_bool] = ACTIONS(1865), - [anon_sym_str] = ACTIONS(1865), - [anon_sym_char] = ACTIONS(1865), - [anon_sym_SQUOTE] = ACTIONS(1865), - [anon_sym_async] = ACTIONS(1865), - [anon_sym_break] = ACTIONS(1865), - [anon_sym_const] = ACTIONS(1865), - [anon_sym_continue] = ACTIONS(1865), - [anon_sym_default] = ACTIONS(1865), - [anon_sym_enum] = ACTIONS(1865), - [anon_sym_fn] = ACTIONS(1865), - [anon_sym_for] = ACTIONS(1865), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_impl] = ACTIONS(1865), - [anon_sym_let] = ACTIONS(1865), - [anon_sym_loop] = ACTIONS(1865), - [anon_sym_match] = ACTIONS(1865), - [anon_sym_mod] = ACTIONS(1865), - [anon_sym_pub] = ACTIONS(1865), - [anon_sym_return] = ACTIONS(1865), - [anon_sym_static] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1865), - [anon_sym_trait] = ACTIONS(1865), - [anon_sym_type] = ACTIONS(1865), - [anon_sym_union] = ACTIONS(1865), - [anon_sym_unsafe] = ACTIONS(1865), - [anon_sym_use] = ACTIONS(1865), - [anon_sym_while] = ACTIONS(1865), - [anon_sym_POUND] = ACTIONS(1863), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1865), - [anon_sym_LT] = ACTIONS(1863), - [anon_sym_COLON_COLON] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_DOT_DOT] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_yield] = ACTIONS(1865), - [anon_sym_move] = ACTIONS(1865), - [sym_integer_literal] = ACTIONS(1863), - [aux_sym_string_literal_token1] = ACTIONS(1863), - [sym_char_literal] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1865), - [anon_sym_false] = ACTIONS(1865), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1865), - [sym_super] = ACTIONS(1865), - [sym_crate] = ACTIONS(1865), - [sym_metavariable] = ACTIONS(1863), - [sym_raw_string_literal] = ACTIONS(1863), - [sym_float_literal] = ACTIONS(1863), + [ts_builtin_sym_end] = ACTIONS(1824), + [sym_identifier] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_macro_rules_BANG] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_STAR] = ACTIONS(1824), + [anon_sym_u8] = ACTIONS(1826), + [anon_sym_i8] = ACTIONS(1826), + [anon_sym_u16] = ACTIONS(1826), + [anon_sym_i16] = ACTIONS(1826), + [anon_sym_u32] = ACTIONS(1826), + [anon_sym_i32] = ACTIONS(1826), + [anon_sym_u64] = ACTIONS(1826), + [anon_sym_i64] = ACTIONS(1826), + [anon_sym_u128] = ACTIONS(1826), + [anon_sym_i128] = ACTIONS(1826), + [anon_sym_isize] = ACTIONS(1826), + [anon_sym_usize] = ACTIONS(1826), + [anon_sym_f32] = ACTIONS(1826), + [anon_sym_f64] = ACTIONS(1826), + [anon_sym_bool] = ACTIONS(1826), + [anon_sym_str] = ACTIONS(1826), + [anon_sym_char] = ACTIONS(1826), + [anon_sym_SQUOTE] = ACTIONS(1826), + [anon_sym_async] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_default] = ACTIONS(1826), + [anon_sym_enum] = ACTIONS(1826), + [anon_sym_fn] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_impl] = ACTIONS(1826), + [anon_sym_let] = ACTIONS(1826), + [anon_sym_loop] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_mod] = ACTIONS(1826), + [anon_sym_pub] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_static] = ACTIONS(1826), + [anon_sym_struct] = ACTIONS(1826), + [anon_sym_trait] = ACTIONS(1826), + [anon_sym_type] = ACTIONS(1826), + [anon_sym_union] = ACTIONS(1826), + [anon_sym_unsafe] = ACTIONS(1826), + [anon_sym_use] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1824), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1824), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_yield] = ACTIONS(1826), + [anon_sym_move] = ACTIONS(1826), + [sym_integer_literal] = ACTIONS(1824), + [aux_sym_string_literal_token1] = ACTIONS(1824), + [sym_char_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1826), + [sym_super] = ACTIONS(1826), + [sym_crate] = ACTIONS(1826), + [sym_metavariable] = ACTIONS(1824), + [sym_raw_string_literal] = ACTIONS(1824), + [sym_float_literal] = ACTIONS(1824), [sym_block_comment] = ACTIONS(3), }, [434] = { - [ts_builtin_sym_end] = ACTIONS(1867), - [sym_identifier] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1867), - [anon_sym_macro_rules_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_RBRACE] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_STAR] = ACTIONS(1867), - [anon_sym_u8] = ACTIONS(1869), - [anon_sym_i8] = ACTIONS(1869), - [anon_sym_u16] = ACTIONS(1869), - [anon_sym_i16] = ACTIONS(1869), - [anon_sym_u32] = ACTIONS(1869), - [anon_sym_i32] = ACTIONS(1869), - [anon_sym_u64] = ACTIONS(1869), - [anon_sym_i64] = ACTIONS(1869), - [anon_sym_u128] = ACTIONS(1869), - [anon_sym_i128] = ACTIONS(1869), - [anon_sym_isize] = ACTIONS(1869), - [anon_sym_usize] = ACTIONS(1869), - [anon_sym_f32] = ACTIONS(1869), - [anon_sym_f64] = ACTIONS(1869), - [anon_sym_bool] = ACTIONS(1869), - [anon_sym_str] = ACTIONS(1869), - [anon_sym_char] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_async] = ACTIONS(1869), - [anon_sym_break] = ACTIONS(1869), - [anon_sym_const] = ACTIONS(1869), - [anon_sym_continue] = ACTIONS(1869), - [anon_sym_default] = ACTIONS(1869), - [anon_sym_enum] = ACTIONS(1869), - [anon_sym_fn] = ACTIONS(1869), - [anon_sym_for] = ACTIONS(1869), - [anon_sym_if] = ACTIONS(1869), - [anon_sym_impl] = ACTIONS(1869), - [anon_sym_let] = ACTIONS(1869), - [anon_sym_loop] = ACTIONS(1869), - [anon_sym_match] = ACTIONS(1869), - [anon_sym_mod] = ACTIONS(1869), - [anon_sym_pub] = ACTIONS(1869), - [anon_sym_return] = ACTIONS(1869), - [anon_sym_static] = ACTIONS(1869), - [anon_sym_struct] = ACTIONS(1869), - [anon_sym_trait] = ACTIONS(1869), - [anon_sym_type] = ACTIONS(1869), - [anon_sym_union] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1869), - [anon_sym_use] = ACTIONS(1869), - [anon_sym_while] = ACTIONS(1869), - [anon_sym_POUND] = ACTIONS(1867), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_COLON_COLON] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_DOT_DOT] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_PIPE] = ACTIONS(1867), - [anon_sym_yield] = ACTIONS(1869), - [anon_sym_move] = ACTIONS(1869), - [sym_integer_literal] = ACTIONS(1867), - [aux_sym_string_literal_token1] = ACTIONS(1867), - [sym_char_literal] = ACTIONS(1867), - [anon_sym_true] = ACTIONS(1869), - [anon_sym_false] = ACTIONS(1869), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1869), - [sym_super] = ACTIONS(1869), - [sym_crate] = ACTIONS(1869), - [sym_metavariable] = ACTIONS(1867), - [sym_raw_string_literal] = ACTIONS(1867), - [sym_float_literal] = ACTIONS(1867), + [ts_builtin_sym_end] = ACTIONS(1828), + [sym_identifier] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_macro_rules_BANG] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_STAR] = ACTIONS(1828), + [anon_sym_u8] = ACTIONS(1830), + [anon_sym_i8] = ACTIONS(1830), + [anon_sym_u16] = ACTIONS(1830), + [anon_sym_i16] = ACTIONS(1830), + [anon_sym_u32] = ACTIONS(1830), + [anon_sym_i32] = ACTIONS(1830), + [anon_sym_u64] = ACTIONS(1830), + [anon_sym_i64] = ACTIONS(1830), + [anon_sym_u128] = ACTIONS(1830), + [anon_sym_i128] = ACTIONS(1830), + [anon_sym_isize] = ACTIONS(1830), + [anon_sym_usize] = ACTIONS(1830), + [anon_sym_f32] = ACTIONS(1830), + [anon_sym_f64] = ACTIONS(1830), + [anon_sym_bool] = ACTIONS(1830), + [anon_sym_str] = ACTIONS(1830), + [anon_sym_char] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1830), + [anon_sym_async] = ACTIONS(1830), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_const] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1830), + [anon_sym_default] = ACTIONS(1830), + [anon_sym_enum] = ACTIONS(1830), + [anon_sym_fn] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_impl] = ACTIONS(1830), + [anon_sym_let] = ACTIONS(1830), + [anon_sym_loop] = ACTIONS(1830), + [anon_sym_match] = ACTIONS(1830), + [anon_sym_mod] = ACTIONS(1830), + [anon_sym_pub] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1830), + [anon_sym_struct] = ACTIONS(1830), + [anon_sym_trait] = ACTIONS(1830), + [anon_sym_type] = ACTIONS(1830), + [anon_sym_union] = ACTIONS(1830), + [anon_sym_unsafe] = ACTIONS(1830), + [anon_sym_use] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(1828), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_extern] = ACTIONS(1830), + [anon_sym_LT] = ACTIONS(1828), + [anon_sym_COLON_COLON] = ACTIONS(1828), + [anon_sym_AMP] = ACTIONS(1828), + [anon_sym_DOT_DOT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_yield] = ACTIONS(1830), + [anon_sym_move] = ACTIONS(1830), + [sym_integer_literal] = ACTIONS(1828), + [aux_sym_string_literal_token1] = ACTIONS(1828), + [sym_char_literal] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1830), + [anon_sym_false] = ACTIONS(1830), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1830), + [sym_super] = ACTIONS(1830), + [sym_crate] = ACTIONS(1830), + [sym_metavariable] = ACTIONS(1828), + [sym_raw_string_literal] = ACTIONS(1828), + [sym_float_literal] = ACTIONS(1828), [sym_block_comment] = ACTIONS(3), }, [435] = { - [ts_builtin_sym_end] = ACTIONS(1871), - [sym_identifier] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1871), - [anon_sym_macro_rules_BANG] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(1871), - [anon_sym_STAR] = ACTIONS(1871), - [anon_sym_u8] = ACTIONS(1873), - [anon_sym_i8] = ACTIONS(1873), - [anon_sym_u16] = ACTIONS(1873), - [anon_sym_i16] = ACTIONS(1873), - [anon_sym_u32] = ACTIONS(1873), - [anon_sym_i32] = ACTIONS(1873), - [anon_sym_u64] = ACTIONS(1873), - [anon_sym_i64] = ACTIONS(1873), - [anon_sym_u128] = ACTIONS(1873), - [anon_sym_i128] = ACTIONS(1873), - [anon_sym_isize] = ACTIONS(1873), - [anon_sym_usize] = ACTIONS(1873), - [anon_sym_f32] = ACTIONS(1873), - [anon_sym_f64] = ACTIONS(1873), - [anon_sym_bool] = ACTIONS(1873), - [anon_sym_str] = ACTIONS(1873), - [anon_sym_char] = ACTIONS(1873), - [anon_sym_SQUOTE] = ACTIONS(1873), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_break] = ACTIONS(1873), - [anon_sym_const] = ACTIONS(1873), - [anon_sym_continue] = ACTIONS(1873), - [anon_sym_default] = ACTIONS(1873), - [anon_sym_enum] = ACTIONS(1873), - [anon_sym_fn] = ACTIONS(1873), - [anon_sym_for] = ACTIONS(1873), - [anon_sym_if] = ACTIONS(1873), - [anon_sym_impl] = ACTIONS(1873), - [anon_sym_let] = ACTIONS(1873), - [anon_sym_loop] = ACTIONS(1873), - [anon_sym_match] = ACTIONS(1873), - [anon_sym_mod] = ACTIONS(1873), - [anon_sym_pub] = ACTIONS(1873), - [anon_sym_return] = ACTIONS(1873), - [anon_sym_static] = ACTIONS(1873), - [anon_sym_struct] = ACTIONS(1873), - [anon_sym_trait] = ACTIONS(1873), - [anon_sym_type] = ACTIONS(1873), - [anon_sym_union] = ACTIONS(1873), - [anon_sym_unsafe] = ACTIONS(1873), - [anon_sym_use] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1873), - [anon_sym_POUND] = ACTIONS(1871), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1873), - [anon_sym_LT] = ACTIONS(1871), - [anon_sym_COLON_COLON] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_DOT_DOT] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1871), - [anon_sym_yield] = ACTIONS(1873), - [anon_sym_move] = ACTIONS(1873), - [sym_integer_literal] = ACTIONS(1871), - [aux_sym_string_literal_token1] = ACTIONS(1871), - [sym_char_literal] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1873), - [sym_super] = ACTIONS(1873), - [sym_crate] = ACTIONS(1873), - [sym_metavariable] = ACTIONS(1871), - [sym_raw_string_literal] = ACTIONS(1871), - [sym_float_literal] = ACTIONS(1871), + [ts_builtin_sym_end] = ACTIONS(1832), + [sym_identifier] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_macro_rules_BANG] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_LBRACK] = ACTIONS(1832), + [anon_sym_STAR] = ACTIONS(1832), + [anon_sym_u8] = ACTIONS(1834), + [anon_sym_i8] = ACTIONS(1834), + [anon_sym_u16] = ACTIONS(1834), + [anon_sym_i16] = ACTIONS(1834), + [anon_sym_u32] = ACTIONS(1834), + [anon_sym_i32] = ACTIONS(1834), + [anon_sym_u64] = ACTIONS(1834), + [anon_sym_i64] = ACTIONS(1834), + [anon_sym_u128] = ACTIONS(1834), + [anon_sym_i128] = ACTIONS(1834), + [anon_sym_isize] = ACTIONS(1834), + [anon_sym_usize] = ACTIONS(1834), + [anon_sym_f32] = ACTIONS(1834), + [anon_sym_f64] = ACTIONS(1834), + [anon_sym_bool] = ACTIONS(1834), + [anon_sym_str] = ACTIONS(1834), + [anon_sym_char] = ACTIONS(1834), + [anon_sym_SQUOTE] = ACTIONS(1834), + [anon_sym_async] = ACTIONS(1834), + [anon_sym_break] = ACTIONS(1834), + [anon_sym_const] = ACTIONS(1834), + [anon_sym_continue] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1834), + [anon_sym_enum] = ACTIONS(1834), + [anon_sym_fn] = ACTIONS(1834), + [anon_sym_for] = ACTIONS(1834), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_impl] = ACTIONS(1834), + [anon_sym_let] = ACTIONS(1834), + [anon_sym_loop] = ACTIONS(1834), + [anon_sym_match] = ACTIONS(1834), + [anon_sym_mod] = ACTIONS(1834), + [anon_sym_pub] = ACTIONS(1834), + [anon_sym_return] = ACTIONS(1834), + [anon_sym_static] = ACTIONS(1834), + [anon_sym_struct] = ACTIONS(1834), + [anon_sym_trait] = ACTIONS(1834), + [anon_sym_type] = ACTIONS(1834), + [anon_sym_union] = ACTIONS(1834), + [anon_sym_unsafe] = ACTIONS(1834), + [anon_sym_use] = ACTIONS(1834), + [anon_sym_while] = ACTIONS(1834), + [anon_sym_POUND] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1832), + [anon_sym_extern] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_COLON_COLON] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1832), + [anon_sym_DOT_DOT] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_yield] = ACTIONS(1834), + [anon_sym_move] = ACTIONS(1834), + [sym_integer_literal] = ACTIONS(1832), + [aux_sym_string_literal_token1] = ACTIONS(1832), + [sym_char_literal] = ACTIONS(1832), + [anon_sym_true] = ACTIONS(1834), + [anon_sym_false] = ACTIONS(1834), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1834), + [sym_super] = ACTIONS(1834), + [sym_crate] = ACTIONS(1834), + [sym_metavariable] = ACTIONS(1832), + [sym_raw_string_literal] = ACTIONS(1832), + [sym_float_literal] = ACTIONS(1832), [sym_block_comment] = ACTIONS(3), }, [436] = { + [ts_builtin_sym_end] = ACTIONS(1836), + [sym_identifier] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_macro_rules_BANG] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1836), + [anon_sym_LBRACK] = ACTIONS(1836), + [anon_sym_STAR] = ACTIONS(1836), + [anon_sym_u8] = ACTIONS(1838), + [anon_sym_i8] = ACTIONS(1838), + [anon_sym_u16] = ACTIONS(1838), + [anon_sym_i16] = ACTIONS(1838), + [anon_sym_u32] = ACTIONS(1838), + [anon_sym_i32] = ACTIONS(1838), + [anon_sym_u64] = ACTIONS(1838), + [anon_sym_i64] = ACTIONS(1838), + [anon_sym_u128] = ACTIONS(1838), + [anon_sym_i128] = ACTIONS(1838), + [anon_sym_isize] = ACTIONS(1838), + [anon_sym_usize] = ACTIONS(1838), + [anon_sym_f32] = ACTIONS(1838), + [anon_sym_f64] = ACTIONS(1838), + [anon_sym_bool] = ACTIONS(1838), + [anon_sym_str] = ACTIONS(1838), + [anon_sym_char] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [anon_sym_async] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_default] = ACTIONS(1838), + [anon_sym_enum] = ACTIONS(1838), + [anon_sym_fn] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_impl] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_mod] = ACTIONS(1838), + [anon_sym_pub] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_static] = ACTIONS(1838), + [anon_sym_struct] = ACTIONS(1838), + [anon_sym_trait] = ACTIONS(1838), + [anon_sym_type] = ACTIONS(1838), + [anon_sym_union] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(1836), + [anon_sym_BANG] = ACTIONS(1836), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_COLON_COLON] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(1836), + [anon_sym_DOT_DOT] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_yield] = ACTIONS(1838), + [anon_sym_move] = ACTIONS(1838), + [sym_integer_literal] = ACTIONS(1836), + [aux_sym_string_literal_token1] = ACTIONS(1836), + [sym_char_literal] = ACTIONS(1836), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1838), + [sym_super] = ACTIONS(1838), + [sym_crate] = ACTIONS(1838), + [sym_metavariable] = ACTIONS(1836), + [sym_raw_string_literal] = ACTIONS(1836), + [sym_float_literal] = ACTIONS(1836), + [sym_block_comment] = ACTIONS(3), + }, + [437] = { + [ts_builtin_sym_end] = ACTIONS(1840), + [sym_identifier] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_macro_rules_BANG] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_LBRACK] = ACTIONS(1840), + [anon_sym_STAR] = ACTIONS(1840), + [anon_sym_u8] = ACTIONS(1842), + [anon_sym_i8] = ACTIONS(1842), + [anon_sym_u16] = ACTIONS(1842), + [anon_sym_i16] = ACTIONS(1842), + [anon_sym_u32] = ACTIONS(1842), + [anon_sym_i32] = ACTIONS(1842), + [anon_sym_u64] = ACTIONS(1842), + [anon_sym_i64] = ACTIONS(1842), + [anon_sym_u128] = ACTIONS(1842), + [anon_sym_i128] = ACTIONS(1842), + [anon_sym_isize] = ACTIONS(1842), + [anon_sym_usize] = ACTIONS(1842), + [anon_sym_f32] = ACTIONS(1842), + [anon_sym_f64] = ACTIONS(1842), + [anon_sym_bool] = ACTIONS(1842), + [anon_sym_str] = ACTIONS(1842), + [anon_sym_char] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1842), + [anon_sym_async] = ACTIONS(1842), + [anon_sym_break] = ACTIONS(1842), + [anon_sym_const] = ACTIONS(1842), + [anon_sym_continue] = ACTIONS(1842), + [anon_sym_default] = ACTIONS(1842), + [anon_sym_enum] = ACTIONS(1842), + [anon_sym_fn] = ACTIONS(1842), + [anon_sym_for] = ACTIONS(1842), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_impl] = ACTIONS(1842), + [anon_sym_let] = ACTIONS(1842), + [anon_sym_loop] = ACTIONS(1842), + [anon_sym_match] = ACTIONS(1842), + [anon_sym_mod] = ACTIONS(1842), + [anon_sym_pub] = ACTIONS(1842), + [anon_sym_return] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1842), + [anon_sym_struct] = ACTIONS(1842), + [anon_sym_trait] = ACTIONS(1842), + [anon_sym_type] = ACTIONS(1842), + [anon_sym_union] = ACTIONS(1842), + [anon_sym_unsafe] = ACTIONS(1842), + [anon_sym_use] = ACTIONS(1842), + [anon_sym_while] = ACTIONS(1842), + [anon_sym_POUND] = ACTIONS(1840), + [anon_sym_BANG] = ACTIONS(1840), + [anon_sym_extern] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1840), + [anon_sym_COLON_COLON] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1840), + [anon_sym_DOT_DOT] = ACTIONS(1840), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1840), + [anon_sym_yield] = ACTIONS(1842), + [anon_sym_move] = ACTIONS(1842), + [sym_integer_literal] = ACTIONS(1840), + [aux_sym_string_literal_token1] = ACTIONS(1840), + [sym_char_literal] = ACTIONS(1840), + [anon_sym_true] = ACTIONS(1842), + [anon_sym_false] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1842), + [sym_super] = ACTIONS(1842), + [sym_crate] = ACTIONS(1842), + [sym_metavariable] = ACTIONS(1840), + [sym_raw_string_literal] = ACTIONS(1840), + [sym_float_literal] = ACTIONS(1840), + [sym_block_comment] = ACTIONS(3), + }, + [438] = { [ts_builtin_sym_end] = ACTIONS(524), [sym_identifier] = ACTIONS(526), [anon_sym_SEMI] = ACTIONS(524), @@ -55372,546 +55518,546 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(524), [sym_block_comment] = ACTIONS(3), }, - [437] = { - [ts_builtin_sym_end] = ACTIONS(1875), - [sym_identifier] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1875), - [anon_sym_macro_rules_BANG] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1875), - [anon_sym_RBRACE] = ACTIONS(1875), - [anon_sym_LBRACK] = ACTIONS(1875), - [anon_sym_STAR] = ACTIONS(1875), - [anon_sym_u8] = ACTIONS(1877), - [anon_sym_i8] = ACTIONS(1877), - [anon_sym_u16] = ACTIONS(1877), - [anon_sym_i16] = ACTIONS(1877), - [anon_sym_u32] = ACTIONS(1877), - [anon_sym_i32] = ACTIONS(1877), - [anon_sym_u64] = ACTIONS(1877), - [anon_sym_i64] = ACTIONS(1877), - [anon_sym_u128] = ACTIONS(1877), - [anon_sym_i128] = ACTIONS(1877), - [anon_sym_isize] = ACTIONS(1877), - [anon_sym_usize] = ACTIONS(1877), - [anon_sym_f32] = ACTIONS(1877), - [anon_sym_f64] = ACTIONS(1877), - [anon_sym_bool] = ACTIONS(1877), - [anon_sym_str] = ACTIONS(1877), - [anon_sym_char] = ACTIONS(1877), - [anon_sym_SQUOTE] = ACTIONS(1877), - [anon_sym_async] = ACTIONS(1877), - [anon_sym_break] = ACTIONS(1877), - [anon_sym_const] = ACTIONS(1877), - [anon_sym_continue] = ACTIONS(1877), - [anon_sym_default] = ACTIONS(1877), - [anon_sym_enum] = ACTIONS(1877), - [anon_sym_fn] = ACTIONS(1877), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_impl] = ACTIONS(1877), - [anon_sym_let] = ACTIONS(1877), - [anon_sym_loop] = ACTIONS(1877), - [anon_sym_match] = ACTIONS(1877), - [anon_sym_mod] = ACTIONS(1877), - [anon_sym_pub] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(1877), - [anon_sym_static] = ACTIONS(1877), - [anon_sym_struct] = ACTIONS(1877), - [anon_sym_trait] = ACTIONS(1877), - [anon_sym_type] = ACTIONS(1877), - [anon_sym_union] = ACTIONS(1877), - [anon_sym_unsafe] = ACTIONS(1877), - [anon_sym_use] = ACTIONS(1877), - [anon_sym_while] = ACTIONS(1877), - [anon_sym_POUND] = ACTIONS(1875), - [anon_sym_BANG] = ACTIONS(1875), - [anon_sym_extern] = ACTIONS(1877), - [anon_sym_LT] = ACTIONS(1875), - [anon_sym_COLON_COLON] = ACTIONS(1875), - [anon_sym_AMP] = ACTIONS(1875), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [anon_sym_DASH] = ACTIONS(1875), - [anon_sym_PIPE] = ACTIONS(1875), - [anon_sym_yield] = ACTIONS(1877), - [anon_sym_move] = ACTIONS(1877), - [sym_integer_literal] = ACTIONS(1875), - [aux_sym_string_literal_token1] = ACTIONS(1875), - [sym_char_literal] = ACTIONS(1875), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1877), - [sym_super] = ACTIONS(1877), - [sym_crate] = ACTIONS(1877), - [sym_metavariable] = ACTIONS(1875), - [sym_raw_string_literal] = ACTIONS(1875), - [sym_float_literal] = ACTIONS(1875), - [sym_block_comment] = ACTIONS(3), - }, - [438] = { - [ts_builtin_sym_end] = ACTIONS(1879), - [sym_identifier] = ACTIONS(1881), - [anon_sym_SEMI] = ACTIONS(1879), - [anon_sym_macro_rules_BANG] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1879), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1879), - [anon_sym_u8] = ACTIONS(1881), - [anon_sym_i8] = ACTIONS(1881), - [anon_sym_u16] = ACTIONS(1881), - [anon_sym_i16] = ACTIONS(1881), - [anon_sym_u32] = ACTIONS(1881), - [anon_sym_i32] = ACTIONS(1881), - [anon_sym_u64] = ACTIONS(1881), - [anon_sym_i64] = ACTIONS(1881), - [anon_sym_u128] = ACTIONS(1881), - [anon_sym_i128] = ACTIONS(1881), - [anon_sym_isize] = ACTIONS(1881), - [anon_sym_usize] = ACTIONS(1881), - [anon_sym_f32] = ACTIONS(1881), - [anon_sym_f64] = ACTIONS(1881), - [anon_sym_bool] = ACTIONS(1881), - [anon_sym_str] = ACTIONS(1881), - [anon_sym_char] = ACTIONS(1881), - [anon_sym_SQUOTE] = ACTIONS(1881), - [anon_sym_async] = ACTIONS(1881), - [anon_sym_break] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_continue] = ACTIONS(1881), - [anon_sym_default] = ACTIONS(1881), - [anon_sym_enum] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_for] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_impl] = ACTIONS(1881), - [anon_sym_let] = ACTIONS(1881), - [anon_sym_loop] = ACTIONS(1881), - [anon_sym_match] = ACTIONS(1881), - [anon_sym_mod] = ACTIONS(1881), - [anon_sym_pub] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1881), - [anon_sym_static] = ACTIONS(1881), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_trait] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_union] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1881), - [anon_sym_use] = ACTIONS(1881), - [anon_sym_while] = ACTIONS(1881), - [anon_sym_POUND] = ACTIONS(1879), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1879), - [anon_sym_COLON_COLON] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_PIPE] = ACTIONS(1879), - [anon_sym_yield] = ACTIONS(1881), - [anon_sym_move] = ACTIONS(1881), - [sym_integer_literal] = ACTIONS(1879), - [aux_sym_string_literal_token1] = ACTIONS(1879), - [sym_char_literal] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1881), - [sym_super] = ACTIONS(1881), - [sym_crate] = ACTIONS(1881), - [sym_metavariable] = ACTIONS(1879), - [sym_raw_string_literal] = ACTIONS(1879), - [sym_float_literal] = ACTIONS(1879), - [sym_block_comment] = ACTIONS(3), - }, [439] = { - [ts_builtin_sym_end] = ACTIONS(1883), - [sym_identifier] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1883), - [anon_sym_macro_rules_BANG] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1883), - [anon_sym_RBRACE] = ACTIONS(1883), - [anon_sym_LBRACK] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_u8] = ACTIONS(1885), - [anon_sym_i8] = ACTIONS(1885), - [anon_sym_u16] = ACTIONS(1885), - [anon_sym_i16] = ACTIONS(1885), - [anon_sym_u32] = ACTIONS(1885), - [anon_sym_i32] = ACTIONS(1885), - [anon_sym_u64] = ACTIONS(1885), - [anon_sym_i64] = ACTIONS(1885), - [anon_sym_u128] = ACTIONS(1885), - [anon_sym_i128] = ACTIONS(1885), - [anon_sym_isize] = ACTIONS(1885), - [anon_sym_usize] = ACTIONS(1885), - [anon_sym_f32] = ACTIONS(1885), - [anon_sym_f64] = ACTIONS(1885), - [anon_sym_bool] = ACTIONS(1885), - [anon_sym_str] = ACTIONS(1885), - [anon_sym_char] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_async] = ACTIONS(1885), - [anon_sym_break] = ACTIONS(1885), - [anon_sym_const] = ACTIONS(1885), - [anon_sym_continue] = ACTIONS(1885), - [anon_sym_default] = ACTIONS(1885), - [anon_sym_enum] = ACTIONS(1885), - [anon_sym_fn] = ACTIONS(1885), - [anon_sym_for] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1885), - [anon_sym_impl] = ACTIONS(1885), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_loop] = ACTIONS(1885), - [anon_sym_match] = ACTIONS(1885), - [anon_sym_mod] = ACTIONS(1885), - [anon_sym_pub] = ACTIONS(1885), - [anon_sym_return] = ACTIONS(1885), - [anon_sym_static] = ACTIONS(1885), - [anon_sym_struct] = ACTIONS(1885), - [anon_sym_trait] = ACTIONS(1885), - [anon_sym_type] = ACTIONS(1885), - [anon_sym_union] = ACTIONS(1885), - [anon_sym_unsafe] = ACTIONS(1885), - [anon_sym_use] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(1883), - [anon_sym_BANG] = ACTIONS(1883), - [anon_sym_extern] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1883), - [anon_sym_COLON_COLON] = ACTIONS(1883), - [anon_sym_AMP] = ACTIONS(1883), - [anon_sym_DOT_DOT] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_PIPE] = ACTIONS(1883), - [anon_sym_yield] = ACTIONS(1885), - [anon_sym_move] = ACTIONS(1885), - [sym_integer_literal] = ACTIONS(1883), - [aux_sym_string_literal_token1] = ACTIONS(1883), - [sym_char_literal] = ACTIONS(1883), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1885), - [sym_super] = ACTIONS(1885), - [sym_crate] = ACTIONS(1885), - [sym_metavariable] = ACTIONS(1883), - [sym_raw_string_literal] = ACTIONS(1883), - [sym_float_literal] = ACTIONS(1883), + [ts_builtin_sym_end] = ACTIONS(1844), + [sym_identifier] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_macro_rules_BANG] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_LBRACK] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(1844), + [anon_sym_u8] = ACTIONS(1846), + [anon_sym_i8] = ACTIONS(1846), + [anon_sym_u16] = ACTIONS(1846), + [anon_sym_i16] = ACTIONS(1846), + [anon_sym_u32] = ACTIONS(1846), + [anon_sym_i32] = ACTIONS(1846), + [anon_sym_u64] = ACTIONS(1846), + [anon_sym_i64] = ACTIONS(1846), + [anon_sym_u128] = ACTIONS(1846), + [anon_sym_i128] = ACTIONS(1846), + [anon_sym_isize] = ACTIONS(1846), + [anon_sym_usize] = ACTIONS(1846), + [anon_sym_f32] = ACTIONS(1846), + [anon_sym_f64] = ACTIONS(1846), + [anon_sym_bool] = ACTIONS(1846), + [anon_sym_str] = ACTIONS(1846), + [anon_sym_char] = ACTIONS(1846), + [anon_sym_SQUOTE] = ACTIONS(1846), + [anon_sym_async] = ACTIONS(1846), + [anon_sym_break] = ACTIONS(1846), + [anon_sym_const] = ACTIONS(1846), + [anon_sym_continue] = ACTIONS(1846), + [anon_sym_default] = ACTIONS(1846), + [anon_sym_enum] = ACTIONS(1846), + [anon_sym_fn] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_impl] = ACTIONS(1846), + [anon_sym_let] = ACTIONS(1846), + [anon_sym_loop] = ACTIONS(1846), + [anon_sym_match] = ACTIONS(1846), + [anon_sym_mod] = ACTIONS(1846), + [anon_sym_pub] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_static] = ACTIONS(1846), + [anon_sym_struct] = ACTIONS(1846), + [anon_sym_trait] = ACTIONS(1846), + [anon_sym_type] = ACTIONS(1846), + [anon_sym_union] = ACTIONS(1846), + [anon_sym_unsafe] = ACTIONS(1846), + [anon_sym_use] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1846), + [anon_sym_POUND] = ACTIONS(1844), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_extern] = ACTIONS(1846), + [anon_sym_LT] = ACTIONS(1844), + [anon_sym_COLON_COLON] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_DOT_DOT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_yield] = ACTIONS(1846), + [anon_sym_move] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(1844), + [aux_sym_string_literal_token1] = ACTIONS(1844), + [sym_char_literal] = ACTIONS(1844), + [anon_sym_true] = ACTIONS(1846), + [anon_sym_false] = ACTIONS(1846), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1846), + [sym_super] = ACTIONS(1846), + [sym_crate] = ACTIONS(1846), + [sym_metavariable] = ACTIONS(1844), + [sym_raw_string_literal] = ACTIONS(1844), + [sym_float_literal] = ACTIONS(1844), [sym_block_comment] = ACTIONS(3), }, [440] = { - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_macro_rules_BANG] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_u8] = ACTIONS(1889), - [anon_sym_i8] = ACTIONS(1889), - [anon_sym_u16] = ACTIONS(1889), - [anon_sym_i16] = ACTIONS(1889), - [anon_sym_u32] = ACTIONS(1889), - [anon_sym_i32] = ACTIONS(1889), - [anon_sym_u64] = ACTIONS(1889), - [anon_sym_i64] = ACTIONS(1889), - [anon_sym_u128] = ACTIONS(1889), - [anon_sym_i128] = ACTIONS(1889), - [anon_sym_isize] = ACTIONS(1889), - [anon_sym_usize] = ACTIONS(1889), - [anon_sym_f32] = ACTIONS(1889), - [anon_sym_f64] = ACTIONS(1889), - [anon_sym_bool] = ACTIONS(1889), - [anon_sym_str] = ACTIONS(1889), - [anon_sym_char] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1889), - [anon_sym_async] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_default] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_impl] = ACTIONS(1889), - [anon_sym_let] = ACTIONS(1889), - [anon_sym_loop] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_mod] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_static] = ACTIONS(1889), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_trait] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_use] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_extern] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_COLON_COLON] = ACTIONS(1887), - [anon_sym_AMP] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_yield] = ACTIONS(1889), - [anon_sym_move] = ACTIONS(1889), - [sym_integer_literal] = ACTIONS(1887), - [aux_sym_string_literal_token1] = ACTIONS(1887), - [sym_char_literal] = ACTIONS(1887), - [anon_sym_true] = ACTIONS(1889), - [anon_sym_false] = ACTIONS(1889), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1889), - [sym_super] = ACTIONS(1889), - [sym_crate] = ACTIONS(1889), - [sym_metavariable] = ACTIONS(1887), - [sym_raw_string_literal] = ACTIONS(1887), - [sym_float_literal] = ACTIONS(1887), + [ts_builtin_sym_end] = ACTIONS(1848), + [sym_identifier] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_macro_rules_BANG] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_u8] = ACTIONS(1850), + [anon_sym_i8] = ACTIONS(1850), + [anon_sym_u16] = ACTIONS(1850), + [anon_sym_i16] = ACTIONS(1850), + [anon_sym_u32] = ACTIONS(1850), + [anon_sym_i32] = ACTIONS(1850), + [anon_sym_u64] = ACTIONS(1850), + [anon_sym_i64] = ACTIONS(1850), + [anon_sym_u128] = ACTIONS(1850), + [anon_sym_i128] = ACTIONS(1850), + [anon_sym_isize] = ACTIONS(1850), + [anon_sym_usize] = ACTIONS(1850), + [anon_sym_f32] = ACTIONS(1850), + [anon_sym_f64] = ACTIONS(1850), + [anon_sym_bool] = ACTIONS(1850), + [anon_sym_str] = ACTIONS(1850), + [anon_sym_char] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_async] = ACTIONS(1850), + [anon_sym_break] = ACTIONS(1850), + [anon_sym_const] = ACTIONS(1850), + [anon_sym_continue] = ACTIONS(1850), + [anon_sym_default] = ACTIONS(1850), + [anon_sym_enum] = ACTIONS(1850), + [anon_sym_fn] = ACTIONS(1850), + [anon_sym_for] = ACTIONS(1850), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_impl] = ACTIONS(1850), + [anon_sym_let] = ACTIONS(1850), + [anon_sym_loop] = ACTIONS(1850), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_mod] = ACTIONS(1850), + [anon_sym_pub] = ACTIONS(1850), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1850), + [anon_sym_struct] = ACTIONS(1850), + [anon_sym_trait] = ACTIONS(1850), + [anon_sym_type] = ACTIONS(1850), + [anon_sym_union] = ACTIONS(1850), + [anon_sym_unsafe] = ACTIONS(1850), + [anon_sym_use] = ACTIONS(1850), + [anon_sym_while] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(1848), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1850), + [anon_sym_LT] = ACTIONS(1848), + [anon_sym_COLON_COLON] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_DOT_DOT] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_yield] = ACTIONS(1850), + [anon_sym_move] = ACTIONS(1850), + [sym_integer_literal] = ACTIONS(1848), + [aux_sym_string_literal_token1] = ACTIONS(1848), + [sym_char_literal] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1850), + [sym_super] = ACTIONS(1850), + [sym_crate] = ACTIONS(1850), + [sym_metavariable] = ACTIONS(1848), + [sym_raw_string_literal] = ACTIONS(1848), + [sym_float_literal] = ACTIONS(1848), [sym_block_comment] = ACTIONS(3), }, [441] = { - [ts_builtin_sym_end] = ACTIONS(1891), - [sym_identifier] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1891), - [anon_sym_macro_rules_BANG] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_u8] = ACTIONS(1893), - [anon_sym_i8] = ACTIONS(1893), - [anon_sym_u16] = ACTIONS(1893), - [anon_sym_i16] = ACTIONS(1893), - [anon_sym_u32] = ACTIONS(1893), - [anon_sym_i32] = ACTIONS(1893), - [anon_sym_u64] = ACTIONS(1893), - [anon_sym_i64] = ACTIONS(1893), - [anon_sym_u128] = ACTIONS(1893), - [anon_sym_i128] = ACTIONS(1893), - [anon_sym_isize] = ACTIONS(1893), - [anon_sym_usize] = ACTIONS(1893), - [anon_sym_f32] = ACTIONS(1893), - [anon_sym_f64] = ACTIONS(1893), - [anon_sym_bool] = ACTIONS(1893), - [anon_sym_str] = ACTIONS(1893), - [anon_sym_char] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_async] = ACTIONS(1893), - [anon_sym_break] = ACTIONS(1893), - [anon_sym_const] = ACTIONS(1893), - [anon_sym_continue] = ACTIONS(1893), - [anon_sym_default] = ACTIONS(1893), - [anon_sym_enum] = ACTIONS(1893), - [anon_sym_fn] = ACTIONS(1893), - [anon_sym_for] = ACTIONS(1893), - [anon_sym_if] = ACTIONS(1893), - [anon_sym_impl] = ACTIONS(1893), - [anon_sym_let] = ACTIONS(1893), - [anon_sym_loop] = ACTIONS(1893), - [anon_sym_match] = ACTIONS(1893), - [anon_sym_mod] = ACTIONS(1893), - [anon_sym_pub] = ACTIONS(1893), - [anon_sym_return] = ACTIONS(1893), - [anon_sym_static] = ACTIONS(1893), - [anon_sym_struct] = ACTIONS(1893), - [anon_sym_trait] = ACTIONS(1893), - [anon_sym_type] = ACTIONS(1893), - [anon_sym_union] = ACTIONS(1893), - [anon_sym_unsafe] = ACTIONS(1893), - [anon_sym_use] = ACTIONS(1893), - [anon_sym_while] = ACTIONS(1893), - [anon_sym_POUND] = ACTIONS(1891), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_extern] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_COLON_COLON] = ACTIONS(1891), - [anon_sym_AMP] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_yield] = ACTIONS(1893), - [anon_sym_move] = ACTIONS(1893), - [sym_integer_literal] = ACTIONS(1891), - [aux_sym_string_literal_token1] = ACTIONS(1891), - [sym_char_literal] = ACTIONS(1891), - [anon_sym_true] = ACTIONS(1893), - [anon_sym_false] = ACTIONS(1893), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1893), - [sym_super] = ACTIONS(1893), - [sym_crate] = ACTIONS(1893), - [sym_metavariable] = ACTIONS(1891), - [sym_raw_string_literal] = ACTIONS(1891), - [sym_float_literal] = ACTIONS(1891), + [ts_builtin_sym_end] = ACTIONS(1852), + [sym_identifier] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_macro_rules_BANG] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_STAR] = ACTIONS(1852), + [anon_sym_u8] = ACTIONS(1854), + [anon_sym_i8] = ACTIONS(1854), + [anon_sym_u16] = ACTIONS(1854), + [anon_sym_i16] = ACTIONS(1854), + [anon_sym_u32] = ACTIONS(1854), + [anon_sym_i32] = ACTIONS(1854), + [anon_sym_u64] = ACTIONS(1854), + [anon_sym_i64] = ACTIONS(1854), + [anon_sym_u128] = ACTIONS(1854), + [anon_sym_i128] = ACTIONS(1854), + [anon_sym_isize] = ACTIONS(1854), + [anon_sym_usize] = ACTIONS(1854), + [anon_sym_f32] = ACTIONS(1854), + [anon_sym_f64] = ACTIONS(1854), + [anon_sym_bool] = ACTIONS(1854), + [anon_sym_str] = ACTIONS(1854), + [anon_sym_char] = ACTIONS(1854), + [anon_sym_SQUOTE] = ACTIONS(1854), + [anon_sym_async] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), + [anon_sym_fn] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_impl] = ACTIONS(1854), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_loop] = ACTIONS(1854), + [anon_sym_match] = ACTIONS(1854), + [anon_sym_mod] = ACTIONS(1854), + [anon_sym_pub] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_static] = ACTIONS(1854), + [anon_sym_struct] = ACTIONS(1854), + [anon_sym_trait] = ACTIONS(1854), + [anon_sym_type] = ACTIONS(1854), + [anon_sym_union] = ACTIONS(1854), + [anon_sym_unsafe] = ACTIONS(1854), + [anon_sym_use] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(1852), + [anon_sym_BANG] = ACTIONS(1852), + [anon_sym_extern] = ACTIONS(1854), + [anon_sym_LT] = ACTIONS(1852), + [anon_sym_COLON_COLON] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_DOT_DOT] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_yield] = ACTIONS(1854), + [anon_sym_move] = ACTIONS(1854), + [sym_integer_literal] = ACTIONS(1852), + [aux_sym_string_literal_token1] = ACTIONS(1852), + [sym_char_literal] = ACTIONS(1852), + [anon_sym_true] = ACTIONS(1854), + [anon_sym_false] = ACTIONS(1854), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1854), + [sym_super] = ACTIONS(1854), + [sym_crate] = ACTIONS(1854), + [sym_metavariable] = ACTIONS(1852), + [sym_raw_string_literal] = ACTIONS(1852), + [sym_float_literal] = ACTIONS(1852), [sym_block_comment] = ACTIONS(3), }, [442] = { - [ts_builtin_sym_end] = ACTIONS(1895), - [sym_identifier] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1895), - [anon_sym_macro_rules_BANG] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1895), - [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_STAR] = ACTIONS(1895), - [anon_sym_u8] = ACTIONS(1897), - [anon_sym_i8] = ACTIONS(1897), - [anon_sym_u16] = ACTIONS(1897), - [anon_sym_i16] = ACTIONS(1897), - [anon_sym_u32] = ACTIONS(1897), - [anon_sym_i32] = ACTIONS(1897), - [anon_sym_u64] = ACTIONS(1897), - [anon_sym_i64] = ACTIONS(1897), - [anon_sym_u128] = ACTIONS(1897), - [anon_sym_i128] = ACTIONS(1897), - [anon_sym_isize] = ACTIONS(1897), - [anon_sym_usize] = ACTIONS(1897), - [anon_sym_f32] = ACTIONS(1897), - [anon_sym_f64] = ACTIONS(1897), - [anon_sym_bool] = ACTIONS(1897), - [anon_sym_str] = ACTIONS(1897), - [anon_sym_char] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_break] = ACTIONS(1897), - [anon_sym_const] = ACTIONS(1897), - [anon_sym_continue] = ACTIONS(1897), - [anon_sym_default] = ACTIONS(1897), - [anon_sym_enum] = ACTIONS(1897), - [anon_sym_fn] = ACTIONS(1897), - [anon_sym_for] = ACTIONS(1897), - [anon_sym_if] = ACTIONS(1897), - [anon_sym_impl] = ACTIONS(1897), - [anon_sym_let] = ACTIONS(1897), - [anon_sym_loop] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1897), - [anon_sym_mod] = ACTIONS(1897), - [anon_sym_pub] = ACTIONS(1897), - [anon_sym_return] = ACTIONS(1897), - [anon_sym_static] = ACTIONS(1897), - [anon_sym_struct] = ACTIONS(1897), - [anon_sym_trait] = ACTIONS(1897), - [anon_sym_type] = ACTIONS(1897), - [anon_sym_union] = ACTIONS(1897), - [anon_sym_unsafe] = ACTIONS(1897), - [anon_sym_use] = ACTIONS(1897), - [anon_sym_while] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(1895), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1897), - [anon_sym_LT] = ACTIONS(1895), - [anon_sym_COLON_COLON] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1895), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_PIPE] = ACTIONS(1895), - [anon_sym_yield] = ACTIONS(1897), - [anon_sym_move] = ACTIONS(1897), - [sym_integer_literal] = ACTIONS(1895), - [aux_sym_string_literal_token1] = ACTIONS(1895), - [sym_char_literal] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_false] = ACTIONS(1897), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1897), - [sym_super] = ACTIONS(1897), - [sym_crate] = ACTIONS(1897), - [sym_metavariable] = ACTIONS(1895), - [sym_raw_string_literal] = ACTIONS(1895), - [sym_float_literal] = ACTIONS(1895), + [ts_builtin_sym_end] = ACTIONS(1856), + [sym_identifier] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_macro_rules_BANG] = ACTIONS(1856), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_STAR] = ACTIONS(1856), + [anon_sym_u8] = ACTIONS(1858), + [anon_sym_i8] = ACTIONS(1858), + [anon_sym_u16] = ACTIONS(1858), + [anon_sym_i16] = ACTIONS(1858), + [anon_sym_u32] = ACTIONS(1858), + [anon_sym_i32] = ACTIONS(1858), + [anon_sym_u64] = ACTIONS(1858), + [anon_sym_i64] = ACTIONS(1858), + [anon_sym_u128] = ACTIONS(1858), + [anon_sym_i128] = ACTIONS(1858), + [anon_sym_isize] = ACTIONS(1858), + [anon_sym_usize] = ACTIONS(1858), + [anon_sym_f32] = ACTIONS(1858), + [anon_sym_f64] = ACTIONS(1858), + [anon_sym_bool] = ACTIONS(1858), + [anon_sym_str] = ACTIONS(1858), + [anon_sym_char] = ACTIONS(1858), + [anon_sym_SQUOTE] = ACTIONS(1858), + [anon_sym_async] = ACTIONS(1858), + [anon_sym_break] = ACTIONS(1858), + [anon_sym_const] = ACTIONS(1858), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_enum] = ACTIONS(1858), + [anon_sym_fn] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_impl] = ACTIONS(1858), + [anon_sym_let] = ACTIONS(1858), + [anon_sym_loop] = ACTIONS(1858), + [anon_sym_match] = ACTIONS(1858), + [anon_sym_mod] = ACTIONS(1858), + [anon_sym_pub] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_static] = ACTIONS(1858), + [anon_sym_struct] = ACTIONS(1858), + [anon_sym_trait] = ACTIONS(1858), + [anon_sym_type] = ACTIONS(1858), + [anon_sym_union] = ACTIONS(1858), + [anon_sym_unsafe] = ACTIONS(1858), + [anon_sym_use] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(1856), + [anon_sym_BANG] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(1856), + [anon_sym_AMP] = ACTIONS(1856), + [anon_sym_DOT_DOT] = ACTIONS(1856), + [anon_sym_DASH] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_yield] = ACTIONS(1858), + [anon_sym_move] = ACTIONS(1858), + [sym_integer_literal] = ACTIONS(1856), + [aux_sym_string_literal_token1] = ACTIONS(1856), + [sym_char_literal] = ACTIONS(1856), + [anon_sym_true] = ACTIONS(1858), + [anon_sym_false] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1858), + [sym_super] = ACTIONS(1858), + [sym_crate] = ACTIONS(1858), + [sym_metavariable] = ACTIONS(1856), + [sym_raw_string_literal] = ACTIONS(1856), + [sym_float_literal] = ACTIONS(1856), [sym_block_comment] = ACTIONS(3), }, [443] = { - [ts_builtin_sym_end] = ACTIONS(1899), - [sym_identifier] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_macro_rules_BANG] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_u8] = ACTIONS(1901), - [anon_sym_i8] = ACTIONS(1901), - [anon_sym_u16] = ACTIONS(1901), - [anon_sym_i16] = ACTIONS(1901), - [anon_sym_u32] = ACTIONS(1901), - [anon_sym_i32] = ACTIONS(1901), - [anon_sym_u64] = ACTIONS(1901), - [anon_sym_i64] = ACTIONS(1901), - [anon_sym_u128] = ACTIONS(1901), - [anon_sym_i128] = ACTIONS(1901), - [anon_sym_isize] = ACTIONS(1901), - [anon_sym_usize] = ACTIONS(1901), - [anon_sym_f32] = ACTIONS(1901), - [anon_sym_f64] = ACTIONS(1901), - [anon_sym_bool] = ACTIONS(1901), - [anon_sym_str] = ACTIONS(1901), - [anon_sym_char] = ACTIONS(1901), - [anon_sym_SQUOTE] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_const] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_default] = ACTIONS(1901), - [anon_sym_enum] = ACTIONS(1901), - [anon_sym_fn] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_impl] = ACTIONS(1901), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_loop] = ACTIONS(1901), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_mod] = ACTIONS(1901), - [anon_sym_pub] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(1901), - [anon_sym_static] = ACTIONS(1901), - [anon_sym_struct] = ACTIONS(1901), - [anon_sym_trait] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_union] = ACTIONS(1901), - [anon_sym_unsafe] = ACTIONS(1901), - [anon_sym_use] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_POUND] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_COLON_COLON] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_yield] = ACTIONS(1901), - [anon_sym_move] = ACTIONS(1901), - [sym_integer_literal] = ACTIONS(1899), - [aux_sym_string_literal_token1] = ACTIONS(1899), - [sym_char_literal] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1901), - [sym_super] = ACTIONS(1901), - [sym_crate] = ACTIONS(1901), - [sym_metavariable] = ACTIONS(1899), - [sym_raw_string_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1899), + [ts_builtin_sym_end] = ACTIONS(1860), + [sym_identifier] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_macro_rules_BANG] = ACTIONS(1860), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1860), + [anon_sym_RBRACE] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1860), + [anon_sym_u8] = ACTIONS(1862), + [anon_sym_i8] = ACTIONS(1862), + [anon_sym_u16] = ACTIONS(1862), + [anon_sym_i16] = ACTIONS(1862), + [anon_sym_u32] = ACTIONS(1862), + [anon_sym_i32] = ACTIONS(1862), + [anon_sym_u64] = ACTIONS(1862), + [anon_sym_i64] = ACTIONS(1862), + [anon_sym_u128] = ACTIONS(1862), + [anon_sym_i128] = ACTIONS(1862), + [anon_sym_isize] = ACTIONS(1862), + [anon_sym_usize] = ACTIONS(1862), + [anon_sym_f32] = ACTIONS(1862), + [anon_sym_f64] = ACTIONS(1862), + [anon_sym_bool] = ACTIONS(1862), + [anon_sym_str] = ACTIONS(1862), + [anon_sym_char] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_async] = ACTIONS(1862), + [anon_sym_break] = ACTIONS(1862), + [anon_sym_const] = ACTIONS(1862), + [anon_sym_continue] = ACTIONS(1862), + [anon_sym_default] = ACTIONS(1862), + [anon_sym_enum] = ACTIONS(1862), + [anon_sym_fn] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1862), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_impl] = ACTIONS(1862), + [anon_sym_let] = ACTIONS(1862), + [anon_sym_loop] = ACTIONS(1862), + [anon_sym_match] = ACTIONS(1862), + [anon_sym_mod] = ACTIONS(1862), + [anon_sym_pub] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1862), + [anon_sym_struct] = ACTIONS(1862), + [anon_sym_trait] = ACTIONS(1862), + [anon_sym_type] = ACTIONS(1862), + [anon_sym_union] = ACTIONS(1862), + [anon_sym_unsafe] = ACTIONS(1862), + [anon_sym_use] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(1860), + [anon_sym_BANG] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1862), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_COLON_COLON] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_yield] = ACTIONS(1862), + [anon_sym_move] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(1860), + [aux_sym_string_literal_token1] = ACTIONS(1860), + [sym_char_literal] = ACTIONS(1860), + [anon_sym_true] = ACTIONS(1862), + [anon_sym_false] = ACTIONS(1862), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1862), + [sym_super] = ACTIONS(1862), + [sym_crate] = ACTIONS(1862), + [sym_metavariable] = ACTIONS(1860), + [sym_raw_string_literal] = ACTIONS(1860), + [sym_float_literal] = ACTIONS(1860), [sym_block_comment] = ACTIONS(3), }, [444] = { + [ts_builtin_sym_end] = ACTIONS(1864), + [sym_identifier] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_macro_rules_BANG] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_STAR] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_async] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_default] = ACTIONS(1866), + [anon_sym_enum] = ACTIONS(1866), + [anon_sym_fn] = ACTIONS(1866), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_impl] = ACTIONS(1866), + [anon_sym_let] = ACTIONS(1866), + [anon_sym_loop] = ACTIONS(1866), + [anon_sym_match] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1866), + [anon_sym_pub] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1866), + [anon_sym_struct] = ACTIONS(1866), + [anon_sym_trait] = ACTIONS(1866), + [anon_sym_type] = ACTIONS(1866), + [anon_sym_union] = ACTIONS(1866), + [anon_sym_unsafe] = ACTIONS(1866), + [anon_sym_use] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1864), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1864), + [anon_sym_COLON_COLON] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1864), + [anon_sym_DOT_DOT] = ACTIONS(1864), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_PIPE] = ACTIONS(1864), + [anon_sym_yield] = ACTIONS(1866), + [anon_sym_move] = ACTIONS(1866), + [sym_integer_literal] = ACTIONS(1864), + [aux_sym_string_literal_token1] = ACTIONS(1864), + [sym_char_literal] = ACTIONS(1864), + [anon_sym_true] = ACTIONS(1866), + [anon_sym_false] = ACTIONS(1866), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1866), + [sym_super] = ACTIONS(1866), + [sym_crate] = ACTIONS(1866), + [sym_metavariable] = ACTIONS(1864), + [sym_raw_string_literal] = ACTIONS(1864), + [sym_float_literal] = ACTIONS(1864), + [sym_block_comment] = ACTIONS(3), + }, + [445] = { + [ts_builtin_sym_end] = ACTIONS(1868), + [sym_identifier] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_macro_rules_BANG] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_LBRACK] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1868), + [anon_sym_u8] = ACTIONS(1870), + [anon_sym_i8] = ACTIONS(1870), + [anon_sym_u16] = ACTIONS(1870), + [anon_sym_i16] = ACTIONS(1870), + [anon_sym_u32] = ACTIONS(1870), + [anon_sym_i32] = ACTIONS(1870), + [anon_sym_u64] = ACTIONS(1870), + [anon_sym_i64] = ACTIONS(1870), + [anon_sym_u128] = ACTIONS(1870), + [anon_sym_i128] = ACTIONS(1870), + [anon_sym_isize] = ACTIONS(1870), + [anon_sym_usize] = ACTIONS(1870), + [anon_sym_f32] = ACTIONS(1870), + [anon_sym_f64] = ACTIONS(1870), + [anon_sym_bool] = ACTIONS(1870), + [anon_sym_str] = ACTIONS(1870), + [anon_sym_char] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_break] = ACTIONS(1870), + [anon_sym_const] = ACTIONS(1870), + [anon_sym_continue] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1870), + [anon_sym_enum] = ACTIONS(1870), + [anon_sym_fn] = ACTIONS(1870), + [anon_sym_for] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(1870), + [anon_sym_impl] = ACTIONS(1870), + [anon_sym_let] = ACTIONS(1870), + [anon_sym_loop] = ACTIONS(1870), + [anon_sym_match] = ACTIONS(1870), + [anon_sym_mod] = ACTIONS(1870), + [anon_sym_pub] = ACTIONS(1870), + [anon_sym_return] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1870), + [anon_sym_struct] = ACTIONS(1870), + [anon_sym_trait] = ACTIONS(1870), + [anon_sym_type] = ACTIONS(1870), + [anon_sym_union] = ACTIONS(1870), + [anon_sym_unsafe] = ACTIONS(1870), + [anon_sym_use] = ACTIONS(1870), + [anon_sym_while] = ACTIONS(1870), + [anon_sym_POUND] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1870), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_COLON_COLON] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_DOT_DOT] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_yield] = ACTIONS(1870), + [anon_sym_move] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(1868), + [aux_sym_string_literal_token1] = ACTIONS(1868), + [sym_char_literal] = ACTIONS(1868), + [anon_sym_true] = ACTIONS(1870), + [anon_sym_false] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1870), + [sym_super] = ACTIONS(1870), + [sym_crate] = ACTIONS(1870), + [sym_metavariable] = ACTIONS(1868), + [sym_raw_string_literal] = ACTIONS(1868), + [sym_float_literal] = ACTIONS(1868), + [sym_block_comment] = ACTIONS(3), + }, + [446] = { [ts_builtin_sym_end] = ACTIONS(544), [sym_identifier] = ACTIONS(546), [anon_sym_SEMI] = ACTIONS(544), @@ -55988,392 +56134,392 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(544), [sym_block_comment] = ACTIONS(3), }, - [445] = { - [ts_builtin_sym_end] = ACTIONS(1903), - [sym_identifier] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1903), - [anon_sym_macro_rules_BANG] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_RBRACE] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_STAR] = ACTIONS(1903), - [anon_sym_u8] = ACTIONS(1905), - [anon_sym_i8] = ACTIONS(1905), - [anon_sym_u16] = ACTIONS(1905), - [anon_sym_i16] = ACTIONS(1905), - [anon_sym_u32] = ACTIONS(1905), - [anon_sym_i32] = ACTIONS(1905), - [anon_sym_u64] = ACTIONS(1905), - [anon_sym_i64] = ACTIONS(1905), - [anon_sym_u128] = ACTIONS(1905), - [anon_sym_i128] = ACTIONS(1905), - [anon_sym_isize] = ACTIONS(1905), - [anon_sym_usize] = ACTIONS(1905), - [anon_sym_f32] = ACTIONS(1905), - [anon_sym_f64] = ACTIONS(1905), - [anon_sym_bool] = ACTIONS(1905), - [anon_sym_str] = ACTIONS(1905), - [anon_sym_char] = ACTIONS(1905), - [anon_sym_SQUOTE] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_default] = ACTIONS(1905), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_fn] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_impl] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_mod] = ACTIONS(1905), - [anon_sym_pub] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_static] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(1905), - [anon_sym_trait] = ACTIONS(1905), - [anon_sym_type] = ACTIONS(1905), - [anon_sym_union] = ACTIONS(1905), - [anon_sym_unsafe] = ACTIONS(1905), - [anon_sym_use] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(1903), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_extern] = ACTIONS(1905), - [anon_sym_LT] = ACTIONS(1903), - [anon_sym_COLON_COLON] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_DOT_DOT] = ACTIONS(1903), - [anon_sym_DASH] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1903), - [anon_sym_yield] = ACTIONS(1905), - [anon_sym_move] = ACTIONS(1905), - [sym_integer_literal] = ACTIONS(1903), - [aux_sym_string_literal_token1] = ACTIONS(1903), - [sym_char_literal] = ACTIONS(1903), - [anon_sym_true] = ACTIONS(1905), - [anon_sym_false] = ACTIONS(1905), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1905), - [sym_super] = ACTIONS(1905), - [sym_crate] = ACTIONS(1905), - [sym_metavariable] = ACTIONS(1903), - [sym_raw_string_literal] = ACTIONS(1903), - [sym_float_literal] = ACTIONS(1903), - [sym_block_comment] = ACTIONS(3), - }, - [446] = { - [ts_builtin_sym_end] = ACTIONS(1907), - [sym_identifier] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1907), - [anon_sym_macro_rules_BANG] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_LBRACK] = ACTIONS(1907), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_u8] = ACTIONS(1909), - [anon_sym_i8] = ACTIONS(1909), - [anon_sym_u16] = ACTIONS(1909), - [anon_sym_i16] = ACTIONS(1909), - [anon_sym_u32] = ACTIONS(1909), - [anon_sym_i32] = ACTIONS(1909), - [anon_sym_u64] = ACTIONS(1909), - [anon_sym_i64] = ACTIONS(1909), - [anon_sym_u128] = ACTIONS(1909), - [anon_sym_i128] = ACTIONS(1909), - [anon_sym_isize] = ACTIONS(1909), - [anon_sym_usize] = ACTIONS(1909), - [anon_sym_f32] = ACTIONS(1909), - [anon_sym_f64] = ACTIONS(1909), - [anon_sym_bool] = ACTIONS(1909), - [anon_sym_str] = ACTIONS(1909), - [anon_sym_char] = ACTIONS(1909), - [anon_sym_SQUOTE] = ACTIONS(1909), - [anon_sym_async] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1909), - [anon_sym_continue] = ACTIONS(1909), - [anon_sym_default] = ACTIONS(1909), - [anon_sym_enum] = ACTIONS(1909), - [anon_sym_fn] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(1909), - [anon_sym_if] = ACTIONS(1909), - [anon_sym_impl] = ACTIONS(1909), - [anon_sym_let] = ACTIONS(1909), - [anon_sym_loop] = ACTIONS(1909), - [anon_sym_match] = ACTIONS(1909), - [anon_sym_mod] = ACTIONS(1909), - [anon_sym_pub] = ACTIONS(1909), - [anon_sym_return] = ACTIONS(1909), - [anon_sym_static] = ACTIONS(1909), - [anon_sym_struct] = ACTIONS(1909), - [anon_sym_trait] = ACTIONS(1909), - [anon_sym_type] = ACTIONS(1909), - [anon_sym_union] = ACTIONS(1909), - [anon_sym_unsafe] = ACTIONS(1909), - [anon_sym_use] = ACTIONS(1909), - [anon_sym_while] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(1907), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_extern] = ACTIONS(1909), - [anon_sym_LT] = ACTIONS(1907), - [anon_sym_COLON_COLON] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1907), - [anon_sym_DOT_DOT] = ACTIONS(1907), - [anon_sym_DASH] = ACTIONS(1907), - [anon_sym_PIPE] = ACTIONS(1907), - [anon_sym_yield] = ACTIONS(1909), - [anon_sym_move] = ACTIONS(1909), - [sym_integer_literal] = ACTIONS(1907), - [aux_sym_string_literal_token1] = ACTIONS(1907), - [sym_char_literal] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1909), - [anon_sym_false] = ACTIONS(1909), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1909), - [sym_super] = ACTIONS(1909), - [sym_crate] = ACTIONS(1909), - [sym_metavariable] = ACTIONS(1907), - [sym_raw_string_literal] = ACTIONS(1907), - [sym_float_literal] = ACTIONS(1907), - [sym_block_comment] = ACTIONS(3), - }, [447] = { - [ts_builtin_sym_end] = ACTIONS(1911), - [sym_identifier] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_macro_rules_BANG] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_u8] = ACTIONS(1913), - [anon_sym_i8] = ACTIONS(1913), - [anon_sym_u16] = ACTIONS(1913), - [anon_sym_i16] = ACTIONS(1913), - [anon_sym_u32] = ACTIONS(1913), - [anon_sym_i32] = ACTIONS(1913), - [anon_sym_u64] = ACTIONS(1913), - [anon_sym_i64] = ACTIONS(1913), - [anon_sym_u128] = ACTIONS(1913), - [anon_sym_i128] = ACTIONS(1913), - [anon_sym_isize] = ACTIONS(1913), - [anon_sym_usize] = ACTIONS(1913), - [anon_sym_f32] = ACTIONS(1913), - [anon_sym_f64] = ACTIONS(1913), - [anon_sym_bool] = ACTIONS(1913), - [anon_sym_str] = ACTIONS(1913), - [anon_sym_char] = ACTIONS(1913), - [anon_sym_SQUOTE] = ACTIONS(1913), - [anon_sym_async] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_default] = ACTIONS(1913), - [anon_sym_enum] = ACTIONS(1913), - [anon_sym_fn] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_impl] = ACTIONS(1913), - [anon_sym_let] = ACTIONS(1913), - [anon_sym_loop] = ACTIONS(1913), - [anon_sym_match] = ACTIONS(1913), - [anon_sym_mod] = ACTIONS(1913), - [anon_sym_pub] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_static] = ACTIONS(1913), - [anon_sym_struct] = ACTIONS(1913), - [anon_sym_trait] = ACTIONS(1913), - [anon_sym_type] = ACTIONS(1913), - [anon_sym_union] = ACTIONS(1913), - [anon_sym_unsafe] = ACTIONS(1913), - [anon_sym_use] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_extern] = ACTIONS(1913), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_COLON_COLON] = ACTIONS(1911), - [anon_sym_AMP] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_yield] = ACTIONS(1913), - [anon_sym_move] = ACTIONS(1913), - [sym_integer_literal] = ACTIONS(1911), - [aux_sym_string_literal_token1] = ACTIONS(1911), - [sym_char_literal] = ACTIONS(1911), - [anon_sym_true] = ACTIONS(1913), - [anon_sym_false] = ACTIONS(1913), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1913), - [sym_super] = ACTIONS(1913), - [sym_crate] = ACTIONS(1913), - [sym_metavariable] = ACTIONS(1911), - [sym_raw_string_literal] = ACTIONS(1911), - [sym_float_literal] = ACTIONS(1911), + [ts_builtin_sym_end] = ACTIONS(1872), + [sym_identifier] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_macro_rules_BANG] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_LBRACK] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_u8] = ACTIONS(1874), + [anon_sym_i8] = ACTIONS(1874), + [anon_sym_u16] = ACTIONS(1874), + [anon_sym_i16] = ACTIONS(1874), + [anon_sym_u32] = ACTIONS(1874), + [anon_sym_i32] = ACTIONS(1874), + [anon_sym_u64] = ACTIONS(1874), + [anon_sym_i64] = ACTIONS(1874), + [anon_sym_u128] = ACTIONS(1874), + [anon_sym_i128] = ACTIONS(1874), + [anon_sym_isize] = ACTIONS(1874), + [anon_sym_usize] = ACTIONS(1874), + [anon_sym_f32] = ACTIONS(1874), + [anon_sym_f64] = ACTIONS(1874), + [anon_sym_bool] = ACTIONS(1874), + [anon_sym_str] = ACTIONS(1874), + [anon_sym_char] = ACTIONS(1874), + [anon_sym_SQUOTE] = ACTIONS(1874), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_default] = ACTIONS(1874), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_fn] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_impl] = ACTIONS(1874), + [anon_sym_let] = ACTIONS(1874), + [anon_sym_loop] = ACTIONS(1874), + [anon_sym_match] = ACTIONS(1874), + [anon_sym_mod] = ACTIONS(1874), + [anon_sym_pub] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_struct] = ACTIONS(1874), + [anon_sym_trait] = ACTIONS(1874), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_union] = ACTIONS(1874), + [anon_sym_unsafe] = ACTIONS(1874), + [anon_sym_use] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(1872), + [anon_sym_BANG] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1872), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1874), + [anon_sym_move] = ACTIONS(1874), + [sym_integer_literal] = ACTIONS(1872), + [aux_sym_string_literal_token1] = ACTIONS(1872), + [sym_char_literal] = ACTIONS(1872), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1874), + [sym_super] = ACTIONS(1874), + [sym_crate] = ACTIONS(1874), + [sym_metavariable] = ACTIONS(1872), + [sym_raw_string_literal] = ACTIONS(1872), + [sym_float_literal] = ACTIONS(1872), [sym_block_comment] = ACTIONS(3), }, [448] = { - [ts_builtin_sym_end] = ACTIONS(1915), - [sym_identifier] = ACTIONS(1917), - [anon_sym_SEMI] = ACTIONS(1915), - [anon_sym_macro_rules_BANG] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1915), - [anon_sym_u8] = ACTIONS(1917), - [anon_sym_i8] = ACTIONS(1917), - [anon_sym_u16] = ACTIONS(1917), - [anon_sym_i16] = ACTIONS(1917), - [anon_sym_u32] = ACTIONS(1917), - [anon_sym_i32] = ACTIONS(1917), - [anon_sym_u64] = ACTIONS(1917), - [anon_sym_i64] = ACTIONS(1917), - [anon_sym_u128] = ACTIONS(1917), - [anon_sym_i128] = ACTIONS(1917), - [anon_sym_isize] = ACTIONS(1917), - [anon_sym_usize] = ACTIONS(1917), - [anon_sym_f32] = ACTIONS(1917), - [anon_sym_f64] = ACTIONS(1917), - [anon_sym_bool] = ACTIONS(1917), - [anon_sym_str] = ACTIONS(1917), - [anon_sym_char] = ACTIONS(1917), - [anon_sym_SQUOTE] = ACTIONS(1917), - [anon_sym_async] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_default] = ACTIONS(1917), - [anon_sym_enum] = ACTIONS(1917), - [anon_sym_fn] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_impl] = ACTIONS(1917), - [anon_sym_let] = ACTIONS(1917), - [anon_sym_loop] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_mod] = ACTIONS(1917), - [anon_sym_pub] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_static] = ACTIONS(1917), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_trait] = ACTIONS(1917), - [anon_sym_type] = ACTIONS(1917), - [anon_sym_union] = ACTIONS(1917), - [anon_sym_unsafe] = ACTIONS(1917), - [anon_sym_use] = ACTIONS(1917), - [anon_sym_while] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(1915), - [anon_sym_BANG] = ACTIONS(1915), - [anon_sym_extern] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_COLON_COLON] = ACTIONS(1915), - [anon_sym_AMP] = ACTIONS(1915), - [anon_sym_DOT_DOT] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_yield] = ACTIONS(1917), - [anon_sym_move] = ACTIONS(1917), - [sym_integer_literal] = ACTIONS(1915), - [aux_sym_string_literal_token1] = ACTIONS(1915), - [sym_char_literal] = ACTIONS(1915), - [anon_sym_true] = ACTIONS(1917), - [anon_sym_false] = ACTIONS(1917), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1917), - [sym_super] = ACTIONS(1917), - [sym_crate] = ACTIONS(1917), - [sym_metavariable] = ACTIONS(1915), - [sym_raw_string_literal] = ACTIONS(1915), - [sym_float_literal] = ACTIONS(1915), + [ts_builtin_sym_end] = ACTIONS(1876), + [sym_identifier] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_macro_rules_BANG] = ACTIONS(1876), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1876), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1876), + [anon_sym_u8] = ACTIONS(1878), + [anon_sym_i8] = ACTIONS(1878), + [anon_sym_u16] = ACTIONS(1878), + [anon_sym_i16] = ACTIONS(1878), + [anon_sym_u32] = ACTIONS(1878), + [anon_sym_i32] = ACTIONS(1878), + [anon_sym_u64] = ACTIONS(1878), + [anon_sym_i64] = ACTIONS(1878), + [anon_sym_u128] = ACTIONS(1878), + [anon_sym_i128] = ACTIONS(1878), + [anon_sym_isize] = ACTIONS(1878), + [anon_sym_usize] = ACTIONS(1878), + [anon_sym_f32] = ACTIONS(1878), + [anon_sym_f64] = ACTIONS(1878), + [anon_sym_bool] = ACTIONS(1878), + [anon_sym_str] = ACTIONS(1878), + [anon_sym_char] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_async] = ACTIONS(1878), + [anon_sym_break] = ACTIONS(1878), + [anon_sym_const] = ACTIONS(1878), + [anon_sym_continue] = ACTIONS(1878), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_enum] = ACTIONS(1878), + [anon_sym_fn] = ACTIONS(1878), + [anon_sym_for] = ACTIONS(1878), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_impl] = ACTIONS(1878), + [anon_sym_let] = ACTIONS(1878), + [anon_sym_loop] = ACTIONS(1878), + [anon_sym_match] = ACTIONS(1878), + [anon_sym_mod] = ACTIONS(1878), + [anon_sym_pub] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1878), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_trait] = ACTIONS(1878), + [anon_sym_type] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_unsafe] = ACTIONS(1878), + [anon_sym_use] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_POUND] = ACTIONS(1876), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1876), + [anon_sym_AMP] = ACTIONS(1876), + [anon_sym_DOT_DOT] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_yield] = ACTIONS(1878), + [anon_sym_move] = ACTIONS(1878), + [sym_integer_literal] = ACTIONS(1876), + [aux_sym_string_literal_token1] = ACTIONS(1876), + [sym_char_literal] = ACTIONS(1876), + [anon_sym_true] = ACTIONS(1878), + [anon_sym_false] = ACTIONS(1878), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1878), + [sym_super] = ACTIONS(1878), + [sym_crate] = ACTIONS(1878), + [sym_metavariable] = ACTIONS(1876), + [sym_raw_string_literal] = ACTIONS(1876), + [sym_float_literal] = ACTIONS(1876), [sym_block_comment] = ACTIONS(3), }, [449] = { - [ts_builtin_sym_end] = ACTIONS(1919), - [sym_identifier] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1919), - [anon_sym_macro_rules_BANG] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_LBRACK] = ACTIONS(1919), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_u8] = ACTIONS(1921), - [anon_sym_i8] = ACTIONS(1921), - [anon_sym_u16] = ACTIONS(1921), - [anon_sym_i16] = ACTIONS(1921), - [anon_sym_u32] = ACTIONS(1921), - [anon_sym_i32] = ACTIONS(1921), - [anon_sym_u64] = ACTIONS(1921), - [anon_sym_i64] = ACTIONS(1921), - [anon_sym_u128] = ACTIONS(1921), - [anon_sym_i128] = ACTIONS(1921), - [anon_sym_isize] = ACTIONS(1921), - [anon_sym_usize] = ACTIONS(1921), - [anon_sym_f32] = ACTIONS(1921), - [anon_sym_f64] = ACTIONS(1921), - [anon_sym_bool] = ACTIONS(1921), - [anon_sym_str] = ACTIONS(1921), - [anon_sym_char] = ACTIONS(1921), - [anon_sym_SQUOTE] = ACTIONS(1921), - [anon_sym_async] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_default] = ACTIONS(1921), - [anon_sym_enum] = ACTIONS(1921), - [anon_sym_fn] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_impl] = ACTIONS(1921), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_loop] = ACTIONS(1921), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_mod] = ACTIONS(1921), - [anon_sym_pub] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_static] = ACTIONS(1921), - [anon_sym_struct] = ACTIONS(1921), - [anon_sym_trait] = ACTIONS(1921), - [anon_sym_type] = ACTIONS(1921), - [anon_sym_union] = ACTIONS(1921), - [anon_sym_unsafe] = ACTIONS(1921), - [anon_sym_use] = ACTIONS(1921), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_extern] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_COLON_COLON] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_DOT_DOT] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_yield] = ACTIONS(1921), - [anon_sym_move] = ACTIONS(1921), - [sym_integer_literal] = ACTIONS(1919), - [aux_sym_string_literal_token1] = ACTIONS(1919), - [sym_char_literal] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1921), - [anon_sym_false] = ACTIONS(1921), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1921), - [sym_super] = ACTIONS(1921), - [sym_crate] = ACTIONS(1921), - [sym_metavariable] = ACTIONS(1919), - [sym_raw_string_literal] = ACTIONS(1919), - [sym_float_literal] = ACTIONS(1919), + [ts_builtin_sym_end] = ACTIONS(1880), + [sym_identifier] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_macro_rules_BANG] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_STAR] = ACTIONS(1880), + [anon_sym_u8] = ACTIONS(1882), + [anon_sym_i8] = ACTIONS(1882), + [anon_sym_u16] = ACTIONS(1882), + [anon_sym_i16] = ACTIONS(1882), + [anon_sym_u32] = ACTIONS(1882), + [anon_sym_i32] = ACTIONS(1882), + [anon_sym_u64] = ACTIONS(1882), + [anon_sym_i64] = ACTIONS(1882), + [anon_sym_u128] = ACTIONS(1882), + [anon_sym_i128] = ACTIONS(1882), + [anon_sym_isize] = ACTIONS(1882), + [anon_sym_usize] = ACTIONS(1882), + [anon_sym_f32] = ACTIONS(1882), + [anon_sym_f64] = ACTIONS(1882), + [anon_sym_bool] = ACTIONS(1882), + [anon_sym_str] = ACTIONS(1882), + [anon_sym_char] = ACTIONS(1882), + [anon_sym_SQUOTE] = ACTIONS(1882), + [anon_sym_async] = ACTIONS(1882), + [anon_sym_break] = ACTIONS(1882), + [anon_sym_const] = ACTIONS(1882), + [anon_sym_continue] = ACTIONS(1882), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_enum] = ACTIONS(1882), + [anon_sym_fn] = ACTIONS(1882), + [anon_sym_for] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_impl] = ACTIONS(1882), + [anon_sym_let] = ACTIONS(1882), + [anon_sym_loop] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [anon_sym_mod] = ACTIONS(1882), + [anon_sym_pub] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_static] = ACTIONS(1882), + [anon_sym_struct] = ACTIONS(1882), + [anon_sym_trait] = ACTIONS(1882), + [anon_sym_type] = ACTIONS(1882), + [anon_sym_union] = ACTIONS(1882), + [anon_sym_unsafe] = ACTIONS(1882), + [anon_sym_use] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1880), + [anon_sym_extern] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_AMP] = ACTIONS(1880), + [anon_sym_DOT_DOT] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_yield] = ACTIONS(1882), + [anon_sym_move] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(1880), + [aux_sym_string_literal_token1] = ACTIONS(1880), + [sym_char_literal] = ACTIONS(1880), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1882), + [sym_super] = ACTIONS(1882), + [sym_crate] = ACTIONS(1882), + [sym_metavariable] = ACTIONS(1880), + [sym_raw_string_literal] = ACTIONS(1880), + [sym_float_literal] = ACTIONS(1880), [sym_block_comment] = ACTIONS(3), }, [450] = { + [ts_builtin_sym_end] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_macro_rules_BANG] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_u8] = ACTIONS(1886), + [anon_sym_i8] = ACTIONS(1886), + [anon_sym_u16] = ACTIONS(1886), + [anon_sym_i16] = ACTIONS(1886), + [anon_sym_u32] = ACTIONS(1886), + [anon_sym_i32] = ACTIONS(1886), + [anon_sym_u64] = ACTIONS(1886), + [anon_sym_i64] = ACTIONS(1886), + [anon_sym_u128] = ACTIONS(1886), + [anon_sym_i128] = ACTIONS(1886), + [anon_sym_isize] = ACTIONS(1886), + [anon_sym_usize] = ACTIONS(1886), + [anon_sym_f32] = ACTIONS(1886), + [anon_sym_f64] = ACTIONS(1886), + [anon_sym_bool] = ACTIONS(1886), + [anon_sym_str] = ACTIONS(1886), + [anon_sym_char] = ACTIONS(1886), + [anon_sym_SQUOTE] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_impl] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_loop] = ACTIONS(1886), + [anon_sym_match] = ACTIONS(1886), + [anon_sym_mod] = ACTIONS(1886), + [anon_sym_pub] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_struct] = ACTIONS(1886), + [anon_sym_trait] = ACTIONS(1886), + [anon_sym_type] = ACTIONS(1886), + [anon_sym_union] = ACTIONS(1886), + [anon_sym_unsafe] = ACTIONS(1886), + [anon_sym_use] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_extern] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_yield] = ACTIONS(1886), + [anon_sym_move] = ACTIONS(1886), + [sym_integer_literal] = ACTIONS(1884), + [aux_sym_string_literal_token1] = ACTIONS(1884), + [sym_char_literal] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1886), + [sym_super] = ACTIONS(1886), + [sym_crate] = ACTIONS(1886), + [sym_metavariable] = ACTIONS(1884), + [sym_raw_string_literal] = ACTIONS(1884), + [sym_float_literal] = ACTIONS(1884), + [sym_block_comment] = ACTIONS(3), + }, + [451] = { + [ts_builtin_sym_end] = ACTIONS(1888), + [sym_identifier] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_macro_rules_BANG] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1888), + [anon_sym_u8] = ACTIONS(1890), + [anon_sym_i8] = ACTIONS(1890), + [anon_sym_u16] = ACTIONS(1890), + [anon_sym_i16] = ACTIONS(1890), + [anon_sym_u32] = ACTIONS(1890), + [anon_sym_i32] = ACTIONS(1890), + [anon_sym_u64] = ACTIONS(1890), + [anon_sym_i64] = ACTIONS(1890), + [anon_sym_u128] = ACTIONS(1890), + [anon_sym_i128] = ACTIONS(1890), + [anon_sym_isize] = ACTIONS(1890), + [anon_sym_usize] = ACTIONS(1890), + [anon_sym_f32] = ACTIONS(1890), + [anon_sym_f64] = ACTIONS(1890), + [anon_sym_bool] = ACTIONS(1890), + [anon_sym_str] = ACTIONS(1890), + [anon_sym_char] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_enum] = ACTIONS(1890), + [anon_sym_fn] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_impl] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_mod] = ACTIONS(1890), + [anon_sym_pub] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_trait] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1890), + [anon_sym_unsafe] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_COLON_COLON] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1888), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_yield] = ACTIONS(1890), + [anon_sym_move] = ACTIONS(1890), + [sym_integer_literal] = ACTIONS(1888), + [aux_sym_string_literal_token1] = ACTIONS(1888), + [sym_char_literal] = ACTIONS(1888), + [anon_sym_true] = ACTIONS(1890), + [anon_sym_false] = ACTIONS(1890), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1890), + [sym_super] = ACTIONS(1890), + [sym_crate] = ACTIONS(1890), + [sym_metavariable] = ACTIONS(1888), + [sym_raw_string_literal] = ACTIONS(1888), + [sym_float_literal] = ACTIONS(1888), + [sym_block_comment] = ACTIONS(3), + }, + [452] = { [ts_builtin_sym_end] = ACTIONS(550), [sym_identifier] = ACTIONS(552), [anon_sym_SEMI] = ACTIONS(550), @@ -56450,3404 +56596,3394 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(550), [sym_block_comment] = ACTIONS(3), }, - [451] = { - [ts_builtin_sym_end] = ACTIONS(1923), - [sym_identifier] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_macro_rules_BANG] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_u8] = ACTIONS(1925), - [anon_sym_i8] = ACTIONS(1925), - [anon_sym_u16] = ACTIONS(1925), - [anon_sym_i16] = ACTIONS(1925), - [anon_sym_u32] = ACTIONS(1925), - [anon_sym_i32] = ACTIONS(1925), - [anon_sym_u64] = ACTIONS(1925), - [anon_sym_i64] = ACTIONS(1925), - [anon_sym_u128] = ACTIONS(1925), - [anon_sym_i128] = ACTIONS(1925), - [anon_sym_isize] = ACTIONS(1925), - [anon_sym_usize] = ACTIONS(1925), - [anon_sym_f32] = ACTIONS(1925), - [anon_sym_f64] = ACTIONS(1925), - [anon_sym_bool] = ACTIONS(1925), - [anon_sym_str] = ACTIONS(1925), - [anon_sym_char] = ACTIONS(1925), - [anon_sym_SQUOTE] = ACTIONS(1925), - [anon_sym_async] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_default] = ACTIONS(1925), - [anon_sym_enum] = ACTIONS(1925), - [anon_sym_fn] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_impl] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_loop] = ACTIONS(1925), - [anon_sym_match] = ACTIONS(1925), - [anon_sym_mod] = ACTIONS(1925), - [anon_sym_pub] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_static] = ACTIONS(1925), - [anon_sym_struct] = ACTIONS(1925), - [anon_sym_trait] = ACTIONS(1925), - [anon_sym_type] = ACTIONS(1925), - [anon_sym_union] = ACTIONS(1925), - [anon_sym_unsafe] = ACTIONS(1925), - [anon_sym_use] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_POUND] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_extern] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_COLON_COLON] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_DOT_DOT] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_yield] = ACTIONS(1925), - [anon_sym_move] = ACTIONS(1925), - [sym_integer_literal] = ACTIONS(1923), - [aux_sym_string_literal_token1] = ACTIONS(1923), - [sym_char_literal] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1925), - [anon_sym_false] = ACTIONS(1925), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1925), - [sym_super] = ACTIONS(1925), - [sym_crate] = ACTIONS(1925), - [sym_metavariable] = ACTIONS(1923), - [sym_raw_string_literal] = ACTIONS(1923), - [sym_float_literal] = ACTIONS(1923), - [sym_block_comment] = ACTIONS(3), - }, - [452] = { - [ts_builtin_sym_end] = ACTIONS(1927), - [sym_identifier] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_macro_rules_BANG] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_u8] = ACTIONS(1929), - [anon_sym_i8] = ACTIONS(1929), - [anon_sym_u16] = ACTIONS(1929), - [anon_sym_i16] = ACTIONS(1929), - [anon_sym_u32] = ACTIONS(1929), - [anon_sym_i32] = ACTIONS(1929), - [anon_sym_u64] = ACTIONS(1929), - [anon_sym_i64] = ACTIONS(1929), - [anon_sym_u128] = ACTIONS(1929), - [anon_sym_i128] = ACTIONS(1929), - [anon_sym_isize] = ACTIONS(1929), - [anon_sym_usize] = ACTIONS(1929), - [anon_sym_f32] = ACTIONS(1929), - [anon_sym_f64] = ACTIONS(1929), - [anon_sym_bool] = ACTIONS(1929), - [anon_sym_str] = ACTIONS(1929), - [anon_sym_char] = ACTIONS(1929), - [anon_sym_SQUOTE] = ACTIONS(1929), - [anon_sym_async] = ACTIONS(1929), - [anon_sym_break] = ACTIONS(1929), - [anon_sym_const] = ACTIONS(1929), - [anon_sym_continue] = ACTIONS(1929), - [anon_sym_default] = ACTIONS(1929), - [anon_sym_enum] = ACTIONS(1929), - [anon_sym_fn] = ACTIONS(1929), - [anon_sym_for] = ACTIONS(1929), - [anon_sym_if] = ACTIONS(1929), - [anon_sym_impl] = ACTIONS(1929), - [anon_sym_let] = ACTIONS(1929), - [anon_sym_loop] = ACTIONS(1929), - [anon_sym_match] = ACTIONS(1929), - [anon_sym_mod] = ACTIONS(1929), - [anon_sym_pub] = ACTIONS(1929), - [anon_sym_return] = ACTIONS(1929), - [anon_sym_static] = ACTIONS(1929), - [anon_sym_struct] = ACTIONS(1929), - [anon_sym_trait] = ACTIONS(1929), - [anon_sym_type] = ACTIONS(1929), - [anon_sym_union] = ACTIONS(1929), - [anon_sym_unsafe] = ACTIONS(1929), - [anon_sym_use] = ACTIONS(1929), - [anon_sym_while] = ACTIONS(1929), - [anon_sym_POUND] = ACTIONS(1927), - [anon_sym_BANG] = ACTIONS(1927), - [anon_sym_extern] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1927), - [anon_sym_COLON_COLON] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1927), - [anon_sym_DASH] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_yield] = ACTIONS(1929), - [anon_sym_move] = ACTIONS(1929), - [sym_integer_literal] = ACTIONS(1927), - [aux_sym_string_literal_token1] = ACTIONS(1927), - [sym_char_literal] = ACTIONS(1927), - [anon_sym_true] = ACTIONS(1929), - [anon_sym_false] = ACTIONS(1929), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1929), - [sym_super] = ACTIONS(1929), - [sym_crate] = ACTIONS(1929), - [sym_metavariable] = ACTIONS(1927), - [sym_raw_string_literal] = ACTIONS(1927), - [sym_float_literal] = ACTIONS(1927), - [sym_block_comment] = ACTIONS(3), - }, [453] = { - [ts_builtin_sym_end] = ACTIONS(1931), - [sym_identifier] = ACTIONS(1933), - [anon_sym_SEMI] = ACTIONS(1931), - [anon_sym_macro_rules_BANG] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_LBRACE] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_STAR] = ACTIONS(1931), - [anon_sym_u8] = ACTIONS(1933), - [anon_sym_i8] = ACTIONS(1933), - [anon_sym_u16] = ACTIONS(1933), - [anon_sym_i16] = ACTIONS(1933), - [anon_sym_u32] = ACTIONS(1933), - [anon_sym_i32] = ACTIONS(1933), - [anon_sym_u64] = ACTIONS(1933), - [anon_sym_i64] = ACTIONS(1933), - [anon_sym_u128] = ACTIONS(1933), - [anon_sym_i128] = ACTIONS(1933), - [anon_sym_isize] = ACTIONS(1933), - [anon_sym_usize] = ACTIONS(1933), - [anon_sym_f32] = ACTIONS(1933), - [anon_sym_f64] = ACTIONS(1933), - [anon_sym_bool] = ACTIONS(1933), - [anon_sym_str] = ACTIONS(1933), - [anon_sym_char] = ACTIONS(1933), - [anon_sym_SQUOTE] = ACTIONS(1933), - [anon_sym_async] = ACTIONS(1933), - [anon_sym_break] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [anon_sym_continue] = ACTIONS(1933), - [anon_sym_default] = ACTIONS(1933), - [anon_sym_enum] = ACTIONS(1933), - [anon_sym_fn] = ACTIONS(1933), - [anon_sym_for] = ACTIONS(1933), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_impl] = ACTIONS(1933), - [anon_sym_let] = ACTIONS(1933), - [anon_sym_loop] = ACTIONS(1933), - [anon_sym_match] = ACTIONS(1933), - [anon_sym_mod] = ACTIONS(1933), - [anon_sym_pub] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(1933), - [anon_sym_static] = ACTIONS(1933), - [anon_sym_struct] = ACTIONS(1933), - [anon_sym_trait] = ACTIONS(1933), - [anon_sym_type] = ACTIONS(1933), - [anon_sym_union] = ACTIONS(1933), - [anon_sym_unsafe] = ACTIONS(1933), - [anon_sym_use] = ACTIONS(1933), - [anon_sym_while] = ACTIONS(1933), - [anon_sym_POUND] = ACTIONS(1931), - [anon_sym_BANG] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(1933), - [anon_sym_LT] = ACTIONS(1931), - [anon_sym_COLON_COLON] = ACTIONS(1931), - [anon_sym_AMP] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1931), - [anon_sym_PIPE] = ACTIONS(1931), - [anon_sym_yield] = ACTIONS(1933), - [anon_sym_move] = ACTIONS(1933), - [sym_integer_literal] = ACTIONS(1931), - [aux_sym_string_literal_token1] = ACTIONS(1931), - [sym_char_literal] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(1933), - [anon_sym_false] = ACTIONS(1933), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1933), - [sym_super] = ACTIONS(1933), - [sym_crate] = ACTIONS(1933), - [sym_metavariable] = ACTIONS(1931), - [sym_raw_string_literal] = ACTIONS(1931), - [sym_float_literal] = ACTIONS(1931), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_identifier] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_macro_rules_BANG] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1892), + [anon_sym_u8] = ACTIONS(1894), + [anon_sym_i8] = ACTIONS(1894), + [anon_sym_u16] = ACTIONS(1894), + [anon_sym_i16] = ACTIONS(1894), + [anon_sym_u32] = ACTIONS(1894), + [anon_sym_i32] = ACTIONS(1894), + [anon_sym_u64] = ACTIONS(1894), + [anon_sym_i64] = ACTIONS(1894), + [anon_sym_u128] = ACTIONS(1894), + [anon_sym_i128] = ACTIONS(1894), + [anon_sym_isize] = ACTIONS(1894), + [anon_sym_usize] = ACTIONS(1894), + [anon_sym_f32] = ACTIONS(1894), + [anon_sym_f64] = ACTIONS(1894), + [anon_sym_bool] = ACTIONS(1894), + [anon_sym_str] = ACTIONS(1894), + [anon_sym_char] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_async] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_enum] = ACTIONS(1894), + [anon_sym_fn] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_impl] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_loop] = ACTIONS(1894), + [anon_sym_match] = ACTIONS(1894), + [anon_sym_mod] = ACTIONS(1894), + [anon_sym_pub] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_static] = ACTIONS(1894), + [anon_sym_struct] = ACTIONS(1894), + [anon_sym_trait] = ACTIONS(1894), + [anon_sym_type] = ACTIONS(1894), + [anon_sym_union] = ACTIONS(1894), + [anon_sym_unsafe] = ACTIONS(1894), + [anon_sym_use] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(1892), + [anon_sym_BANG] = ACTIONS(1892), + [anon_sym_extern] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_COLON_COLON] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_yield] = ACTIONS(1894), + [anon_sym_move] = ACTIONS(1894), + [sym_integer_literal] = ACTIONS(1892), + [aux_sym_string_literal_token1] = ACTIONS(1892), + [sym_char_literal] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1894), + [sym_super] = ACTIONS(1894), + [sym_crate] = ACTIONS(1894), + [sym_metavariable] = ACTIONS(1892), + [sym_raw_string_literal] = ACTIONS(1892), + [sym_float_literal] = ACTIONS(1892), [sym_block_comment] = ACTIONS(3), }, [454] = { - [ts_builtin_sym_end] = ACTIONS(1935), - [sym_identifier] = ACTIONS(1937), - [anon_sym_SEMI] = ACTIONS(1935), - [anon_sym_macro_rules_BANG] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1935), - [anon_sym_u8] = ACTIONS(1937), - [anon_sym_i8] = ACTIONS(1937), - [anon_sym_u16] = ACTIONS(1937), - [anon_sym_i16] = ACTIONS(1937), - [anon_sym_u32] = ACTIONS(1937), - [anon_sym_i32] = ACTIONS(1937), - [anon_sym_u64] = ACTIONS(1937), - [anon_sym_i64] = ACTIONS(1937), - [anon_sym_u128] = ACTIONS(1937), - [anon_sym_i128] = ACTIONS(1937), - [anon_sym_isize] = ACTIONS(1937), - [anon_sym_usize] = ACTIONS(1937), - [anon_sym_f32] = ACTIONS(1937), - [anon_sym_f64] = ACTIONS(1937), - [anon_sym_bool] = ACTIONS(1937), - [anon_sym_str] = ACTIONS(1937), - [anon_sym_char] = ACTIONS(1937), - [anon_sym_SQUOTE] = ACTIONS(1937), - [anon_sym_async] = ACTIONS(1937), - [anon_sym_break] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1937), - [anon_sym_continue] = ACTIONS(1937), - [anon_sym_default] = ACTIONS(1937), - [anon_sym_enum] = ACTIONS(1937), - [anon_sym_fn] = ACTIONS(1937), - [anon_sym_for] = ACTIONS(1937), - [anon_sym_if] = ACTIONS(1937), - [anon_sym_impl] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_loop] = ACTIONS(1937), - [anon_sym_match] = ACTIONS(1937), - [anon_sym_mod] = ACTIONS(1937), - [anon_sym_pub] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1937), - [anon_sym_static] = ACTIONS(1937), - [anon_sym_struct] = ACTIONS(1937), - [anon_sym_trait] = ACTIONS(1937), - [anon_sym_type] = ACTIONS(1937), - [anon_sym_union] = ACTIONS(1937), - [anon_sym_unsafe] = ACTIONS(1937), - [anon_sym_use] = ACTIONS(1937), - [anon_sym_while] = ACTIONS(1937), - [anon_sym_POUND] = ACTIONS(1935), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_extern] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1935), - [anon_sym_COLON_COLON] = ACTIONS(1935), - [anon_sym_AMP] = ACTIONS(1935), - [anon_sym_DOT_DOT] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_PIPE] = ACTIONS(1935), - [anon_sym_yield] = ACTIONS(1937), - [anon_sym_move] = ACTIONS(1937), - [sym_integer_literal] = ACTIONS(1935), - [aux_sym_string_literal_token1] = ACTIONS(1935), - [sym_char_literal] = ACTIONS(1935), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1937), - [sym_super] = ACTIONS(1937), - [sym_crate] = ACTIONS(1937), - [sym_metavariable] = ACTIONS(1935), - [sym_raw_string_literal] = ACTIONS(1935), - [sym_float_literal] = ACTIONS(1935), + [ts_builtin_sym_end] = ACTIONS(1896), + [sym_identifier] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_macro_rules_BANG] = ACTIONS(1896), + [anon_sym_LPAREN] = ACTIONS(1896), + [anon_sym_LBRACE] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1896), + [anon_sym_u8] = ACTIONS(1898), + [anon_sym_i8] = ACTIONS(1898), + [anon_sym_u16] = ACTIONS(1898), + [anon_sym_i16] = ACTIONS(1898), + [anon_sym_u32] = ACTIONS(1898), + [anon_sym_i32] = ACTIONS(1898), + [anon_sym_u64] = ACTIONS(1898), + [anon_sym_i64] = ACTIONS(1898), + [anon_sym_u128] = ACTIONS(1898), + [anon_sym_i128] = ACTIONS(1898), + [anon_sym_isize] = ACTIONS(1898), + [anon_sym_usize] = ACTIONS(1898), + [anon_sym_f32] = ACTIONS(1898), + [anon_sym_f64] = ACTIONS(1898), + [anon_sym_bool] = ACTIONS(1898), + [anon_sym_str] = ACTIONS(1898), + [anon_sym_char] = ACTIONS(1898), + [anon_sym_SQUOTE] = ACTIONS(1898), + [anon_sym_async] = ACTIONS(1898), + [anon_sym_break] = ACTIONS(1898), + [anon_sym_const] = ACTIONS(1898), + [anon_sym_continue] = ACTIONS(1898), + [anon_sym_default] = ACTIONS(1898), + [anon_sym_enum] = ACTIONS(1898), + [anon_sym_fn] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_if] = ACTIONS(1898), + [anon_sym_impl] = ACTIONS(1898), + [anon_sym_let] = ACTIONS(1898), + [anon_sym_loop] = ACTIONS(1898), + [anon_sym_match] = ACTIONS(1898), + [anon_sym_mod] = ACTIONS(1898), + [anon_sym_pub] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1898), + [anon_sym_static] = ACTIONS(1898), + [anon_sym_struct] = ACTIONS(1898), + [anon_sym_trait] = ACTIONS(1898), + [anon_sym_type] = ACTIONS(1898), + [anon_sym_union] = ACTIONS(1898), + [anon_sym_unsafe] = ACTIONS(1898), + [anon_sym_use] = ACTIONS(1898), + [anon_sym_while] = ACTIONS(1898), + [anon_sym_POUND] = ACTIONS(1896), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_extern] = ACTIONS(1898), + [anon_sym_LT] = ACTIONS(1896), + [anon_sym_COLON_COLON] = ACTIONS(1896), + [anon_sym_AMP] = ACTIONS(1896), + [anon_sym_DOT_DOT] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1896), + [anon_sym_yield] = ACTIONS(1898), + [anon_sym_move] = ACTIONS(1898), + [sym_integer_literal] = ACTIONS(1896), + [aux_sym_string_literal_token1] = ACTIONS(1896), + [sym_char_literal] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(1898), + [anon_sym_false] = ACTIONS(1898), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1898), + [sym_super] = ACTIONS(1898), + [sym_crate] = ACTIONS(1898), + [sym_metavariable] = ACTIONS(1896), + [sym_raw_string_literal] = ACTIONS(1896), + [sym_float_literal] = ACTIONS(1896), [sym_block_comment] = ACTIONS(3), }, [455] = { - [ts_builtin_sym_end] = ACTIONS(1939), - [sym_identifier] = ACTIONS(1941), - [anon_sym_SEMI] = ACTIONS(1939), - [anon_sym_macro_rules_BANG] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_LBRACE] = ACTIONS(1939), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_LBRACK] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1939), - [anon_sym_u8] = ACTIONS(1941), - [anon_sym_i8] = ACTIONS(1941), - [anon_sym_u16] = ACTIONS(1941), - [anon_sym_i16] = ACTIONS(1941), - [anon_sym_u32] = ACTIONS(1941), - [anon_sym_i32] = ACTIONS(1941), - [anon_sym_u64] = ACTIONS(1941), - [anon_sym_i64] = ACTIONS(1941), - [anon_sym_u128] = ACTIONS(1941), - [anon_sym_i128] = ACTIONS(1941), - [anon_sym_isize] = ACTIONS(1941), - [anon_sym_usize] = ACTIONS(1941), - [anon_sym_f32] = ACTIONS(1941), - [anon_sym_f64] = ACTIONS(1941), - [anon_sym_bool] = ACTIONS(1941), - [anon_sym_str] = ACTIONS(1941), - [anon_sym_char] = ACTIONS(1941), - [anon_sym_SQUOTE] = ACTIONS(1941), - [anon_sym_async] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_default] = ACTIONS(1941), - [anon_sym_enum] = ACTIONS(1941), - [anon_sym_fn] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_impl] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1941), - [anon_sym_loop] = ACTIONS(1941), - [anon_sym_match] = ACTIONS(1941), - [anon_sym_mod] = ACTIONS(1941), - [anon_sym_pub] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_static] = ACTIONS(1941), - [anon_sym_struct] = ACTIONS(1941), - [anon_sym_trait] = ACTIONS(1941), - [anon_sym_type] = ACTIONS(1941), - [anon_sym_union] = ACTIONS(1941), - [anon_sym_unsafe] = ACTIONS(1941), - [anon_sym_use] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_POUND] = ACTIONS(1939), - [anon_sym_BANG] = ACTIONS(1939), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_LT] = ACTIONS(1939), - [anon_sym_COLON_COLON] = ACTIONS(1939), - [anon_sym_AMP] = ACTIONS(1939), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_PIPE] = ACTIONS(1939), - [anon_sym_yield] = ACTIONS(1941), - [anon_sym_move] = ACTIONS(1941), - [sym_integer_literal] = ACTIONS(1939), - [aux_sym_string_literal_token1] = ACTIONS(1939), - [sym_char_literal] = ACTIONS(1939), - [anon_sym_true] = ACTIONS(1941), - [anon_sym_false] = ACTIONS(1941), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1941), - [sym_super] = ACTIONS(1941), - [sym_crate] = ACTIONS(1941), - [sym_metavariable] = ACTIONS(1939), - [sym_raw_string_literal] = ACTIONS(1939), - [sym_float_literal] = ACTIONS(1939), + [ts_builtin_sym_end] = ACTIONS(1900), + [sym_identifier] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_macro_rules_BANG] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1900), + [anon_sym_u8] = ACTIONS(1902), + [anon_sym_i8] = ACTIONS(1902), + [anon_sym_u16] = ACTIONS(1902), + [anon_sym_i16] = ACTIONS(1902), + [anon_sym_u32] = ACTIONS(1902), + [anon_sym_i32] = ACTIONS(1902), + [anon_sym_u64] = ACTIONS(1902), + [anon_sym_i64] = ACTIONS(1902), + [anon_sym_u128] = ACTIONS(1902), + [anon_sym_i128] = ACTIONS(1902), + [anon_sym_isize] = ACTIONS(1902), + [anon_sym_usize] = ACTIONS(1902), + [anon_sym_f32] = ACTIONS(1902), + [anon_sym_f64] = ACTIONS(1902), + [anon_sym_bool] = ACTIONS(1902), + [anon_sym_str] = ACTIONS(1902), + [anon_sym_char] = ACTIONS(1902), + [anon_sym_SQUOTE] = ACTIONS(1902), + [anon_sym_async] = ACTIONS(1902), + [anon_sym_break] = ACTIONS(1902), + [anon_sym_const] = ACTIONS(1902), + [anon_sym_continue] = ACTIONS(1902), + [anon_sym_default] = ACTIONS(1902), + [anon_sym_enum] = ACTIONS(1902), + [anon_sym_fn] = ACTIONS(1902), + [anon_sym_for] = ACTIONS(1902), + [anon_sym_if] = ACTIONS(1902), + [anon_sym_impl] = ACTIONS(1902), + [anon_sym_let] = ACTIONS(1902), + [anon_sym_loop] = ACTIONS(1902), + [anon_sym_match] = ACTIONS(1902), + [anon_sym_mod] = ACTIONS(1902), + [anon_sym_pub] = ACTIONS(1902), + [anon_sym_return] = ACTIONS(1902), + [anon_sym_static] = ACTIONS(1902), + [anon_sym_struct] = ACTIONS(1902), + [anon_sym_trait] = ACTIONS(1902), + [anon_sym_type] = ACTIONS(1902), + [anon_sym_union] = ACTIONS(1902), + [anon_sym_unsafe] = ACTIONS(1902), + [anon_sym_use] = ACTIONS(1902), + [anon_sym_while] = ACTIONS(1902), + [anon_sym_POUND] = ACTIONS(1900), + [anon_sym_BANG] = ACTIONS(1900), + [anon_sym_extern] = ACTIONS(1902), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_COLON_COLON] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_yield] = ACTIONS(1902), + [anon_sym_move] = ACTIONS(1902), + [sym_integer_literal] = ACTIONS(1900), + [aux_sym_string_literal_token1] = ACTIONS(1900), + [sym_char_literal] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1902), + [anon_sym_false] = ACTIONS(1902), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1902), + [sym_super] = ACTIONS(1902), + [sym_crate] = ACTIONS(1902), + [sym_metavariable] = ACTIONS(1900), + [sym_raw_string_literal] = ACTIONS(1900), + [sym_float_literal] = ACTIONS(1900), [sym_block_comment] = ACTIONS(3), }, [456] = { - [ts_builtin_sym_end] = ACTIONS(1943), - [sym_identifier] = ACTIONS(1945), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_macro_rules_BANG] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_LBRACK] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_u8] = ACTIONS(1945), - [anon_sym_i8] = ACTIONS(1945), - [anon_sym_u16] = ACTIONS(1945), - [anon_sym_i16] = ACTIONS(1945), - [anon_sym_u32] = ACTIONS(1945), - [anon_sym_i32] = ACTIONS(1945), - [anon_sym_u64] = ACTIONS(1945), - [anon_sym_i64] = ACTIONS(1945), - [anon_sym_u128] = ACTIONS(1945), - [anon_sym_i128] = ACTIONS(1945), - [anon_sym_isize] = ACTIONS(1945), - [anon_sym_usize] = ACTIONS(1945), - [anon_sym_f32] = ACTIONS(1945), - [anon_sym_f64] = ACTIONS(1945), - [anon_sym_bool] = ACTIONS(1945), - [anon_sym_str] = ACTIONS(1945), - [anon_sym_char] = ACTIONS(1945), - [anon_sym_SQUOTE] = ACTIONS(1945), - [anon_sym_async] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_default] = ACTIONS(1945), - [anon_sym_enum] = ACTIONS(1945), - [anon_sym_fn] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_impl] = ACTIONS(1945), - [anon_sym_let] = ACTIONS(1945), - [anon_sym_loop] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1945), - [anon_sym_mod] = ACTIONS(1945), - [anon_sym_pub] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_static] = ACTIONS(1945), - [anon_sym_struct] = ACTIONS(1945), - [anon_sym_trait] = ACTIONS(1945), - [anon_sym_type] = ACTIONS(1945), - [anon_sym_union] = ACTIONS(1945), - [anon_sym_unsafe] = ACTIONS(1945), - [anon_sym_use] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_POUND] = ACTIONS(1943), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_COLON_COLON] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1943), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_yield] = ACTIONS(1945), - [anon_sym_move] = ACTIONS(1945), - [sym_integer_literal] = ACTIONS(1943), - [aux_sym_string_literal_token1] = ACTIONS(1943), - [sym_char_literal] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1945), - [sym_super] = ACTIONS(1945), - [sym_crate] = ACTIONS(1945), - [sym_metavariable] = ACTIONS(1943), - [sym_raw_string_literal] = ACTIONS(1943), - [sym_float_literal] = ACTIONS(1943), + [ts_builtin_sym_end] = ACTIONS(1904), + [sym_identifier] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_macro_rules_BANG] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1904), + [anon_sym_u8] = ACTIONS(1906), + [anon_sym_i8] = ACTIONS(1906), + [anon_sym_u16] = ACTIONS(1906), + [anon_sym_i16] = ACTIONS(1906), + [anon_sym_u32] = ACTIONS(1906), + [anon_sym_i32] = ACTIONS(1906), + [anon_sym_u64] = ACTIONS(1906), + [anon_sym_i64] = ACTIONS(1906), + [anon_sym_u128] = ACTIONS(1906), + [anon_sym_i128] = ACTIONS(1906), + [anon_sym_isize] = ACTIONS(1906), + [anon_sym_usize] = ACTIONS(1906), + [anon_sym_f32] = ACTIONS(1906), + [anon_sym_f64] = ACTIONS(1906), + [anon_sym_bool] = ACTIONS(1906), + [anon_sym_str] = ACTIONS(1906), + [anon_sym_char] = ACTIONS(1906), + [anon_sym_SQUOTE] = ACTIONS(1906), + [anon_sym_async] = ACTIONS(1906), + [anon_sym_break] = ACTIONS(1906), + [anon_sym_const] = ACTIONS(1906), + [anon_sym_continue] = ACTIONS(1906), + [anon_sym_default] = ACTIONS(1906), + [anon_sym_enum] = ACTIONS(1906), + [anon_sym_fn] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1906), + [anon_sym_impl] = ACTIONS(1906), + [anon_sym_let] = ACTIONS(1906), + [anon_sym_loop] = ACTIONS(1906), + [anon_sym_match] = ACTIONS(1906), + [anon_sym_mod] = ACTIONS(1906), + [anon_sym_pub] = ACTIONS(1906), + [anon_sym_return] = ACTIONS(1906), + [anon_sym_static] = ACTIONS(1906), + [anon_sym_struct] = ACTIONS(1906), + [anon_sym_trait] = ACTIONS(1906), + [anon_sym_type] = ACTIONS(1906), + [anon_sym_union] = ACTIONS(1906), + [anon_sym_unsafe] = ACTIONS(1906), + [anon_sym_use] = ACTIONS(1906), + [anon_sym_while] = ACTIONS(1906), + [anon_sym_POUND] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1904), + [anon_sym_extern] = ACTIONS(1906), + [anon_sym_LT] = ACTIONS(1904), + [anon_sym_COLON_COLON] = ACTIONS(1904), + [anon_sym_AMP] = ACTIONS(1904), + [anon_sym_DOT_DOT] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_yield] = ACTIONS(1906), + [anon_sym_move] = ACTIONS(1906), + [sym_integer_literal] = ACTIONS(1904), + [aux_sym_string_literal_token1] = ACTIONS(1904), + [sym_char_literal] = ACTIONS(1904), + [anon_sym_true] = ACTIONS(1906), + [anon_sym_false] = ACTIONS(1906), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1906), + [sym_super] = ACTIONS(1906), + [sym_crate] = ACTIONS(1906), + [sym_metavariable] = ACTIONS(1904), + [sym_raw_string_literal] = ACTIONS(1904), + [sym_float_literal] = ACTIONS(1904), [sym_block_comment] = ACTIONS(3), }, [457] = { - [ts_builtin_sym_end] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1949), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_macro_rules_BANG] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_u8] = ACTIONS(1949), - [anon_sym_i8] = ACTIONS(1949), - [anon_sym_u16] = ACTIONS(1949), - [anon_sym_i16] = ACTIONS(1949), - [anon_sym_u32] = ACTIONS(1949), - [anon_sym_i32] = ACTIONS(1949), - [anon_sym_u64] = ACTIONS(1949), - [anon_sym_i64] = ACTIONS(1949), - [anon_sym_u128] = ACTIONS(1949), - [anon_sym_i128] = ACTIONS(1949), - [anon_sym_isize] = ACTIONS(1949), - [anon_sym_usize] = ACTIONS(1949), - [anon_sym_f32] = ACTIONS(1949), - [anon_sym_f64] = ACTIONS(1949), - [anon_sym_bool] = ACTIONS(1949), - [anon_sym_str] = ACTIONS(1949), - [anon_sym_char] = ACTIONS(1949), - [anon_sym_SQUOTE] = ACTIONS(1949), - [anon_sym_async] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_default] = ACTIONS(1949), - [anon_sym_enum] = ACTIONS(1949), - [anon_sym_fn] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_impl] = ACTIONS(1949), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_loop] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_mod] = ACTIONS(1949), - [anon_sym_pub] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1949), - [anon_sym_static] = ACTIONS(1949), - [anon_sym_struct] = ACTIONS(1949), - [anon_sym_trait] = ACTIONS(1949), - [anon_sym_type] = ACTIONS(1949), - [anon_sym_union] = ACTIONS(1949), - [anon_sym_unsafe] = ACTIONS(1949), - [anon_sym_use] = ACTIONS(1949), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(1947), - [anon_sym_BANG] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym_LT] = ACTIONS(1947), - [anon_sym_COLON_COLON] = ACTIONS(1947), - [anon_sym_AMP] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_yield] = ACTIONS(1949), - [anon_sym_move] = ACTIONS(1949), - [sym_integer_literal] = ACTIONS(1947), - [aux_sym_string_literal_token1] = ACTIONS(1947), - [sym_char_literal] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1949), - [sym_super] = ACTIONS(1949), - [sym_crate] = ACTIONS(1949), - [sym_metavariable] = ACTIONS(1947), - [sym_raw_string_literal] = ACTIONS(1947), - [sym_float_literal] = ACTIONS(1947), + [ts_builtin_sym_end] = ACTIONS(1908), + [sym_identifier] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_macro_rules_BANG] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1908), + [anon_sym_RBRACE] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1908), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [anon_sym_POUND] = ACTIONS(1908), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1910), + [anon_sym_LT] = ACTIONS(1908), + [anon_sym_COLON_COLON] = ACTIONS(1908), + [anon_sym_AMP] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_yield] = ACTIONS(1910), + [anon_sym_move] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1908), + [aux_sym_string_literal_token1] = ACTIONS(1908), + [sym_char_literal] = ACTIONS(1908), + [anon_sym_true] = ACTIONS(1910), + [anon_sym_false] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1908), + [sym_raw_string_literal] = ACTIONS(1908), + [sym_float_literal] = ACTIONS(1908), [sym_block_comment] = ACTIONS(3), }, [458] = { - [ts_builtin_sym_end] = ACTIONS(1951), - [sym_identifier] = ACTIONS(1953), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_macro_rules_BANG] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_STAR] = ACTIONS(1951), - [anon_sym_u8] = ACTIONS(1953), - [anon_sym_i8] = ACTIONS(1953), - [anon_sym_u16] = ACTIONS(1953), - [anon_sym_i16] = ACTIONS(1953), - [anon_sym_u32] = ACTIONS(1953), - [anon_sym_i32] = ACTIONS(1953), - [anon_sym_u64] = ACTIONS(1953), - [anon_sym_i64] = ACTIONS(1953), - [anon_sym_u128] = ACTIONS(1953), - [anon_sym_i128] = ACTIONS(1953), - [anon_sym_isize] = ACTIONS(1953), - [anon_sym_usize] = ACTIONS(1953), - [anon_sym_f32] = ACTIONS(1953), - [anon_sym_f64] = ACTIONS(1953), - [anon_sym_bool] = ACTIONS(1953), - [anon_sym_str] = ACTIONS(1953), - [anon_sym_char] = ACTIONS(1953), - [anon_sym_SQUOTE] = ACTIONS(1953), - [anon_sym_async] = ACTIONS(1953), - [anon_sym_break] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1953), - [anon_sym_continue] = ACTIONS(1953), - [anon_sym_default] = ACTIONS(1953), - [anon_sym_enum] = ACTIONS(1953), - [anon_sym_fn] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_impl] = ACTIONS(1953), - [anon_sym_let] = ACTIONS(1953), - [anon_sym_loop] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_mod] = ACTIONS(1953), - [anon_sym_pub] = ACTIONS(1953), - [anon_sym_return] = ACTIONS(1953), - [anon_sym_static] = ACTIONS(1953), - [anon_sym_struct] = ACTIONS(1953), - [anon_sym_trait] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1953), - [anon_sym_union] = ACTIONS(1953), - [anon_sym_unsafe] = ACTIONS(1953), - [anon_sym_use] = ACTIONS(1953), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(1951), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1951), - [anon_sym_COLON_COLON] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_DOT_DOT] = ACTIONS(1951), - [anon_sym_DASH] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_yield] = ACTIONS(1953), - [anon_sym_move] = ACTIONS(1953), - [sym_integer_literal] = ACTIONS(1951), - [aux_sym_string_literal_token1] = ACTIONS(1951), - [sym_char_literal] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1953), - [sym_super] = ACTIONS(1953), - [sym_crate] = ACTIONS(1953), - [sym_metavariable] = ACTIONS(1951), - [sym_raw_string_literal] = ACTIONS(1951), - [sym_float_literal] = ACTIONS(1951), + [ts_builtin_sym_end] = ACTIONS(1912), + [sym_identifier] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_macro_rules_BANG] = ACTIONS(1912), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1912), + [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_u8] = ACTIONS(1914), + [anon_sym_i8] = ACTIONS(1914), + [anon_sym_u16] = ACTIONS(1914), + [anon_sym_i16] = ACTIONS(1914), + [anon_sym_u32] = ACTIONS(1914), + [anon_sym_i32] = ACTIONS(1914), + [anon_sym_u64] = ACTIONS(1914), + [anon_sym_i64] = ACTIONS(1914), + [anon_sym_u128] = ACTIONS(1914), + [anon_sym_i128] = ACTIONS(1914), + [anon_sym_isize] = ACTIONS(1914), + [anon_sym_usize] = ACTIONS(1914), + [anon_sym_f32] = ACTIONS(1914), + [anon_sym_f64] = ACTIONS(1914), + [anon_sym_bool] = ACTIONS(1914), + [anon_sym_str] = ACTIONS(1914), + [anon_sym_char] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_async] = ACTIONS(1914), + [anon_sym_break] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1914), + [anon_sym_continue] = ACTIONS(1914), + [anon_sym_default] = ACTIONS(1914), + [anon_sym_enum] = ACTIONS(1914), + [anon_sym_fn] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(1914), + [anon_sym_impl] = ACTIONS(1914), + [anon_sym_let] = ACTIONS(1914), + [anon_sym_loop] = ACTIONS(1914), + [anon_sym_match] = ACTIONS(1914), + [anon_sym_mod] = ACTIONS(1914), + [anon_sym_pub] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1914), + [anon_sym_struct] = ACTIONS(1914), + [anon_sym_trait] = ACTIONS(1914), + [anon_sym_type] = ACTIONS(1914), + [anon_sym_union] = ACTIONS(1914), + [anon_sym_unsafe] = ACTIONS(1914), + [anon_sym_use] = ACTIONS(1914), + [anon_sym_while] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(1912), + [anon_sym_BANG] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1914), + [anon_sym_LT] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PIPE] = ACTIONS(1912), + [anon_sym_yield] = ACTIONS(1914), + [anon_sym_move] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(1912), + [aux_sym_string_literal_token1] = ACTIONS(1912), + [sym_char_literal] = ACTIONS(1912), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1914), + [sym_super] = ACTIONS(1914), + [sym_crate] = ACTIONS(1914), + [sym_metavariable] = ACTIONS(1912), + [sym_raw_string_literal] = ACTIONS(1912), + [sym_float_literal] = ACTIONS(1912), [sym_block_comment] = ACTIONS(3), }, [459] = { - [ts_builtin_sym_end] = ACTIONS(1955), - [sym_identifier] = ACTIONS(1957), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_macro_rules_BANG] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_STAR] = ACTIONS(1955), - [anon_sym_u8] = ACTIONS(1957), - [anon_sym_i8] = ACTIONS(1957), - [anon_sym_u16] = ACTIONS(1957), - [anon_sym_i16] = ACTIONS(1957), - [anon_sym_u32] = ACTIONS(1957), - [anon_sym_i32] = ACTIONS(1957), - [anon_sym_u64] = ACTIONS(1957), - [anon_sym_i64] = ACTIONS(1957), - [anon_sym_u128] = ACTIONS(1957), - [anon_sym_i128] = ACTIONS(1957), - [anon_sym_isize] = ACTIONS(1957), - [anon_sym_usize] = ACTIONS(1957), - [anon_sym_f32] = ACTIONS(1957), - [anon_sym_f64] = ACTIONS(1957), - [anon_sym_bool] = ACTIONS(1957), - [anon_sym_str] = ACTIONS(1957), - [anon_sym_char] = ACTIONS(1957), - [anon_sym_SQUOTE] = ACTIONS(1957), - [anon_sym_async] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_default] = ACTIONS(1957), - [anon_sym_enum] = ACTIONS(1957), - [anon_sym_fn] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_impl] = ACTIONS(1957), - [anon_sym_let] = ACTIONS(1957), - [anon_sym_loop] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_mod] = ACTIONS(1957), - [anon_sym_pub] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1957), - [anon_sym_static] = ACTIONS(1957), - [anon_sym_struct] = ACTIONS(1957), - [anon_sym_trait] = ACTIONS(1957), - [anon_sym_type] = ACTIONS(1957), - [anon_sym_union] = ACTIONS(1957), - [anon_sym_unsafe] = ACTIONS(1957), - [anon_sym_use] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(1955), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1955), - [anon_sym_COLON_COLON] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_yield] = ACTIONS(1957), - [anon_sym_move] = ACTIONS(1957), - [sym_integer_literal] = ACTIONS(1955), - [aux_sym_string_literal_token1] = ACTIONS(1955), - [sym_char_literal] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1957), - [anon_sym_false] = ACTIONS(1957), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1957), - [sym_super] = ACTIONS(1957), - [sym_crate] = ACTIONS(1957), - [sym_metavariable] = ACTIONS(1955), - [sym_raw_string_literal] = ACTIONS(1955), - [sym_float_literal] = ACTIONS(1955), + [ts_builtin_sym_end] = ACTIONS(1916), + [sym_identifier] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_macro_rules_BANG] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1916), + [anon_sym_u8] = ACTIONS(1918), + [anon_sym_i8] = ACTIONS(1918), + [anon_sym_u16] = ACTIONS(1918), + [anon_sym_i16] = ACTIONS(1918), + [anon_sym_u32] = ACTIONS(1918), + [anon_sym_i32] = ACTIONS(1918), + [anon_sym_u64] = ACTIONS(1918), + [anon_sym_i64] = ACTIONS(1918), + [anon_sym_u128] = ACTIONS(1918), + [anon_sym_i128] = ACTIONS(1918), + [anon_sym_isize] = ACTIONS(1918), + [anon_sym_usize] = ACTIONS(1918), + [anon_sym_f32] = ACTIONS(1918), + [anon_sym_f64] = ACTIONS(1918), + [anon_sym_bool] = ACTIONS(1918), + [anon_sym_str] = ACTIONS(1918), + [anon_sym_char] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_async] = ACTIONS(1918), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_const] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1918), + [anon_sym_default] = ACTIONS(1918), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_fn] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_impl] = ACTIONS(1918), + [anon_sym_let] = ACTIONS(1918), + [anon_sym_loop] = ACTIONS(1918), + [anon_sym_match] = ACTIONS(1918), + [anon_sym_mod] = ACTIONS(1918), + [anon_sym_pub] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1918), + [anon_sym_struct] = ACTIONS(1918), + [anon_sym_trait] = ACTIONS(1918), + [anon_sym_type] = ACTIONS(1918), + [anon_sym_union] = ACTIONS(1918), + [anon_sym_unsafe] = ACTIONS(1918), + [anon_sym_use] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [anon_sym_POUND] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_COLON_COLON] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1916), + [anon_sym_DOT_DOT] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_yield] = ACTIONS(1918), + [anon_sym_move] = ACTIONS(1918), + [sym_integer_literal] = ACTIONS(1916), + [aux_sym_string_literal_token1] = ACTIONS(1916), + [sym_char_literal] = ACTIONS(1916), + [anon_sym_true] = ACTIONS(1918), + [anon_sym_false] = ACTIONS(1918), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1918), + [sym_super] = ACTIONS(1918), + [sym_crate] = ACTIONS(1918), + [sym_metavariable] = ACTIONS(1916), + [sym_raw_string_literal] = ACTIONS(1916), + [sym_float_literal] = ACTIONS(1916), [sym_block_comment] = ACTIONS(3), }, [460] = { - [ts_builtin_sym_end] = ACTIONS(1959), - [sym_identifier] = ACTIONS(1961), - [anon_sym_SEMI] = ACTIONS(1959), - [anon_sym_macro_rules_BANG] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1959), - [anon_sym_u8] = ACTIONS(1961), - [anon_sym_i8] = ACTIONS(1961), - [anon_sym_u16] = ACTIONS(1961), - [anon_sym_i16] = ACTIONS(1961), - [anon_sym_u32] = ACTIONS(1961), - [anon_sym_i32] = ACTIONS(1961), - [anon_sym_u64] = ACTIONS(1961), - [anon_sym_i64] = ACTIONS(1961), - [anon_sym_u128] = ACTIONS(1961), - [anon_sym_i128] = ACTIONS(1961), - [anon_sym_isize] = ACTIONS(1961), - [anon_sym_usize] = ACTIONS(1961), - [anon_sym_f32] = ACTIONS(1961), - [anon_sym_f64] = ACTIONS(1961), - [anon_sym_bool] = ACTIONS(1961), - [anon_sym_str] = ACTIONS(1961), - [anon_sym_char] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1961), - [anon_sym_async] = ACTIONS(1961), - [anon_sym_break] = ACTIONS(1961), - [anon_sym_const] = ACTIONS(1961), - [anon_sym_continue] = ACTIONS(1961), - [anon_sym_default] = ACTIONS(1961), - [anon_sym_enum] = ACTIONS(1961), - [anon_sym_fn] = ACTIONS(1961), - [anon_sym_for] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1961), - [anon_sym_impl] = ACTIONS(1961), - [anon_sym_let] = ACTIONS(1961), - [anon_sym_loop] = ACTIONS(1961), - [anon_sym_match] = ACTIONS(1961), - [anon_sym_mod] = ACTIONS(1961), - [anon_sym_pub] = ACTIONS(1961), - [anon_sym_return] = ACTIONS(1961), - [anon_sym_static] = ACTIONS(1961), - [anon_sym_struct] = ACTIONS(1961), - [anon_sym_trait] = ACTIONS(1961), - [anon_sym_type] = ACTIONS(1961), - [anon_sym_union] = ACTIONS(1961), - [anon_sym_unsafe] = ACTIONS(1961), - [anon_sym_use] = ACTIONS(1961), - [anon_sym_while] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(1959), - [anon_sym_BANG] = ACTIONS(1959), - [anon_sym_extern] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_COLON_COLON] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_DOT_DOT] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_yield] = ACTIONS(1961), - [anon_sym_move] = ACTIONS(1961), - [sym_integer_literal] = ACTIONS(1959), - [aux_sym_string_literal_token1] = ACTIONS(1959), - [sym_char_literal] = ACTIONS(1959), - [anon_sym_true] = ACTIONS(1961), - [anon_sym_false] = ACTIONS(1961), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1961), - [sym_super] = ACTIONS(1961), - [sym_crate] = ACTIONS(1961), - [sym_metavariable] = ACTIONS(1959), - [sym_raw_string_literal] = ACTIONS(1959), - [sym_float_literal] = ACTIONS(1959), + [ts_builtin_sym_end] = ACTIONS(1920), + [sym_identifier] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_macro_rules_BANG] = ACTIONS(1920), + [anon_sym_LPAREN] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_u8] = ACTIONS(1922), + [anon_sym_i8] = ACTIONS(1922), + [anon_sym_u16] = ACTIONS(1922), + [anon_sym_i16] = ACTIONS(1922), + [anon_sym_u32] = ACTIONS(1922), + [anon_sym_i32] = ACTIONS(1922), + [anon_sym_u64] = ACTIONS(1922), + [anon_sym_i64] = ACTIONS(1922), + [anon_sym_u128] = ACTIONS(1922), + [anon_sym_i128] = ACTIONS(1922), + [anon_sym_isize] = ACTIONS(1922), + [anon_sym_usize] = ACTIONS(1922), + [anon_sym_f32] = ACTIONS(1922), + [anon_sym_f64] = ACTIONS(1922), + [anon_sym_bool] = ACTIONS(1922), + [anon_sym_str] = ACTIONS(1922), + [anon_sym_char] = ACTIONS(1922), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(1922), + [anon_sym_break] = ACTIONS(1922), + [anon_sym_const] = ACTIONS(1922), + [anon_sym_continue] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1922), + [anon_sym_enum] = ACTIONS(1922), + [anon_sym_fn] = ACTIONS(1922), + [anon_sym_for] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(1922), + [anon_sym_impl] = ACTIONS(1922), + [anon_sym_let] = ACTIONS(1922), + [anon_sym_loop] = ACTIONS(1922), + [anon_sym_match] = ACTIONS(1922), + [anon_sym_mod] = ACTIONS(1922), + [anon_sym_pub] = ACTIONS(1922), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_static] = ACTIONS(1922), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_trait] = ACTIONS(1922), + [anon_sym_type] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1922), + [anon_sym_unsafe] = ACTIONS(1922), + [anon_sym_use] = ACTIONS(1922), + [anon_sym_while] = ACTIONS(1922), + [anon_sym_POUND] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1920), + [anon_sym_extern] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(1920), + [anon_sym_COLON_COLON] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_yield] = ACTIONS(1922), + [anon_sym_move] = ACTIONS(1922), + [sym_integer_literal] = ACTIONS(1920), + [aux_sym_string_literal_token1] = ACTIONS(1920), + [sym_char_literal] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1922), + [anon_sym_false] = ACTIONS(1922), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1922), + [sym_super] = ACTIONS(1922), + [sym_crate] = ACTIONS(1922), + [sym_metavariable] = ACTIONS(1920), + [sym_raw_string_literal] = ACTIONS(1920), + [sym_float_literal] = ACTIONS(1920), [sym_block_comment] = ACTIONS(3), }, [461] = { - [ts_builtin_sym_end] = ACTIONS(1963), - [sym_identifier] = ACTIONS(1965), - [anon_sym_SEMI] = ACTIONS(1963), - [anon_sym_macro_rules_BANG] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_STAR] = ACTIONS(1963), - [anon_sym_u8] = ACTIONS(1965), - [anon_sym_i8] = ACTIONS(1965), - [anon_sym_u16] = ACTIONS(1965), - [anon_sym_i16] = ACTIONS(1965), - [anon_sym_u32] = ACTIONS(1965), - [anon_sym_i32] = ACTIONS(1965), - [anon_sym_u64] = ACTIONS(1965), - [anon_sym_i64] = ACTIONS(1965), - [anon_sym_u128] = ACTIONS(1965), - [anon_sym_i128] = ACTIONS(1965), - [anon_sym_isize] = ACTIONS(1965), - [anon_sym_usize] = ACTIONS(1965), - [anon_sym_f32] = ACTIONS(1965), - [anon_sym_f64] = ACTIONS(1965), - [anon_sym_bool] = ACTIONS(1965), - [anon_sym_str] = ACTIONS(1965), - [anon_sym_char] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1965), - [anon_sym_async] = ACTIONS(1965), - [anon_sym_break] = ACTIONS(1965), - [anon_sym_const] = ACTIONS(1965), - [anon_sym_continue] = ACTIONS(1965), - [anon_sym_default] = ACTIONS(1965), - [anon_sym_enum] = ACTIONS(1965), - [anon_sym_fn] = ACTIONS(1965), - [anon_sym_for] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_impl] = ACTIONS(1965), - [anon_sym_let] = ACTIONS(1965), - [anon_sym_loop] = ACTIONS(1965), - [anon_sym_match] = ACTIONS(1965), - [anon_sym_mod] = ACTIONS(1965), - [anon_sym_pub] = ACTIONS(1965), - [anon_sym_return] = ACTIONS(1965), - [anon_sym_static] = ACTIONS(1965), - [anon_sym_struct] = ACTIONS(1965), - [anon_sym_trait] = ACTIONS(1965), - [anon_sym_type] = ACTIONS(1965), - [anon_sym_union] = ACTIONS(1965), - [anon_sym_unsafe] = ACTIONS(1965), - [anon_sym_use] = ACTIONS(1965), - [anon_sym_while] = ACTIONS(1965), - [anon_sym_POUND] = ACTIONS(1963), - [anon_sym_BANG] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_COLON_COLON] = ACTIONS(1963), - [anon_sym_AMP] = ACTIONS(1963), - [anon_sym_DOT_DOT] = ACTIONS(1963), - [anon_sym_DASH] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_yield] = ACTIONS(1965), - [anon_sym_move] = ACTIONS(1965), - [sym_integer_literal] = ACTIONS(1963), - [aux_sym_string_literal_token1] = ACTIONS(1963), - [sym_char_literal] = ACTIONS(1963), - [anon_sym_true] = ACTIONS(1965), - [anon_sym_false] = ACTIONS(1965), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1965), - [sym_super] = ACTIONS(1965), - [sym_crate] = ACTIONS(1965), - [sym_metavariable] = ACTIONS(1963), - [sym_raw_string_literal] = ACTIONS(1963), - [sym_float_literal] = ACTIONS(1963), + [ts_builtin_sym_end] = ACTIONS(1924), + [sym_identifier] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_macro_rules_BANG] = ACTIONS(1924), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1924), + [anon_sym_u8] = ACTIONS(1926), + [anon_sym_i8] = ACTIONS(1926), + [anon_sym_u16] = ACTIONS(1926), + [anon_sym_i16] = ACTIONS(1926), + [anon_sym_u32] = ACTIONS(1926), + [anon_sym_i32] = ACTIONS(1926), + [anon_sym_u64] = ACTIONS(1926), + [anon_sym_i64] = ACTIONS(1926), + [anon_sym_u128] = ACTIONS(1926), + [anon_sym_i128] = ACTIONS(1926), + [anon_sym_isize] = ACTIONS(1926), + [anon_sym_usize] = ACTIONS(1926), + [anon_sym_f32] = ACTIONS(1926), + [anon_sym_f64] = ACTIONS(1926), + [anon_sym_bool] = ACTIONS(1926), + [anon_sym_str] = ACTIONS(1926), + [anon_sym_char] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_async] = ACTIONS(1926), + [anon_sym_break] = ACTIONS(1926), + [anon_sym_const] = ACTIONS(1926), + [anon_sym_continue] = ACTIONS(1926), + [anon_sym_default] = ACTIONS(1926), + [anon_sym_enum] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1926), + [anon_sym_for] = ACTIONS(1926), + [anon_sym_if] = ACTIONS(1926), + [anon_sym_impl] = ACTIONS(1926), + [anon_sym_let] = ACTIONS(1926), + [anon_sym_loop] = ACTIONS(1926), + [anon_sym_match] = ACTIONS(1926), + [anon_sym_mod] = ACTIONS(1926), + [anon_sym_pub] = ACTIONS(1926), + [anon_sym_return] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1926), + [anon_sym_struct] = ACTIONS(1926), + [anon_sym_trait] = ACTIONS(1926), + [anon_sym_type] = ACTIONS(1926), + [anon_sym_union] = ACTIONS(1926), + [anon_sym_unsafe] = ACTIONS(1926), + [anon_sym_use] = ACTIONS(1926), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_POUND] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1924), + [anon_sym_COLON_COLON] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_yield] = ACTIONS(1926), + [anon_sym_move] = ACTIONS(1926), + [sym_integer_literal] = ACTIONS(1924), + [aux_sym_string_literal_token1] = ACTIONS(1924), + [sym_char_literal] = ACTIONS(1924), + [anon_sym_true] = ACTIONS(1926), + [anon_sym_false] = ACTIONS(1926), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1926), + [sym_super] = ACTIONS(1926), + [sym_crate] = ACTIONS(1926), + [sym_metavariable] = ACTIONS(1924), + [sym_raw_string_literal] = ACTIONS(1924), + [sym_float_literal] = ACTIONS(1924), [sym_block_comment] = ACTIONS(3), }, [462] = { - [ts_builtin_sym_end] = ACTIONS(1967), - [sym_identifier] = ACTIONS(1969), - [anon_sym_SEMI] = ACTIONS(1967), - [anon_sym_macro_rules_BANG] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_LBRACK] = ACTIONS(1967), - [anon_sym_STAR] = ACTIONS(1967), - [anon_sym_u8] = ACTIONS(1969), - [anon_sym_i8] = ACTIONS(1969), - [anon_sym_u16] = ACTIONS(1969), - [anon_sym_i16] = ACTIONS(1969), - [anon_sym_u32] = ACTIONS(1969), - [anon_sym_i32] = ACTIONS(1969), - [anon_sym_u64] = ACTIONS(1969), - [anon_sym_i64] = ACTIONS(1969), - [anon_sym_u128] = ACTIONS(1969), - [anon_sym_i128] = ACTIONS(1969), - [anon_sym_isize] = ACTIONS(1969), - [anon_sym_usize] = ACTIONS(1969), - [anon_sym_f32] = ACTIONS(1969), - [anon_sym_f64] = ACTIONS(1969), - [anon_sym_bool] = ACTIONS(1969), - [anon_sym_str] = ACTIONS(1969), - [anon_sym_char] = ACTIONS(1969), - [anon_sym_SQUOTE] = ACTIONS(1969), - [anon_sym_async] = ACTIONS(1969), - [anon_sym_break] = ACTIONS(1969), - [anon_sym_const] = ACTIONS(1969), - [anon_sym_continue] = ACTIONS(1969), - [anon_sym_default] = ACTIONS(1969), - [anon_sym_enum] = ACTIONS(1969), - [anon_sym_fn] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1969), - [anon_sym_if] = ACTIONS(1969), - [anon_sym_impl] = ACTIONS(1969), - [anon_sym_let] = ACTIONS(1969), - [anon_sym_loop] = ACTIONS(1969), - [anon_sym_match] = ACTIONS(1969), - [anon_sym_mod] = ACTIONS(1969), - [anon_sym_pub] = ACTIONS(1969), - [anon_sym_return] = ACTIONS(1969), - [anon_sym_static] = ACTIONS(1969), - [anon_sym_struct] = ACTIONS(1969), - [anon_sym_trait] = ACTIONS(1969), - [anon_sym_type] = ACTIONS(1969), - [anon_sym_union] = ACTIONS(1969), - [anon_sym_unsafe] = ACTIONS(1969), - [anon_sym_use] = ACTIONS(1969), - [anon_sym_while] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(1967), - [anon_sym_BANG] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1967), - [anon_sym_COLON_COLON] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1967), - [anon_sym_DOT_DOT] = ACTIONS(1967), - [anon_sym_DASH] = ACTIONS(1967), - [anon_sym_PIPE] = ACTIONS(1967), - [anon_sym_yield] = ACTIONS(1969), - [anon_sym_move] = ACTIONS(1969), - [sym_integer_literal] = ACTIONS(1967), - [aux_sym_string_literal_token1] = ACTIONS(1967), - [sym_char_literal] = ACTIONS(1967), - [anon_sym_true] = ACTIONS(1969), - [anon_sym_false] = ACTIONS(1969), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1969), - [sym_super] = ACTIONS(1969), - [sym_crate] = ACTIONS(1969), - [sym_metavariable] = ACTIONS(1967), - [sym_raw_string_literal] = ACTIONS(1967), - [sym_float_literal] = ACTIONS(1967), + [ts_builtin_sym_end] = ACTIONS(1928), + [sym_identifier] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_macro_rules_BANG] = ACTIONS(1928), + [anon_sym_LPAREN] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(1928), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_u8] = ACTIONS(1930), + [anon_sym_i8] = ACTIONS(1930), + [anon_sym_u16] = ACTIONS(1930), + [anon_sym_i16] = ACTIONS(1930), + [anon_sym_u32] = ACTIONS(1930), + [anon_sym_i32] = ACTIONS(1930), + [anon_sym_u64] = ACTIONS(1930), + [anon_sym_i64] = ACTIONS(1930), + [anon_sym_u128] = ACTIONS(1930), + [anon_sym_i128] = ACTIONS(1930), + [anon_sym_isize] = ACTIONS(1930), + [anon_sym_usize] = ACTIONS(1930), + [anon_sym_f32] = ACTIONS(1930), + [anon_sym_f64] = ACTIONS(1930), + [anon_sym_bool] = ACTIONS(1930), + [anon_sym_str] = ACTIONS(1930), + [anon_sym_char] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1930), + [anon_sym_async] = ACTIONS(1930), + [anon_sym_break] = ACTIONS(1930), + [anon_sym_const] = ACTIONS(1930), + [anon_sym_continue] = ACTIONS(1930), + [anon_sym_default] = ACTIONS(1930), + [anon_sym_enum] = ACTIONS(1930), + [anon_sym_fn] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1930), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_impl] = ACTIONS(1930), + [anon_sym_let] = ACTIONS(1930), + [anon_sym_loop] = ACTIONS(1930), + [anon_sym_match] = ACTIONS(1930), + [anon_sym_mod] = ACTIONS(1930), + [anon_sym_pub] = ACTIONS(1930), + [anon_sym_return] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1930), + [anon_sym_struct] = ACTIONS(1930), + [anon_sym_trait] = ACTIONS(1930), + [anon_sym_type] = ACTIONS(1930), + [anon_sym_union] = ACTIONS(1930), + [anon_sym_unsafe] = ACTIONS(1930), + [anon_sym_use] = ACTIONS(1930), + [anon_sym_while] = ACTIONS(1930), + [anon_sym_POUND] = ACTIONS(1928), + [anon_sym_BANG] = ACTIONS(1928), + [anon_sym_extern] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_COLON_COLON] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym_DOT_DOT] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_PIPE] = ACTIONS(1928), + [anon_sym_yield] = ACTIONS(1930), + [anon_sym_move] = ACTIONS(1930), + [sym_integer_literal] = ACTIONS(1928), + [aux_sym_string_literal_token1] = ACTIONS(1928), + [sym_char_literal] = ACTIONS(1928), + [anon_sym_true] = ACTIONS(1930), + [anon_sym_false] = ACTIONS(1930), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1930), + [sym_super] = ACTIONS(1930), + [sym_crate] = ACTIONS(1930), + [sym_metavariable] = ACTIONS(1928), + [sym_raw_string_literal] = ACTIONS(1928), + [sym_float_literal] = ACTIONS(1928), [sym_block_comment] = ACTIONS(3), }, [463] = { - [ts_builtin_sym_end] = ACTIONS(1971), - [sym_identifier] = ACTIONS(1973), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_macro_rules_BANG] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1971), - [anon_sym_u8] = ACTIONS(1973), - [anon_sym_i8] = ACTIONS(1973), - [anon_sym_u16] = ACTIONS(1973), - [anon_sym_i16] = ACTIONS(1973), - [anon_sym_u32] = ACTIONS(1973), - [anon_sym_i32] = ACTIONS(1973), - [anon_sym_u64] = ACTIONS(1973), - [anon_sym_i64] = ACTIONS(1973), - [anon_sym_u128] = ACTIONS(1973), - [anon_sym_i128] = ACTIONS(1973), - [anon_sym_isize] = ACTIONS(1973), - [anon_sym_usize] = ACTIONS(1973), - [anon_sym_f32] = ACTIONS(1973), - [anon_sym_f64] = ACTIONS(1973), - [anon_sym_bool] = ACTIONS(1973), - [anon_sym_str] = ACTIONS(1973), - [anon_sym_char] = ACTIONS(1973), - [anon_sym_SQUOTE] = ACTIONS(1973), - [anon_sym_async] = ACTIONS(1973), - [anon_sym_break] = ACTIONS(1973), - [anon_sym_const] = ACTIONS(1973), - [anon_sym_continue] = ACTIONS(1973), - [anon_sym_default] = ACTIONS(1973), - [anon_sym_enum] = ACTIONS(1973), - [anon_sym_fn] = ACTIONS(1973), - [anon_sym_for] = ACTIONS(1973), - [anon_sym_if] = ACTIONS(1973), - [anon_sym_impl] = ACTIONS(1973), - [anon_sym_let] = ACTIONS(1973), - [anon_sym_loop] = ACTIONS(1973), - [anon_sym_match] = ACTIONS(1973), - [anon_sym_mod] = ACTIONS(1973), - [anon_sym_pub] = ACTIONS(1973), - [anon_sym_return] = ACTIONS(1973), - [anon_sym_static] = ACTIONS(1973), - [anon_sym_struct] = ACTIONS(1973), - [anon_sym_trait] = ACTIONS(1973), - [anon_sym_type] = ACTIONS(1973), - [anon_sym_union] = ACTIONS(1973), - [anon_sym_unsafe] = ACTIONS(1973), - [anon_sym_use] = ACTIONS(1973), - [anon_sym_while] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(1971), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_extern] = ACTIONS(1973), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_COLON_COLON] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_yield] = ACTIONS(1973), - [anon_sym_move] = ACTIONS(1973), - [sym_integer_literal] = ACTIONS(1971), - [aux_sym_string_literal_token1] = ACTIONS(1971), - [sym_char_literal] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1973), - [anon_sym_false] = ACTIONS(1973), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1973), - [sym_super] = ACTIONS(1973), - [sym_crate] = ACTIONS(1973), - [sym_metavariable] = ACTIONS(1971), - [sym_raw_string_literal] = ACTIONS(1971), - [sym_float_literal] = ACTIONS(1971), + [ts_builtin_sym_end] = ACTIONS(1932), + [sym_identifier] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_macro_rules_BANG] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1932), + [anon_sym_RBRACE] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1932), + [anon_sym_u8] = ACTIONS(1934), + [anon_sym_i8] = ACTIONS(1934), + [anon_sym_u16] = ACTIONS(1934), + [anon_sym_i16] = ACTIONS(1934), + [anon_sym_u32] = ACTIONS(1934), + [anon_sym_i32] = ACTIONS(1934), + [anon_sym_u64] = ACTIONS(1934), + [anon_sym_i64] = ACTIONS(1934), + [anon_sym_u128] = ACTIONS(1934), + [anon_sym_i128] = ACTIONS(1934), + [anon_sym_isize] = ACTIONS(1934), + [anon_sym_usize] = ACTIONS(1934), + [anon_sym_f32] = ACTIONS(1934), + [anon_sym_f64] = ACTIONS(1934), + [anon_sym_bool] = ACTIONS(1934), + [anon_sym_str] = ACTIONS(1934), + [anon_sym_char] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_async] = ACTIONS(1934), + [anon_sym_break] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1934), + [anon_sym_continue] = ACTIONS(1934), + [anon_sym_default] = ACTIONS(1934), + [anon_sym_enum] = ACTIONS(1934), + [anon_sym_fn] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_impl] = ACTIONS(1934), + [anon_sym_let] = ACTIONS(1934), + [anon_sym_loop] = ACTIONS(1934), + [anon_sym_match] = ACTIONS(1934), + [anon_sym_mod] = ACTIONS(1934), + [anon_sym_pub] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1934), + [anon_sym_struct] = ACTIONS(1934), + [anon_sym_trait] = ACTIONS(1934), + [anon_sym_type] = ACTIONS(1934), + [anon_sym_union] = ACTIONS(1934), + [anon_sym_unsafe] = ACTIONS(1934), + [anon_sym_use] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(1932), + [anon_sym_BANG] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1934), + [anon_sym_LT] = ACTIONS(1932), + [anon_sym_COLON_COLON] = ACTIONS(1932), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_DOT_DOT] = ACTIONS(1932), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_yield] = ACTIONS(1934), + [anon_sym_move] = ACTIONS(1934), + [sym_integer_literal] = ACTIONS(1932), + [aux_sym_string_literal_token1] = ACTIONS(1932), + [sym_char_literal] = ACTIONS(1932), + [anon_sym_true] = ACTIONS(1934), + [anon_sym_false] = ACTIONS(1934), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1934), + [sym_super] = ACTIONS(1934), + [sym_crate] = ACTIONS(1934), + [sym_metavariable] = ACTIONS(1932), + [sym_raw_string_literal] = ACTIONS(1932), + [sym_float_literal] = ACTIONS(1932), [sym_block_comment] = ACTIONS(3), }, [464] = { - [ts_builtin_sym_end] = ACTIONS(1975), - [sym_identifier] = ACTIONS(1977), - [anon_sym_SEMI] = ACTIONS(1975), - [anon_sym_macro_rules_BANG] = ACTIONS(1975), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1975), - [anon_sym_RBRACE] = ACTIONS(1975), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(1975), - [anon_sym_u8] = ACTIONS(1977), - [anon_sym_i8] = ACTIONS(1977), - [anon_sym_u16] = ACTIONS(1977), - [anon_sym_i16] = ACTIONS(1977), - [anon_sym_u32] = ACTIONS(1977), - [anon_sym_i32] = ACTIONS(1977), - [anon_sym_u64] = ACTIONS(1977), - [anon_sym_i64] = ACTIONS(1977), - [anon_sym_u128] = ACTIONS(1977), - [anon_sym_i128] = ACTIONS(1977), - [anon_sym_isize] = ACTIONS(1977), - [anon_sym_usize] = ACTIONS(1977), - [anon_sym_f32] = ACTIONS(1977), - [anon_sym_f64] = ACTIONS(1977), - [anon_sym_bool] = ACTIONS(1977), - [anon_sym_str] = ACTIONS(1977), - [anon_sym_char] = ACTIONS(1977), - [anon_sym_SQUOTE] = ACTIONS(1977), - [anon_sym_async] = ACTIONS(1977), - [anon_sym_break] = ACTIONS(1977), - [anon_sym_const] = ACTIONS(1977), - [anon_sym_continue] = ACTIONS(1977), - [anon_sym_default] = ACTIONS(1977), - [anon_sym_enum] = ACTIONS(1977), - [anon_sym_fn] = ACTIONS(1977), - [anon_sym_for] = ACTIONS(1977), - [anon_sym_if] = ACTIONS(1977), - [anon_sym_impl] = ACTIONS(1977), - [anon_sym_let] = ACTIONS(1977), - [anon_sym_loop] = ACTIONS(1977), - [anon_sym_match] = ACTIONS(1977), - [anon_sym_mod] = ACTIONS(1977), - [anon_sym_pub] = ACTIONS(1977), - [anon_sym_return] = ACTIONS(1977), - [anon_sym_static] = ACTIONS(1977), - [anon_sym_struct] = ACTIONS(1977), - [anon_sym_trait] = ACTIONS(1977), - [anon_sym_type] = ACTIONS(1977), - [anon_sym_union] = ACTIONS(1977), - [anon_sym_unsafe] = ACTIONS(1977), - [anon_sym_use] = ACTIONS(1977), - [anon_sym_while] = ACTIONS(1977), - [anon_sym_POUND] = ACTIONS(1975), - [anon_sym_BANG] = ACTIONS(1975), - [anon_sym_extern] = ACTIONS(1977), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_COLON_COLON] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1975), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_yield] = ACTIONS(1977), - [anon_sym_move] = ACTIONS(1977), - [sym_integer_literal] = ACTIONS(1975), - [aux_sym_string_literal_token1] = ACTIONS(1975), - [sym_char_literal] = ACTIONS(1975), - [anon_sym_true] = ACTIONS(1977), - [anon_sym_false] = ACTIONS(1977), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1977), - [sym_super] = ACTIONS(1977), - [sym_crate] = ACTIONS(1977), - [sym_metavariable] = ACTIONS(1975), - [sym_raw_string_literal] = ACTIONS(1975), - [sym_float_literal] = ACTIONS(1975), + [ts_builtin_sym_end] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_macro_rules_BANG] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1936), + [anon_sym_RBRACE] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_break] = ACTIONS(1938), + [anon_sym_const] = ACTIONS(1938), + [anon_sym_continue] = ACTIONS(1938), + [anon_sym_default] = ACTIONS(1938), + [anon_sym_enum] = ACTIONS(1938), + [anon_sym_fn] = ACTIONS(1938), + [anon_sym_for] = ACTIONS(1938), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_impl] = ACTIONS(1938), + [anon_sym_let] = ACTIONS(1938), + [anon_sym_loop] = ACTIONS(1938), + [anon_sym_match] = ACTIONS(1938), + [anon_sym_mod] = ACTIONS(1938), + [anon_sym_pub] = ACTIONS(1938), + [anon_sym_return] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_struct] = ACTIONS(1938), + [anon_sym_trait] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_union] = ACTIONS(1938), + [anon_sym_unsafe] = ACTIONS(1938), + [anon_sym_use] = ACTIONS(1938), + [anon_sym_while] = ACTIONS(1938), + [anon_sym_POUND] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_extern] = ACTIONS(1938), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_COLON_COLON] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1936), + [anon_sym_DOT_DOT] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_yield] = ACTIONS(1938), + [anon_sym_move] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(1936), + [aux_sym_string_literal_token1] = ACTIONS(1936), + [sym_char_literal] = ACTIONS(1936), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1938), + [sym_super] = ACTIONS(1938), + [sym_crate] = ACTIONS(1938), + [sym_metavariable] = ACTIONS(1936), + [sym_raw_string_literal] = ACTIONS(1936), + [sym_float_literal] = ACTIONS(1936), [sym_block_comment] = ACTIONS(3), }, [465] = { - [ts_builtin_sym_end] = ACTIONS(1979), - [sym_identifier] = ACTIONS(1981), - [anon_sym_SEMI] = ACTIONS(1979), - [anon_sym_macro_rules_BANG] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_LBRACE] = ACTIONS(1979), - [anon_sym_RBRACE] = ACTIONS(1979), - [anon_sym_LBRACK] = ACTIONS(1979), - [anon_sym_STAR] = ACTIONS(1979), - [anon_sym_u8] = ACTIONS(1981), - [anon_sym_i8] = ACTIONS(1981), - [anon_sym_u16] = ACTIONS(1981), - [anon_sym_i16] = ACTIONS(1981), - [anon_sym_u32] = ACTIONS(1981), - [anon_sym_i32] = ACTIONS(1981), - [anon_sym_u64] = ACTIONS(1981), - [anon_sym_i64] = ACTIONS(1981), - [anon_sym_u128] = ACTIONS(1981), - [anon_sym_i128] = ACTIONS(1981), - [anon_sym_isize] = ACTIONS(1981), - [anon_sym_usize] = ACTIONS(1981), - [anon_sym_f32] = ACTIONS(1981), - [anon_sym_f64] = ACTIONS(1981), - [anon_sym_bool] = ACTIONS(1981), - [anon_sym_str] = ACTIONS(1981), - [anon_sym_char] = ACTIONS(1981), - [anon_sym_SQUOTE] = ACTIONS(1981), - [anon_sym_async] = ACTIONS(1981), - [anon_sym_break] = ACTIONS(1981), - [anon_sym_const] = ACTIONS(1981), - [anon_sym_continue] = ACTIONS(1981), - [anon_sym_default] = ACTIONS(1981), - [anon_sym_enum] = ACTIONS(1981), - [anon_sym_fn] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_impl] = ACTIONS(1981), - [anon_sym_let] = ACTIONS(1981), - [anon_sym_loop] = ACTIONS(1981), - [anon_sym_match] = ACTIONS(1981), - [anon_sym_mod] = ACTIONS(1981), - [anon_sym_pub] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_static] = ACTIONS(1981), - [anon_sym_struct] = ACTIONS(1981), - [anon_sym_trait] = ACTIONS(1981), - [anon_sym_type] = ACTIONS(1981), - [anon_sym_union] = ACTIONS(1981), - [anon_sym_unsafe] = ACTIONS(1981), - [anon_sym_use] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_POUND] = ACTIONS(1979), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_extern] = ACTIONS(1981), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_COLON_COLON] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_DOT_DOT] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_yield] = ACTIONS(1981), - [anon_sym_move] = ACTIONS(1981), - [sym_integer_literal] = ACTIONS(1979), - [aux_sym_string_literal_token1] = ACTIONS(1979), - [sym_char_literal] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1981), - [anon_sym_false] = ACTIONS(1981), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1981), - [sym_super] = ACTIONS(1981), - [sym_crate] = ACTIONS(1981), - [sym_metavariable] = ACTIONS(1979), - [sym_raw_string_literal] = ACTIONS(1979), - [sym_float_literal] = ACTIONS(1979), + [ts_builtin_sym_end] = ACTIONS(1940), + [sym_identifier] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_macro_rules_BANG] = ACTIONS(1940), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1940), + [anon_sym_u8] = ACTIONS(1942), + [anon_sym_i8] = ACTIONS(1942), + [anon_sym_u16] = ACTIONS(1942), + [anon_sym_i16] = ACTIONS(1942), + [anon_sym_u32] = ACTIONS(1942), + [anon_sym_i32] = ACTIONS(1942), + [anon_sym_u64] = ACTIONS(1942), + [anon_sym_i64] = ACTIONS(1942), + [anon_sym_u128] = ACTIONS(1942), + [anon_sym_i128] = ACTIONS(1942), + [anon_sym_isize] = ACTIONS(1942), + [anon_sym_usize] = ACTIONS(1942), + [anon_sym_f32] = ACTIONS(1942), + [anon_sym_f64] = ACTIONS(1942), + [anon_sym_bool] = ACTIONS(1942), + [anon_sym_str] = ACTIONS(1942), + [anon_sym_char] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_async] = ACTIONS(1942), + [anon_sym_break] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1942), + [anon_sym_continue] = ACTIONS(1942), + [anon_sym_default] = ACTIONS(1942), + [anon_sym_enum] = ACTIONS(1942), + [anon_sym_fn] = ACTIONS(1942), + [anon_sym_for] = ACTIONS(1942), + [anon_sym_if] = ACTIONS(1942), + [anon_sym_impl] = ACTIONS(1942), + [anon_sym_let] = ACTIONS(1942), + [anon_sym_loop] = ACTIONS(1942), + [anon_sym_match] = ACTIONS(1942), + [anon_sym_mod] = ACTIONS(1942), + [anon_sym_pub] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1942), + [anon_sym_struct] = ACTIONS(1942), + [anon_sym_trait] = ACTIONS(1942), + [anon_sym_type] = ACTIONS(1942), + [anon_sym_union] = ACTIONS(1942), + [anon_sym_unsafe] = ACTIONS(1942), + [anon_sym_use] = ACTIONS(1942), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_POUND] = ACTIONS(1940), + [anon_sym_BANG] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1942), + [anon_sym_LT] = ACTIONS(1940), + [anon_sym_COLON_COLON] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1940), + [anon_sym_yield] = ACTIONS(1942), + [anon_sym_move] = ACTIONS(1942), + [sym_integer_literal] = ACTIONS(1940), + [aux_sym_string_literal_token1] = ACTIONS(1940), + [sym_char_literal] = ACTIONS(1940), + [anon_sym_true] = ACTIONS(1942), + [anon_sym_false] = ACTIONS(1942), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1942), + [sym_super] = ACTIONS(1942), + [sym_crate] = ACTIONS(1942), + [sym_metavariable] = ACTIONS(1940), + [sym_raw_string_literal] = ACTIONS(1940), + [sym_float_literal] = ACTIONS(1940), [sym_block_comment] = ACTIONS(3), }, [466] = { - [ts_builtin_sym_end] = ACTIONS(1983), - [sym_identifier] = ACTIONS(1985), - [anon_sym_SEMI] = ACTIONS(1983), - [anon_sym_macro_rules_BANG] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_LBRACK] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1983), - [anon_sym_u8] = ACTIONS(1985), - [anon_sym_i8] = ACTIONS(1985), - [anon_sym_u16] = ACTIONS(1985), - [anon_sym_i16] = ACTIONS(1985), - [anon_sym_u32] = ACTIONS(1985), - [anon_sym_i32] = ACTIONS(1985), - [anon_sym_u64] = ACTIONS(1985), - [anon_sym_i64] = ACTIONS(1985), - [anon_sym_u128] = ACTIONS(1985), - [anon_sym_i128] = ACTIONS(1985), - [anon_sym_isize] = ACTIONS(1985), - [anon_sym_usize] = ACTIONS(1985), - [anon_sym_f32] = ACTIONS(1985), - [anon_sym_f64] = ACTIONS(1985), - [anon_sym_bool] = ACTIONS(1985), - [anon_sym_str] = ACTIONS(1985), - [anon_sym_char] = ACTIONS(1985), - [anon_sym_SQUOTE] = ACTIONS(1985), - [anon_sym_async] = ACTIONS(1985), - [anon_sym_break] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1985), - [anon_sym_continue] = ACTIONS(1985), - [anon_sym_default] = ACTIONS(1985), - [anon_sym_enum] = ACTIONS(1985), - [anon_sym_fn] = ACTIONS(1985), - [anon_sym_for] = ACTIONS(1985), - [anon_sym_if] = ACTIONS(1985), - [anon_sym_impl] = ACTIONS(1985), - [anon_sym_let] = ACTIONS(1985), - [anon_sym_loop] = ACTIONS(1985), - [anon_sym_match] = ACTIONS(1985), - [anon_sym_mod] = ACTIONS(1985), - [anon_sym_pub] = ACTIONS(1985), - [anon_sym_return] = ACTIONS(1985), - [anon_sym_static] = ACTIONS(1985), - [anon_sym_struct] = ACTIONS(1985), - [anon_sym_trait] = ACTIONS(1985), - [anon_sym_type] = ACTIONS(1985), - [anon_sym_union] = ACTIONS(1985), - [anon_sym_unsafe] = ACTIONS(1985), - [anon_sym_use] = ACTIONS(1985), - [anon_sym_while] = ACTIONS(1985), - [anon_sym_POUND] = ACTIONS(1983), - [anon_sym_BANG] = ACTIONS(1983), - [anon_sym_extern] = ACTIONS(1985), - [anon_sym_LT] = ACTIONS(1983), - [anon_sym_COLON_COLON] = ACTIONS(1983), - [anon_sym_AMP] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_PIPE] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_move] = ACTIONS(1985), - [sym_integer_literal] = ACTIONS(1983), - [aux_sym_string_literal_token1] = ACTIONS(1983), - [sym_char_literal] = ACTIONS(1983), - [anon_sym_true] = ACTIONS(1985), - [anon_sym_false] = ACTIONS(1985), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1985), - [sym_super] = ACTIONS(1985), - [sym_crate] = ACTIONS(1985), - [sym_metavariable] = ACTIONS(1983), - [sym_raw_string_literal] = ACTIONS(1983), - [sym_float_literal] = ACTIONS(1983), + [ts_builtin_sym_end] = ACTIONS(1944), + [sym_identifier] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1944), + [anon_sym_macro_rules_BANG] = ACTIONS(1944), + [anon_sym_LPAREN] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1944), + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_LBRACK] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1944), + [anon_sym_u8] = ACTIONS(1946), + [anon_sym_i8] = ACTIONS(1946), + [anon_sym_u16] = ACTIONS(1946), + [anon_sym_i16] = ACTIONS(1946), + [anon_sym_u32] = ACTIONS(1946), + [anon_sym_i32] = ACTIONS(1946), + [anon_sym_u64] = ACTIONS(1946), + [anon_sym_i64] = ACTIONS(1946), + [anon_sym_u128] = ACTIONS(1946), + [anon_sym_i128] = ACTIONS(1946), + [anon_sym_isize] = ACTIONS(1946), + [anon_sym_usize] = ACTIONS(1946), + [anon_sym_f32] = ACTIONS(1946), + [anon_sym_f64] = ACTIONS(1946), + [anon_sym_bool] = ACTIONS(1946), + [anon_sym_str] = ACTIONS(1946), + [anon_sym_char] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1946), + [anon_sym_async] = ACTIONS(1946), + [anon_sym_break] = ACTIONS(1946), + [anon_sym_const] = ACTIONS(1946), + [anon_sym_continue] = ACTIONS(1946), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_enum] = ACTIONS(1946), + [anon_sym_fn] = ACTIONS(1946), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_if] = ACTIONS(1946), + [anon_sym_impl] = ACTIONS(1946), + [anon_sym_let] = ACTIONS(1946), + [anon_sym_loop] = ACTIONS(1946), + [anon_sym_match] = ACTIONS(1946), + [anon_sym_mod] = ACTIONS(1946), + [anon_sym_pub] = ACTIONS(1946), + [anon_sym_return] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1946), + [anon_sym_struct] = ACTIONS(1946), + [anon_sym_trait] = ACTIONS(1946), + [anon_sym_type] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_unsafe] = ACTIONS(1946), + [anon_sym_use] = ACTIONS(1946), + [anon_sym_while] = ACTIONS(1946), + [anon_sym_POUND] = ACTIONS(1944), + [anon_sym_BANG] = ACTIONS(1944), + [anon_sym_extern] = ACTIONS(1946), + [anon_sym_LT] = ACTIONS(1944), + [anon_sym_COLON_COLON] = ACTIONS(1944), + [anon_sym_AMP] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_PIPE] = ACTIONS(1944), + [anon_sym_yield] = ACTIONS(1946), + [anon_sym_move] = ACTIONS(1946), + [sym_integer_literal] = ACTIONS(1944), + [aux_sym_string_literal_token1] = ACTIONS(1944), + [sym_char_literal] = ACTIONS(1944), + [anon_sym_true] = ACTIONS(1946), + [anon_sym_false] = ACTIONS(1946), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1946), + [sym_super] = ACTIONS(1946), + [sym_crate] = ACTIONS(1946), + [sym_metavariable] = ACTIONS(1944), + [sym_raw_string_literal] = ACTIONS(1944), + [sym_float_literal] = ACTIONS(1944), [sym_block_comment] = ACTIONS(3), }, [467] = { - [ts_builtin_sym_end] = ACTIONS(1987), - [sym_identifier] = ACTIONS(1989), - [anon_sym_SEMI] = ACTIONS(1987), - [anon_sym_macro_rules_BANG] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_RBRACE] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1987), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_u8] = ACTIONS(1989), - [anon_sym_i8] = ACTIONS(1989), - [anon_sym_u16] = ACTIONS(1989), - [anon_sym_i16] = ACTIONS(1989), - [anon_sym_u32] = ACTIONS(1989), - [anon_sym_i32] = ACTIONS(1989), - [anon_sym_u64] = ACTIONS(1989), - [anon_sym_i64] = ACTIONS(1989), - [anon_sym_u128] = ACTIONS(1989), - [anon_sym_i128] = ACTIONS(1989), - [anon_sym_isize] = ACTIONS(1989), - [anon_sym_usize] = ACTIONS(1989), - [anon_sym_f32] = ACTIONS(1989), - [anon_sym_f64] = ACTIONS(1989), - [anon_sym_bool] = ACTIONS(1989), - [anon_sym_str] = ACTIONS(1989), - [anon_sym_char] = ACTIONS(1989), - [anon_sym_SQUOTE] = ACTIONS(1989), - [anon_sym_async] = ACTIONS(1989), - [anon_sym_break] = ACTIONS(1989), - [anon_sym_const] = ACTIONS(1989), - [anon_sym_continue] = ACTIONS(1989), - [anon_sym_default] = ACTIONS(1989), - [anon_sym_enum] = ACTIONS(1989), - [anon_sym_fn] = ACTIONS(1989), - [anon_sym_for] = ACTIONS(1989), - [anon_sym_if] = ACTIONS(1989), - [anon_sym_impl] = ACTIONS(1989), - [anon_sym_let] = ACTIONS(1989), - [anon_sym_loop] = ACTIONS(1989), - [anon_sym_match] = ACTIONS(1989), - [anon_sym_mod] = ACTIONS(1989), - [anon_sym_pub] = ACTIONS(1989), - [anon_sym_return] = ACTIONS(1989), - [anon_sym_static] = ACTIONS(1989), - [anon_sym_struct] = ACTIONS(1989), - [anon_sym_trait] = ACTIONS(1989), - [anon_sym_type] = ACTIONS(1989), - [anon_sym_union] = ACTIONS(1989), - [anon_sym_unsafe] = ACTIONS(1989), - [anon_sym_use] = ACTIONS(1989), - [anon_sym_while] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1987), - [anon_sym_extern] = ACTIONS(1989), - [anon_sym_LT] = ACTIONS(1987), - [anon_sym_COLON_COLON] = ACTIONS(1987), - [anon_sym_AMP] = ACTIONS(1987), - [anon_sym_DOT_DOT] = ACTIONS(1987), - [anon_sym_DASH] = ACTIONS(1987), - [anon_sym_PIPE] = ACTIONS(1987), - [anon_sym_yield] = ACTIONS(1989), - [anon_sym_move] = ACTIONS(1989), - [sym_integer_literal] = ACTIONS(1987), - [aux_sym_string_literal_token1] = ACTIONS(1987), - [sym_char_literal] = ACTIONS(1987), - [anon_sym_true] = ACTIONS(1989), - [anon_sym_false] = ACTIONS(1989), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1989), - [sym_super] = ACTIONS(1989), - [sym_crate] = ACTIONS(1989), - [sym_metavariable] = ACTIONS(1987), - [sym_raw_string_literal] = ACTIONS(1987), - [sym_float_literal] = ACTIONS(1987), + [ts_builtin_sym_end] = ACTIONS(1948), + [sym_identifier] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1948), + [anon_sym_macro_rules_BANG] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1948), + [anon_sym_RBRACE] = ACTIONS(1948), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_u8] = ACTIONS(1950), + [anon_sym_i8] = ACTIONS(1950), + [anon_sym_u16] = ACTIONS(1950), + [anon_sym_i16] = ACTIONS(1950), + [anon_sym_u32] = ACTIONS(1950), + [anon_sym_i32] = ACTIONS(1950), + [anon_sym_u64] = ACTIONS(1950), + [anon_sym_i64] = ACTIONS(1950), + [anon_sym_u128] = ACTIONS(1950), + [anon_sym_i128] = ACTIONS(1950), + [anon_sym_isize] = ACTIONS(1950), + [anon_sym_usize] = ACTIONS(1950), + [anon_sym_f32] = ACTIONS(1950), + [anon_sym_f64] = ACTIONS(1950), + [anon_sym_bool] = ACTIONS(1950), + [anon_sym_str] = ACTIONS(1950), + [anon_sym_char] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_async] = ACTIONS(1950), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_const] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1950), + [anon_sym_default] = ACTIONS(1950), + [anon_sym_enum] = ACTIONS(1950), + [anon_sym_fn] = ACTIONS(1950), + [anon_sym_for] = ACTIONS(1950), + [anon_sym_if] = ACTIONS(1950), + [anon_sym_impl] = ACTIONS(1950), + [anon_sym_let] = ACTIONS(1950), + [anon_sym_loop] = ACTIONS(1950), + [anon_sym_match] = ACTIONS(1950), + [anon_sym_mod] = ACTIONS(1950), + [anon_sym_pub] = ACTIONS(1950), + [anon_sym_return] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1950), + [anon_sym_struct] = ACTIONS(1950), + [anon_sym_trait] = ACTIONS(1950), + [anon_sym_type] = ACTIONS(1950), + [anon_sym_union] = ACTIONS(1950), + [anon_sym_unsafe] = ACTIONS(1950), + [anon_sym_use] = ACTIONS(1950), + [anon_sym_while] = ACTIONS(1950), + [anon_sym_POUND] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1950), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_COLON_COLON] = ACTIONS(1948), + [anon_sym_AMP] = ACTIONS(1948), + [anon_sym_DOT_DOT] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_yield] = ACTIONS(1950), + [anon_sym_move] = ACTIONS(1950), + [sym_integer_literal] = ACTIONS(1948), + [aux_sym_string_literal_token1] = ACTIONS(1948), + [sym_char_literal] = ACTIONS(1948), + [anon_sym_true] = ACTIONS(1950), + [anon_sym_false] = ACTIONS(1950), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1950), + [sym_super] = ACTIONS(1950), + [sym_crate] = ACTIONS(1950), + [sym_metavariable] = ACTIONS(1948), + [sym_raw_string_literal] = ACTIONS(1948), + [sym_float_literal] = ACTIONS(1948), [sym_block_comment] = ACTIONS(3), }, [468] = { - [ts_builtin_sym_end] = ACTIONS(1991), - [sym_identifier] = ACTIONS(1993), - [anon_sym_SEMI] = ACTIONS(1991), - [anon_sym_macro_rules_BANG] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_LBRACE] = ACTIONS(1991), - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1991), - [anon_sym_u8] = ACTIONS(1993), - [anon_sym_i8] = ACTIONS(1993), - [anon_sym_u16] = ACTIONS(1993), - [anon_sym_i16] = ACTIONS(1993), - [anon_sym_u32] = ACTIONS(1993), - [anon_sym_i32] = ACTIONS(1993), - [anon_sym_u64] = ACTIONS(1993), - [anon_sym_i64] = ACTIONS(1993), - [anon_sym_u128] = ACTIONS(1993), - [anon_sym_i128] = ACTIONS(1993), - [anon_sym_isize] = ACTIONS(1993), - [anon_sym_usize] = ACTIONS(1993), - [anon_sym_f32] = ACTIONS(1993), - [anon_sym_f64] = ACTIONS(1993), - [anon_sym_bool] = ACTIONS(1993), - [anon_sym_str] = ACTIONS(1993), - [anon_sym_char] = ACTIONS(1993), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_default] = ACTIONS(1993), - [anon_sym_enum] = ACTIONS(1993), - [anon_sym_fn] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_impl] = ACTIONS(1993), - [anon_sym_let] = ACTIONS(1993), - [anon_sym_loop] = ACTIONS(1993), - [anon_sym_match] = ACTIONS(1993), - [anon_sym_mod] = ACTIONS(1993), - [anon_sym_pub] = ACTIONS(1993), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_static] = ACTIONS(1993), - [anon_sym_struct] = ACTIONS(1993), - [anon_sym_trait] = ACTIONS(1993), - [anon_sym_type] = ACTIONS(1993), - [anon_sym_union] = ACTIONS(1993), - [anon_sym_unsafe] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(1991), - [anon_sym_BANG] = ACTIONS(1991), - [anon_sym_extern] = ACTIONS(1993), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_COLON_COLON] = ACTIONS(1991), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_PIPE] = ACTIONS(1991), - [anon_sym_yield] = ACTIONS(1993), - [anon_sym_move] = ACTIONS(1993), - [sym_integer_literal] = ACTIONS(1991), - [aux_sym_string_literal_token1] = ACTIONS(1991), - [sym_char_literal] = ACTIONS(1991), - [anon_sym_true] = ACTIONS(1993), - [anon_sym_false] = ACTIONS(1993), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1993), - [sym_super] = ACTIONS(1993), - [sym_crate] = ACTIONS(1993), - [sym_metavariable] = ACTIONS(1991), - [sym_raw_string_literal] = ACTIONS(1991), - [sym_float_literal] = ACTIONS(1991), + [ts_builtin_sym_end] = ACTIONS(1952), + [sym_identifier] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1952), + [anon_sym_macro_rules_BANG] = ACTIONS(1952), + [anon_sym_LPAREN] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_RBRACE] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_u8] = ACTIONS(1954), + [anon_sym_i8] = ACTIONS(1954), + [anon_sym_u16] = ACTIONS(1954), + [anon_sym_i16] = ACTIONS(1954), + [anon_sym_u32] = ACTIONS(1954), + [anon_sym_i32] = ACTIONS(1954), + [anon_sym_u64] = ACTIONS(1954), + [anon_sym_i64] = ACTIONS(1954), + [anon_sym_u128] = ACTIONS(1954), + [anon_sym_i128] = ACTIONS(1954), + [anon_sym_isize] = ACTIONS(1954), + [anon_sym_usize] = ACTIONS(1954), + [anon_sym_f32] = ACTIONS(1954), + [anon_sym_f64] = ACTIONS(1954), + [anon_sym_bool] = ACTIONS(1954), + [anon_sym_str] = ACTIONS(1954), + [anon_sym_char] = ACTIONS(1954), + [anon_sym_SQUOTE] = ACTIONS(1954), + [anon_sym_async] = ACTIONS(1954), + [anon_sym_break] = ACTIONS(1954), + [anon_sym_const] = ACTIONS(1954), + [anon_sym_continue] = ACTIONS(1954), + [anon_sym_default] = ACTIONS(1954), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_fn] = ACTIONS(1954), + [anon_sym_for] = ACTIONS(1954), + [anon_sym_if] = ACTIONS(1954), + [anon_sym_impl] = ACTIONS(1954), + [anon_sym_let] = ACTIONS(1954), + [anon_sym_loop] = ACTIONS(1954), + [anon_sym_match] = ACTIONS(1954), + [anon_sym_mod] = ACTIONS(1954), + [anon_sym_pub] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1954), + [anon_sym_static] = ACTIONS(1954), + [anon_sym_struct] = ACTIONS(1954), + [anon_sym_trait] = ACTIONS(1954), + [anon_sym_type] = ACTIONS(1954), + [anon_sym_union] = ACTIONS(1954), + [anon_sym_unsafe] = ACTIONS(1954), + [anon_sym_use] = ACTIONS(1954), + [anon_sym_while] = ACTIONS(1954), + [anon_sym_POUND] = ACTIONS(1952), + [anon_sym_BANG] = ACTIONS(1952), + [anon_sym_extern] = ACTIONS(1954), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_DOT_DOT] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_yield] = ACTIONS(1954), + [anon_sym_move] = ACTIONS(1954), + [sym_integer_literal] = ACTIONS(1952), + [aux_sym_string_literal_token1] = ACTIONS(1952), + [sym_char_literal] = ACTIONS(1952), + [anon_sym_true] = ACTIONS(1954), + [anon_sym_false] = ACTIONS(1954), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1954), + [sym_super] = ACTIONS(1954), + [sym_crate] = ACTIONS(1954), + [sym_metavariable] = ACTIONS(1952), + [sym_raw_string_literal] = ACTIONS(1952), + [sym_float_literal] = ACTIONS(1952), [sym_block_comment] = ACTIONS(3), }, [469] = { - [ts_builtin_sym_end] = ACTIONS(1995), - [sym_identifier] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1995), - [anon_sym_macro_rules_BANG] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_LBRACE] = ACTIONS(1995), - [anon_sym_RBRACE] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_STAR] = ACTIONS(1995), - [anon_sym_u8] = ACTIONS(1997), - [anon_sym_i8] = ACTIONS(1997), - [anon_sym_u16] = ACTIONS(1997), - [anon_sym_i16] = ACTIONS(1997), - [anon_sym_u32] = ACTIONS(1997), - [anon_sym_i32] = ACTIONS(1997), - [anon_sym_u64] = ACTIONS(1997), - [anon_sym_i64] = ACTIONS(1997), - [anon_sym_u128] = ACTIONS(1997), - [anon_sym_i128] = ACTIONS(1997), - [anon_sym_isize] = ACTIONS(1997), - [anon_sym_usize] = ACTIONS(1997), - [anon_sym_f32] = ACTIONS(1997), - [anon_sym_f64] = ACTIONS(1997), - [anon_sym_bool] = ACTIONS(1997), - [anon_sym_str] = ACTIONS(1997), - [anon_sym_char] = ACTIONS(1997), - [anon_sym_SQUOTE] = ACTIONS(1997), - [anon_sym_async] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_default] = ACTIONS(1997), - [anon_sym_enum] = ACTIONS(1997), - [anon_sym_fn] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_impl] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_loop] = ACTIONS(1997), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_mod] = ACTIONS(1997), - [anon_sym_pub] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_static] = ACTIONS(1997), - [anon_sym_struct] = ACTIONS(1997), - [anon_sym_trait] = ACTIONS(1997), - [anon_sym_type] = ACTIONS(1997), - [anon_sym_union] = ACTIONS(1997), - [anon_sym_unsafe] = ACTIONS(1997), - [anon_sym_use] = ACTIONS(1997), - [anon_sym_while] = ACTIONS(1997), - [anon_sym_POUND] = ACTIONS(1995), - [anon_sym_BANG] = ACTIONS(1995), - [anon_sym_extern] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1995), - [anon_sym_COLON_COLON] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1995), - [anon_sym_DOT_DOT] = ACTIONS(1995), - [anon_sym_DASH] = ACTIONS(1995), - [anon_sym_PIPE] = ACTIONS(1995), - [anon_sym_yield] = ACTIONS(1997), - [anon_sym_move] = ACTIONS(1997), - [sym_integer_literal] = ACTIONS(1995), - [aux_sym_string_literal_token1] = ACTIONS(1995), - [sym_char_literal] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(1997), - [anon_sym_false] = ACTIONS(1997), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1997), - [sym_super] = ACTIONS(1997), - [sym_crate] = ACTIONS(1997), - [sym_metavariable] = ACTIONS(1995), - [sym_raw_string_literal] = ACTIONS(1995), - [sym_float_literal] = ACTIONS(1995), + [ts_builtin_sym_end] = ACTIONS(1956), + [sym_identifier] = ACTIONS(1958), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_macro_rules_BANG] = ACTIONS(1956), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_LBRACE] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1956), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_STAR] = ACTIONS(1956), + [anon_sym_u8] = ACTIONS(1958), + [anon_sym_i8] = ACTIONS(1958), + [anon_sym_u16] = ACTIONS(1958), + [anon_sym_i16] = ACTIONS(1958), + [anon_sym_u32] = ACTIONS(1958), + [anon_sym_i32] = ACTIONS(1958), + [anon_sym_u64] = ACTIONS(1958), + [anon_sym_i64] = ACTIONS(1958), + [anon_sym_u128] = ACTIONS(1958), + [anon_sym_i128] = ACTIONS(1958), + [anon_sym_isize] = ACTIONS(1958), + [anon_sym_usize] = ACTIONS(1958), + [anon_sym_f32] = ACTIONS(1958), + [anon_sym_f64] = ACTIONS(1958), + [anon_sym_bool] = ACTIONS(1958), + [anon_sym_str] = ACTIONS(1958), + [anon_sym_char] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_async] = ACTIONS(1958), + [anon_sym_break] = ACTIONS(1958), + [anon_sym_const] = ACTIONS(1958), + [anon_sym_continue] = ACTIONS(1958), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_enum] = ACTIONS(1958), + [anon_sym_fn] = ACTIONS(1958), + [anon_sym_for] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1958), + [anon_sym_impl] = ACTIONS(1958), + [anon_sym_let] = ACTIONS(1958), + [anon_sym_loop] = ACTIONS(1958), + [anon_sym_match] = ACTIONS(1958), + [anon_sym_mod] = ACTIONS(1958), + [anon_sym_pub] = ACTIONS(1958), + [anon_sym_return] = ACTIONS(1958), + [anon_sym_static] = ACTIONS(1958), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_trait] = ACTIONS(1958), + [anon_sym_type] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1958), + [anon_sym_unsafe] = ACTIONS(1958), + [anon_sym_use] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1958), + [anon_sym_POUND] = ACTIONS(1956), + [anon_sym_BANG] = ACTIONS(1956), + [anon_sym_extern] = ACTIONS(1958), + [anon_sym_LT] = ACTIONS(1956), + [anon_sym_COLON_COLON] = ACTIONS(1956), + [anon_sym_AMP] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_yield] = ACTIONS(1958), + [anon_sym_move] = ACTIONS(1958), + [sym_integer_literal] = ACTIONS(1956), + [aux_sym_string_literal_token1] = ACTIONS(1956), + [sym_char_literal] = ACTIONS(1956), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1958), + [sym_super] = ACTIONS(1958), + [sym_crate] = ACTIONS(1958), + [sym_metavariable] = ACTIONS(1956), + [sym_raw_string_literal] = ACTIONS(1956), + [sym_float_literal] = ACTIONS(1956), [sym_block_comment] = ACTIONS(3), }, [470] = { - [ts_builtin_sym_end] = ACTIONS(1999), - [sym_identifier] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(1999), - [anon_sym_macro_rules_BANG] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(1999), - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_LBRACK] = ACTIONS(1999), - [anon_sym_STAR] = ACTIONS(1999), - [anon_sym_u8] = ACTIONS(2001), - [anon_sym_i8] = ACTIONS(2001), - [anon_sym_u16] = ACTIONS(2001), - [anon_sym_i16] = ACTIONS(2001), - [anon_sym_u32] = ACTIONS(2001), - [anon_sym_i32] = ACTIONS(2001), - [anon_sym_u64] = ACTIONS(2001), - [anon_sym_i64] = ACTIONS(2001), - [anon_sym_u128] = ACTIONS(2001), - [anon_sym_i128] = ACTIONS(2001), - [anon_sym_isize] = ACTIONS(2001), - [anon_sym_usize] = ACTIONS(2001), - [anon_sym_f32] = ACTIONS(2001), - [anon_sym_f64] = ACTIONS(2001), - [anon_sym_bool] = ACTIONS(2001), - [anon_sym_str] = ACTIONS(2001), - [anon_sym_char] = ACTIONS(2001), - [anon_sym_SQUOTE] = ACTIONS(2001), - [anon_sym_async] = ACTIONS(2001), - [anon_sym_break] = ACTIONS(2001), - [anon_sym_const] = ACTIONS(2001), - [anon_sym_continue] = ACTIONS(2001), - [anon_sym_default] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2001), - [anon_sym_fn] = ACTIONS(2001), - [anon_sym_for] = ACTIONS(2001), - [anon_sym_if] = ACTIONS(2001), - [anon_sym_impl] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_loop] = ACTIONS(2001), - [anon_sym_match] = ACTIONS(2001), - [anon_sym_mod] = ACTIONS(2001), - [anon_sym_pub] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(2001), - [anon_sym_static] = ACTIONS(2001), - [anon_sym_struct] = ACTIONS(2001), - [anon_sym_trait] = ACTIONS(2001), - [anon_sym_type] = ACTIONS(2001), - [anon_sym_union] = ACTIONS(2001), - [anon_sym_unsafe] = ACTIONS(2001), - [anon_sym_use] = ACTIONS(2001), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_POUND] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(1999), - [anon_sym_extern] = ACTIONS(2001), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_COLON_COLON] = ACTIONS(1999), - [anon_sym_AMP] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_PIPE] = ACTIONS(1999), - [anon_sym_yield] = ACTIONS(2001), - [anon_sym_move] = ACTIONS(2001), - [sym_integer_literal] = ACTIONS(1999), - [aux_sym_string_literal_token1] = ACTIONS(1999), - [sym_char_literal] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(2001), - [anon_sym_false] = ACTIONS(2001), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2001), - [sym_super] = ACTIONS(2001), - [sym_crate] = ACTIONS(2001), - [sym_metavariable] = ACTIONS(1999), - [sym_raw_string_literal] = ACTIONS(1999), - [sym_float_literal] = ACTIONS(1999), + [ts_builtin_sym_end] = ACTIONS(1960), + [sym_identifier] = ACTIONS(1962), + [anon_sym_SEMI] = ACTIONS(1960), + [anon_sym_macro_rules_BANG] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1960), + [anon_sym_LBRACE] = ACTIONS(1960), + [anon_sym_RBRACE] = ACTIONS(1960), + [anon_sym_LBRACK] = ACTIONS(1960), + [anon_sym_STAR] = ACTIONS(1960), + [anon_sym_u8] = ACTIONS(1962), + [anon_sym_i8] = ACTIONS(1962), + [anon_sym_u16] = ACTIONS(1962), + [anon_sym_i16] = ACTIONS(1962), + [anon_sym_u32] = ACTIONS(1962), + [anon_sym_i32] = ACTIONS(1962), + [anon_sym_u64] = ACTIONS(1962), + [anon_sym_i64] = ACTIONS(1962), + [anon_sym_u128] = ACTIONS(1962), + [anon_sym_i128] = ACTIONS(1962), + [anon_sym_isize] = ACTIONS(1962), + [anon_sym_usize] = ACTIONS(1962), + [anon_sym_f32] = ACTIONS(1962), + [anon_sym_f64] = ACTIONS(1962), + [anon_sym_bool] = ACTIONS(1962), + [anon_sym_str] = ACTIONS(1962), + [anon_sym_char] = ACTIONS(1962), + [anon_sym_SQUOTE] = ACTIONS(1962), + [anon_sym_async] = ACTIONS(1962), + [anon_sym_break] = ACTIONS(1962), + [anon_sym_const] = ACTIONS(1962), + [anon_sym_continue] = ACTIONS(1962), + [anon_sym_default] = ACTIONS(1962), + [anon_sym_enum] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1962), + [anon_sym_if] = ACTIONS(1962), + [anon_sym_impl] = ACTIONS(1962), + [anon_sym_let] = ACTIONS(1962), + [anon_sym_loop] = ACTIONS(1962), + [anon_sym_match] = ACTIONS(1962), + [anon_sym_mod] = ACTIONS(1962), + [anon_sym_pub] = ACTIONS(1962), + [anon_sym_return] = ACTIONS(1962), + [anon_sym_static] = ACTIONS(1962), + [anon_sym_struct] = ACTIONS(1962), + [anon_sym_trait] = ACTIONS(1962), + [anon_sym_type] = ACTIONS(1962), + [anon_sym_union] = ACTIONS(1962), + [anon_sym_unsafe] = ACTIONS(1962), + [anon_sym_use] = ACTIONS(1962), + [anon_sym_while] = ACTIONS(1962), + [anon_sym_POUND] = ACTIONS(1960), + [anon_sym_BANG] = ACTIONS(1960), + [anon_sym_extern] = ACTIONS(1962), + [anon_sym_LT] = ACTIONS(1960), + [anon_sym_COLON_COLON] = ACTIONS(1960), + [anon_sym_AMP] = ACTIONS(1960), + [anon_sym_DOT_DOT] = ACTIONS(1960), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_PIPE] = ACTIONS(1960), + [anon_sym_yield] = ACTIONS(1962), + [anon_sym_move] = ACTIONS(1962), + [sym_integer_literal] = ACTIONS(1960), + [aux_sym_string_literal_token1] = ACTIONS(1960), + [sym_char_literal] = ACTIONS(1960), + [anon_sym_true] = ACTIONS(1962), + [anon_sym_false] = ACTIONS(1962), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1962), + [sym_super] = ACTIONS(1962), + [sym_crate] = ACTIONS(1962), + [sym_metavariable] = ACTIONS(1960), + [sym_raw_string_literal] = ACTIONS(1960), + [sym_float_literal] = ACTIONS(1960), [sym_block_comment] = ACTIONS(3), }, [471] = { - [ts_builtin_sym_end] = ACTIONS(2003), - [sym_identifier] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2003), - [anon_sym_macro_rules_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2003), - [anon_sym_STAR] = ACTIONS(2003), - [anon_sym_u8] = ACTIONS(2005), - [anon_sym_i8] = ACTIONS(2005), - [anon_sym_u16] = ACTIONS(2005), - [anon_sym_i16] = ACTIONS(2005), - [anon_sym_u32] = ACTIONS(2005), - [anon_sym_i32] = ACTIONS(2005), - [anon_sym_u64] = ACTIONS(2005), - [anon_sym_i64] = ACTIONS(2005), - [anon_sym_u128] = ACTIONS(2005), - [anon_sym_i128] = ACTIONS(2005), - [anon_sym_isize] = ACTIONS(2005), - [anon_sym_usize] = ACTIONS(2005), - [anon_sym_f32] = ACTIONS(2005), - [anon_sym_f64] = ACTIONS(2005), - [anon_sym_bool] = ACTIONS(2005), - [anon_sym_str] = ACTIONS(2005), - [anon_sym_char] = ACTIONS(2005), - [anon_sym_SQUOTE] = ACTIONS(2005), - [anon_sym_async] = ACTIONS(2005), - [anon_sym_break] = ACTIONS(2005), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_continue] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2005), - [anon_sym_enum] = ACTIONS(2005), - [anon_sym_fn] = ACTIONS(2005), - [anon_sym_for] = ACTIONS(2005), - [anon_sym_if] = ACTIONS(2005), - [anon_sym_impl] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_loop] = ACTIONS(2005), - [anon_sym_match] = ACTIONS(2005), - [anon_sym_mod] = ACTIONS(2005), - [anon_sym_pub] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2005), - [anon_sym_static] = ACTIONS(2005), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_trait] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2005), - [anon_sym_unsafe] = ACTIONS(2005), - [anon_sym_use] = ACTIONS(2005), - [anon_sym_while] = ACTIONS(2005), - [anon_sym_POUND] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2003), - [anon_sym_extern] = ACTIONS(2005), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym_DOT_DOT] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_yield] = ACTIONS(2005), - [anon_sym_move] = ACTIONS(2005), - [sym_integer_literal] = ACTIONS(2003), - [aux_sym_string_literal_token1] = ACTIONS(2003), - [sym_char_literal] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2005), - [anon_sym_false] = ACTIONS(2005), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2005), - [sym_super] = ACTIONS(2005), - [sym_crate] = ACTIONS(2005), - [sym_metavariable] = ACTIONS(2003), - [sym_raw_string_literal] = ACTIONS(2003), - [sym_float_literal] = ACTIONS(2003), + [ts_builtin_sym_end] = ACTIONS(1964), + [sym_identifier] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym_macro_rules_BANG] = ACTIONS(1964), + [anon_sym_LPAREN] = ACTIONS(1964), + [anon_sym_LBRACE] = ACTIONS(1964), + [anon_sym_RBRACE] = ACTIONS(1964), + [anon_sym_LBRACK] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(1964), + [anon_sym_u8] = ACTIONS(1966), + [anon_sym_i8] = ACTIONS(1966), + [anon_sym_u16] = ACTIONS(1966), + [anon_sym_i16] = ACTIONS(1966), + [anon_sym_u32] = ACTIONS(1966), + [anon_sym_i32] = ACTIONS(1966), + [anon_sym_u64] = ACTIONS(1966), + [anon_sym_i64] = ACTIONS(1966), + [anon_sym_u128] = ACTIONS(1966), + [anon_sym_i128] = ACTIONS(1966), + [anon_sym_isize] = ACTIONS(1966), + [anon_sym_usize] = ACTIONS(1966), + [anon_sym_f32] = ACTIONS(1966), + [anon_sym_f64] = ACTIONS(1966), + [anon_sym_bool] = ACTIONS(1966), + [anon_sym_str] = ACTIONS(1966), + [anon_sym_char] = ACTIONS(1966), + [anon_sym_SQUOTE] = ACTIONS(1966), + [anon_sym_async] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_continue] = ACTIONS(1966), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_fn] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_impl] = ACTIONS(1966), + [anon_sym_let] = ACTIONS(1966), + [anon_sym_loop] = ACTIONS(1966), + [anon_sym_match] = ACTIONS(1966), + [anon_sym_mod] = ACTIONS(1966), + [anon_sym_pub] = ACTIONS(1966), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_trait] = ACTIONS(1966), + [anon_sym_type] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_unsafe] = ACTIONS(1966), + [anon_sym_use] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_POUND] = ACTIONS(1964), + [anon_sym_BANG] = ACTIONS(1964), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym_LT] = ACTIONS(1964), + [anon_sym_COLON_COLON] = ACTIONS(1964), + [anon_sym_AMP] = ACTIONS(1964), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [anon_sym_DASH] = ACTIONS(1964), + [anon_sym_PIPE] = ACTIONS(1964), + [anon_sym_yield] = ACTIONS(1966), + [anon_sym_move] = ACTIONS(1966), + [sym_integer_literal] = ACTIONS(1964), + [aux_sym_string_literal_token1] = ACTIONS(1964), + [sym_char_literal] = ACTIONS(1964), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1966), + [sym_super] = ACTIONS(1966), + [sym_crate] = ACTIONS(1966), + [sym_metavariable] = ACTIONS(1964), + [sym_raw_string_literal] = ACTIONS(1964), + [sym_float_literal] = ACTIONS(1964), [sym_block_comment] = ACTIONS(3), }, [472] = { - [ts_builtin_sym_end] = ACTIONS(2007), - [sym_identifier] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2007), - [anon_sym_macro_rules_BANG] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_RBRACE] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_u8] = ACTIONS(2009), - [anon_sym_i8] = ACTIONS(2009), - [anon_sym_u16] = ACTIONS(2009), - [anon_sym_i16] = ACTIONS(2009), - [anon_sym_u32] = ACTIONS(2009), - [anon_sym_i32] = ACTIONS(2009), - [anon_sym_u64] = ACTIONS(2009), - [anon_sym_i64] = ACTIONS(2009), - [anon_sym_u128] = ACTIONS(2009), - [anon_sym_i128] = ACTIONS(2009), - [anon_sym_isize] = ACTIONS(2009), - [anon_sym_usize] = ACTIONS(2009), - [anon_sym_f32] = ACTIONS(2009), - [anon_sym_f64] = ACTIONS(2009), - [anon_sym_bool] = ACTIONS(2009), - [anon_sym_str] = ACTIONS(2009), - [anon_sym_char] = ACTIONS(2009), - [anon_sym_SQUOTE] = ACTIONS(2009), - [anon_sym_async] = ACTIONS(2009), - [anon_sym_break] = ACTIONS(2009), - [anon_sym_const] = ACTIONS(2009), - [anon_sym_continue] = ACTIONS(2009), - [anon_sym_default] = ACTIONS(2009), - [anon_sym_enum] = ACTIONS(2009), - [anon_sym_fn] = ACTIONS(2009), - [anon_sym_for] = ACTIONS(2009), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_impl] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2009), - [anon_sym_loop] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2009), - [anon_sym_mod] = ACTIONS(2009), - [anon_sym_pub] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2009), - [anon_sym_static] = ACTIONS(2009), - [anon_sym_struct] = ACTIONS(2009), - [anon_sym_trait] = ACTIONS(2009), - [anon_sym_type] = ACTIONS(2009), - [anon_sym_union] = ACTIONS(2009), - [anon_sym_unsafe] = ACTIONS(2009), - [anon_sym_use] = ACTIONS(2009), - [anon_sym_while] = ACTIONS(2009), - [anon_sym_POUND] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_extern] = ACTIONS(2009), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_COLON_COLON] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_DOT_DOT] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2007), - [anon_sym_yield] = ACTIONS(2009), - [anon_sym_move] = ACTIONS(2009), - [sym_integer_literal] = ACTIONS(2007), - [aux_sym_string_literal_token1] = ACTIONS(2007), - [sym_char_literal] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2009), - [anon_sym_false] = ACTIONS(2009), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2007), - [sym_raw_string_literal] = ACTIONS(2007), - [sym_float_literal] = ACTIONS(2007), + [ts_builtin_sym_end] = ACTIONS(1968), + [sym_identifier] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym_macro_rules_BANG] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_u8] = ACTIONS(1970), + [anon_sym_i8] = ACTIONS(1970), + [anon_sym_u16] = ACTIONS(1970), + [anon_sym_i16] = ACTIONS(1970), + [anon_sym_u32] = ACTIONS(1970), + [anon_sym_i32] = ACTIONS(1970), + [anon_sym_u64] = ACTIONS(1970), + [anon_sym_i64] = ACTIONS(1970), + [anon_sym_u128] = ACTIONS(1970), + [anon_sym_i128] = ACTIONS(1970), + [anon_sym_isize] = ACTIONS(1970), + [anon_sym_usize] = ACTIONS(1970), + [anon_sym_f32] = ACTIONS(1970), + [anon_sym_f64] = ACTIONS(1970), + [anon_sym_bool] = ACTIONS(1970), + [anon_sym_str] = ACTIONS(1970), + [anon_sym_char] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_async] = ACTIONS(1970), + [anon_sym_break] = ACTIONS(1970), + [anon_sym_const] = ACTIONS(1970), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_default] = ACTIONS(1970), + [anon_sym_enum] = ACTIONS(1970), + [anon_sym_fn] = ACTIONS(1970), + [anon_sym_for] = ACTIONS(1970), + [anon_sym_if] = ACTIONS(1970), + [anon_sym_impl] = ACTIONS(1970), + [anon_sym_let] = ACTIONS(1970), + [anon_sym_loop] = ACTIONS(1970), + [anon_sym_match] = ACTIONS(1970), + [anon_sym_mod] = ACTIONS(1970), + [anon_sym_pub] = ACTIONS(1970), + [anon_sym_return] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1970), + [anon_sym_struct] = ACTIONS(1970), + [anon_sym_trait] = ACTIONS(1970), + [anon_sym_type] = ACTIONS(1970), + [anon_sym_union] = ACTIONS(1970), + [anon_sym_unsafe] = ACTIONS(1970), + [anon_sym_use] = ACTIONS(1970), + [anon_sym_while] = ACTIONS(1970), + [anon_sym_POUND] = ACTIONS(1968), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1970), + [anon_sym_LT] = ACTIONS(1968), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1968), + [anon_sym_yield] = ACTIONS(1970), + [anon_sym_move] = ACTIONS(1970), + [sym_integer_literal] = ACTIONS(1968), + [aux_sym_string_literal_token1] = ACTIONS(1968), + [sym_char_literal] = ACTIONS(1968), + [anon_sym_true] = ACTIONS(1970), + [anon_sym_false] = ACTIONS(1970), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1970), + [sym_super] = ACTIONS(1970), + [sym_crate] = ACTIONS(1970), + [sym_metavariable] = ACTIONS(1968), + [sym_raw_string_literal] = ACTIONS(1968), + [sym_float_literal] = ACTIONS(1968), [sym_block_comment] = ACTIONS(3), }, [473] = { - [ts_builtin_sym_end] = ACTIONS(2011), - [sym_identifier] = ACTIONS(2013), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_macro_rules_BANG] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(2011), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_u8] = ACTIONS(2013), - [anon_sym_i8] = ACTIONS(2013), - [anon_sym_u16] = ACTIONS(2013), - [anon_sym_i16] = ACTIONS(2013), - [anon_sym_u32] = ACTIONS(2013), - [anon_sym_i32] = ACTIONS(2013), - [anon_sym_u64] = ACTIONS(2013), - [anon_sym_i64] = ACTIONS(2013), - [anon_sym_u128] = ACTIONS(2013), - [anon_sym_i128] = ACTIONS(2013), - [anon_sym_isize] = ACTIONS(2013), - [anon_sym_usize] = ACTIONS(2013), - [anon_sym_f32] = ACTIONS(2013), - [anon_sym_f64] = ACTIONS(2013), - [anon_sym_bool] = ACTIONS(2013), - [anon_sym_str] = ACTIONS(2013), - [anon_sym_char] = ACTIONS(2013), - [anon_sym_SQUOTE] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_default] = ACTIONS(2013), - [anon_sym_enum] = ACTIONS(2013), - [anon_sym_fn] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_impl] = ACTIONS(2013), - [anon_sym_let] = ACTIONS(2013), - [anon_sym_loop] = ACTIONS(2013), - [anon_sym_match] = ACTIONS(2013), - [anon_sym_mod] = ACTIONS(2013), - [anon_sym_pub] = ACTIONS(2013), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_static] = ACTIONS(2013), - [anon_sym_struct] = ACTIONS(2013), - [anon_sym_trait] = ACTIONS(2013), - [anon_sym_type] = ACTIONS(2013), - [anon_sym_union] = ACTIONS(2013), - [anon_sym_unsafe] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(2011), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_extern] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_COLON_COLON] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_DOT_DOT] = ACTIONS(2011), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_yield] = ACTIONS(2013), - [anon_sym_move] = ACTIONS(2013), - [sym_integer_literal] = ACTIONS(2011), - [aux_sym_string_literal_token1] = ACTIONS(2011), - [sym_char_literal] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2013), - [sym_super] = ACTIONS(2013), - [sym_crate] = ACTIONS(2013), - [sym_metavariable] = ACTIONS(2011), - [sym_raw_string_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), + [ts_builtin_sym_end] = ACTIONS(1972), + [sym_identifier] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_macro_rules_BANG] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_LBRACK] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_u8] = ACTIONS(1974), + [anon_sym_i8] = ACTIONS(1974), + [anon_sym_u16] = ACTIONS(1974), + [anon_sym_i16] = ACTIONS(1974), + [anon_sym_u32] = ACTIONS(1974), + [anon_sym_i32] = ACTIONS(1974), + [anon_sym_u64] = ACTIONS(1974), + [anon_sym_i64] = ACTIONS(1974), + [anon_sym_u128] = ACTIONS(1974), + [anon_sym_i128] = ACTIONS(1974), + [anon_sym_isize] = ACTIONS(1974), + [anon_sym_usize] = ACTIONS(1974), + [anon_sym_f32] = ACTIONS(1974), + [anon_sym_f64] = ACTIONS(1974), + [anon_sym_bool] = ACTIONS(1974), + [anon_sym_str] = ACTIONS(1974), + [anon_sym_char] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(1974), + [anon_sym_break] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_continue] = ACTIONS(1974), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_fn] = ACTIONS(1974), + [anon_sym_for] = ACTIONS(1974), + [anon_sym_if] = ACTIONS(1974), + [anon_sym_impl] = ACTIONS(1974), + [anon_sym_let] = ACTIONS(1974), + [anon_sym_loop] = ACTIONS(1974), + [anon_sym_match] = ACTIONS(1974), + [anon_sym_mod] = ACTIONS(1974), + [anon_sym_pub] = ACTIONS(1974), + [anon_sym_return] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_trait] = ACTIONS(1974), + [anon_sym_type] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_unsafe] = ACTIONS(1974), + [anon_sym_use] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1974), + [anon_sym_POUND] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym_LT] = ACTIONS(1972), + [anon_sym_COLON_COLON] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_yield] = ACTIONS(1974), + [anon_sym_move] = ACTIONS(1974), + [sym_integer_literal] = ACTIONS(1972), + [aux_sym_string_literal_token1] = ACTIONS(1972), + [sym_char_literal] = ACTIONS(1972), + [anon_sym_true] = ACTIONS(1974), + [anon_sym_false] = ACTIONS(1974), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1974), + [sym_super] = ACTIONS(1974), + [sym_crate] = ACTIONS(1974), + [sym_metavariable] = ACTIONS(1972), + [sym_raw_string_literal] = ACTIONS(1972), + [sym_float_literal] = ACTIONS(1972), [sym_block_comment] = ACTIONS(3), }, [474] = { - [ts_builtin_sym_end] = ACTIONS(2015), - [sym_identifier] = ACTIONS(2017), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_macro_rules_BANG] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_u8] = ACTIONS(2017), - [anon_sym_i8] = ACTIONS(2017), - [anon_sym_u16] = ACTIONS(2017), - [anon_sym_i16] = ACTIONS(2017), - [anon_sym_u32] = ACTIONS(2017), - [anon_sym_i32] = ACTIONS(2017), - [anon_sym_u64] = ACTIONS(2017), - [anon_sym_i64] = ACTIONS(2017), - [anon_sym_u128] = ACTIONS(2017), - [anon_sym_i128] = ACTIONS(2017), - [anon_sym_isize] = ACTIONS(2017), - [anon_sym_usize] = ACTIONS(2017), - [anon_sym_f32] = ACTIONS(2017), - [anon_sym_f64] = ACTIONS(2017), - [anon_sym_bool] = ACTIONS(2017), - [anon_sym_str] = ACTIONS(2017), - [anon_sym_char] = ACTIONS(2017), - [anon_sym_SQUOTE] = ACTIONS(2017), - [anon_sym_async] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_default] = ACTIONS(2017), - [anon_sym_enum] = ACTIONS(2017), - [anon_sym_fn] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_impl] = ACTIONS(2017), - [anon_sym_let] = ACTIONS(2017), - [anon_sym_loop] = ACTIONS(2017), - [anon_sym_match] = ACTIONS(2017), - [anon_sym_mod] = ACTIONS(2017), - [anon_sym_pub] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_static] = ACTIONS(2017), - [anon_sym_struct] = ACTIONS(2017), - [anon_sym_trait] = ACTIONS(2017), - [anon_sym_type] = ACTIONS(2017), - [anon_sym_union] = ACTIONS(2017), - [anon_sym_unsafe] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(2015), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_extern] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_COLON_COLON] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_DOT_DOT] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_yield] = ACTIONS(2017), - [anon_sym_move] = ACTIONS(2017), - [sym_integer_literal] = ACTIONS(2015), - [aux_sym_string_literal_token1] = ACTIONS(2015), - [sym_char_literal] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2017), - [sym_super] = ACTIONS(2017), - [sym_crate] = ACTIONS(2017), - [sym_metavariable] = ACTIONS(2015), - [sym_raw_string_literal] = ACTIONS(2015), - [sym_float_literal] = ACTIONS(2015), + [ts_builtin_sym_end] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_macro_rules_BANG] = ACTIONS(1976), + [anon_sym_LPAREN] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_LBRACK] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_u8] = ACTIONS(1978), + [anon_sym_i8] = ACTIONS(1978), + [anon_sym_u16] = ACTIONS(1978), + [anon_sym_i16] = ACTIONS(1978), + [anon_sym_u32] = ACTIONS(1978), + [anon_sym_i32] = ACTIONS(1978), + [anon_sym_u64] = ACTIONS(1978), + [anon_sym_i64] = ACTIONS(1978), + [anon_sym_u128] = ACTIONS(1978), + [anon_sym_i128] = ACTIONS(1978), + [anon_sym_isize] = ACTIONS(1978), + [anon_sym_usize] = ACTIONS(1978), + [anon_sym_f32] = ACTIONS(1978), + [anon_sym_f64] = ACTIONS(1978), + [anon_sym_bool] = ACTIONS(1978), + [anon_sym_str] = ACTIONS(1978), + [anon_sym_char] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_async] = ACTIONS(1978), + [anon_sym_break] = ACTIONS(1978), + [anon_sym_const] = ACTIONS(1978), + [anon_sym_continue] = ACTIONS(1978), + [anon_sym_default] = ACTIONS(1978), + [anon_sym_enum] = ACTIONS(1978), + [anon_sym_fn] = ACTIONS(1978), + [anon_sym_for] = ACTIONS(1978), + [anon_sym_if] = ACTIONS(1978), + [anon_sym_impl] = ACTIONS(1978), + [anon_sym_let] = ACTIONS(1978), + [anon_sym_loop] = ACTIONS(1978), + [anon_sym_match] = ACTIONS(1978), + [anon_sym_mod] = ACTIONS(1978), + [anon_sym_pub] = ACTIONS(1978), + [anon_sym_return] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1978), + [anon_sym_struct] = ACTIONS(1978), + [anon_sym_trait] = ACTIONS(1978), + [anon_sym_type] = ACTIONS(1978), + [anon_sym_union] = ACTIONS(1978), + [anon_sym_unsafe] = ACTIONS(1978), + [anon_sym_use] = ACTIONS(1978), + [anon_sym_while] = ACTIONS(1978), + [anon_sym_POUND] = ACTIONS(1976), + [anon_sym_BANG] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1976), + [anon_sym_COLON_COLON] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_DOT_DOT] = ACTIONS(1976), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PIPE] = ACTIONS(1976), + [anon_sym_yield] = ACTIONS(1978), + [anon_sym_move] = ACTIONS(1978), + [sym_integer_literal] = ACTIONS(1976), + [aux_sym_string_literal_token1] = ACTIONS(1976), + [sym_char_literal] = ACTIONS(1976), + [anon_sym_true] = ACTIONS(1978), + [anon_sym_false] = ACTIONS(1978), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1978), + [sym_super] = ACTIONS(1978), + [sym_crate] = ACTIONS(1978), + [sym_metavariable] = ACTIONS(1976), + [sym_raw_string_literal] = ACTIONS(1976), + [sym_float_literal] = ACTIONS(1976), [sym_block_comment] = ACTIONS(3), }, [475] = { - [ts_builtin_sym_end] = ACTIONS(2019), - [sym_identifier] = ACTIONS(2021), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_macro_rules_BANG] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2021), - [anon_sym_i8] = ACTIONS(2021), - [anon_sym_u16] = ACTIONS(2021), - [anon_sym_i16] = ACTIONS(2021), - [anon_sym_u32] = ACTIONS(2021), - [anon_sym_i32] = ACTIONS(2021), - [anon_sym_u64] = ACTIONS(2021), - [anon_sym_i64] = ACTIONS(2021), - [anon_sym_u128] = ACTIONS(2021), - [anon_sym_i128] = ACTIONS(2021), - [anon_sym_isize] = ACTIONS(2021), - [anon_sym_usize] = ACTIONS(2021), - [anon_sym_f32] = ACTIONS(2021), - [anon_sym_f64] = ACTIONS(2021), - [anon_sym_bool] = ACTIONS(2021), - [anon_sym_str] = ACTIONS(2021), - [anon_sym_char] = ACTIONS(2021), - [anon_sym_SQUOTE] = ACTIONS(2021), - [anon_sym_async] = ACTIONS(2021), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2021), - [anon_sym_default] = ACTIONS(2021), - [anon_sym_enum] = ACTIONS(2021), - [anon_sym_fn] = ACTIONS(2021), - [anon_sym_for] = ACTIONS(2021), - [anon_sym_if] = ACTIONS(2021), - [anon_sym_impl] = ACTIONS(2021), - [anon_sym_let] = ACTIONS(2021), - [anon_sym_loop] = ACTIONS(2021), - [anon_sym_match] = ACTIONS(2021), - [anon_sym_mod] = ACTIONS(2021), - [anon_sym_pub] = ACTIONS(2021), - [anon_sym_return] = ACTIONS(2021), - [anon_sym_static] = ACTIONS(2021), - [anon_sym_struct] = ACTIONS(2021), - [anon_sym_trait] = ACTIONS(2021), - [anon_sym_type] = ACTIONS(2021), - [anon_sym_union] = ACTIONS(2021), - [anon_sym_unsafe] = ACTIONS(2021), - [anon_sym_use] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(2021), - [anon_sym_POUND] = ACTIONS(2019), - [anon_sym_BANG] = ACTIONS(2019), - [anon_sym_extern] = ACTIONS(2021), - [anon_sym_LT] = ACTIONS(2019), - [anon_sym_COLON_COLON] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_PIPE] = ACTIONS(2019), - [anon_sym_yield] = ACTIONS(2021), - [anon_sym_move] = ACTIONS(2021), - [sym_integer_literal] = ACTIONS(2019), - [aux_sym_string_literal_token1] = ACTIONS(2019), - [sym_char_literal] = ACTIONS(2019), - [anon_sym_true] = ACTIONS(2021), - [anon_sym_false] = ACTIONS(2021), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2021), - [sym_super] = ACTIONS(2021), - [sym_crate] = ACTIONS(2021), - [sym_metavariable] = ACTIONS(2019), - [sym_raw_string_literal] = ACTIONS(2019), - [sym_float_literal] = ACTIONS(2019), + [ts_builtin_sym_end] = ACTIONS(1980), + [sym_identifier] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym_macro_rules_BANG] = ACTIONS(1980), + [anon_sym_LPAREN] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(1980), + [anon_sym_RBRACE] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_STAR] = ACTIONS(1980), + [anon_sym_u8] = ACTIONS(1982), + [anon_sym_i8] = ACTIONS(1982), + [anon_sym_u16] = ACTIONS(1982), + [anon_sym_i16] = ACTIONS(1982), + [anon_sym_u32] = ACTIONS(1982), + [anon_sym_i32] = ACTIONS(1982), + [anon_sym_u64] = ACTIONS(1982), + [anon_sym_i64] = ACTIONS(1982), + [anon_sym_u128] = ACTIONS(1982), + [anon_sym_i128] = ACTIONS(1982), + [anon_sym_isize] = ACTIONS(1982), + [anon_sym_usize] = ACTIONS(1982), + [anon_sym_f32] = ACTIONS(1982), + [anon_sym_f64] = ACTIONS(1982), + [anon_sym_bool] = ACTIONS(1982), + [anon_sym_str] = ACTIONS(1982), + [anon_sym_char] = ACTIONS(1982), + [anon_sym_SQUOTE] = ACTIONS(1982), + [anon_sym_async] = ACTIONS(1982), + [anon_sym_break] = ACTIONS(1982), + [anon_sym_const] = ACTIONS(1982), + [anon_sym_continue] = ACTIONS(1982), + [anon_sym_default] = ACTIONS(1982), + [anon_sym_enum] = ACTIONS(1982), + [anon_sym_fn] = ACTIONS(1982), + [anon_sym_for] = ACTIONS(1982), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_impl] = ACTIONS(1982), + [anon_sym_let] = ACTIONS(1982), + [anon_sym_loop] = ACTIONS(1982), + [anon_sym_match] = ACTIONS(1982), + [anon_sym_mod] = ACTIONS(1982), + [anon_sym_pub] = ACTIONS(1982), + [anon_sym_return] = ACTIONS(1982), + [anon_sym_static] = ACTIONS(1982), + [anon_sym_struct] = ACTIONS(1982), + [anon_sym_trait] = ACTIONS(1982), + [anon_sym_type] = ACTIONS(1982), + [anon_sym_union] = ACTIONS(1982), + [anon_sym_unsafe] = ACTIONS(1982), + [anon_sym_use] = ACTIONS(1982), + [anon_sym_while] = ACTIONS(1982), + [anon_sym_POUND] = ACTIONS(1980), + [anon_sym_BANG] = ACTIONS(1980), + [anon_sym_extern] = ACTIONS(1982), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_DOT_DOT] = ACTIONS(1980), + [anon_sym_DASH] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1980), + [anon_sym_yield] = ACTIONS(1982), + [anon_sym_move] = ACTIONS(1982), + [sym_integer_literal] = ACTIONS(1980), + [aux_sym_string_literal_token1] = ACTIONS(1980), + [sym_char_literal] = ACTIONS(1980), + [anon_sym_true] = ACTIONS(1982), + [anon_sym_false] = ACTIONS(1982), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1982), + [sym_super] = ACTIONS(1982), + [sym_crate] = ACTIONS(1982), + [sym_metavariable] = ACTIONS(1980), + [sym_raw_string_literal] = ACTIONS(1980), + [sym_float_literal] = ACTIONS(1980), [sym_block_comment] = ACTIONS(3), }, [476] = { - [ts_builtin_sym_end] = ACTIONS(2023), - [sym_identifier] = ACTIONS(2025), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_macro_rules_BANG] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2023), - [anon_sym_STAR] = ACTIONS(2023), - [anon_sym_u8] = ACTIONS(2025), - [anon_sym_i8] = ACTIONS(2025), - [anon_sym_u16] = ACTIONS(2025), - [anon_sym_i16] = ACTIONS(2025), - [anon_sym_u32] = ACTIONS(2025), - [anon_sym_i32] = ACTIONS(2025), - [anon_sym_u64] = ACTIONS(2025), - [anon_sym_i64] = ACTIONS(2025), - [anon_sym_u128] = ACTIONS(2025), - [anon_sym_i128] = ACTIONS(2025), - [anon_sym_isize] = ACTIONS(2025), - [anon_sym_usize] = ACTIONS(2025), - [anon_sym_f32] = ACTIONS(2025), - [anon_sym_f64] = ACTIONS(2025), - [anon_sym_bool] = ACTIONS(2025), - [anon_sym_str] = ACTIONS(2025), - [anon_sym_char] = ACTIONS(2025), - [anon_sym_SQUOTE] = ACTIONS(2025), - [anon_sym_async] = ACTIONS(2025), - [anon_sym_break] = ACTIONS(2025), - [anon_sym_const] = ACTIONS(2025), - [anon_sym_continue] = ACTIONS(2025), - [anon_sym_default] = ACTIONS(2025), - [anon_sym_enum] = ACTIONS(2025), - [anon_sym_fn] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_impl] = ACTIONS(2025), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_loop] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_mod] = ACTIONS(2025), - [anon_sym_pub] = ACTIONS(2025), - [anon_sym_return] = ACTIONS(2025), - [anon_sym_static] = ACTIONS(2025), - [anon_sym_struct] = ACTIONS(2025), - [anon_sym_trait] = ACTIONS(2025), - [anon_sym_type] = ACTIONS(2025), - [anon_sym_union] = ACTIONS(2025), - [anon_sym_unsafe] = ACTIONS(2025), - [anon_sym_use] = ACTIONS(2025), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(2023), - [anon_sym_BANG] = ACTIONS(2023), - [anon_sym_extern] = ACTIONS(2025), - [anon_sym_LT] = ACTIONS(2023), - [anon_sym_COLON_COLON] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2023), - [anon_sym_DOT_DOT] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2023), - [anon_sym_PIPE] = ACTIONS(2023), - [anon_sym_yield] = ACTIONS(2025), - [anon_sym_move] = ACTIONS(2025), - [sym_integer_literal] = ACTIONS(2023), - [aux_sym_string_literal_token1] = ACTIONS(2023), - [sym_char_literal] = ACTIONS(2023), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2025), - [sym_super] = ACTIONS(2025), - [sym_crate] = ACTIONS(2025), - [sym_metavariable] = ACTIONS(2023), - [sym_raw_string_literal] = ACTIONS(2023), - [sym_float_literal] = ACTIONS(2023), + [ts_builtin_sym_end] = ACTIONS(1984), + [sym_identifier] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_macro_rules_BANG] = ACTIONS(1984), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_RBRACE] = ACTIONS(1984), + [anon_sym_LBRACK] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(1984), + [anon_sym_u8] = ACTIONS(1986), + [anon_sym_i8] = ACTIONS(1986), + [anon_sym_u16] = ACTIONS(1986), + [anon_sym_i16] = ACTIONS(1986), + [anon_sym_u32] = ACTIONS(1986), + [anon_sym_i32] = ACTIONS(1986), + [anon_sym_u64] = ACTIONS(1986), + [anon_sym_i64] = ACTIONS(1986), + [anon_sym_u128] = ACTIONS(1986), + [anon_sym_i128] = ACTIONS(1986), + [anon_sym_isize] = ACTIONS(1986), + [anon_sym_usize] = ACTIONS(1986), + [anon_sym_f32] = ACTIONS(1986), + [anon_sym_f64] = ACTIONS(1986), + [anon_sym_bool] = ACTIONS(1986), + [anon_sym_str] = ACTIONS(1986), + [anon_sym_char] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1986), + [anon_sym_async] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_const] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1986), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_fn] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_impl] = ACTIONS(1986), + [anon_sym_let] = ACTIONS(1986), + [anon_sym_loop] = ACTIONS(1986), + [anon_sym_match] = ACTIONS(1986), + [anon_sym_mod] = ACTIONS(1986), + [anon_sym_pub] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_static] = ACTIONS(1986), + [anon_sym_struct] = ACTIONS(1986), + [anon_sym_trait] = ACTIONS(1986), + [anon_sym_type] = ACTIONS(1986), + [anon_sym_union] = ACTIONS(1986), + [anon_sym_unsafe] = ACTIONS(1986), + [anon_sym_use] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [anon_sym_POUND] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_LT] = ACTIONS(1984), + [anon_sym_COLON_COLON] = ACTIONS(1984), + [anon_sym_AMP] = ACTIONS(1984), + [anon_sym_DOT_DOT] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_PIPE] = ACTIONS(1984), + [anon_sym_yield] = ACTIONS(1986), + [anon_sym_move] = ACTIONS(1986), + [sym_integer_literal] = ACTIONS(1984), + [aux_sym_string_literal_token1] = ACTIONS(1984), + [sym_char_literal] = ACTIONS(1984), + [anon_sym_true] = ACTIONS(1986), + [anon_sym_false] = ACTIONS(1986), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1986), + [sym_super] = ACTIONS(1986), + [sym_crate] = ACTIONS(1986), + [sym_metavariable] = ACTIONS(1984), + [sym_raw_string_literal] = ACTIONS(1984), + [sym_float_literal] = ACTIONS(1984), [sym_block_comment] = ACTIONS(3), }, [477] = { - [ts_builtin_sym_end] = ACTIONS(2027), - [sym_identifier] = ACTIONS(2029), - [anon_sym_SEMI] = ACTIONS(2027), - [anon_sym_macro_rules_BANG] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(2027), - [anon_sym_LBRACE] = ACTIONS(2027), - [anon_sym_RBRACE] = ACTIONS(2027), - [anon_sym_LBRACK] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2027), - [anon_sym_u8] = ACTIONS(2029), - [anon_sym_i8] = ACTIONS(2029), - [anon_sym_u16] = ACTIONS(2029), - [anon_sym_i16] = ACTIONS(2029), - [anon_sym_u32] = ACTIONS(2029), - [anon_sym_i32] = ACTIONS(2029), - [anon_sym_u64] = ACTIONS(2029), - [anon_sym_i64] = ACTIONS(2029), - [anon_sym_u128] = ACTIONS(2029), - [anon_sym_i128] = ACTIONS(2029), - [anon_sym_isize] = ACTIONS(2029), - [anon_sym_usize] = ACTIONS(2029), - [anon_sym_f32] = ACTIONS(2029), - [anon_sym_f64] = ACTIONS(2029), - [anon_sym_bool] = ACTIONS(2029), - [anon_sym_str] = ACTIONS(2029), - [anon_sym_char] = ACTIONS(2029), - [anon_sym_SQUOTE] = ACTIONS(2029), - [anon_sym_async] = ACTIONS(2029), - [anon_sym_break] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(2029), - [anon_sym_continue] = ACTIONS(2029), - [anon_sym_default] = ACTIONS(2029), - [anon_sym_enum] = ACTIONS(2029), - [anon_sym_fn] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_impl] = ACTIONS(2029), - [anon_sym_let] = ACTIONS(2029), - [anon_sym_loop] = ACTIONS(2029), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_mod] = ACTIONS(2029), - [anon_sym_pub] = ACTIONS(2029), - [anon_sym_return] = ACTIONS(2029), - [anon_sym_static] = ACTIONS(2029), - [anon_sym_struct] = ACTIONS(2029), - [anon_sym_trait] = ACTIONS(2029), - [anon_sym_type] = ACTIONS(2029), - [anon_sym_union] = ACTIONS(2029), - [anon_sym_unsafe] = ACTIONS(2029), - [anon_sym_use] = ACTIONS(2029), - [anon_sym_while] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(2027), - [anon_sym_BANG] = ACTIONS(2027), - [anon_sym_extern] = ACTIONS(2029), - [anon_sym_LT] = ACTIONS(2027), - [anon_sym_COLON_COLON] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2027), - [anon_sym_DOT_DOT] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_PIPE] = ACTIONS(2027), - [anon_sym_yield] = ACTIONS(2029), - [anon_sym_move] = ACTIONS(2029), - [sym_integer_literal] = ACTIONS(2027), - [aux_sym_string_literal_token1] = ACTIONS(2027), - [sym_char_literal] = ACTIONS(2027), - [anon_sym_true] = ACTIONS(2029), - [anon_sym_false] = ACTIONS(2029), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2029), - [sym_super] = ACTIONS(2029), - [sym_crate] = ACTIONS(2029), - [sym_metavariable] = ACTIONS(2027), - [sym_raw_string_literal] = ACTIONS(2027), - [sym_float_literal] = ACTIONS(2027), + [ts_builtin_sym_end] = ACTIONS(1988), + [sym_identifier] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_macro_rules_BANG] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_u8] = ACTIONS(1990), + [anon_sym_i8] = ACTIONS(1990), + [anon_sym_u16] = ACTIONS(1990), + [anon_sym_i16] = ACTIONS(1990), + [anon_sym_u32] = ACTIONS(1990), + [anon_sym_i32] = ACTIONS(1990), + [anon_sym_u64] = ACTIONS(1990), + [anon_sym_i64] = ACTIONS(1990), + [anon_sym_u128] = ACTIONS(1990), + [anon_sym_i128] = ACTIONS(1990), + [anon_sym_isize] = ACTIONS(1990), + [anon_sym_usize] = ACTIONS(1990), + [anon_sym_f32] = ACTIONS(1990), + [anon_sym_f64] = ACTIONS(1990), + [anon_sym_bool] = ACTIONS(1990), + [anon_sym_str] = ACTIONS(1990), + [anon_sym_char] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_async] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_default] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [anon_sym_fn] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_impl] = ACTIONS(1990), + [anon_sym_let] = ACTIONS(1990), + [anon_sym_loop] = ACTIONS(1990), + [anon_sym_match] = ACTIONS(1990), + [anon_sym_mod] = ACTIONS(1990), + [anon_sym_pub] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_trait] = ACTIONS(1990), + [anon_sym_type] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_unsafe] = ACTIONS(1990), + [anon_sym_use] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_POUND] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_COLON_COLON] = ACTIONS(1988), + [anon_sym_AMP] = ACTIONS(1988), + [anon_sym_DOT_DOT] = ACTIONS(1988), + [anon_sym_DASH] = ACTIONS(1988), + [anon_sym_PIPE] = ACTIONS(1988), + [anon_sym_yield] = ACTIONS(1990), + [anon_sym_move] = ACTIONS(1990), + [sym_integer_literal] = ACTIONS(1988), + [aux_sym_string_literal_token1] = ACTIONS(1988), + [sym_char_literal] = ACTIONS(1988), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1990), + [sym_super] = ACTIONS(1990), + [sym_crate] = ACTIONS(1990), + [sym_metavariable] = ACTIONS(1988), + [sym_raw_string_literal] = ACTIONS(1988), + [sym_float_literal] = ACTIONS(1988), [sym_block_comment] = ACTIONS(3), }, [478] = { - [ts_builtin_sym_end] = ACTIONS(2031), - [sym_identifier] = ACTIONS(2033), - [anon_sym_SEMI] = ACTIONS(2031), - [anon_sym_macro_rules_BANG] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_RBRACE] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2031), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_u8] = ACTIONS(2033), - [anon_sym_i8] = ACTIONS(2033), - [anon_sym_u16] = ACTIONS(2033), - [anon_sym_i16] = ACTIONS(2033), - [anon_sym_u32] = ACTIONS(2033), - [anon_sym_i32] = ACTIONS(2033), - [anon_sym_u64] = ACTIONS(2033), - [anon_sym_i64] = ACTIONS(2033), - [anon_sym_u128] = ACTIONS(2033), - [anon_sym_i128] = ACTIONS(2033), - [anon_sym_isize] = ACTIONS(2033), - [anon_sym_usize] = ACTIONS(2033), - [anon_sym_f32] = ACTIONS(2033), - [anon_sym_f64] = ACTIONS(2033), - [anon_sym_bool] = ACTIONS(2033), - [anon_sym_str] = ACTIONS(2033), - [anon_sym_char] = ACTIONS(2033), - [anon_sym_SQUOTE] = ACTIONS(2033), - [anon_sym_async] = ACTIONS(2033), - [anon_sym_break] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(2033), - [anon_sym_continue] = ACTIONS(2033), - [anon_sym_default] = ACTIONS(2033), - [anon_sym_enum] = ACTIONS(2033), - [anon_sym_fn] = ACTIONS(2033), - [anon_sym_for] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2033), - [anon_sym_impl] = ACTIONS(2033), - [anon_sym_let] = ACTIONS(2033), - [anon_sym_loop] = ACTIONS(2033), - [anon_sym_match] = ACTIONS(2033), - [anon_sym_mod] = ACTIONS(2033), - [anon_sym_pub] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2033), - [anon_sym_struct] = ACTIONS(2033), - [anon_sym_trait] = ACTIONS(2033), - [anon_sym_type] = ACTIONS(2033), - [anon_sym_union] = ACTIONS(2033), - [anon_sym_unsafe] = ACTIONS(2033), - [anon_sym_use] = ACTIONS(2033), - [anon_sym_while] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(2031), - [anon_sym_BANG] = ACTIONS(2031), - [anon_sym_extern] = ACTIONS(2033), - [anon_sym_LT] = ACTIONS(2031), - [anon_sym_COLON_COLON] = ACTIONS(2031), - [anon_sym_AMP] = ACTIONS(2031), - [anon_sym_DOT_DOT] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2031), - [anon_sym_PIPE] = ACTIONS(2031), - [anon_sym_yield] = ACTIONS(2033), - [anon_sym_move] = ACTIONS(2033), - [sym_integer_literal] = ACTIONS(2031), - [aux_sym_string_literal_token1] = ACTIONS(2031), - [sym_char_literal] = ACTIONS(2031), - [anon_sym_true] = ACTIONS(2033), - [anon_sym_false] = ACTIONS(2033), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2033), - [sym_super] = ACTIONS(2033), - [sym_crate] = ACTIONS(2033), - [sym_metavariable] = ACTIONS(2031), - [sym_raw_string_literal] = ACTIONS(2031), - [sym_float_literal] = ACTIONS(2031), + [ts_builtin_sym_end] = ACTIONS(1992), + [sym_identifier] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_macro_rules_BANG] = ACTIONS(1992), + [anon_sym_LPAREN] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1992), + [anon_sym_u8] = ACTIONS(1994), + [anon_sym_i8] = ACTIONS(1994), + [anon_sym_u16] = ACTIONS(1994), + [anon_sym_i16] = ACTIONS(1994), + [anon_sym_u32] = ACTIONS(1994), + [anon_sym_i32] = ACTIONS(1994), + [anon_sym_u64] = ACTIONS(1994), + [anon_sym_i64] = ACTIONS(1994), + [anon_sym_u128] = ACTIONS(1994), + [anon_sym_i128] = ACTIONS(1994), + [anon_sym_isize] = ACTIONS(1994), + [anon_sym_usize] = ACTIONS(1994), + [anon_sym_f32] = ACTIONS(1994), + [anon_sym_f64] = ACTIONS(1994), + [anon_sym_bool] = ACTIONS(1994), + [anon_sym_str] = ACTIONS(1994), + [anon_sym_char] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_async] = ACTIONS(1994), + [anon_sym_break] = ACTIONS(1994), + [anon_sym_const] = ACTIONS(1994), + [anon_sym_continue] = ACTIONS(1994), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_enum] = ACTIONS(1994), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_for] = ACTIONS(1994), + [anon_sym_if] = ACTIONS(1994), + [anon_sym_impl] = ACTIONS(1994), + [anon_sym_let] = ACTIONS(1994), + [anon_sym_loop] = ACTIONS(1994), + [anon_sym_match] = ACTIONS(1994), + [anon_sym_mod] = ACTIONS(1994), + [anon_sym_pub] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1994), + [anon_sym_struct] = ACTIONS(1994), + [anon_sym_trait] = ACTIONS(1994), + [anon_sym_type] = ACTIONS(1994), + [anon_sym_union] = ACTIONS(1994), + [anon_sym_unsafe] = ACTIONS(1994), + [anon_sym_use] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1994), + [anon_sym_POUND] = ACTIONS(1992), + [anon_sym_BANG] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1994), + [anon_sym_LT] = ACTIONS(1992), + [anon_sym_COLON_COLON] = ACTIONS(1992), + [anon_sym_AMP] = ACTIONS(1992), + [anon_sym_DOT_DOT] = ACTIONS(1992), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1992), + [anon_sym_yield] = ACTIONS(1994), + [anon_sym_move] = ACTIONS(1994), + [sym_integer_literal] = ACTIONS(1992), + [aux_sym_string_literal_token1] = ACTIONS(1992), + [sym_char_literal] = ACTIONS(1992), + [anon_sym_true] = ACTIONS(1994), + [anon_sym_false] = ACTIONS(1994), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1994), + [sym_super] = ACTIONS(1994), + [sym_crate] = ACTIONS(1994), + [sym_metavariable] = ACTIONS(1992), + [sym_raw_string_literal] = ACTIONS(1992), + [sym_float_literal] = ACTIONS(1992), [sym_block_comment] = ACTIONS(3), }, [479] = { - [ts_builtin_sym_end] = ACTIONS(2035), - [sym_identifier] = ACTIONS(2037), - [anon_sym_SEMI] = ACTIONS(2035), - [anon_sym_macro_rules_BANG] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2035), - [anon_sym_LBRACE] = ACTIONS(2035), - [anon_sym_RBRACE] = ACTIONS(2035), - [anon_sym_LBRACK] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2035), - [anon_sym_u8] = ACTIONS(2037), - [anon_sym_i8] = ACTIONS(2037), - [anon_sym_u16] = ACTIONS(2037), - [anon_sym_i16] = ACTIONS(2037), - [anon_sym_u32] = ACTIONS(2037), - [anon_sym_i32] = ACTIONS(2037), - [anon_sym_u64] = ACTIONS(2037), - [anon_sym_i64] = ACTIONS(2037), - [anon_sym_u128] = ACTIONS(2037), - [anon_sym_i128] = ACTIONS(2037), - [anon_sym_isize] = ACTIONS(2037), - [anon_sym_usize] = ACTIONS(2037), - [anon_sym_f32] = ACTIONS(2037), - [anon_sym_f64] = ACTIONS(2037), - [anon_sym_bool] = ACTIONS(2037), - [anon_sym_str] = ACTIONS(2037), - [anon_sym_char] = ACTIONS(2037), - [anon_sym_SQUOTE] = ACTIONS(2037), - [anon_sym_async] = ACTIONS(2037), - [anon_sym_break] = ACTIONS(2037), - [anon_sym_const] = ACTIONS(2037), - [anon_sym_continue] = ACTIONS(2037), - [anon_sym_default] = ACTIONS(2037), - [anon_sym_enum] = ACTIONS(2037), - [anon_sym_fn] = ACTIONS(2037), - [anon_sym_for] = ACTIONS(2037), - [anon_sym_if] = ACTIONS(2037), - [anon_sym_impl] = ACTIONS(2037), - [anon_sym_let] = ACTIONS(2037), - [anon_sym_loop] = ACTIONS(2037), - [anon_sym_match] = ACTIONS(2037), - [anon_sym_mod] = ACTIONS(2037), - [anon_sym_pub] = ACTIONS(2037), - [anon_sym_return] = ACTIONS(2037), - [anon_sym_static] = ACTIONS(2037), - [anon_sym_struct] = ACTIONS(2037), - [anon_sym_trait] = ACTIONS(2037), - [anon_sym_type] = ACTIONS(2037), - [anon_sym_union] = ACTIONS(2037), - [anon_sym_unsafe] = ACTIONS(2037), - [anon_sym_use] = ACTIONS(2037), - [anon_sym_while] = ACTIONS(2037), - [anon_sym_POUND] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2035), - [anon_sym_extern] = ACTIONS(2037), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_COLON_COLON] = ACTIONS(2035), - [anon_sym_AMP] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_PIPE] = ACTIONS(2035), - [anon_sym_yield] = ACTIONS(2037), - [anon_sym_move] = ACTIONS(2037), - [sym_integer_literal] = ACTIONS(2035), - [aux_sym_string_literal_token1] = ACTIONS(2035), - [sym_char_literal] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2037), - [anon_sym_false] = ACTIONS(2037), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2037), - [sym_super] = ACTIONS(2037), - [sym_crate] = ACTIONS(2037), - [sym_metavariable] = ACTIONS(2035), - [sym_raw_string_literal] = ACTIONS(2035), - [sym_float_literal] = ACTIONS(2035), + [ts_builtin_sym_end] = ACTIONS(1996), + [sym_identifier] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym_macro_rules_BANG] = ACTIONS(1996), + [anon_sym_LPAREN] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1996), + [anon_sym_RBRACE] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_STAR] = ACTIONS(1996), + [anon_sym_u8] = ACTIONS(1998), + [anon_sym_i8] = ACTIONS(1998), + [anon_sym_u16] = ACTIONS(1998), + [anon_sym_i16] = ACTIONS(1998), + [anon_sym_u32] = ACTIONS(1998), + [anon_sym_i32] = ACTIONS(1998), + [anon_sym_u64] = ACTIONS(1998), + [anon_sym_i64] = ACTIONS(1998), + [anon_sym_u128] = ACTIONS(1998), + [anon_sym_i128] = ACTIONS(1998), + [anon_sym_isize] = ACTIONS(1998), + [anon_sym_usize] = ACTIONS(1998), + [anon_sym_f32] = ACTIONS(1998), + [anon_sym_f64] = ACTIONS(1998), + [anon_sym_bool] = ACTIONS(1998), + [anon_sym_str] = ACTIONS(1998), + [anon_sym_char] = ACTIONS(1998), + [anon_sym_SQUOTE] = ACTIONS(1998), + [anon_sym_async] = ACTIONS(1998), + [anon_sym_break] = ACTIONS(1998), + [anon_sym_const] = ACTIONS(1998), + [anon_sym_continue] = ACTIONS(1998), + [anon_sym_default] = ACTIONS(1998), + [anon_sym_enum] = ACTIONS(1998), + [anon_sym_fn] = ACTIONS(1998), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_if] = ACTIONS(1998), + [anon_sym_impl] = ACTIONS(1998), + [anon_sym_let] = ACTIONS(1998), + [anon_sym_loop] = ACTIONS(1998), + [anon_sym_match] = ACTIONS(1998), + [anon_sym_mod] = ACTIONS(1998), + [anon_sym_pub] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(1998), + [anon_sym_static] = ACTIONS(1998), + [anon_sym_struct] = ACTIONS(1998), + [anon_sym_trait] = ACTIONS(1998), + [anon_sym_type] = ACTIONS(1998), + [anon_sym_union] = ACTIONS(1998), + [anon_sym_unsafe] = ACTIONS(1998), + [anon_sym_use] = ACTIONS(1998), + [anon_sym_while] = ACTIONS(1998), + [anon_sym_POUND] = ACTIONS(1996), + [anon_sym_BANG] = ACTIONS(1996), + [anon_sym_extern] = ACTIONS(1998), + [anon_sym_LT] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1996), + [anon_sym_AMP] = ACTIONS(1996), + [anon_sym_DOT_DOT] = ACTIONS(1996), + [anon_sym_DASH] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(1996), + [anon_sym_yield] = ACTIONS(1998), + [anon_sym_move] = ACTIONS(1998), + [sym_integer_literal] = ACTIONS(1996), + [aux_sym_string_literal_token1] = ACTIONS(1996), + [sym_char_literal] = ACTIONS(1996), + [anon_sym_true] = ACTIONS(1998), + [anon_sym_false] = ACTIONS(1998), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1998), + [sym_super] = ACTIONS(1998), + [sym_crate] = ACTIONS(1998), + [sym_metavariable] = ACTIONS(1996), + [sym_raw_string_literal] = ACTIONS(1996), + [sym_float_literal] = ACTIONS(1996), [sym_block_comment] = ACTIONS(3), }, [480] = { - [ts_builtin_sym_end] = ACTIONS(2039), - [sym_identifier] = ACTIONS(2041), - [anon_sym_SEMI] = ACTIONS(2039), - [anon_sym_macro_rules_BANG] = ACTIONS(2039), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(2039), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_LBRACK] = ACTIONS(2039), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_u8] = ACTIONS(2041), - [anon_sym_i8] = ACTIONS(2041), - [anon_sym_u16] = ACTIONS(2041), - [anon_sym_i16] = ACTIONS(2041), - [anon_sym_u32] = ACTIONS(2041), - [anon_sym_i32] = ACTIONS(2041), - [anon_sym_u64] = ACTIONS(2041), - [anon_sym_i64] = ACTIONS(2041), - [anon_sym_u128] = ACTIONS(2041), - [anon_sym_i128] = ACTIONS(2041), - [anon_sym_isize] = ACTIONS(2041), - [anon_sym_usize] = ACTIONS(2041), - [anon_sym_f32] = ACTIONS(2041), - [anon_sym_f64] = ACTIONS(2041), - [anon_sym_bool] = ACTIONS(2041), - [anon_sym_str] = ACTIONS(2041), - [anon_sym_char] = ACTIONS(2041), - [anon_sym_SQUOTE] = ACTIONS(2041), - [anon_sym_async] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_default] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_fn] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_impl] = ACTIONS(2041), - [anon_sym_let] = ACTIONS(2041), - [anon_sym_loop] = ACTIONS(2041), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_mod] = ACTIONS(2041), - [anon_sym_pub] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_struct] = ACTIONS(2041), - [anon_sym_trait] = ACTIONS(2041), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_union] = ACTIONS(2041), - [anon_sym_unsafe] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2039), - [anon_sym_BANG] = ACTIONS(2039), - [anon_sym_extern] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2039), - [anon_sym_COLON_COLON] = ACTIONS(2039), - [anon_sym_AMP] = ACTIONS(2039), - [anon_sym_DOT_DOT] = ACTIONS(2039), - [anon_sym_DASH] = ACTIONS(2039), - [anon_sym_PIPE] = ACTIONS(2039), - [anon_sym_yield] = ACTIONS(2041), - [anon_sym_move] = ACTIONS(2041), - [sym_integer_literal] = ACTIONS(2039), - [aux_sym_string_literal_token1] = ACTIONS(2039), - [sym_char_literal] = ACTIONS(2039), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2041), - [sym_super] = ACTIONS(2041), - [sym_crate] = ACTIONS(2041), - [sym_metavariable] = ACTIONS(2039), - [sym_raw_string_literal] = ACTIONS(2039), - [sym_float_literal] = ACTIONS(2039), + [ts_builtin_sym_end] = ACTIONS(2000), + [sym_identifier] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_macro_rules_BANG] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2000), + [anon_sym_u8] = ACTIONS(2002), + [anon_sym_i8] = ACTIONS(2002), + [anon_sym_u16] = ACTIONS(2002), + [anon_sym_i16] = ACTIONS(2002), + [anon_sym_u32] = ACTIONS(2002), + [anon_sym_i32] = ACTIONS(2002), + [anon_sym_u64] = ACTIONS(2002), + [anon_sym_i64] = ACTIONS(2002), + [anon_sym_u128] = ACTIONS(2002), + [anon_sym_i128] = ACTIONS(2002), + [anon_sym_isize] = ACTIONS(2002), + [anon_sym_usize] = ACTIONS(2002), + [anon_sym_f32] = ACTIONS(2002), + [anon_sym_f64] = ACTIONS(2002), + [anon_sym_bool] = ACTIONS(2002), + [anon_sym_str] = ACTIONS(2002), + [anon_sym_char] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_async] = ACTIONS(2002), + [anon_sym_break] = ACTIONS(2002), + [anon_sym_const] = ACTIONS(2002), + [anon_sym_continue] = ACTIONS(2002), + [anon_sym_default] = ACTIONS(2002), + [anon_sym_enum] = ACTIONS(2002), + [anon_sym_fn] = ACTIONS(2002), + [anon_sym_for] = ACTIONS(2002), + [anon_sym_if] = ACTIONS(2002), + [anon_sym_impl] = ACTIONS(2002), + [anon_sym_let] = ACTIONS(2002), + [anon_sym_loop] = ACTIONS(2002), + [anon_sym_match] = ACTIONS(2002), + [anon_sym_mod] = ACTIONS(2002), + [anon_sym_pub] = ACTIONS(2002), + [anon_sym_return] = ACTIONS(2002), + [anon_sym_static] = ACTIONS(2002), + [anon_sym_struct] = ACTIONS(2002), + [anon_sym_trait] = ACTIONS(2002), + [anon_sym_type] = ACTIONS(2002), + [anon_sym_union] = ACTIONS(2002), + [anon_sym_unsafe] = ACTIONS(2002), + [anon_sym_use] = ACTIONS(2002), + [anon_sym_while] = ACTIONS(2002), + [anon_sym_POUND] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2002), + [anon_sym_LT] = ACTIONS(2000), + [anon_sym_COLON_COLON] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2000), + [anon_sym_DOT_DOT] = ACTIONS(2000), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2000), + [anon_sym_yield] = ACTIONS(2002), + [anon_sym_move] = ACTIONS(2002), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2000), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2002), + [anon_sym_false] = ACTIONS(2002), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2002), + [sym_super] = ACTIONS(2002), + [sym_crate] = ACTIONS(2002), + [sym_metavariable] = ACTIONS(2000), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [481] = { - [sym__token_pattern] = STATE(379), - [sym_token_tree_pattern] = STATE(379), - [sym_token_binding_pattern] = STATE(379), - [sym_token_repetition_pattern] = STATE(379), - [sym__never_special_token] = STATE(379), - [sym__literal] = STATE(379), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_pattern_repeat1] = STATE(379), - [sym_identifier] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(1152), - [anon_sym_RPAREN] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_u8] = ACTIONS(2043), - [anon_sym_i8] = ACTIONS(2043), - [anon_sym_u16] = ACTIONS(2043), - [anon_sym_i16] = ACTIONS(2043), - [anon_sym_u32] = ACTIONS(2043), - [anon_sym_i32] = ACTIONS(2043), - [anon_sym_u64] = ACTIONS(2043), - [anon_sym_i64] = ACTIONS(2043), - [anon_sym_u128] = ACTIONS(2043), - [anon_sym_i128] = ACTIONS(2043), - [anon_sym_isize] = ACTIONS(2043), - [anon_sym_usize] = ACTIONS(2043), - [anon_sym_f32] = ACTIONS(2043), - [anon_sym_f64] = ACTIONS(2043), - [anon_sym_bool] = ACTIONS(2043), - [anon_sym_str] = ACTIONS(2043), - [anon_sym_char] = ACTIONS(2043), - [aux_sym__never_special_token_token1] = ACTIONS(2043), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_as] = ACTIONS(2043), - [anon_sym_async] = ACTIONS(2043), - [anon_sym_await] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_const] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_default] = ACTIONS(2043), - [anon_sym_enum] = ACTIONS(2043), - [anon_sym_fn] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_impl] = ACTIONS(2043), - [anon_sym_let] = ACTIONS(2043), - [anon_sym_loop] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_mod] = ACTIONS(2043), - [anon_sym_pub] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_static] = ACTIONS(2043), - [anon_sym_struct] = ACTIONS(2043), - [anon_sym_trait] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_union] = ACTIONS(2043), - [anon_sym_unsafe] = ACTIONS(2043), - [anon_sym_use] = ACTIONS(2043), - [anon_sym_where] = ACTIONS(2043), - [anon_sym_while] = ACTIONS(2043), - [sym_mutable_specifier] = ACTIONS(2043), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2043), - [sym_super] = ACTIONS(2043), - [sym_crate] = ACTIONS(2043), - [sym_metavariable] = ACTIONS(1168), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [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] = { - [ts_builtin_sym_end] = ACTIONS(2047), - [sym_identifier] = ACTIONS(2049), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_macro_rules_BANG] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_LBRACK] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_u8] = ACTIONS(2049), - [anon_sym_i8] = ACTIONS(2049), - [anon_sym_u16] = ACTIONS(2049), - [anon_sym_i16] = ACTIONS(2049), - [anon_sym_u32] = ACTIONS(2049), - [anon_sym_i32] = ACTIONS(2049), - [anon_sym_u64] = ACTIONS(2049), - [anon_sym_i64] = ACTIONS(2049), - [anon_sym_u128] = ACTIONS(2049), - [anon_sym_i128] = ACTIONS(2049), - [anon_sym_isize] = ACTIONS(2049), - [anon_sym_usize] = ACTIONS(2049), - [anon_sym_f32] = ACTIONS(2049), - [anon_sym_f64] = ACTIONS(2049), - [anon_sym_bool] = ACTIONS(2049), - [anon_sym_str] = ACTIONS(2049), - [anon_sym_char] = ACTIONS(2049), - [anon_sym_SQUOTE] = ACTIONS(2049), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_default] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), - [anon_sym_fn] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_impl] = ACTIONS(2049), - [anon_sym_let] = ACTIONS(2049), - [anon_sym_loop] = ACTIONS(2049), - [anon_sym_match] = ACTIONS(2049), - [anon_sym_mod] = ACTIONS(2049), - [anon_sym_pub] = ACTIONS(2049), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_struct] = ACTIONS(2049), - [anon_sym_trait] = ACTIONS(2049), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_union] = ACTIONS(2049), - [anon_sym_unsafe] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(2047), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_extern] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2047), - [anon_sym_COLON_COLON] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_DOT_DOT] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_PIPE] = ACTIONS(2047), - [anon_sym_yield] = ACTIONS(2049), - [anon_sym_move] = ACTIONS(2049), - [sym_integer_literal] = ACTIONS(2047), - [aux_sym_string_literal_token1] = ACTIONS(2047), - [sym_char_literal] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2049), - [sym_super] = ACTIONS(2049), - [sym_crate] = ACTIONS(2049), - [sym_metavariable] = ACTIONS(2047), - [sym_raw_string_literal] = ACTIONS(2047), - [sym_float_literal] = ACTIONS(2047), + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_arm] = STATE(501), + [sym_last_match_arm] = STATE(2450), + [sym_match_pattern] = STATE(2359), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(501), + [sym_identifier] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [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(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [483] = { - [ts_builtin_sym_end] = ACTIONS(2051), - [sym_identifier] = ACTIONS(2053), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_macro_rules_BANG] = ACTIONS(2051), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2051), - [anon_sym_u8] = ACTIONS(2053), - [anon_sym_i8] = ACTIONS(2053), - [anon_sym_u16] = ACTIONS(2053), - [anon_sym_i16] = ACTIONS(2053), - [anon_sym_u32] = ACTIONS(2053), - [anon_sym_i32] = ACTIONS(2053), - [anon_sym_u64] = ACTIONS(2053), - [anon_sym_i64] = ACTIONS(2053), - [anon_sym_u128] = ACTIONS(2053), - [anon_sym_i128] = ACTIONS(2053), - [anon_sym_isize] = ACTIONS(2053), - [anon_sym_usize] = ACTIONS(2053), - [anon_sym_f32] = ACTIONS(2053), - [anon_sym_f64] = ACTIONS(2053), - [anon_sym_bool] = ACTIONS(2053), - [anon_sym_str] = ACTIONS(2053), - [anon_sym_char] = ACTIONS(2053), - [anon_sym_SQUOTE] = ACTIONS(2053), - [anon_sym_async] = ACTIONS(2053), - [anon_sym_break] = ACTIONS(2053), - [anon_sym_const] = ACTIONS(2053), - [anon_sym_continue] = ACTIONS(2053), - [anon_sym_default] = ACTIONS(2053), - [anon_sym_enum] = ACTIONS(2053), - [anon_sym_fn] = ACTIONS(2053), - [anon_sym_for] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(2053), - [anon_sym_impl] = ACTIONS(2053), - [anon_sym_let] = ACTIONS(2053), - [anon_sym_loop] = ACTIONS(2053), - [anon_sym_match] = ACTIONS(2053), - [anon_sym_mod] = ACTIONS(2053), - [anon_sym_pub] = ACTIONS(2053), - [anon_sym_return] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(2053), - [anon_sym_struct] = ACTIONS(2053), - [anon_sym_trait] = ACTIONS(2053), - [anon_sym_type] = ACTIONS(2053), - [anon_sym_union] = ACTIONS(2053), - [anon_sym_unsafe] = ACTIONS(2053), - [anon_sym_use] = ACTIONS(2053), - [anon_sym_while] = ACTIONS(2053), - [anon_sym_POUND] = ACTIONS(2051), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_extern] = ACTIONS(2053), - [anon_sym_LT] = ACTIONS(2051), - [anon_sym_COLON_COLON] = ACTIONS(2051), - [anon_sym_AMP] = ACTIONS(2051), - [anon_sym_DOT_DOT] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_PIPE] = ACTIONS(2051), - [anon_sym_yield] = ACTIONS(2053), - [anon_sym_move] = ACTIONS(2053), - [sym_integer_literal] = ACTIONS(2051), - [aux_sym_string_literal_token1] = ACTIONS(2051), - [sym_char_literal] = ACTIONS(2051), - [anon_sym_true] = ACTIONS(2053), - [anon_sym_false] = ACTIONS(2053), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2053), - [sym_super] = ACTIONS(2053), - [sym_crate] = ACTIONS(2053), - [sym_metavariable] = ACTIONS(2051), - [sym_raw_string_literal] = ACTIONS(2051), - [sym_float_literal] = ACTIONS(2051), + [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(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(499), + [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(1000), + [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), }, [484] = { - [ts_builtin_sym_end] = ACTIONS(2055), - [sym_identifier] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_macro_rules_BANG] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_u8] = ACTIONS(2057), - [anon_sym_i8] = ACTIONS(2057), - [anon_sym_u16] = ACTIONS(2057), - [anon_sym_i16] = ACTIONS(2057), - [anon_sym_u32] = ACTIONS(2057), - [anon_sym_i32] = ACTIONS(2057), - [anon_sym_u64] = ACTIONS(2057), - [anon_sym_i64] = ACTIONS(2057), - [anon_sym_u128] = ACTIONS(2057), - [anon_sym_i128] = ACTIONS(2057), - [anon_sym_isize] = ACTIONS(2057), - [anon_sym_usize] = ACTIONS(2057), - [anon_sym_f32] = ACTIONS(2057), - [anon_sym_f64] = ACTIONS(2057), - [anon_sym_bool] = ACTIONS(2057), - [anon_sym_str] = ACTIONS(2057), - [anon_sym_char] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_fn] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_impl] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_loop] = ACTIONS(2057), - [anon_sym_match] = ACTIONS(2057), - [anon_sym_mod] = ACTIONS(2057), - [anon_sym_pub] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2057), - [anon_sym_trait] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_union] = ACTIONS(2057), - [anon_sym_unsafe] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_extern] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_COLON_COLON] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_DOT_DOT] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_move] = ACTIONS(2057), - [sym_integer_literal] = ACTIONS(2055), - [aux_sym_string_literal_token1] = ACTIONS(2055), - [sym_char_literal] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(2057), - [anon_sym_false] = ACTIONS(2057), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_crate] = ACTIONS(2057), - [sym_metavariable] = ACTIONS(2055), - [sym_raw_string_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), + [sym__token_pattern] = STATE(488), + [sym_token_tree_pattern] = STATE(488), + [sym_token_binding_pattern] = STATE(488), + [sym_token_repetition_pattern] = STATE(488), + [sym__literal] = STATE(488), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(488), + [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(1000), + [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), }, [485] = { - [ts_builtin_sym_end] = ACTIONS(2059), - [sym_identifier] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2059), - [anon_sym_macro_rules_BANG] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_STAR] = ACTIONS(2059), - [anon_sym_u8] = ACTIONS(2061), - [anon_sym_i8] = ACTIONS(2061), - [anon_sym_u16] = ACTIONS(2061), - [anon_sym_i16] = ACTIONS(2061), - [anon_sym_u32] = ACTIONS(2061), - [anon_sym_i32] = ACTIONS(2061), - [anon_sym_u64] = ACTIONS(2061), - [anon_sym_i64] = ACTIONS(2061), - [anon_sym_u128] = ACTIONS(2061), - [anon_sym_i128] = ACTIONS(2061), - [anon_sym_isize] = ACTIONS(2061), - [anon_sym_usize] = ACTIONS(2061), - [anon_sym_f32] = ACTIONS(2061), - [anon_sym_f64] = ACTIONS(2061), - [anon_sym_bool] = ACTIONS(2061), - [anon_sym_str] = ACTIONS(2061), - [anon_sym_char] = ACTIONS(2061), - [anon_sym_SQUOTE] = ACTIONS(2061), - [anon_sym_async] = ACTIONS(2061), - [anon_sym_break] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(2061), - [anon_sym_continue] = ACTIONS(2061), - [anon_sym_default] = ACTIONS(2061), - [anon_sym_enum] = ACTIONS(2061), - [anon_sym_fn] = ACTIONS(2061), - [anon_sym_for] = ACTIONS(2061), - [anon_sym_if] = ACTIONS(2061), - [anon_sym_impl] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_loop] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2061), - [anon_sym_mod] = ACTIONS(2061), - [anon_sym_pub] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(2061), - [anon_sym_static] = ACTIONS(2061), - [anon_sym_struct] = ACTIONS(2061), - [anon_sym_trait] = ACTIONS(2061), - [anon_sym_type] = ACTIONS(2061), - [anon_sym_union] = ACTIONS(2061), - [anon_sym_unsafe] = ACTIONS(2061), - [anon_sym_use] = ACTIONS(2061), - [anon_sym_while] = ACTIONS(2061), - [anon_sym_POUND] = ACTIONS(2059), - [anon_sym_BANG] = ACTIONS(2059), - [anon_sym_extern] = ACTIONS(2061), - [anon_sym_LT] = ACTIONS(2059), - [anon_sym_COLON_COLON] = ACTIONS(2059), - [anon_sym_AMP] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2059), - [anon_sym_DASH] = ACTIONS(2059), - [anon_sym_PIPE] = ACTIONS(2059), - [anon_sym_yield] = ACTIONS(2061), - [anon_sym_move] = ACTIONS(2061), - [sym_integer_literal] = ACTIONS(2059), - [aux_sym_string_literal_token1] = ACTIONS(2059), - [sym_char_literal] = ACTIONS(2059), - [anon_sym_true] = ACTIONS(2061), - [anon_sym_false] = ACTIONS(2061), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2061), - [sym_super] = ACTIONS(2061), - [sym_crate] = ACTIONS(2061), - [sym_metavariable] = ACTIONS(2059), - [sym_raw_string_literal] = ACTIONS(2059), - [sym_float_literal] = ACTIONS(2059), + [sym__token_pattern] = STATE(489), + [sym_token_tree_pattern] = STATE(489), + [sym_token_binding_pattern] = STATE(489), + [sym_token_repetition_pattern] = STATE(489), + [sym__literal] = STATE(489), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2030), + [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(1000), + [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] = { - [ts_builtin_sym_end] = ACTIONS(2063), - [sym_identifier] = ACTIONS(2065), - [anon_sym_SEMI] = ACTIONS(2063), - [anon_sym_macro_rules_BANG] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_LBRACE] = ACTIONS(2063), - [anon_sym_RBRACE] = ACTIONS(2063), - [anon_sym_LBRACK] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2063), - [anon_sym_u8] = ACTIONS(2065), - [anon_sym_i8] = ACTIONS(2065), - [anon_sym_u16] = ACTIONS(2065), - [anon_sym_i16] = ACTIONS(2065), - [anon_sym_u32] = ACTIONS(2065), - [anon_sym_i32] = ACTIONS(2065), - [anon_sym_u64] = ACTIONS(2065), - [anon_sym_i64] = ACTIONS(2065), - [anon_sym_u128] = ACTIONS(2065), - [anon_sym_i128] = ACTIONS(2065), - [anon_sym_isize] = ACTIONS(2065), - [anon_sym_usize] = ACTIONS(2065), - [anon_sym_f32] = ACTIONS(2065), - [anon_sym_f64] = ACTIONS(2065), - [anon_sym_bool] = ACTIONS(2065), - [anon_sym_str] = ACTIONS(2065), - [anon_sym_char] = ACTIONS(2065), - [anon_sym_SQUOTE] = ACTIONS(2065), - [anon_sym_async] = ACTIONS(2065), - [anon_sym_break] = ACTIONS(2065), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_continue] = ACTIONS(2065), - [anon_sym_default] = ACTIONS(2065), - [anon_sym_enum] = ACTIONS(2065), - [anon_sym_fn] = ACTIONS(2065), - [anon_sym_for] = ACTIONS(2065), - [anon_sym_if] = ACTIONS(2065), - [anon_sym_impl] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_loop] = ACTIONS(2065), - [anon_sym_match] = ACTIONS(2065), - [anon_sym_mod] = ACTIONS(2065), - [anon_sym_pub] = ACTIONS(2065), - [anon_sym_return] = ACTIONS(2065), - [anon_sym_static] = ACTIONS(2065), - [anon_sym_struct] = ACTIONS(2065), - [anon_sym_trait] = ACTIONS(2065), - [anon_sym_type] = ACTIONS(2065), - [anon_sym_union] = ACTIONS(2065), - [anon_sym_unsafe] = ACTIONS(2065), - [anon_sym_use] = ACTIONS(2065), - [anon_sym_while] = ACTIONS(2065), - [anon_sym_POUND] = ACTIONS(2063), - [anon_sym_BANG] = ACTIONS(2063), - [anon_sym_extern] = ACTIONS(2065), - [anon_sym_LT] = ACTIONS(2063), - [anon_sym_COLON_COLON] = ACTIONS(2063), - [anon_sym_AMP] = ACTIONS(2063), - [anon_sym_DOT_DOT] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_PIPE] = ACTIONS(2063), - [anon_sym_yield] = ACTIONS(2065), - [anon_sym_move] = ACTIONS(2065), - [sym_integer_literal] = ACTIONS(2063), - [aux_sym_string_literal_token1] = ACTIONS(2063), - [sym_char_literal] = ACTIONS(2063), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2065), - [sym_super] = ACTIONS(2065), - [sym_crate] = ACTIONS(2065), - [sym_metavariable] = ACTIONS(2063), - [sym_raw_string_literal] = ACTIONS(2063), - [sym_float_literal] = ACTIONS(2063), + [sym__token_pattern] = STATE(490), + [sym_token_tree_pattern] = STATE(490), + [sym_token_binding_pattern] = STATE(490), + [sym_token_repetition_pattern] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2034), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_RBRACK] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2034), + [anon_sym_i8] = ACTIONS(2034), + [anon_sym_u16] = ACTIONS(2034), + [anon_sym_i16] = ACTIONS(2034), + [anon_sym_u32] = ACTIONS(2034), + [anon_sym_i32] = ACTIONS(2034), + [anon_sym_u64] = ACTIONS(2034), + [anon_sym_i64] = ACTIONS(2034), + [anon_sym_u128] = ACTIONS(2034), + [anon_sym_i128] = ACTIONS(2034), + [anon_sym_isize] = ACTIONS(2034), + [anon_sym_usize] = ACTIONS(2034), + [anon_sym_f32] = ACTIONS(2034), + [anon_sym_f64] = ACTIONS(2034), + [anon_sym_bool] = ACTIONS(2034), + [anon_sym_str] = ACTIONS(2034), + [anon_sym_char] = ACTIONS(2034), + [aux_sym__non_special_token_token1] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_as] = ACTIONS(2034), + [anon_sym_async] = ACTIONS(2034), + [anon_sym_await] = ACTIONS(2034), + [anon_sym_break] = ACTIONS(2034), + [anon_sym_const] = ACTIONS(2034), + [anon_sym_continue] = ACTIONS(2034), + [anon_sym_default] = ACTIONS(2034), + [anon_sym_enum] = ACTIONS(2034), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_for] = ACTIONS(2034), + [anon_sym_if] = ACTIONS(2034), + [anon_sym_impl] = ACTIONS(2034), + [anon_sym_let] = ACTIONS(2034), + [anon_sym_loop] = ACTIONS(2034), + [anon_sym_match] = ACTIONS(2034), + [anon_sym_mod] = ACTIONS(2034), + [anon_sym_pub] = ACTIONS(2034), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2034), + [anon_sym_struct] = ACTIONS(2034), + [anon_sym_trait] = ACTIONS(2034), + [anon_sym_type] = ACTIONS(2034), + [anon_sym_union] = ACTIONS(2034), + [anon_sym_unsafe] = ACTIONS(2034), + [anon_sym_use] = ACTIONS(2034), + [anon_sym_where] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2034), + [sym_mutable_specifier] = ACTIONS(2034), + [sym_integer_literal] = ACTIONS(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(1000), + [sym_self] = ACTIONS(2034), + [sym_super] = ACTIONS(2034), + [sym_crate] = ACTIONS(2034), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [487] = { - [ts_builtin_sym_end] = ACTIONS(2067), - [sym_identifier] = ACTIONS(2069), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_macro_rules_BANG] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_u8] = ACTIONS(2069), - [anon_sym_i8] = ACTIONS(2069), - [anon_sym_u16] = ACTIONS(2069), - [anon_sym_i16] = ACTIONS(2069), - [anon_sym_u32] = ACTIONS(2069), - [anon_sym_i32] = ACTIONS(2069), - [anon_sym_u64] = ACTIONS(2069), - [anon_sym_i64] = ACTIONS(2069), - [anon_sym_u128] = ACTIONS(2069), - [anon_sym_i128] = ACTIONS(2069), - [anon_sym_isize] = ACTIONS(2069), - [anon_sym_usize] = ACTIONS(2069), - [anon_sym_f32] = ACTIONS(2069), - [anon_sym_f64] = ACTIONS(2069), - [anon_sym_bool] = ACTIONS(2069), - [anon_sym_str] = ACTIONS(2069), - [anon_sym_char] = ACTIONS(2069), - [anon_sym_SQUOTE] = ACTIONS(2069), - [anon_sym_async] = ACTIONS(2069), - [anon_sym_break] = ACTIONS(2069), - [anon_sym_const] = ACTIONS(2069), - [anon_sym_continue] = ACTIONS(2069), - [anon_sym_default] = ACTIONS(2069), - [anon_sym_enum] = ACTIONS(2069), - [anon_sym_fn] = ACTIONS(2069), - [anon_sym_for] = ACTIONS(2069), - [anon_sym_if] = ACTIONS(2069), - [anon_sym_impl] = ACTIONS(2069), - [anon_sym_let] = ACTIONS(2069), - [anon_sym_loop] = ACTIONS(2069), - [anon_sym_match] = ACTIONS(2069), - [anon_sym_mod] = ACTIONS(2069), - [anon_sym_pub] = ACTIONS(2069), - [anon_sym_return] = ACTIONS(2069), - [anon_sym_static] = ACTIONS(2069), - [anon_sym_struct] = ACTIONS(2069), - [anon_sym_trait] = ACTIONS(2069), - [anon_sym_type] = ACTIONS(2069), - [anon_sym_union] = ACTIONS(2069), - [anon_sym_unsafe] = ACTIONS(2069), - [anon_sym_use] = ACTIONS(2069), - [anon_sym_while] = ACTIONS(2069), - [anon_sym_POUND] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_extern] = ACTIONS(2069), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_COLON_COLON] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_DOT_DOT] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2069), - [anon_sym_move] = ACTIONS(2069), - [sym_integer_literal] = ACTIONS(2067), - [aux_sym_string_literal_token1] = ACTIONS(2067), - [sym_char_literal] = ACTIONS(2067), - [anon_sym_true] = ACTIONS(2069), - [anon_sym_false] = ACTIONS(2069), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2069), - [sym_super] = ACTIONS(2069), - [sym_crate] = ACTIONS(2069), - [sym_metavariable] = ACTIONS(2067), - [sym_raw_string_literal] = ACTIONS(2067), - [sym_float_literal] = ACTIONS(2067), + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_arm] = STATE(501), + [sym_last_match_arm] = STATE(2415), + [sym_match_pattern] = STATE(2359), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(501), + [sym_identifier] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [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(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [488] = { - [ts_builtin_sym_end] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2073), - [anon_sym_SEMI] = ACTIONS(2071), - [anon_sym_macro_rules_BANG] = ACTIONS(2071), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_RBRACE] = ACTIONS(2071), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_u8] = ACTIONS(2073), - [anon_sym_i8] = ACTIONS(2073), - [anon_sym_u16] = ACTIONS(2073), - [anon_sym_i16] = ACTIONS(2073), - [anon_sym_u32] = ACTIONS(2073), - [anon_sym_i32] = ACTIONS(2073), - [anon_sym_u64] = ACTIONS(2073), - [anon_sym_i64] = ACTIONS(2073), - [anon_sym_u128] = ACTIONS(2073), - [anon_sym_i128] = ACTIONS(2073), - [anon_sym_isize] = ACTIONS(2073), - [anon_sym_usize] = ACTIONS(2073), - [anon_sym_f32] = ACTIONS(2073), - [anon_sym_f64] = ACTIONS(2073), - [anon_sym_bool] = ACTIONS(2073), - [anon_sym_str] = ACTIONS(2073), - [anon_sym_char] = ACTIONS(2073), - [anon_sym_SQUOTE] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_default] = ACTIONS(2073), - [anon_sym_enum] = ACTIONS(2073), - [anon_sym_fn] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_impl] = ACTIONS(2073), - [anon_sym_let] = ACTIONS(2073), - [anon_sym_loop] = ACTIONS(2073), - [anon_sym_match] = ACTIONS(2073), - [anon_sym_mod] = ACTIONS(2073), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_static] = ACTIONS(2073), - [anon_sym_struct] = ACTIONS(2073), - [anon_sym_trait] = ACTIONS(2073), - [anon_sym_type] = ACTIONS(2073), - [anon_sym_union] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(2073), - [anon_sym_use] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(2071), - [anon_sym_BANG] = ACTIONS(2071), - [anon_sym_extern] = ACTIONS(2073), - [anon_sym_LT] = ACTIONS(2071), - [anon_sym_COLON_COLON] = ACTIONS(2071), - [anon_sym_AMP] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [anon_sym_DASH] = ACTIONS(2071), - [anon_sym_PIPE] = ACTIONS(2071), - [anon_sym_yield] = ACTIONS(2073), - [anon_sym_move] = ACTIONS(2073), - [sym_integer_literal] = ACTIONS(2071), - [aux_sym_string_literal_token1] = ACTIONS(2071), - [sym_char_literal] = ACTIONS(2071), - [anon_sym_true] = ACTIONS(2073), - [anon_sym_false] = ACTIONS(2073), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2073), - [sym_super] = ACTIONS(2073), - [sym_crate] = ACTIONS(2073), - [sym_metavariable] = ACTIONS(2071), - [sym_raw_string_literal] = ACTIONS(2071), - [sym_float_literal] = ACTIONS(2071), + [sym__token_pattern] = STATE(249), + [sym_token_tree_pattern] = STATE(249), + [sym_token_binding_pattern] = STATE(249), + [sym_token_repetition_pattern] = STATE(249), + [sym__literal] = STATE(249), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2038), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2036), + [anon_sym_i8] = ACTIONS(2036), + [anon_sym_u16] = ACTIONS(2036), + [anon_sym_i16] = ACTIONS(2036), + [anon_sym_u32] = ACTIONS(2036), + [anon_sym_i32] = ACTIONS(2036), + [anon_sym_u64] = ACTIONS(2036), + [anon_sym_i64] = ACTIONS(2036), + [anon_sym_u128] = ACTIONS(2036), + [anon_sym_i128] = ACTIONS(2036), + [anon_sym_isize] = ACTIONS(2036), + [anon_sym_usize] = ACTIONS(2036), + [anon_sym_f32] = ACTIONS(2036), + [anon_sym_f64] = ACTIONS(2036), + [anon_sym_bool] = ACTIONS(2036), + [anon_sym_str] = ACTIONS(2036), + [anon_sym_char] = ACTIONS(2036), + [aux_sym__non_special_token_token1] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_as] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_fn] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_impl] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_loop] = ACTIONS(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_mod] = ACTIONS(2036), + [anon_sym_pub] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_trait] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_unsafe] = ACTIONS(2036), + [anon_sym_use] = ACTIONS(2036), + [anon_sym_where] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [sym_mutable_specifier] = ACTIONS(2036), + [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(1000), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_crate] = ACTIONS(2036), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [489] = { - [ts_builtin_sym_end] = ACTIONS(2075), - [sym_identifier] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2075), - [anon_sym_macro_rules_BANG] = ACTIONS(2075), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2075), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_u8] = ACTIONS(2077), - [anon_sym_i8] = ACTIONS(2077), - [anon_sym_u16] = ACTIONS(2077), - [anon_sym_i16] = ACTIONS(2077), - [anon_sym_u32] = ACTIONS(2077), - [anon_sym_i32] = ACTIONS(2077), - [anon_sym_u64] = ACTIONS(2077), - [anon_sym_i64] = ACTIONS(2077), - [anon_sym_u128] = ACTIONS(2077), - [anon_sym_i128] = ACTIONS(2077), - [anon_sym_isize] = ACTIONS(2077), - [anon_sym_usize] = ACTIONS(2077), - [anon_sym_f32] = ACTIONS(2077), - [anon_sym_f64] = ACTIONS(2077), - [anon_sym_bool] = ACTIONS(2077), - [anon_sym_str] = ACTIONS(2077), - [anon_sym_char] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_default] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [anon_sym_fn] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_impl] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_loop] = ACTIONS(2077), - [anon_sym_match] = ACTIONS(2077), - [anon_sym_mod] = ACTIONS(2077), - [anon_sym_pub] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(2077), - [anon_sym_trait] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_union] = ACTIONS(2077), - [anon_sym_unsafe] = ACTIONS(2077), - [anon_sym_use] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(2075), - [anon_sym_extern] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2075), - [anon_sym_COLON_COLON] = ACTIONS(2075), - [anon_sym_AMP] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2075), - [anon_sym_DASH] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2075), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_move] = ACTIONS(2077), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2075), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_crate] = ACTIONS(2077), - [sym_metavariable] = ACTIONS(2075), - [sym_raw_string_literal] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [sym__token_pattern] = STATE(249), + [sym_token_tree_pattern] = STATE(249), + [sym_token_binding_pattern] = STATE(249), + [sym_token_repetition_pattern] = STATE(249), + [sym__literal] = STATE(249), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2036), + [anon_sym_i8] = ACTIONS(2036), + [anon_sym_u16] = ACTIONS(2036), + [anon_sym_i16] = ACTIONS(2036), + [anon_sym_u32] = ACTIONS(2036), + [anon_sym_i32] = ACTIONS(2036), + [anon_sym_u64] = ACTIONS(2036), + [anon_sym_i64] = ACTIONS(2036), + [anon_sym_u128] = ACTIONS(2036), + [anon_sym_i128] = ACTIONS(2036), + [anon_sym_isize] = ACTIONS(2036), + [anon_sym_usize] = ACTIONS(2036), + [anon_sym_f32] = ACTIONS(2036), + [anon_sym_f64] = ACTIONS(2036), + [anon_sym_bool] = ACTIONS(2036), + [anon_sym_str] = ACTIONS(2036), + [anon_sym_char] = ACTIONS(2036), + [aux_sym__non_special_token_token1] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_as] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_fn] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_impl] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_loop] = ACTIONS(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_mod] = ACTIONS(2036), + [anon_sym_pub] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_trait] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_unsafe] = ACTIONS(2036), + [anon_sym_use] = ACTIONS(2036), + [anon_sym_where] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [sym_mutable_specifier] = ACTIONS(2036), + [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(1000), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_crate] = ACTIONS(2036), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [490] = { - [ts_builtin_sym_end] = ACTIONS(2079), - [sym_identifier] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2079), - [anon_sym_macro_rules_BANG] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2079), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_u8] = ACTIONS(2081), - [anon_sym_i8] = ACTIONS(2081), - [anon_sym_u16] = ACTIONS(2081), - [anon_sym_i16] = ACTIONS(2081), - [anon_sym_u32] = ACTIONS(2081), - [anon_sym_i32] = ACTIONS(2081), - [anon_sym_u64] = ACTIONS(2081), - [anon_sym_i64] = ACTIONS(2081), - [anon_sym_u128] = ACTIONS(2081), - [anon_sym_i128] = ACTIONS(2081), - [anon_sym_isize] = ACTIONS(2081), - [anon_sym_usize] = ACTIONS(2081), - [anon_sym_f32] = ACTIONS(2081), - [anon_sym_f64] = ACTIONS(2081), - [anon_sym_bool] = ACTIONS(2081), - [anon_sym_str] = ACTIONS(2081), - [anon_sym_char] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [anon_sym_fn] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_impl] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_loop] = ACTIONS(2081), - [anon_sym_match] = ACTIONS(2081), - [anon_sym_mod] = ACTIONS(2081), - [anon_sym_pub] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_struct] = ACTIONS(2081), - [anon_sym_trait] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_union] = ACTIONS(2081), - [anon_sym_unsafe] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_POUND] = ACTIONS(2079), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_extern] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_COLON_COLON] = ACTIONS(2079), - [anon_sym_AMP] = ACTIONS(2079), - [anon_sym_DOT_DOT] = ACTIONS(2079), - [anon_sym_DASH] = ACTIONS(2079), - [anon_sym_PIPE] = ACTIONS(2079), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_move] = ACTIONS(2081), - [sym_integer_literal] = ACTIONS(2079), - [aux_sym_string_literal_token1] = ACTIONS(2079), - [sym_char_literal] = ACTIONS(2079), - [anon_sym_true] = ACTIONS(2081), - [anon_sym_false] = ACTIONS(2081), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_crate] = ACTIONS(2081), - [sym_metavariable] = ACTIONS(2079), - [sym_raw_string_literal] = ACTIONS(2079), - [sym_float_literal] = ACTIONS(2079), + [sym__token_pattern] = STATE(249), + [sym_token_tree_pattern] = STATE(249), + [sym_token_binding_pattern] = STATE(249), + [sym_token_repetition_pattern] = STATE(249), + [sym__literal] = STATE(249), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_RBRACK] = ACTIONS(2038), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2036), + [anon_sym_i8] = ACTIONS(2036), + [anon_sym_u16] = ACTIONS(2036), + [anon_sym_i16] = ACTIONS(2036), + [anon_sym_u32] = ACTIONS(2036), + [anon_sym_i32] = ACTIONS(2036), + [anon_sym_u64] = ACTIONS(2036), + [anon_sym_i64] = ACTIONS(2036), + [anon_sym_u128] = ACTIONS(2036), + [anon_sym_i128] = ACTIONS(2036), + [anon_sym_isize] = ACTIONS(2036), + [anon_sym_usize] = ACTIONS(2036), + [anon_sym_f32] = ACTIONS(2036), + [anon_sym_f64] = ACTIONS(2036), + [anon_sym_bool] = ACTIONS(2036), + [anon_sym_str] = ACTIONS(2036), + [anon_sym_char] = ACTIONS(2036), + [aux_sym__non_special_token_token1] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_as] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_fn] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_impl] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_loop] = ACTIONS(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_mod] = ACTIONS(2036), + [anon_sym_pub] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_trait] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_unsafe] = ACTIONS(2036), + [anon_sym_use] = ACTIONS(2036), + [anon_sym_where] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [sym_mutable_specifier] = ACTIONS(2036), + [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(1000), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_crate] = ACTIONS(2036), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [491] = { - [ts_builtin_sym_end] = ACTIONS(2083), - [sym_identifier] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2083), - [anon_sym_macro_rules_BANG] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_LBRACK] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2085), - [anon_sym_i8] = ACTIONS(2085), - [anon_sym_u16] = ACTIONS(2085), - [anon_sym_i16] = ACTIONS(2085), - [anon_sym_u32] = ACTIONS(2085), - [anon_sym_i32] = ACTIONS(2085), - [anon_sym_u64] = ACTIONS(2085), - [anon_sym_i64] = ACTIONS(2085), - [anon_sym_u128] = ACTIONS(2085), - [anon_sym_i128] = ACTIONS(2085), - [anon_sym_isize] = ACTIONS(2085), - [anon_sym_usize] = ACTIONS(2085), - [anon_sym_f32] = ACTIONS(2085), - [anon_sym_f64] = ACTIONS(2085), - [anon_sym_bool] = ACTIONS(2085), - [anon_sym_str] = ACTIONS(2085), - [anon_sym_char] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_default] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [anon_sym_fn] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_impl] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_loop] = ACTIONS(2085), - [anon_sym_match] = ACTIONS(2085), - [anon_sym_mod] = ACTIONS(2085), - [anon_sym_pub] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_struct] = ACTIONS(2085), - [anon_sym_trait] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_union] = ACTIONS(2085), - [anon_sym_unsafe] = ACTIONS(2085), - [anon_sym_use] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_POUND] = ACTIONS(2083), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_extern] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2083), - [anon_sym_COLON_COLON] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_DOT_DOT] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_PIPE] = ACTIONS(2083), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_move] = ACTIONS(2085), - [sym_integer_literal] = ACTIONS(2083), - [aux_sym_string_literal_token1] = ACTIONS(2083), - [sym_char_literal] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(2085), - [anon_sym_false] = ACTIONS(2085), + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_macro_invocation] = STATE(2349), + [sym_scoped_identifier] = STATE(1578), + [sym_scoped_type_identifier] = STATE(1974), + [sym_match_arm] = STATE(501), + [sym_last_match_arm] = STATE(2558), + [sym_match_pattern] = STATE(2359), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(2070), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(501), + [sym_identifier] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [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(2085), - [sym_super] = ACTIONS(2085), - [sym_crate] = ACTIONS(2085), - [sym_metavariable] = ACTIONS(2083), - [sym_raw_string_literal] = ACTIONS(2083), - [sym_float_literal] = ACTIONS(2083), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [492] = { - [ts_builtin_sym_end] = ACTIONS(2087), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym_macro_rules_BANG] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2087), - [anon_sym_LBRACK] = ACTIONS(2087), - [anon_sym_STAR] = ACTIONS(2087), - [anon_sym_u8] = ACTIONS(2089), - [anon_sym_i8] = ACTIONS(2089), - [anon_sym_u16] = ACTIONS(2089), - [anon_sym_i16] = ACTIONS(2089), - [anon_sym_u32] = ACTIONS(2089), - [anon_sym_i32] = ACTIONS(2089), - [anon_sym_u64] = ACTIONS(2089), - [anon_sym_i64] = ACTIONS(2089), - [anon_sym_u128] = ACTIONS(2089), - [anon_sym_i128] = ACTIONS(2089), - [anon_sym_isize] = ACTIONS(2089), - [anon_sym_usize] = ACTIONS(2089), - [anon_sym_f32] = ACTIONS(2089), - [anon_sym_f64] = ACTIONS(2089), - [anon_sym_bool] = ACTIONS(2089), - [anon_sym_str] = ACTIONS(2089), - [anon_sym_char] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_default] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [anon_sym_fn] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_impl] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_loop] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_mod] = ACTIONS(2089), - [anon_sym_pub] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_struct] = ACTIONS(2089), - [anon_sym_trait] = ACTIONS(2089), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_union] = ACTIONS(2089), - [anon_sym_unsafe] = ACTIONS(2089), - [anon_sym_use] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_POUND] = ACTIONS(2087), - [anon_sym_BANG] = ACTIONS(2087), - [anon_sym_extern] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2087), - [anon_sym_COLON_COLON] = ACTIONS(2087), - [anon_sym_AMP] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_PIPE] = ACTIONS(2087), - [anon_sym_yield] = ACTIONS(2089), - [anon_sym_move] = ACTIONS(2089), - [sym_integer_literal] = ACTIONS(2087), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2087), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2089), - [sym_super] = ACTIONS(2089), - [sym_crate] = ACTIONS(2089), - [sym_metavariable] = ACTIONS(2087), - [sym_raw_string_literal] = ACTIONS(2087), - [sym_float_literal] = ACTIONS(2087), + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2040), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_RPAREN] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2048), + [anon_sym_RBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2051), + [anon_sym_RBRACK] = ACTIONS(2046), + [anon_sym_DOLLAR] = ACTIONS(2054), + [anon_sym_u8] = ACTIONS(2040), + [anon_sym_i8] = ACTIONS(2040), + [anon_sym_u16] = ACTIONS(2040), + [anon_sym_i16] = ACTIONS(2040), + [anon_sym_u32] = ACTIONS(2040), + [anon_sym_i32] = ACTIONS(2040), + [anon_sym_u64] = ACTIONS(2040), + [anon_sym_i64] = ACTIONS(2040), + [anon_sym_u128] = ACTIONS(2040), + [anon_sym_i128] = ACTIONS(2040), + [anon_sym_isize] = ACTIONS(2040), + [anon_sym_usize] = ACTIONS(2040), + [anon_sym_f32] = ACTIONS(2040), + [anon_sym_f64] = ACTIONS(2040), + [anon_sym_bool] = ACTIONS(2040), + [anon_sym_str] = ACTIONS(2040), + [anon_sym_char] = ACTIONS(2040), + [aux_sym__non_special_token_token1] = ACTIONS(2040), + [anon_sym_SQUOTE] = ACTIONS(2040), + [anon_sym_as] = ACTIONS(2040), + [anon_sym_async] = ACTIONS(2040), + [anon_sym_await] = ACTIONS(2040), + [anon_sym_break] = ACTIONS(2040), + [anon_sym_const] = ACTIONS(2040), + [anon_sym_continue] = ACTIONS(2040), + [anon_sym_default] = ACTIONS(2040), + [anon_sym_enum] = ACTIONS(2040), + [anon_sym_fn] = ACTIONS(2040), + [anon_sym_for] = ACTIONS(2040), + [anon_sym_if] = ACTIONS(2040), + [anon_sym_impl] = ACTIONS(2040), + [anon_sym_let] = ACTIONS(2040), + [anon_sym_loop] = ACTIONS(2040), + [anon_sym_match] = ACTIONS(2040), + [anon_sym_mod] = ACTIONS(2040), + [anon_sym_pub] = ACTIONS(2040), + [anon_sym_return] = ACTIONS(2040), + [anon_sym_static] = ACTIONS(2040), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_trait] = ACTIONS(2040), + [anon_sym_type] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2040), + [anon_sym_unsafe] = ACTIONS(2040), + [anon_sym_use] = ACTIONS(2040), + [anon_sym_where] = ACTIONS(2040), + [anon_sym_while] = ACTIONS(2040), + [sym_mutable_specifier] = ACTIONS(2040), + [sym_integer_literal] = ACTIONS(2057), + [aux_sym_string_literal_token1] = ACTIONS(2060), + [sym_char_literal] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2040), + [sym_super] = ACTIONS(2040), + [sym_crate] = ACTIONS(2040), + [sym_raw_string_literal] = ACTIONS(2057), + [sym_float_literal] = ACTIONS(2057), [sym_block_comment] = ACTIONS(3), }, [493] = { - [ts_builtin_sym_end] = ACTIONS(2091), - [sym_identifier] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2091), - [anon_sym_macro_rules_BANG] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_RBRACE] = ACTIONS(2091), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2091), - [anon_sym_u8] = ACTIONS(2093), - [anon_sym_i8] = ACTIONS(2093), - [anon_sym_u16] = ACTIONS(2093), - [anon_sym_i16] = ACTIONS(2093), - [anon_sym_u32] = ACTIONS(2093), - [anon_sym_i32] = ACTIONS(2093), - [anon_sym_u64] = ACTIONS(2093), - [anon_sym_i64] = ACTIONS(2093), - [anon_sym_u128] = ACTIONS(2093), - [anon_sym_i128] = ACTIONS(2093), - [anon_sym_isize] = ACTIONS(2093), - [anon_sym_usize] = ACTIONS(2093), - [anon_sym_f32] = ACTIONS(2093), - [anon_sym_f64] = ACTIONS(2093), - [anon_sym_bool] = ACTIONS(2093), - [anon_sym_str] = ACTIONS(2093), - [anon_sym_char] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_impl] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_loop] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_mod] = ACTIONS(2093), - [anon_sym_pub] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_trait] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_union] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_use] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2091), - [anon_sym_BANG] = ACTIONS(2091), - [anon_sym_extern] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2091), - [anon_sym_COLON_COLON] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2091), - [anon_sym_DOT_DOT] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(2091), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_move] = ACTIONS(2093), - [sym_integer_literal] = ACTIONS(2091), - [aux_sym_string_literal_token1] = ACTIONS(2091), - [sym_char_literal] = ACTIONS(2091), - [anon_sym_true] = ACTIONS(2093), - [anon_sym_false] = ACTIONS(2093), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_crate] = ACTIONS(2093), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2091), - [sym_float_literal] = ACTIONS(2091), + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_RBRACK] = ACTIONS(2072), + [anon_sym_DOLLAR] = ACTIONS(2080), + [anon_sym_u8] = ACTIONS(2066), + [anon_sym_i8] = ACTIONS(2066), + [anon_sym_u16] = ACTIONS(2066), + [anon_sym_i16] = ACTIONS(2066), + [anon_sym_u32] = ACTIONS(2066), + [anon_sym_i32] = ACTIONS(2066), + [anon_sym_u64] = ACTIONS(2066), + [anon_sym_i64] = ACTIONS(2066), + [anon_sym_u128] = ACTIONS(2066), + [anon_sym_i128] = ACTIONS(2066), + [anon_sym_isize] = ACTIONS(2066), + [anon_sym_usize] = ACTIONS(2066), + [anon_sym_f32] = ACTIONS(2066), + [anon_sym_f64] = ACTIONS(2066), + [anon_sym_bool] = ACTIONS(2066), + [anon_sym_str] = ACTIONS(2066), + [anon_sym_char] = ACTIONS(2066), + [aux_sym__non_special_token_token1] = ACTIONS(2066), + [anon_sym_SQUOTE] = ACTIONS(2066), + [anon_sym_as] = ACTIONS(2066), + [anon_sym_async] = ACTIONS(2066), + [anon_sym_await] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_default] = ACTIONS(2066), + [anon_sym_enum] = ACTIONS(2066), + [anon_sym_fn] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_impl] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_mod] = ACTIONS(2066), + [anon_sym_pub] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_static] = ACTIONS(2066), + [anon_sym_struct] = ACTIONS(2066), + [anon_sym_trait] = ACTIONS(2066), + [anon_sym_type] = ACTIONS(2066), + [anon_sym_union] = ACTIONS(2066), + [anon_sym_unsafe] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_where] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [sym_mutable_specifier] = ACTIONS(2066), + [sym_integer_literal] = ACTIONS(2083), + [aux_sym_string_literal_token1] = ACTIONS(2086), + [sym_char_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2066), + [sym_super] = ACTIONS(2066), + [sym_crate] = ACTIONS(2066), + [sym_metavariable] = ACTIONS(2092), + [sym_raw_string_literal] = ACTIONS(2083), + [sym_float_literal] = ACTIONS(2083), [sym_block_comment] = ACTIONS(3), }, [494] = { - [sym__token_pattern] = STATE(268), - [sym_token_tree_pattern] = STATE(268), - [sym_token_binding_pattern] = STATE(268), - [sym_token_repetition_pattern] = STATE(268), - [sym__never_special_token] = STATE(268), - [sym__literal] = STATE(268), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_pattern_repeat1] = STATE(268), - [sym_identifier] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(1152), - [anon_sym_RPAREN] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_u8] = ACTIONS(2095), - [anon_sym_i8] = ACTIONS(2095), - [anon_sym_u16] = ACTIONS(2095), - [anon_sym_i16] = ACTIONS(2095), - [anon_sym_u32] = ACTIONS(2095), - [anon_sym_i32] = ACTIONS(2095), - [anon_sym_u64] = ACTIONS(2095), - [anon_sym_i64] = ACTIONS(2095), - [anon_sym_u128] = ACTIONS(2095), - [anon_sym_i128] = ACTIONS(2095), - [anon_sym_isize] = ACTIONS(2095), - [anon_sym_usize] = ACTIONS(2095), - [anon_sym_f32] = ACTIONS(2095), - [anon_sym_f64] = ACTIONS(2095), - [anon_sym_bool] = ACTIONS(2095), - [anon_sym_str] = ACTIONS(2095), - [anon_sym_char] = ACTIONS(2095), - [aux_sym__never_special_token_token1] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), - [anon_sym_as] = ACTIONS(2095), - [anon_sym_async] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2095), - [anon_sym_break] = ACTIONS(2095), - [anon_sym_const] = ACTIONS(2095), - [anon_sym_continue] = ACTIONS(2095), - [anon_sym_default] = ACTIONS(2095), - [anon_sym_enum] = ACTIONS(2095), - [anon_sym_fn] = ACTIONS(2095), - [anon_sym_for] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_impl] = ACTIONS(2095), - [anon_sym_let] = ACTIONS(2095), - [anon_sym_loop] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2095), - [anon_sym_mod] = ACTIONS(2095), - [anon_sym_pub] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2095), - [anon_sym_static] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2095), - [anon_sym_trait] = ACTIONS(2095), - [anon_sym_type] = ACTIONS(2095), - [anon_sym_union] = ACTIONS(2095), - [anon_sym_unsafe] = ACTIONS(2095), - [anon_sym_use] = ACTIONS(2095), - [anon_sym_where] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2095), - [sym_mutable_specifier] = ACTIONS(2095), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2095), - [sym_super] = ACTIONS(2095), - [sym_crate] = ACTIONS(2095), - [sym_metavariable] = ACTIONS(1168), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [sym__token_pattern] = STATE(249), + [sym_token_tree_pattern] = STATE(249), + [sym_token_binding_pattern] = STATE(249), + [sym_token_repetition_pattern] = STATE(249), + [sym__literal] = STATE(249), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_RBRACK] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2036), + [anon_sym_i8] = ACTIONS(2036), + [anon_sym_u16] = ACTIONS(2036), + [anon_sym_i16] = ACTIONS(2036), + [anon_sym_u32] = ACTIONS(2036), + [anon_sym_i32] = ACTIONS(2036), + [anon_sym_u64] = ACTIONS(2036), + [anon_sym_i64] = ACTIONS(2036), + [anon_sym_u128] = ACTIONS(2036), + [anon_sym_i128] = ACTIONS(2036), + [anon_sym_isize] = ACTIONS(2036), + [anon_sym_usize] = ACTIONS(2036), + [anon_sym_f32] = ACTIONS(2036), + [anon_sym_f64] = ACTIONS(2036), + [anon_sym_bool] = ACTIONS(2036), + [anon_sym_str] = ACTIONS(2036), + [anon_sym_char] = ACTIONS(2036), + [aux_sym__non_special_token_token1] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_as] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_fn] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_impl] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_loop] = ACTIONS(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_mod] = ACTIONS(2036), + [anon_sym_pub] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_trait] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_unsafe] = ACTIONS(2036), + [anon_sym_use] = ACTIONS(2036), + [anon_sym_where] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [sym_mutable_specifier] = ACTIONS(2036), + [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(1000), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_crate] = ACTIONS(2036), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [495] = { - [ts_builtin_sym_end] = ACTIONS(2099), + [sym__token_pattern] = STATE(500), + [sym_token_tree_pattern] = STATE(500), + [sym_token_binding_pattern] = STATE(500), + [sym_token_repetition_pattern] = STATE(500), + [sym__literal] = STATE(500), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2097), + [anon_sym_i8] = ACTIONS(2097), + [anon_sym_u16] = ACTIONS(2097), + [anon_sym_i16] = ACTIONS(2097), + [anon_sym_u32] = ACTIONS(2097), + [anon_sym_i32] = ACTIONS(2097), + [anon_sym_u64] = ACTIONS(2097), + [anon_sym_i64] = ACTIONS(2097), + [anon_sym_u128] = ACTIONS(2097), + [anon_sym_i128] = ACTIONS(2097), + [anon_sym_isize] = ACTIONS(2097), + [anon_sym_usize] = ACTIONS(2097), + [anon_sym_f32] = ACTIONS(2097), + [anon_sym_f64] = ACTIONS(2097), + [anon_sym_bool] = ACTIONS(2097), + [anon_sym_str] = ACTIONS(2097), + [anon_sym_char] = ACTIONS(2097), + [aux_sym__non_special_token_token1] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_as] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_await] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [anon_sym_fn] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_impl] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_loop] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_mod] = ACTIONS(2097), + [anon_sym_pub] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_struct] = ACTIONS(2097), + [anon_sym_trait] = ACTIONS(2097), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_union] = ACTIONS(2097), + [anon_sym_unsafe] = ACTIONS(2097), + [anon_sym_use] = ACTIONS(2097), + [anon_sym_where] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [sym_mutable_specifier] = ACTIONS(2097), + [sym_integer_literal] = ACTIONS(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(1000), + [sym_self] = ACTIONS(2097), + [sym_super] = ACTIONS(2097), + [sym_crate] = ACTIONS(2097), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [496] = { + [sym__token_pattern] = STATE(249), + [sym_token_tree_pattern] = STATE(249), + [sym_token_binding_pattern] = STATE(249), + [sym_token_repetition_pattern] = STATE(249), + [sym__literal] = STATE(249), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2036), + [anon_sym_i8] = ACTIONS(2036), + [anon_sym_u16] = ACTIONS(2036), + [anon_sym_i16] = ACTIONS(2036), + [anon_sym_u32] = ACTIONS(2036), + [anon_sym_i32] = ACTIONS(2036), + [anon_sym_u64] = ACTIONS(2036), + [anon_sym_i64] = ACTIONS(2036), + [anon_sym_u128] = ACTIONS(2036), + [anon_sym_i128] = ACTIONS(2036), + [anon_sym_isize] = ACTIONS(2036), + [anon_sym_usize] = ACTIONS(2036), + [anon_sym_f32] = ACTIONS(2036), + [anon_sym_f64] = ACTIONS(2036), + [anon_sym_bool] = ACTIONS(2036), + [anon_sym_str] = ACTIONS(2036), + [anon_sym_char] = ACTIONS(2036), + [aux_sym__non_special_token_token1] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_as] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_fn] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_impl] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_loop] = ACTIONS(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_mod] = ACTIONS(2036), + [anon_sym_pub] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_trait] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_unsafe] = ACTIONS(2036), + [anon_sym_use] = ACTIONS(2036), + [anon_sym_where] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [sym_mutable_specifier] = ACTIONS(2036), + [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(1000), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_crate] = ACTIONS(2036), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [497] = { + [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(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(496), [sym_identifier] = ACTIONS(2101), - [anon_sym_SEMI] = ACTIONS(2099), - [anon_sym_macro_rules_BANG] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2014), [anon_sym_RBRACE] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), [anon_sym_u8] = ACTIONS(2101), [anon_sym_i8] = ACTIONS(2101), [anon_sym_u16] = ACTIONS(2101), @@ -59865,8 +60001,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2101), [anon_sym_str] = ACTIONS(2101), [anon_sym_char] = ACTIONS(2101), + [aux_sym__non_special_token_token1] = ACTIONS(2101), [anon_sym_SQUOTE] = ACTIONS(2101), + [anon_sym_as] = ACTIONS(2101), [anon_sym_async] = ACTIONS(2101), + [anon_sym_await] = ACTIONS(2101), [anon_sym_break] = ACTIONS(2101), [anon_sym_const] = ACTIONS(2101), [anon_sym_continue] = ACTIONS(2101), @@ -59889,48 +60028,38 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2101), [anon_sym_unsafe] = ACTIONS(2101), [anon_sym_use] = ACTIONS(2101), + [anon_sym_where] = ACTIONS(2101), [anon_sym_while] = ACTIONS(2101), - [anon_sym_POUND] = ACTIONS(2099), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_extern] = ACTIONS(2101), - [anon_sym_LT] = ACTIONS(2099), - [anon_sym_COLON_COLON] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_DOT_DOT] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2099), - [anon_sym_yield] = ACTIONS(2101), - [anon_sym_move] = ACTIONS(2101), - [sym_integer_literal] = ACTIONS(2099), - [aux_sym_string_literal_token1] = ACTIONS(2099), - [sym_char_literal] = ACTIONS(2099), - [anon_sym_true] = ACTIONS(2101), - [anon_sym_false] = ACTIONS(2101), - [sym_line_comment] = ACTIONS(3), + [sym_mutable_specifier] = ACTIONS(2101), + [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(1000), [sym_self] = ACTIONS(2101), [sym_super] = ACTIONS(2101), [sym_crate] = ACTIONS(2101), - [sym_metavariable] = ACTIONS(2099), - [sym_raw_string_literal] = ACTIONS(2099), - [sym_float_literal] = ACTIONS(2099), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, - [496] = { - [sym__token_pattern] = STATE(271), - [sym_token_tree_pattern] = STATE(271), - [sym_token_binding_pattern] = STATE(271), - [sym_token_repetition_pattern] = STATE(271), - [sym__never_special_token] = STATE(271), - [sym__literal] = STATE(271), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_pattern_repeat1] = STATE(271), + [498] = { + [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(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(494), [sym_identifier] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1160), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_RBRACK] = ACTIONS(2099), + [anon_sym_DOLLAR] = ACTIONS(2018), [anon_sym_u8] = ACTIONS(2103), [anon_sym_i8] = ACTIONS(2103), [anon_sym_u16] = ACTIONS(2103), @@ -59948,7 +60077,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2103), [anon_sym_str] = ACTIONS(2103), [anon_sym_char] = ACTIONS(2103), - [aux_sym__never_special_token_token1] = ACTIONS(2103), + [aux_sym__non_special_token_token1] = ACTIONS(2103), [anon_sym_SQUOTE] = ACTIONS(2103), [anon_sym_as] = ACTIONS(2103), [anon_sym_async] = ACTIONS(2103), @@ -59978,260 +60107,182 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2103), [anon_sym_while] = ACTIONS(2103), [sym_mutable_specifier] = ACTIONS(2103), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), + [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(1000), [sym_self] = ACTIONS(2103), [sym_super] = ACTIONS(2103), [sym_crate] = ACTIONS(2103), - [sym_metavariable] = ACTIONS(1168), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), - [sym_block_comment] = ACTIONS(3), - }, - [497] = { - [sym__token_pattern] = STATE(275), - [sym_token_tree_pattern] = STATE(275), - [sym_token_binding_pattern] = STATE(275), - [sym_token_repetition_pattern] = STATE(275), - [sym__never_special_token] = STATE(275), - [sym__literal] = STATE(275), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_pattern_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_RBRACK] = ACTIONS(2097), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_u8] = ACTIONS(2105), - [anon_sym_i8] = ACTIONS(2105), - [anon_sym_u16] = ACTIONS(2105), - [anon_sym_i16] = ACTIONS(2105), - [anon_sym_u32] = ACTIONS(2105), - [anon_sym_i32] = ACTIONS(2105), - [anon_sym_u64] = ACTIONS(2105), - [anon_sym_i64] = ACTIONS(2105), - [anon_sym_u128] = ACTIONS(2105), - [anon_sym_i128] = ACTIONS(2105), - [anon_sym_isize] = ACTIONS(2105), - [anon_sym_usize] = ACTIONS(2105), - [anon_sym_f32] = ACTIONS(2105), - [anon_sym_f64] = ACTIONS(2105), - [anon_sym_bool] = ACTIONS(2105), - [anon_sym_str] = ACTIONS(2105), - [anon_sym_char] = ACTIONS(2105), - [aux_sym__never_special_token_token1] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [anon_sym_fn] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_impl] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_loop] = ACTIONS(2105), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_mod] = ACTIONS(2105), - [anon_sym_pub] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(2105), - [anon_sym_trait] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_union] = ACTIONS(2105), - [anon_sym_unsafe] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_where] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [sym_mutable_specifier] = ACTIONS(2105), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_crate] = ACTIONS(2105), - [sym_metavariable] = ACTIONS(1168), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), - [sym_block_comment] = ACTIONS(3), - }, - [498] = { - [sym_attribute_item] = STATE(548), - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_macro_invocation] = STATE(2349), - [sym_scoped_identifier] = STATE(1578), - [sym_scoped_type_identifier] = STATE(1974), - [sym_match_arm] = STATE(506), - [sym_last_match_arm] = STATE(2558), - [sym_match_pattern] = STATE(2359), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2070), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_enum_variant_list_repeat1] = STATE(548), - [aux_sym_match_block_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1194), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), - [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(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [499] = { - [sym_attribute_item] = STATE(548), - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_macro_invocation] = STATE(2349), - [sym_scoped_identifier] = STATE(1578), - [sym_scoped_type_identifier] = STATE(1974), - [sym_match_arm] = STATE(506), - [sym_last_match_arm] = STATE(2415), - [sym_match_pattern] = STATE(2359), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2070), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_enum_variant_list_repeat1] = STATE(548), - [aux_sym_match_block_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1194), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), - [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(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym__token_pattern] = STATE(249), + [sym_token_tree_pattern] = STATE(249), + [sym_token_binding_pattern] = STATE(249), + [sym_token_repetition_pattern] = STATE(249), + [sym__literal] = STATE(249), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2036), + [anon_sym_i8] = ACTIONS(2036), + [anon_sym_u16] = ACTIONS(2036), + [anon_sym_i16] = ACTIONS(2036), + [anon_sym_u32] = ACTIONS(2036), + [anon_sym_i32] = ACTIONS(2036), + [anon_sym_u64] = ACTIONS(2036), + [anon_sym_i64] = ACTIONS(2036), + [anon_sym_u128] = ACTIONS(2036), + [anon_sym_i128] = ACTIONS(2036), + [anon_sym_isize] = ACTIONS(2036), + [anon_sym_usize] = ACTIONS(2036), + [anon_sym_f32] = ACTIONS(2036), + [anon_sym_f64] = ACTIONS(2036), + [anon_sym_bool] = ACTIONS(2036), + [anon_sym_str] = ACTIONS(2036), + [anon_sym_char] = ACTIONS(2036), + [aux_sym__non_special_token_token1] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_as] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_fn] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_impl] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_loop] = ACTIONS(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_mod] = ACTIONS(2036), + [anon_sym_pub] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_trait] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_unsafe] = ACTIONS(2036), + [anon_sym_use] = ACTIONS(2036), + [anon_sym_where] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [sym_mutable_specifier] = ACTIONS(2036), + [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(1000), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_crate] = ACTIONS(2036), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [500] = { - [sym_attribute_item] = STATE(548), + [sym__token_pattern] = STATE(249), + [sym_token_tree_pattern] = STATE(249), + [sym_token_binding_pattern] = STATE(249), + [sym_token_repetition_pattern] = STATE(249), + [sym__literal] = STATE(249), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_pattern_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2036), + [anon_sym_i8] = ACTIONS(2036), + [anon_sym_u16] = ACTIONS(2036), + [anon_sym_i16] = ACTIONS(2036), + [anon_sym_u32] = ACTIONS(2036), + [anon_sym_i32] = ACTIONS(2036), + [anon_sym_u64] = ACTIONS(2036), + [anon_sym_i64] = ACTIONS(2036), + [anon_sym_u128] = ACTIONS(2036), + [anon_sym_i128] = ACTIONS(2036), + [anon_sym_isize] = ACTIONS(2036), + [anon_sym_usize] = ACTIONS(2036), + [anon_sym_f32] = ACTIONS(2036), + [anon_sym_f64] = ACTIONS(2036), + [anon_sym_bool] = ACTIONS(2036), + [anon_sym_str] = ACTIONS(2036), + [anon_sym_char] = ACTIONS(2036), + [aux_sym__non_special_token_token1] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_as] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_fn] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_impl] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_loop] = ACTIONS(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_mod] = ACTIONS(2036), + [anon_sym_pub] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_trait] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_unsafe] = ACTIONS(2036), + [anon_sym_use] = ACTIONS(2036), + [anon_sym_where] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [sym_mutable_specifier] = ACTIONS(2036), + [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(1000), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_crate] = ACTIONS(2036), + [sym_metavariable] = ACTIONS(2026), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), + [sym_block_comment] = ACTIONS(3), + }, + [501] = { + [sym_attribute_item] = STATE(547), [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), [sym_macro_invocation] = STATE(2349), [sym_scoped_identifier] = STATE(1578), [sym_scoped_type_identifier] = STATE(1974), - [sym_match_arm] = STATE(506), - [sym_last_match_arm] = STATE(2450), - [sym_match_pattern] = STATE(2359), + [sym_match_arm] = STATE(501), + [sym_match_pattern] = STATE(2349), [sym_const_block] = STATE(1473), [sym__pattern] = STATE(2070), [sym_tuple_pattern] = STATE(1473), @@ -60249,893 +60300,808 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1421), [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), - [aux_sym_enum_variant_list_repeat1] = STATE(548), - [aux_sym_match_block_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1194), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), - [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(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [501] = { - [sym__never_special_token] = STATE(520), - [sym_delim_token_tree] = STATE(520), - [sym__delim_tokens] = STATE(520), - [sym__non_delim_token] = STATE(520), - [sym__literal] = STATE(520), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(520), + [aux_sym_enum_variant_list_repeat1] = STATE(547), + [aux_sym_match_block_repeat1] = STATE(501), [sym_identifier] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2110), [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2115), - [anon_sym_DOLLAR] = ACTIONS(2117), - [anon_sym_u8] = ACTIONS(2107), - [anon_sym_i8] = ACTIONS(2107), - [anon_sym_u16] = ACTIONS(2107), - [anon_sym_i16] = ACTIONS(2107), - [anon_sym_u32] = ACTIONS(2107), - [anon_sym_i32] = ACTIONS(2107), - [anon_sym_u64] = ACTIONS(2107), - [anon_sym_i64] = ACTIONS(2107), - [anon_sym_u128] = ACTIONS(2107), - [anon_sym_i128] = ACTIONS(2107), - [anon_sym_isize] = ACTIONS(2107), - [anon_sym_usize] = ACTIONS(2107), - [anon_sym_f32] = ACTIONS(2107), - [anon_sym_f64] = ACTIONS(2107), - [anon_sym_bool] = ACTIONS(2107), - [anon_sym_str] = ACTIONS(2107), - [anon_sym_char] = ACTIONS(2107), - [aux_sym__never_special_token_token1] = ACTIONS(2107), - [anon_sym_SQUOTE] = ACTIONS(2107), - [anon_sym_as] = ACTIONS(2107), - [anon_sym_async] = ACTIONS(2107), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_const] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2107), - [anon_sym_default] = ACTIONS(2107), - [anon_sym_enum] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(2107), - [anon_sym_for] = ACTIONS(2107), - [anon_sym_if] = ACTIONS(2107), - [anon_sym_impl] = ACTIONS(2107), - [anon_sym_let] = ACTIONS(2107), - [anon_sym_loop] = ACTIONS(2107), - [anon_sym_match] = ACTIONS(2107), - [anon_sym_mod] = ACTIONS(2107), - [anon_sym_pub] = ACTIONS(2107), - [anon_sym_return] = ACTIONS(2107), - [anon_sym_static] = ACTIONS(2107), - [anon_sym_struct] = ACTIONS(2107), - [anon_sym_trait] = ACTIONS(2107), - [anon_sym_type] = ACTIONS(2107), - [anon_sym_union] = ACTIONS(2107), - [anon_sym_unsafe] = ACTIONS(2107), - [anon_sym_use] = ACTIONS(2107), - [anon_sym_where] = ACTIONS(2107), - [anon_sym_while] = ACTIONS(2107), - [sym_mutable_specifier] = ACTIONS(2107), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2107), - [sym_super] = ACTIONS(2107), - [sym_crate] = ACTIONS(2107), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [anon_sym_u8] = ACTIONS(2116), + [anon_sym_i8] = ACTIONS(2116), + [anon_sym_u16] = ACTIONS(2116), + [anon_sym_i16] = ACTIONS(2116), + [anon_sym_u32] = ACTIONS(2116), + [anon_sym_i32] = ACTIONS(2116), + [anon_sym_u64] = ACTIONS(2116), + [anon_sym_i64] = ACTIONS(2116), + [anon_sym_u128] = ACTIONS(2116), + [anon_sym_i128] = ACTIONS(2116), + [anon_sym_isize] = ACTIONS(2116), + [anon_sym_usize] = ACTIONS(2116), + [anon_sym_f32] = ACTIONS(2116), + [anon_sym_f64] = ACTIONS(2116), + [anon_sym_bool] = ACTIONS(2116), + [anon_sym_str] = ACTIONS(2116), + [anon_sym_char] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2119), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_union] = ACTIONS(2122), + [anon_sym_POUND] = ACTIONS(2125), + [anon_sym_ref] = ACTIONS(2128), + [anon_sym_LT] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2134), + [anon_sym__] = ACTIONS(2137), + [anon_sym_AMP] = ACTIONS(2140), + [sym_mutable_specifier] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2149), + [sym_integer_literal] = ACTIONS(2152), + [aux_sym_string_literal_token1] = ACTIONS(2155), + [sym_char_literal] = ACTIONS(2152), + [anon_sym_true] = ACTIONS(2158), + [anon_sym_false] = ACTIONS(2158), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2164), + [sym_raw_string_literal] = ACTIONS(2152), + [sym_float_literal] = ACTIONS(2152), [sym_block_comment] = ACTIONS(3), }, [502] = { - [sym__never_special_token] = STATE(303), - [sym_delim_token_tree] = STATE(303), - [sym__delim_tokens] = STATE(303), - [sym__non_delim_token] = STATE(303), - [sym__literal] = STATE(303), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [aux_sym__never_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_delim_token_tree] = STATE(522), + [sym__delim_tokens] = STATE(522), + [sym__non_delim_token] = STATE(522), + [sym__literal] = STATE(522), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(522), + [sym_identifier] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2177), + [anon_sym_u8] = ACTIONS(2167), + [anon_sym_i8] = ACTIONS(2167), + [anon_sym_u16] = ACTIONS(2167), + [anon_sym_i16] = ACTIONS(2167), + [anon_sym_u32] = ACTIONS(2167), + [anon_sym_i32] = ACTIONS(2167), + [anon_sym_u64] = ACTIONS(2167), + [anon_sym_i64] = ACTIONS(2167), + [anon_sym_u128] = ACTIONS(2167), + [anon_sym_i128] = ACTIONS(2167), + [anon_sym_isize] = ACTIONS(2167), + [anon_sym_usize] = ACTIONS(2167), + [anon_sym_f32] = ACTIONS(2167), + [anon_sym_f64] = ACTIONS(2167), + [anon_sym_bool] = ACTIONS(2167), + [anon_sym_str] = ACTIONS(2167), + [anon_sym_char] = ACTIONS(2167), + [aux_sym__non_special_token_token1] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_default] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [anon_sym_fn] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_impl] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_loop] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_mod] = ACTIONS(2167), + [anon_sym_pub] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_trait] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_union] = ACTIONS(2167), + [anon_sym_unsafe] = ACTIONS(2167), + [anon_sym_use] = ACTIONS(2167), + [anon_sym_where] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [sym_mutable_specifier] = ACTIONS(2167), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_crate] = ACTIONS(2167), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [503] = { - [sym__never_special_token] = STATE(509), - [sym_delim_token_tree] = STATE(509), - [sym__delim_tokens] = STATE(509), - [sym__non_delim_token] = STATE(509), - [sym__literal] = STATE(509), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2133), - [anon_sym_u8] = ACTIONS(2131), - [anon_sym_i8] = ACTIONS(2131), - [anon_sym_u16] = ACTIONS(2131), - [anon_sym_i16] = ACTIONS(2131), - [anon_sym_u32] = ACTIONS(2131), - [anon_sym_i32] = ACTIONS(2131), - [anon_sym_u64] = ACTIONS(2131), - [anon_sym_i64] = ACTIONS(2131), - [anon_sym_u128] = ACTIONS(2131), - [anon_sym_i128] = ACTIONS(2131), - [anon_sym_isize] = ACTIONS(2131), - [anon_sym_usize] = ACTIONS(2131), - [anon_sym_f32] = ACTIONS(2131), - [anon_sym_f64] = ACTIONS(2131), - [anon_sym_bool] = ACTIONS(2131), - [anon_sym_str] = ACTIONS(2131), - [anon_sym_char] = ACTIONS(2131), - [aux_sym__never_special_token_token1] = ACTIONS(2131), - [anon_sym_SQUOTE] = ACTIONS(2131), - [anon_sym_as] = ACTIONS(2131), - [anon_sym_async] = ACTIONS(2131), - [anon_sym_await] = ACTIONS(2131), - [anon_sym_break] = ACTIONS(2131), - [anon_sym_const] = ACTIONS(2131), - [anon_sym_continue] = ACTIONS(2131), - [anon_sym_default] = ACTIONS(2131), - [anon_sym_enum] = ACTIONS(2131), - [anon_sym_fn] = ACTIONS(2131), - [anon_sym_for] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2131), - [anon_sym_impl] = ACTIONS(2131), - [anon_sym_let] = ACTIONS(2131), - [anon_sym_loop] = ACTIONS(2131), - [anon_sym_match] = ACTIONS(2131), - [anon_sym_mod] = ACTIONS(2131), - [anon_sym_pub] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2131), - [anon_sym_static] = ACTIONS(2131), - [anon_sym_struct] = ACTIONS(2131), - [anon_sym_trait] = ACTIONS(2131), - [anon_sym_type] = ACTIONS(2131), - [anon_sym_union] = ACTIONS(2131), - [anon_sym_unsafe] = ACTIONS(2131), - [anon_sym_use] = ACTIONS(2131), - [anon_sym_where] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2131), - [sym_mutable_specifier] = ACTIONS(2131), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2131), - [sym_super] = ACTIONS(2131), - [sym_crate] = ACTIONS(2131), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [504] = { - [sym__never_special_token] = STATE(518), - [sym_delim_token_tree] = STATE(518), - [sym__delim_tokens] = STATE(518), - [sym__non_delim_token] = STATE(518), - [sym__literal] = STATE(518), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(518), - [sym_identifier] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2137), - [anon_sym_u8] = ACTIONS(2135), - [anon_sym_i8] = ACTIONS(2135), - [anon_sym_u16] = ACTIONS(2135), - [anon_sym_i16] = ACTIONS(2135), - [anon_sym_u32] = ACTIONS(2135), - [anon_sym_i32] = ACTIONS(2135), - [anon_sym_u64] = ACTIONS(2135), - [anon_sym_i64] = ACTIONS(2135), - [anon_sym_u128] = ACTIONS(2135), - [anon_sym_i128] = ACTIONS(2135), - [anon_sym_isize] = ACTIONS(2135), - [anon_sym_usize] = ACTIONS(2135), - [anon_sym_f32] = ACTIONS(2135), - [anon_sym_f64] = ACTIONS(2135), - [anon_sym_bool] = ACTIONS(2135), - [anon_sym_str] = ACTIONS(2135), - [anon_sym_char] = ACTIONS(2135), - [aux_sym__never_special_token_token1] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_as] = ACTIONS(2135), - [anon_sym_async] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2135), - [anon_sym_break] = ACTIONS(2135), - [anon_sym_const] = ACTIONS(2135), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_default] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(2135), - [anon_sym_fn] = ACTIONS(2135), - [anon_sym_for] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_impl] = ACTIONS(2135), - [anon_sym_let] = ACTIONS(2135), - [anon_sym_loop] = ACTIONS(2135), - [anon_sym_match] = ACTIONS(2135), - [anon_sym_mod] = ACTIONS(2135), - [anon_sym_pub] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2135), - [anon_sym_static] = ACTIONS(2135), - [anon_sym_struct] = ACTIONS(2135), - [anon_sym_trait] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_union] = ACTIONS(2135), - [anon_sym_unsafe] = ACTIONS(2135), - [anon_sym_use] = ACTIONS(2135), - [anon_sym_where] = ACTIONS(2135), - [anon_sym_while] = ACTIONS(2135), - [sym_mutable_specifier] = ACTIONS(2135), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2135), - [sym_super] = ACTIONS(2135), - [sym_crate] = ACTIONS(2135), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_delim_token_tree] = STATE(521), + [sym__delim_tokens] = STATE(521), + [sym__non_delim_token] = STATE(521), + [sym__literal] = STATE(521), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2193), + [anon_sym_u8] = ACTIONS(2191), + [anon_sym_i8] = ACTIONS(2191), + [anon_sym_u16] = ACTIONS(2191), + [anon_sym_i16] = ACTIONS(2191), + [anon_sym_u32] = ACTIONS(2191), + [anon_sym_i32] = ACTIONS(2191), + [anon_sym_u64] = ACTIONS(2191), + [anon_sym_i64] = ACTIONS(2191), + [anon_sym_u128] = ACTIONS(2191), + [anon_sym_i128] = ACTIONS(2191), + [anon_sym_isize] = ACTIONS(2191), + [anon_sym_usize] = ACTIONS(2191), + [anon_sym_f32] = ACTIONS(2191), + [anon_sym_f64] = ACTIONS(2191), + [anon_sym_bool] = ACTIONS(2191), + [anon_sym_str] = ACTIONS(2191), + [anon_sym_char] = ACTIONS(2191), + [aux_sym__non_special_token_token1] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_fn] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_impl] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_loop] = ACTIONS(2191), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_mod] = ACTIONS(2191), + [anon_sym_pub] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_trait] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [anon_sym_unsafe] = ACTIONS(2191), + [anon_sym_use] = ACTIONS(2191), + [anon_sym_where] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [sym_mutable_specifier] = ACTIONS(2191), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_crate] = ACTIONS(2191), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [505] = { - [sym__never_special_token] = STATE(303), - [sym_delim_token_tree] = STATE(303), - [sym__delim_tokens] = STATE(303), - [sym__non_delim_token] = STATE(303), - [sym__literal] = STATE(303), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2139), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [aux_sym__never_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2195), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [506] = { - [sym_attribute_item] = STATE(547), - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_macro_invocation] = STATE(2349), - [sym_scoped_identifier] = STATE(1578), - [sym_scoped_type_identifier] = STATE(1974), - [sym_match_arm] = STATE(506), - [sym_match_pattern] = STATE(2349), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2070), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [aux_sym_enum_variant_list_repeat1] = STATE(547), - [aux_sym_match_block_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2150), - [anon_sym_i8] = ACTIONS(2150), - [anon_sym_u16] = ACTIONS(2150), - [anon_sym_i16] = ACTIONS(2150), - [anon_sym_u32] = ACTIONS(2150), - [anon_sym_i32] = ACTIONS(2150), - [anon_sym_u64] = ACTIONS(2150), - [anon_sym_i64] = ACTIONS(2150), - [anon_sym_u128] = ACTIONS(2150), - [anon_sym_i128] = ACTIONS(2150), - [anon_sym_isize] = ACTIONS(2150), - [anon_sym_usize] = ACTIONS(2150), - [anon_sym_f32] = ACTIONS(2150), - [anon_sym_f64] = ACTIONS(2150), - [anon_sym_bool] = ACTIONS(2150), - [anon_sym_str] = ACTIONS(2150), - [anon_sym_char] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2153), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_union] = ACTIONS(2156), - [anon_sym_POUND] = ACTIONS(2159), - [anon_sym_ref] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2165), - [anon_sym_COLON_COLON] = ACTIONS(2168), - [anon_sym__] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2174), - [sym_mutable_specifier] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2183), - [sym_integer_literal] = ACTIONS(2186), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2186), - [anon_sym_true] = ACTIONS(2192), - [anon_sym_false] = ACTIONS(2192), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_metavariable] = ACTIONS(2198), - [sym_raw_string_literal] = ACTIONS(2186), - [sym_float_literal] = ACTIONS(2186), + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [507] = { - [sym__never_special_token] = STATE(303), - [sym_delim_token_tree] = STATE(303), - [sym__delim_tokens] = STATE(303), - [sym__non_delim_token] = STATE(303), - [sym__literal] = STATE(303), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [aux_sym__never_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_token_tree] = STATE(538), + [sym_token_repetition] = STATE(538), + [sym__literal] = STATE(538), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(538), + [sym_identifier] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2197), + [anon_sym_i8] = ACTIONS(2197), + [anon_sym_u16] = ACTIONS(2197), + [anon_sym_i16] = ACTIONS(2197), + [anon_sym_u32] = ACTIONS(2197), + [anon_sym_i32] = ACTIONS(2197), + [anon_sym_u64] = ACTIONS(2197), + [anon_sym_i64] = ACTIONS(2197), + [anon_sym_u128] = ACTIONS(2197), + [anon_sym_i128] = ACTIONS(2197), + [anon_sym_isize] = ACTIONS(2197), + [anon_sym_usize] = ACTIONS(2197), + [anon_sym_f32] = ACTIONS(2197), + [anon_sym_f64] = ACTIONS(2197), + [anon_sym_bool] = ACTIONS(2197), + [anon_sym_str] = ACTIONS(2197), + [anon_sym_char] = ACTIONS(2197), + [aux_sym__non_special_token_token1] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [anon_sym_fn] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_impl] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_mod] = ACTIONS(2197), + [anon_sym_pub] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_struct] = ACTIONS(2197), + [anon_sym_trait] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_union] = ACTIONS(2197), + [anon_sym_unsafe] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_where] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [sym_mutable_specifier] = ACTIONS(2197), + [sym_integer_literal] = ACTIONS(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(1000), + [sym_self] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_crate] = ACTIONS(2197), + [sym_metavariable] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [508] = { - [sym_token_tree] = STATE(533), - [sym_token_repetition] = STATE(533), - [sym__never_special_token] = STATE(533), - [sym__literal] = STATE(533), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_repeat1] = STATE(533), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2211), - [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__never_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(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_metavariable] = ACTIONS(2213), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [509] = { - [sym__never_special_token] = STATE(303), - [sym_delim_token_tree] = STATE(303), - [sym__delim_tokens] = STATE(303), - [sym__non_delim_token] = STATE(303), - [sym__literal] = STATE(303), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [aux_sym__never_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [510] = { - [sym__never_special_token] = STATE(303), - [sym_delim_token_tree] = STATE(303), - [sym__delim_tokens] = STATE(303), - [sym__non_delim_token] = STATE(303), - [sym__literal] = STATE(303), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [aux_sym__never_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_token_tree] = STATE(539), + [sym_token_repetition] = STATE(539), + [sym__literal] = STATE(539), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_RBRACK] = ACTIONS(2215), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2213), + [anon_sym_i8] = ACTIONS(2213), + [anon_sym_u16] = ACTIONS(2213), + [anon_sym_i16] = ACTIONS(2213), + [anon_sym_u32] = ACTIONS(2213), + [anon_sym_i32] = ACTIONS(2213), + [anon_sym_u64] = ACTIONS(2213), + [anon_sym_i64] = ACTIONS(2213), + [anon_sym_u128] = ACTIONS(2213), + [anon_sym_i128] = ACTIONS(2213), + [anon_sym_isize] = ACTIONS(2213), + [anon_sym_usize] = ACTIONS(2213), + [anon_sym_f32] = ACTIONS(2213), + [anon_sym_f64] = ACTIONS(2213), + [anon_sym_bool] = ACTIONS(2213), + [anon_sym_str] = ACTIONS(2213), + [anon_sym_char] = ACTIONS(2213), + [aux_sym__non_special_token_token1] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_as] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_default] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_fn] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_impl] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_loop] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_mod] = ACTIONS(2213), + [anon_sym_pub] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_struct] = ACTIONS(2213), + [anon_sym_trait] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_union] = ACTIONS(2213), + [anon_sym_unsafe] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2213), + [anon_sym_where] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [sym_mutable_specifier] = ACTIONS(2213), + [sym_integer_literal] = ACTIONS(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(1000), + [sym_self] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_crate] = ACTIONS(2213), + [sym_metavariable] = ACTIONS(2217), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [511] = { [sym_token_tree] = STATE(540), [sym_token_repetition] = STATE(540), - [sym__never_special_token] = STATE(540), [sym__literal] = STATE(540), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), [aux_sym_token_tree_repeat1] = STATE(540), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_RBRACK] = ACTIONS(2219), - [anon_sym_DOLLAR] = ACTIONS(2211), - [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__never_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(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2217), - [sym_super] = ACTIONS(2217), - [sym_crate] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2219), + [anon_sym_i8] = ACTIONS(2219), + [anon_sym_u16] = ACTIONS(2219), + [anon_sym_i16] = ACTIONS(2219), + [anon_sym_u32] = ACTIONS(2219), + [anon_sym_i32] = ACTIONS(2219), + [anon_sym_u64] = ACTIONS(2219), + [anon_sym_i64] = ACTIONS(2219), + [anon_sym_u128] = ACTIONS(2219), + [anon_sym_i128] = ACTIONS(2219), + [anon_sym_isize] = ACTIONS(2219), + [anon_sym_usize] = ACTIONS(2219), + [anon_sym_f32] = ACTIONS(2219), + [anon_sym_f64] = ACTIONS(2219), + [anon_sym_bool] = ACTIONS(2219), + [anon_sym_str] = ACTIONS(2219), + [anon_sym_char] = ACTIONS(2219), + [aux_sym__non_special_token_token1] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_impl] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_loop] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_mod] = ACTIONS(2219), + [anon_sym_pub] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_trait] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_union] = ACTIONS(2219), + [anon_sym_unsafe] = ACTIONS(2219), + [anon_sym_use] = ACTIONS(2219), + [anon_sym_where] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [sym_mutable_specifier] = ACTIONS(2219), + [sym_integer_literal] = ACTIONS(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(1000), + [sym_self] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_crate] = ACTIONS(2219), [sym_metavariable] = ACTIONS(2221), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [512] = { - [sym_token_tree] = STATE(545), - [sym_token_repetition] = STATE(545), - [sym__never_special_token] = STATE(545), - [sym__literal] = STATE(545), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_repeat1] = STATE(545), + [sym_delim_token_tree] = STATE(503), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(503), [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2227), [anon_sym_u8] = ACTIONS(2223), [anon_sym_i8] = ACTIONS(2223), [anon_sym_u16] = ACTIONS(2223), @@ -61153,7 +61119,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2223), [anon_sym_str] = ACTIONS(2223), [anon_sym_char] = ACTIONS(2223), - [aux_sym__never_special_token_token1] = 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), @@ -61183,1609 +61149,1364 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2223), [anon_sym_while] = ACTIONS(2223), [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), [sym_self] = ACTIONS(2223), [sym_super] = ACTIONS(2223), [sym_crate] = ACTIONS(2223), - [sym_metavariable] = ACTIONS(2225), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [513] = { - [sym__never_special_token] = STATE(502), - [sym_delim_token_tree] = STATE(502), - [sym__delim_tokens] = STATE(502), - [sym__non_delim_token] = STATE(502), - [sym__literal] = STATE(502), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(502), - [sym_identifier] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2109), + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), [anon_sym_RPAREN] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2231), - [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__never_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(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2227), - [sym_super] = ACTIONS(2227), - [sym_crate] = ACTIONS(2227), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [514] = { - [sym_token_tree] = STATE(542), - [sym_token_repetition] = STATE(542), - [sym__never_special_token] = STATE(542), - [sym__literal] = STATE(542), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_repeat1] = STATE(542), - [sym_identifier] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2211), - [anon_sym_u8] = ACTIONS(2233), - [anon_sym_i8] = ACTIONS(2233), - [anon_sym_u16] = ACTIONS(2233), - [anon_sym_i16] = ACTIONS(2233), - [anon_sym_u32] = ACTIONS(2233), - [anon_sym_i32] = ACTIONS(2233), - [anon_sym_u64] = ACTIONS(2233), - [anon_sym_i64] = ACTIONS(2233), - [anon_sym_u128] = ACTIONS(2233), - [anon_sym_i128] = ACTIONS(2233), - [anon_sym_isize] = ACTIONS(2233), - [anon_sym_usize] = ACTIONS(2233), - [anon_sym_f32] = ACTIONS(2233), - [anon_sym_f64] = ACTIONS(2233), - [anon_sym_bool] = ACTIONS(2233), - [anon_sym_str] = ACTIONS(2233), - [anon_sym_char] = ACTIONS(2233), - [aux_sym__never_special_token_token1] = ACTIONS(2233), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_as] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_await] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [anon_sym_fn] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_impl] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2233), - [anon_sym_loop] = ACTIONS(2233), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_mod] = ACTIONS(2233), - [anon_sym_pub] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_struct] = ACTIONS(2233), - [anon_sym_trait] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_union] = ACTIONS(2233), - [anon_sym_unsafe] = ACTIONS(2233), - [anon_sym_use] = ACTIONS(2233), - [anon_sym_where] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [sym_mutable_specifier] = ACTIONS(2233), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2233), - [sym_super] = ACTIONS(2233), - [sym_crate] = ACTIONS(2233), - [sym_metavariable] = ACTIONS(2235), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [sym_token_tree] = STATE(545), + [sym_token_repetition] = STATE(545), + [sym__literal] = STATE(545), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(545), + [sym_identifier] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2231), + [anon_sym_i8] = ACTIONS(2231), + [anon_sym_u16] = ACTIONS(2231), + [anon_sym_i16] = ACTIONS(2231), + [anon_sym_u32] = ACTIONS(2231), + [anon_sym_i32] = ACTIONS(2231), + [anon_sym_u64] = ACTIONS(2231), + [anon_sym_i64] = ACTIONS(2231), + [anon_sym_u128] = ACTIONS(2231), + [anon_sym_i128] = ACTIONS(2231), + [anon_sym_isize] = ACTIONS(2231), + [anon_sym_usize] = ACTIONS(2231), + [anon_sym_f32] = ACTIONS(2231), + [anon_sym_f64] = ACTIONS(2231), + [anon_sym_bool] = ACTIONS(2231), + [anon_sym_str] = ACTIONS(2231), + [anon_sym_char] = ACTIONS(2231), + [aux_sym__non_special_token_token1] = ACTIONS(2231), + [anon_sym_SQUOTE] = ACTIONS(2231), + [anon_sym_as] = ACTIONS(2231), + [anon_sym_async] = ACTIONS(2231), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(2231), + [anon_sym_const] = ACTIONS(2231), + [anon_sym_continue] = ACTIONS(2231), + [anon_sym_default] = ACTIONS(2231), + [anon_sym_enum] = ACTIONS(2231), + [anon_sym_fn] = ACTIONS(2231), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_impl] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_loop] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_mod] = ACTIONS(2231), + [anon_sym_pub] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_static] = ACTIONS(2231), + [anon_sym_struct] = ACTIONS(2231), + [anon_sym_trait] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2231), + [anon_sym_union] = ACTIONS(2231), + [anon_sym_unsafe] = ACTIONS(2231), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_where] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [sym_mutable_specifier] = ACTIONS(2231), + [sym_integer_literal] = ACTIONS(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(1000), + [sym_self] = ACTIONS(2231), + [sym_super] = ACTIONS(2231), + [sym_crate] = ACTIONS(2231), + [sym_metavariable] = ACTIONS(2233), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [515] = { - [sym__never_special_token] = STATE(303), - [sym_delim_token_tree] = STATE(303), - [sym__delim_tokens] = STATE(303), - [sym__non_delim_token] = STATE(303), - [sym__literal] = STATE(303), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [aux_sym__never_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [516] = { - [sym_token_tree] = STATE(302), - [sym_token_repetition] = STATE(302), - [sym__never_special_token] = STATE(302), - [sym__literal] = STATE(302), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_repeat1] = STATE(302), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_RBRACK] = ACTIONS(2241), - [anon_sym_DOLLAR] = ACTIONS(2211), - [anon_sym_u8] = ACTIONS(2239), - [anon_sym_i8] = ACTIONS(2239), - [anon_sym_u16] = ACTIONS(2239), - [anon_sym_i16] = ACTIONS(2239), - [anon_sym_u32] = ACTIONS(2239), - [anon_sym_i32] = ACTIONS(2239), - [anon_sym_u64] = ACTIONS(2239), - [anon_sym_i64] = ACTIONS(2239), - [anon_sym_u128] = ACTIONS(2239), - [anon_sym_i128] = ACTIONS(2239), - [anon_sym_isize] = ACTIONS(2239), - [anon_sym_usize] = ACTIONS(2239), - [anon_sym_f32] = ACTIONS(2239), - [anon_sym_f64] = ACTIONS(2239), - [anon_sym_bool] = ACTIONS(2239), - [anon_sym_str] = ACTIONS(2239), - [anon_sym_char] = ACTIONS(2239), - [aux_sym__never_special_token_token1] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_impl] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_mod] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_static] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_trait] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_where] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [sym_mutable_specifier] = ACTIONS(2239), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2239), - [sym_super] = ACTIONS(2239), - [sym_crate] = ACTIONS(2239), - [sym_metavariable] = ACTIONS(2243), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [517] = { - [sym_token_tree] = STATE(302), - [sym_token_repetition] = STATE(302), - [sym__never_special_token] = STATE(302), - [sym__literal] = STATE(302), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_repeat1] = STATE(302), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2211), - [anon_sym_u8] = ACTIONS(2239), - [anon_sym_i8] = ACTIONS(2239), - [anon_sym_u16] = ACTIONS(2239), - [anon_sym_i16] = ACTIONS(2239), - [anon_sym_u32] = ACTIONS(2239), - [anon_sym_i32] = ACTIONS(2239), - [anon_sym_u64] = ACTIONS(2239), - [anon_sym_i64] = ACTIONS(2239), - [anon_sym_u128] = ACTIONS(2239), - [anon_sym_i128] = ACTIONS(2239), - [anon_sym_isize] = ACTIONS(2239), - [anon_sym_usize] = ACTIONS(2239), - [anon_sym_f32] = ACTIONS(2239), - [anon_sym_f64] = ACTIONS(2239), - [anon_sym_bool] = ACTIONS(2239), - [anon_sym_str] = ACTIONS(2239), - [anon_sym_char] = ACTIONS(2239), - [aux_sym__never_special_token_token1] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_impl] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_mod] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_static] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_trait] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_where] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [sym_mutable_specifier] = ACTIONS(2239), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2239), - [sym_super] = ACTIONS(2239), - [sym_crate] = ACTIONS(2239), - [sym_metavariable] = ACTIONS(2243), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_RBRACK] = ACTIONS(2237), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u128] = ACTIONS(2235), + [anon_sym_i128] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_str] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [aux_sym__non_special_token_token1] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_fn] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_impl] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_mod] = ACTIONS(2235), + [anon_sym_pub] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_trait] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_unsafe] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_where] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [sym_mutable_specifier] = ACTIONS(2235), + [sym_integer_literal] = ACTIONS(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(1000), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2239), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [518] = { - [sym__never_special_token] = STATE(303), - [sym_delim_token_tree] = STATE(303), - [sym__delim_tokens] = STATE(303), - [sym__non_delim_token] = STATE(303), - [sym__literal] = STATE(303), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [aux_sym__never_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u128] = ACTIONS(2235), + [anon_sym_i128] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_str] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [aux_sym__non_special_token_token1] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_fn] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_impl] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_mod] = ACTIONS(2235), + [anon_sym_pub] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_trait] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_unsafe] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_where] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [sym_mutable_specifier] = ACTIONS(2235), + [sym_integer_literal] = ACTIONS(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(1000), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2239), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [519] = { - [sym__never_special_token] = STATE(303), - [sym_delim_token_tree] = STATE(303), - [sym__delim_tokens] = STATE(303), - [sym__non_delim_token] = STATE(303), - [sym__literal] = STATE(303), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2203), [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [aux_sym__never_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u128] = ACTIONS(2235), + [anon_sym_i128] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_str] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [aux_sym__non_special_token_token1] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_fn] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_impl] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_mod] = ACTIONS(2235), + [anon_sym_pub] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_trait] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_unsafe] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_where] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [sym_mutable_specifier] = ACTIONS(2235), + [sym_integer_literal] = ACTIONS(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(1000), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2239), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [520] = { - [sym__never_special_token] = STATE(303), - [sym_delim_token_tree] = STATE(303), - [sym__delim_tokens] = STATE(303), - [sym__non_delim_token] = STATE(303), - [sym__literal] = STATE(303), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2215), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [aux_sym__never_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_token_tree] = STATE(517), + [sym_token_repetition] = STATE(517), + [sym__literal] = STATE(517), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(517), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_RBRACK] = ACTIONS(2243), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2241), + [anon_sym_i8] = ACTIONS(2241), + [anon_sym_u16] = ACTIONS(2241), + [anon_sym_i16] = ACTIONS(2241), + [anon_sym_u32] = ACTIONS(2241), + [anon_sym_i32] = ACTIONS(2241), + [anon_sym_u64] = ACTIONS(2241), + [anon_sym_i64] = ACTIONS(2241), + [anon_sym_u128] = ACTIONS(2241), + [anon_sym_i128] = ACTIONS(2241), + [anon_sym_isize] = ACTIONS(2241), + [anon_sym_usize] = ACTIONS(2241), + [anon_sym_f32] = ACTIONS(2241), + [anon_sym_f64] = ACTIONS(2241), + [anon_sym_bool] = ACTIONS(2241), + [anon_sym_str] = ACTIONS(2241), + [anon_sym_char] = ACTIONS(2241), + [aux_sym__non_special_token_token1] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_as] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [anon_sym_fn] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_impl] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_loop] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_mod] = ACTIONS(2241), + [anon_sym_pub] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(2241), + [anon_sym_trait] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_union] = ACTIONS(2241), + [anon_sym_unsafe] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_where] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [sym_mutable_specifier] = ACTIONS(2241), + [sym_integer_literal] = ACTIONS(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(1000), + [sym_self] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_crate] = ACTIONS(2241), + [sym_metavariable] = ACTIONS(2245), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [521] = { - [sym__never_special_token] = STATE(303), - [sym_delim_token_tree] = STATE(303), - [sym__delim_tokens] = STATE(303), - [sym__non_delim_token] = STATE(303), - [sym__literal] = STATE(303), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [aux_sym__never_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [522] = { - [sym__never_special_token] = STATE(505), + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2229), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [523] = { [sym_delim_token_tree] = STATE(505), [sym__delim_tokens] = STATE(505), [sym__non_delim_token] = STATE(505), [sym__literal] = STATE(505), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), [aux_sym_delim_token_tree_repeat1] = STATE(505), - [sym_identifier] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2249), - [anon_sym_u8] = ACTIONS(2245), - [anon_sym_i8] = ACTIONS(2245), - [anon_sym_u16] = ACTIONS(2245), - [anon_sym_i16] = ACTIONS(2245), - [anon_sym_u32] = ACTIONS(2245), - [anon_sym_i32] = ACTIONS(2245), - [anon_sym_u64] = ACTIONS(2245), - [anon_sym_i64] = ACTIONS(2245), - [anon_sym_u128] = ACTIONS(2245), - [anon_sym_i128] = ACTIONS(2245), - [anon_sym_isize] = ACTIONS(2245), - [anon_sym_usize] = ACTIONS(2245), - [anon_sym_f32] = ACTIONS(2245), - [anon_sym_f64] = ACTIONS(2245), - [anon_sym_bool] = ACTIONS(2245), - [anon_sym_str] = ACTIONS(2245), - [anon_sym_char] = ACTIONS(2245), - [aux_sym__never_special_token_token1] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_as] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [anon_sym_fn] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_impl] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_loop] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_mod] = ACTIONS(2245), - [anon_sym_pub] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_struct] = ACTIONS(2245), - [anon_sym_trait] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_union] = ACTIONS(2245), - [anon_sym_unsafe] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_where] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [sym_mutable_specifier] = ACTIONS(2245), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2245), - [sym_super] = ACTIONS(2245), - [sym_crate] = ACTIONS(2245), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), - [sym_block_comment] = ACTIONS(3), - }, - [523] = { - [sym__never_special_token] = STATE(507), - [sym_delim_token_tree] = STATE(507), - [sym__delim_tokens] = STATE(507), - [sym__non_delim_token] = STATE(507), - [sym__literal] = STATE(507), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2253), - [anon_sym_u8] = ACTIONS(2251), - [anon_sym_i8] = ACTIONS(2251), - [anon_sym_u16] = ACTIONS(2251), - [anon_sym_i16] = ACTIONS(2251), - [anon_sym_u32] = ACTIONS(2251), - [anon_sym_i32] = ACTIONS(2251), - [anon_sym_u64] = ACTIONS(2251), - [anon_sym_i64] = ACTIONS(2251), - [anon_sym_u128] = ACTIONS(2251), - [anon_sym_i128] = ACTIONS(2251), - [anon_sym_isize] = ACTIONS(2251), - [anon_sym_usize] = ACTIONS(2251), - [anon_sym_f32] = ACTIONS(2251), - [anon_sym_f64] = ACTIONS(2251), - [anon_sym_bool] = ACTIONS(2251), - [anon_sym_str] = ACTIONS(2251), - [anon_sym_char] = ACTIONS(2251), - [aux_sym__never_special_token_token1] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_as] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_default] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [anon_sym_fn] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_impl] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_loop] = ACTIONS(2251), - [anon_sym_match] = ACTIONS(2251), - [anon_sym_mod] = ACTIONS(2251), - [anon_sym_pub] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_struct] = ACTIONS(2251), - [anon_sym_trait] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_union] = ACTIONS(2251), - [anon_sym_unsafe] = ACTIONS(2251), - [anon_sym_use] = ACTIONS(2251), - [anon_sym_where] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [sym_mutable_specifier] = ACTIONS(2251), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_crate] = ACTIONS(2251), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_identifier] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2249), + [anon_sym_DOLLAR] = ACTIONS(2251), + [anon_sym_u8] = ACTIONS(2247), + [anon_sym_i8] = ACTIONS(2247), + [anon_sym_u16] = ACTIONS(2247), + [anon_sym_i16] = ACTIONS(2247), + [anon_sym_u32] = ACTIONS(2247), + [anon_sym_i32] = ACTIONS(2247), + [anon_sym_u64] = ACTIONS(2247), + [anon_sym_i64] = ACTIONS(2247), + [anon_sym_u128] = ACTIONS(2247), + [anon_sym_i128] = ACTIONS(2247), + [anon_sym_isize] = ACTIONS(2247), + [anon_sym_usize] = ACTIONS(2247), + [anon_sym_f32] = ACTIONS(2247), + [anon_sym_f64] = ACTIONS(2247), + [anon_sym_bool] = ACTIONS(2247), + [anon_sym_str] = ACTIONS(2247), + [anon_sym_char] = ACTIONS(2247), + [aux_sym__non_special_token_token1] = ACTIONS(2247), + [anon_sym_SQUOTE] = ACTIONS(2247), + [anon_sym_as] = ACTIONS(2247), + [anon_sym_async] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2247), + [anon_sym_break] = ACTIONS(2247), + [anon_sym_const] = ACTIONS(2247), + [anon_sym_continue] = ACTIONS(2247), + [anon_sym_default] = ACTIONS(2247), + [anon_sym_enum] = ACTIONS(2247), + [anon_sym_fn] = ACTIONS(2247), + [anon_sym_for] = ACTIONS(2247), + [anon_sym_if] = ACTIONS(2247), + [anon_sym_impl] = ACTIONS(2247), + [anon_sym_let] = ACTIONS(2247), + [anon_sym_loop] = ACTIONS(2247), + [anon_sym_match] = ACTIONS(2247), + [anon_sym_mod] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2247), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_static] = ACTIONS(2247), + [anon_sym_struct] = ACTIONS(2247), + [anon_sym_trait] = ACTIONS(2247), + [anon_sym_type] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(2247), + [anon_sym_unsafe] = ACTIONS(2247), + [anon_sym_use] = ACTIONS(2247), + [anon_sym_where] = ACTIONS(2247), + [anon_sym_while] = ACTIONS(2247), + [sym_mutable_specifier] = ACTIONS(2247), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2247), + [sym_super] = ACTIONS(2247), + [sym_crate] = ACTIONS(2247), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [524] = { - [sym__never_special_token] = STATE(303), - [sym_delim_token_tree] = STATE(303), - [sym__delim_tokens] = STATE(303), - [sym__non_delim_token] = STATE(303), - [sym__literal] = STATE(303), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [aux_sym__never_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_delim_token_tree] = STATE(506), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_u8] = ACTIONS(2253), + [anon_sym_i8] = ACTIONS(2253), + [anon_sym_u16] = ACTIONS(2253), + [anon_sym_i16] = ACTIONS(2253), + [anon_sym_u32] = ACTIONS(2253), + [anon_sym_i32] = ACTIONS(2253), + [anon_sym_u64] = ACTIONS(2253), + [anon_sym_i64] = ACTIONS(2253), + [anon_sym_u128] = ACTIONS(2253), + [anon_sym_i128] = ACTIONS(2253), + [anon_sym_isize] = ACTIONS(2253), + [anon_sym_usize] = ACTIONS(2253), + [anon_sym_f32] = ACTIONS(2253), + [anon_sym_f64] = ACTIONS(2253), + [anon_sym_bool] = ACTIONS(2253), + [anon_sym_str] = ACTIONS(2253), + [anon_sym_char] = ACTIONS(2253), + [aux_sym__non_special_token_token1] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_as] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_default] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [anon_sym_fn] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_impl] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_loop] = ACTIONS(2253), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_mod] = ACTIONS(2253), + [anon_sym_pub] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_struct] = ACTIONS(2253), + [anon_sym_trait] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_union] = ACTIONS(2253), + [anon_sym_unsafe] = ACTIONS(2253), + [anon_sym_use] = ACTIONS(2253), + [anon_sym_where] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [sym_mutable_specifier] = ACTIONS(2253), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_crate] = ACTIONS(2253), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [525] = { - [sym__never_special_token] = STATE(303), - [sym_delim_token_tree] = STATE(303), - [sym__delim_tokens] = STATE(303), - [sym__non_delim_token] = STATE(303), - [sym__literal] = STATE(303), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [aux_sym__never_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [526] = { - [sym__never_special_token] = STATE(303), - [sym_delim_token_tree] = STATE(303), - [sym__delim_tokens] = STATE(303), - [sym__non_delim_token] = STATE(303), - [sym__literal] = STATE(303), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2255), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [aux_sym__never_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [527] = { - [sym__never_special_token] = STATE(531), - [sym_delim_token_tree] = STATE(531), - [sym__delim_tokens] = STATE(531), - [sym__non_delim_token] = STATE(531), - [sym__literal] = STATE(531), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(531), - [sym_identifier] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2259), - [anon_sym_u8] = ACTIONS(2257), - [anon_sym_i8] = ACTIONS(2257), - [anon_sym_u16] = ACTIONS(2257), - [anon_sym_i16] = ACTIONS(2257), - [anon_sym_u32] = ACTIONS(2257), - [anon_sym_i32] = ACTIONS(2257), - [anon_sym_u64] = ACTIONS(2257), - [anon_sym_i64] = ACTIONS(2257), - [anon_sym_u128] = ACTIONS(2257), - [anon_sym_i128] = ACTIONS(2257), - [anon_sym_isize] = ACTIONS(2257), - [anon_sym_usize] = ACTIONS(2257), - [anon_sym_f32] = ACTIONS(2257), - [anon_sym_f64] = ACTIONS(2257), - [anon_sym_bool] = ACTIONS(2257), - [anon_sym_str] = ACTIONS(2257), - [anon_sym_char] = ACTIONS(2257), - [aux_sym__never_special_token_token1] = ACTIONS(2257), - [anon_sym_SQUOTE] = ACTIONS(2257), - [anon_sym_as] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_default] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [anon_sym_fn] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_impl] = ACTIONS(2257), - [anon_sym_let] = ACTIONS(2257), - [anon_sym_loop] = ACTIONS(2257), - [anon_sym_match] = ACTIONS(2257), - [anon_sym_mod] = ACTIONS(2257), - [anon_sym_pub] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_struct] = ACTIONS(2257), - [anon_sym_trait] = ACTIONS(2257), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_union] = ACTIONS(2257), - [anon_sym_unsafe] = ACTIONS(2257), - [anon_sym_use] = ACTIONS(2257), - [anon_sym_where] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [sym_mutable_specifier] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2257), - [sym_super] = ACTIONS(2257), - [sym_crate] = ACTIONS(2257), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2257), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [528] = { - [sym__never_special_token] = STATE(524), - [sym_delim_token_tree] = STATE(524), - [sym__delim_tokens] = STATE(524), - [sym__non_delim_token] = STATE(524), - [sym__literal] = STATE(524), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(524), - [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_u8] = ACTIONS(2261), - [anon_sym_i8] = ACTIONS(2261), - [anon_sym_u16] = ACTIONS(2261), - [anon_sym_i16] = ACTIONS(2261), - [anon_sym_u32] = ACTIONS(2261), - [anon_sym_i32] = ACTIONS(2261), - [anon_sym_u64] = ACTIONS(2261), - [anon_sym_i64] = ACTIONS(2261), - [anon_sym_u128] = ACTIONS(2261), - [anon_sym_i128] = ACTIONS(2261), - [anon_sym_isize] = ACTIONS(2261), - [anon_sym_usize] = ACTIONS(2261), - [anon_sym_f32] = ACTIONS(2261), - [anon_sym_f64] = ACTIONS(2261), - [anon_sym_bool] = ACTIONS(2261), - [anon_sym_str] = ACTIONS(2261), - [anon_sym_char] = ACTIONS(2261), - [aux_sym__never_special_token_token1] = ACTIONS(2261), - [anon_sym_SQUOTE] = ACTIONS(2261), - [anon_sym_as] = ACTIONS(2261), - [anon_sym_async] = ACTIONS(2261), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_break] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(2261), - [anon_sym_continue] = ACTIONS(2261), - [anon_sym_default] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2261), - [anon_sym_fn] = ACTIONS(2261), - [anon_sym_for] = ACTIONS(2261), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_impl] = ACTIONS(2261), - [anon_sym_let] = ACTIONS(2261), - [anon_sym_loop] = ACTIONS(2261), - [anon_sym_match] = ACTIONS(2261), - [anon_sym_mod] = ACTIONS(2261), - [anon_sym_pub] = ACTIONS(2261), - [anon_sym_return] = ACTIONS(2261), - [anon_sym_static] = ACTIONS(2261), - [anon_sym_struct] = ACTIONS(2261), - [anon_sym_trait] = ACTIONS(2261), - [anon_sym_type] = ACTIONS(2261), - [anon_sym_union] = ACTIONS(2261), - [anon_sym_unsafe] = ACTIONS(2261), - [anon_sym_use] = ACTIONS(2261), - [anon_sym_where] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2261), - [sym_mutable_specifier] = ACTIONS(2261), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2261), - [sym_super] = ACTIONS(2261), - [sym_crate] = ACTIONS(2261), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), - [sym_block_comment] = ACTIONS(3), - }, - [529] = { - [sym__never_special_token] = STATE(532), [sym_delim_token_tree] = STATE(532), [sym__delim_tokens] = STATE(532), [sym__non_delim_token] = STATE(532), [sym__literal] = STATE(532), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), [aux_sym_delim_token_tree_repeat1] = STATE(532), - [sym_identifier] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2229), - [anon_sym_DOLLAR] = ACTIONS(2269), - [anon_sym_u8] = ACTIONS(2267), - [anon_sym_i8] = ACTIONS(2267), - [anon_sym_u16] = ACTIONS(2267), - [anon_sym_i16] = ACTIONS(2267), - [anon_sym_u32] = ACTIONS(2267), - [anon_sym_i32] = ACTIONS(2267), - [anon_sym_u64] = ACTIONS(2267), - [anon_sym_i64] = ACTIONS(2267), - [anon_sym_u128] = ACTIONS(2267), - [anon_sym_i128] = ACTIONS(2267), - [anon_sym_isize] = ACTIONS(2267), - [anon_sym_usize] = ACTIONS(2267), - [anon_sym_f32] = ACTIONS(2267), - [anon_sym_f64] = ACTIONS(2267), - [anon_sym_bool] = ACTIONS(2267), - [anon_sym_str] = ACTIONS(2267), - [anon_sym_char] = ACTIONS(2267), - [aux_sym__never_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(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2267), - [sym_super] = ACTIONS(2267), - [sym_crate] = ACTIONS(2267), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), - [sym_block_comment] = ACTIONS(3), - }, - [530] = { - [sym_token_tree] = STATE(302), - [sym_token_repetition] = STATE(302), - [sym__never_special_token] = STATE(302), - [sym__literal] = STATE(302), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_repeat1] = STATE(302), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2211), - [anon_sym_u8] = ACTIONS(2239), - [anon_sym_i8] = ACTIONS(2239), - [anon_sym_u16] = ACTIONS(2239), - [anon_sym_i16] = ACTIONS(2239), - [anon_sym_u32] = ACTIONS(2239), - [anon_sym_i32] = ACTIONS(2239), - [anon_sym_u64] = ACTIONS(2239), - [anon_sym_i64] = ACTIONS(2239), - [anon_sym_u128] = ACTIONS(2239), - [anon_sym_i128] = ACTIONS(2239), - [anon_sym_isize] = ACTIONS(2239), - [anon_sym_usize] = ACTIONS(2239), - [anon_sym_f32] = ACTIONS(2239), - [anon_sym_f64] = ACTIONS(2239), - [anon_sym_bool] = ACTIONS(2239), - [anon_sym_str] = ACTIONS(2239), - [anon_sym_char] = ACTIONS(2239), - [aux_sym__never_special_token_token1] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_impl] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_mod] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_static] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_trait] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_where] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [sym_mutable_specifier] = ACTIONS(2239), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2239), - [sym_super] = ACTIONS(2239), - [sym_crate] = ACTIONS(2239), - [sym_metavariable] = ACTIONS(2243), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), - [sym_block_comment] = ACTIONS(3), - }, - [531] = { - [sym__never_special_token] = STATE(303), - [sym_delim_token_tree] = STATE(303), - [sym__delim_tokens] = STATE(303), - [sym__non_delim_token] = STATE(303), - [sym__literal] = STATE(303), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [aux_sym__never_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_identifier] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2261), + [anon_sym_u8] = ACTIONS(2259), + [anon_sym_i8] = ACTIONS(2259), + [anon_sym_u16] = ACTIONS(2259), + [anon_sym_i16] = ACTIONS(2259), + [anon_sym_u32] = ACTIONS(2259), + [anon_sym_i32] = ACTIONS(2259), + [anon_sym_u64] = ACTIONS(2259), + [anon_sym_i64] = ACTIONS(2259), + [anon_sym_u128] = ACTIONS(2259), + [anon_sym_i128] = ACTIONS(2259), + [anon_sym_isize] = ACTIONS(2259), + [anon_sym_usize] = ACTIONS(2259), + [anon_sym_f32] = ACTIONS(2259), + [anon_sym_f64] = ACTIONS(2259), + [anon_sym_bool] = ACTIONS(2259), + [anon_sym_str] = ACTIONS(2259), + [anon_sym_char] = ACTIONS(2259), + [aux_sym__non_special_token_token1] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_as] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(2259), + [anon_sym_enum] = ACTIONS(2259), + [anon_sym_fn] = ACTIONS(2259), + [anon_sym_for] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2259), + [anon_sym_impl] = ACTIONS(2259), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_loop] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2259), + [anon_sym_mod] = ACTIONS(2259), + [anon_sym_pub] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2259), + [anon_sym_struct] = ACTIONS(2259), + [anon_sym_trait] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2259), + [anon_sym_union] = ACTIONS(2259), + [anon_sym_unsafe] = ACTIONS(2259), + [anon_sym_use] = ACTIONS(2259), + [anon_sym_where] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [sym_mutable_specifier] = ACTIONS(2259), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [532] = { - [sym__never_special_token] = STATE(303), - [sym_delim_token_tree] = STATE(303), - [sym__delim_tokens] = STATE(303), - [sym__non_delim_token] = STATE(303), - [sym__literal] = STATE(303), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2127), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [aux_sym__never_special_token_token1] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_where] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [sym_mutable_specifier] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [529] = { + [sym_delim_token_tree] = STATE(525), + [sym__delim_tokens] = STATE(525), + [sym__non_delim_token] = STATE(525), + [sym__literal] = STATE(525), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(525), + [sym_identifier] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2267), + [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(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2263), + [sym_super] = ACTIONS(2263), + [sym_crate] = ACTIONS(2263), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [533] = { - [sym_token_tree] = STATE(302), - [sym_token_repetition] = STATE(302), - [sym__never_special_token] = STATE(302), - [sym__literal] = STATE(302), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_repeat1] = STATE(302), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2271), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2211), - [anon_sym_u8] = ACTIONS(2239), - [anon_sym_i8] = ACTIONS(2239), - [anon_sym_u16] = ACTIONS(2239), - [anon_sym_i16] = ACTIONS(2239), - [anon_sym_u32] = ACTIONS(2239), - [anon_sym_i32] = ACTIONS(2239), - [anon_sym_u64] = ACTIONS(2239), - [anon_sym_i64] = ACTIONS(2239), - [anon_sym_u128] = ACTIONS(2239), - [anon_sym_i128] = ACTIONS(2239), - [anon_sym_isize] = ACTIONS(2239), - [anon_sym_usize] = ACTIONS(2239), - [anon_sym_f32] = ACTIONS(2239), - [anon_sym_f64] = ACTIONS(2239), - [anon_sym_bool] = ACTIONS(2239), - [anon_sym_str] = ACTIONS(2239), - [anon_sym_char] = ACTIONS(2239), - [aux_sym__never_special_token_token1] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_impl] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_mod] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_static] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_trait] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_where] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [sym_mutable_specifier] = ACTIONS(2239), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2239), - [sym_super] = ACTIONS(2239), - [sym_crate] = ACTIONS(2239), - [sym_metavariable] = ACTIONS(2243), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [530] = { + [sym_delim_token_tree] = STATE(533), + [sym__delim_tokens] = STATE(533), + [sym__non_delim_token] = STATE(533), + [sym__literal] = STATE(533), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(533), + [sym_identifier] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2225), + [anon_sym_DOLLAR] = ACTIONS(2271), + [anon_sym_u8] = ACTIONS(2269), + [anon_sym_i8] = ACTIONS(2269), + [anon_sym_u16] = ACTIONS(2269), + [anon_sym_i16] = ACTIONS(2269), + [anon_sym_u32] = ACTIONS(2269), + [anon_sym_i32] = ACTIONS(2269), + [anon_sym_u64] = ACTIONS(2269), + [anon_sym_i64] = ACTIONS(2269), + [anon_sym_u128] = ACTIONS(2269), + [anon_sym_i128] = ACTIONS(2269), + [anon_sym_isize] = ACTIONS(2269), + [anon_sym_usize] = ACTIONS(2269), + [anon_sym_f32] = ACTIONS(2269), + [anon_sym_f64] = ACTIONS(2269), + [anon_sym_bool] = ACTIONS(2269), + [anon_sym_str] = ACTIONS(2269), + [anon_sym_char] = ACTIONS(2269), + [aux_sym__non_special_token_token1] = ACTIONS(2269), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_as] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_await] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_impl] = ACTIONS(2269), + [anon_sym_let] = ACTIONS(2269), + [anon_sym_loop] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_mod] = ACTIONS(2269), + [anon_sym_pub] = ACTIONS(2269), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_trait] = ACTIONS(2269), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_unsafe] = ACTIONS(2269), + [anon_sym_use] = ACTIONS(2269), + [anon_sym_where] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [sym_mutable_specifier] = ACTIONS(2269), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2269), + [sym_super] = ACTIONS(2269), + [sym_crate] = ACTIONS(2269), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [534] = { - [sym__never_special_token] = STATE(510), - [sym_delim_token_tree] = STATE(510), - [sym__delim_tokens] = STATE(510), - [sym__non_delim_token] = STATE(510), - [sym__literal] = STATE(510), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(510), + [531] = { + [sym_delim_token_tree] = STATE(513), + [sym__delim_tokens] = STATE(513), + [sym__non_delim_token] = STATE(513), + [sym__literal] = STATE(513), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(513), [sym_identifier] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), [anon_sym_DOLLAR] = ACTIONS(2275), [anon_sym_u8] = ACTIONS(2273), [anon_sym_i8] = ACTIONS(2273), @@ -62804,7 +62525,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2273), [anon_sym_str] = ACTIONS(2273), [anon_sym_char] = ACTIONS(2273), - [aux_sym__never_special_token_token1] = ACTIONS(2273), + [aux_sym__non_special_token_token1] = ACTIONS(2273), [anon_sym_SQUOTE] = ACTIONS(2273), [anon_sym_as] = ACTIONS(2273), [anon_sym_async] = ACTIONS(2273), @@ -62834,33 +62555,180 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2273), [anon_sym_while] = ACTIONS(2273), [sym_mutable_specifier] = ACTIONS(2273), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), [sym_self] = ACTIONS(2273), [sym_super] = ACTIONS(2273), [sym_crate] = ACTIONS(2273), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [535] = { - [sym__never_special_token] = STATE(525), - [sym_delim_token_tree] = STATE(525), - [sym__delim_tokens] = STATE(525), - [sym__non_delim_token] = STATE(525), - [sym__literal] = STATE(525), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(525), + [532] = { + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [533] = { + [sym_delim_token_tree] = STATE(492), + [sym__delim_tokens] = STATE(492), + [sym__non_delim_token] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [534] = { + [sym_delim_token_tree] = STATE(508), + [sym__delim_tokens] = STATE(508), + [sym__non_delim_token] = STATE(508), + [sym__literal] = STATE(508), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(508), [sym_identifier] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), [anon_sym_DOLLAR] = ACTIONS(2279), [anon_sym_u8] = ACTIONS(2277), [anon_sym_i8] = ACTIONS(2277), @@ -62879,7 +62747,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2277), [anon_sym_str] = ACTIONS(2277), [anon_sym_char] = ACTIONS(2277), - [aux_sym__never_special_token_token1] = ACTIONS(2277), + [aux_sym__non_special_token_token1] = ACTIONS(2277), [anon_sym_SQUOTE] = ACTIONS(2277), [anon_sym_as] = ACTIONS(2277), [anon_sym_async] = ACTIONS(2277), @@ -62909,33 +62777,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2277), [anon_sym_while] = ACTIONS(2277), [sym_mutable_specifier] = ACTIONS(2277), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), [sym_self] = ACTIONS(2277), [sym_super] = ACTIONS(2277), [sym_crate] = ACTIONS(2277), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [536] = { - [sym__never_special_token] = STATE(526), + [535] = { [sym_delim_token_tree] = STATE(526), [sym__delim_tokens] = STATE(526), [sym__non_delim_token] = STATE(526), [sym__literal] = STATE(526), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), [aux_sym_delim_token_tree_repeat1] = STATE(526), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(2173), [anon_sym_DOLLAR] = ACTIONS(2283), [anon_sym_u8] = ACTIONS(2281), [anon_sym_i8] = ACTIONS(2281), @@ -62954,7 +62821,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2281), [anon_sym_str] = ACTIONS(2281), [anon_sym_char] = ACTIONS(2281), - [aux_sym__never_special_token_token1] = ACTIONS(2281), + [aux_sym__non_special_token_token1] = ACTIONS(2281), [anon_sym_SQUOTE] = ACTIONS(2281), [anon_sym_as] = ACTIONS(2281), [anon_sym_async] = ACTIONS(2281), @@ -62984,33 +62851,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2281), [anon_sym_while] = ACTIONS(2281), [sym_mutable_specifier] = ACTIONS(2281), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), [sym_self] = ACTIONS(2281), [sym_super] = ACTIONS(2281), [sym_crate] = ACTIONS(2281), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [537] = { - [sym_token_tree] = STATE(516), - [sym_token_repetition] = STATE(516), - [sym__never_special_token] = STATE(516), - [sym__literal] = STATE(516), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_repeat1] = STATE(516), + [536] = { + [sym_delim_token_tree] = STATE(527), + [sym__delim_tokens] = STATE(527), + [sym__non_delim_token] = STATE(527), + [sym__literal] = STATE(527), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(527), [sym_identifier] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_RBRACK] = ACTIONS(2287), - [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2265), + [anon_sym_DOLLAR] = ACTIONS(2287), [anon_sym_u8] = ACTIONS(2285), [anon_sym_i8] = ACTIONS(2285), [anon_sym_u16] = ACTIONS(2285), @@ -63028,7 +62895,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2285), [anon_sym_str] = ACTIONS(2285), [anon_sym_char] = ACTIONS(2285), - [aux_sym__never_special_token_token1] = ACTIONS(2285), + [aux_sym__non_special_token_token1] = ACTIONS(2285), [anon_sym_SQUOTE] = ACTIONS(2285), [anon_sym_as] = ACTIONS(2285), [anon_sym_async] = ACTIONS(2285), @@ -63058,409 +62925,476 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2285), [anon_sym_while] = ACTIONS(2285), [sym_mutable_specifier] = ACTIONS(2285), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), [sym_self] = ACTIONS(2285), [sym_super] = ACTIONS(2285), [sym_crate] = ACTIONS(2285), - [sym_metavariable] = ACTIONS(2289), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [537] = { + [sym_token_tree] = STATE(519), + [sym_token_repetition] = STATE(519), + [sym__literal] = STATE(519), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(519), + [sym_identifier] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [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(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(1000), + [sym_self] = ACTIONS(2289), + [sym_super] = ACTIONS(2289), + [sym_crate] = ACTIONS(2289), + [sym_metavariable] = ACTIONS(2291), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [538] = { - [sym_token_tree] = STATE(530), - [sym_token_repetition] = STATE(530), - [sym__never_special_token] = STATE(530), - [sym__literal] = STATE(530), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_repeat1] = STATE(530), - [sym_identifier] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2211), - [anon_sym_u8] = ACTIONS(2291), - [anon_sym_i8] = ACTIONS(2291), - [anon_sym_u16] = ACTIONS(2291), - [anon_sym_i16] = ACTIONS(2291), - [anon_sym_u32] = ACTIONS(2291), - [anon_sym_i32] = ACTIONS(2291), - [anon_sym_u64] = ACTIONS(2291), - [anon_sym_i64] = ACTIONS(2291), - [anon_sym_u128] = ACTIONS(2291), - [anon_sym_i128] = ACTIONS(2291), - [anon_sym_isize] = ACTIONS(2291), - [anon_sym_usize] = ACTIONS(2291), - [anon_sym_f32] = ACTIONS(2291), - [anon_sym_f64] = ACTIONS(2291), - [anon_sym_bool] = ACTIONS(2291), - [anon_sym_str] = ACTIONS(2291), - [anon_sym_char] = ACTIONS(2291), - [aux_sym__never_special_token_token1] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2291), - [anon_sym_as] = ACTIONS(2291), - [anon_sym_async] = ACTIONS(2291), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_break] = ACTIONS(2291), - [anon_sym_const] = ACTIONS(2291), - [anon_sym_continue] = ACTIONS(2291), - [anon_sym_default] = ACTIONS(2291), - [anon_sym_enum] = ACTIONS(2291), - [anon_sym_fn] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2291), - [anon_sym_impl] = ACTIONS(2291), - [anon_sym_let] = ACTIONS(2291), - [anon_sym_loop] = ACTIONS(2291), - [anon_sym_match] = ACTIONS(2291), - [anon_sym_mod] = ACTIONS(2291), - [anon_sym_pub] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2291), - [anon_sym_static] = ACTIONS(2291), - [anon_sym_struct] = ACTIONS(2291), - [anon_sym_trait] = ACTIONS(2291), - [anon_sym_type] = ACTIONS(2291), - [anon_sym_union] = ACTIONS(2291), - [anon_sym_unsafe] = ACTIONS(2291), - [anon_sym_use] = ACTIONS(2291), - [anon_sym_where] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [sym_mutable_specifier] = ACTIONS(2291), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2291), - [sym_super] = ACTIONS(2291), - [sym_crate] = ACTIONS(2291), - [sym_metavariable] = ACTIONS(2293), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u128] = ACTIONS(2235), + [anon_sym_i128] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_str] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [aux_sym__non_special_token_token1] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_fn] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_impl] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_mod] = ACTIONS(2235), + [anon_sym_pub] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_trait] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_unsafe] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_where] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [sym_mutable_specifier] = ACTIONS(2235), + [sym_integer_literal] = ACTIONS(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(1000), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2239), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [539] = { - [sym_token_tree] = STATE(517), - [sym_token_repetition] = STATE(517), - [sym__never_special_token] = STATE(517), - [sym__literal] = STATE(517), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_repeat1] = STATE(517), - [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2211), - [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__never_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(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2295), - [sym_super] = ACTIONS(2295), - [sym_crate] = ACTIONS(2295), - [sym_metavariable] = ACTIONS(2297), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_RBRACK] = ACTIONS(2295), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u128] = ACTIONS(2235), + [anon_sym_i128] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_str] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [aux_sym__non_special_token_token1] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_fn] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_impl] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_mod] = ACTIONS(2235), + [anon_sym_pub] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_trait] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_unsafe] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_where] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [sym_mutable_specifier] = ACTIONS(2235), + [sym_integer_literal] = ACTIONS(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(1000), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2239), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [540] = { - [sym_token_tree] = STATE(302), - [sym_token_repetition] = STATE(302), - [sym__never_special_token] = STATE(302), - [sym__literal] = STATE(302), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_repeat1] = STATE(302), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_RBRACK] = ACTIONS(2299), - [anon_sym_DOLLAR] = ACTIONS(2211), - [anon_sym_u8] = ACTIONS(2239), - [anon_sym_i8] = ACTIONS(2239), - [anon_sym_u16] = ACTIONS(2239), - [anon_sym_i16] = ACTIONS(2239), - [anon_sym_u32] = ACTIONS(2239), - [anon_sym_i32] = ACTIONS(2239), - [anon_sym_u64] = ACTIONS(2239), - [anon_sym_i64] = ACTIONS(2239), - [anon_sym_u128] = ACTIONS(2239), - [anon_sym_i128] = ACTIONS(2239), - [anon_sym_isize] = ACTIONS(2239), - [anon_sym_usize] = ACTIONS(2239), - [anon_sym_f32] = ACTIONS(2239), - [anon_sym_f64] = ACTIONS(2239), - [anon_sym_bool] = ACTIONS(2239), - [anon_sym_str] = ACTIONS(2239), - [anon_sym_char] = ACTIONS(2239), - [aux_sym__never_special_token_token1] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_impl] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_mod] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_static] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_trait] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_where] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [sym_mutable_specifier] = ACTIONS(2239), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2239), - [sym_super] = ACTIONS(2239), - [sym_crate] = ACTIONS(2239), - [sym_metavariable] = ACTIONS(2243), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u128] = ACTIONS(2235), + [anon_sym_i128] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_str] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [aux_sym__non_special_token_token1] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_fn] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_impl] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_mod] = ACTIONS(2235), + [anon_sym_pub] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_trait] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_unsafe] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_where] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [sym_mutable_specifier] = ACTIONS(2235), + [sym_integer_literal] = ACTIONS(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(1000), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2239), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [541] = { - [sym__never_special_token] = STATE(515), - [sym_delim_token_tree] = STATE(515), - [sym__delim_tokens] = STATE(515), - [sym__non_delim_token] = STATE(515), - [sym__literal] = STATE(515), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(515), - [sym_identifier] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_RBRACK] = ACTIONS(2303), - [anon_sym_DOLLAR] = ACTIONS(2305), - [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__never_special_token_token1] = ACTIONS(2301), - [anon_sym_SQUOTE] = ACTIONS(2301), - [anon_sym_as] = ACTIONS(2301), - [anon_sym_async] = ACTIONS(2301), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_break] = ACTIONS(2301), - [anon_sym_const] = ACTIONS(2301), - [anon_sym_continue] = ACTIONS(2301), - [anon_sym_default] = ACTIONS(2301), - [anon_sym_enum] = ACTIONS(2301), - [anon_sym_fn] = ACTIONS(2301), - [anon_sym_for] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_impl] = ACTIONS(2301), - [anon_sym_let] = ACTIONS(2301), - [anon_sym_loop] = ACTIONS(2301), - [anon_sym_match] = ACTIONS(2301), - [anon_sym_mod] = ACTIONS(2301), - [anon_sym_pub] = ACTIONS(2301), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2301), - [anon_sym_struct] = ACTIONS(2301), - [anon_sym_trait] = ACTIONS(2301), - [anon_sym_type] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(2301), - [anon_sym_unsafe] = ACTIONS(2301), - [anon_sym_use] = ACTIONS(2301), - [anon_sym_where] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [sym_mutable_specifier] = ACTIONS(2301), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2301), - [sym_super] = ACTIONS(2301), - [sym_crate] = ACTIONS(2301), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_delim_token_tree] = STATE(509), + [sym__delim_tokens] = STATE(509), + [sym__non_delim_token] = STATE(509), + [sym__literal] = STATE(509), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(509), + [sym_identifier] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2299), + [anon_sym_DOLLAR] = ACTIONS(2301), + [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(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2297), + [sym_super] = ACTIONS(2297), + [sym_crate] = ACTIONS(2297), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [542] = { - [sym_token_tree] = STATE(302), - [sym_token_repetition] = STATE(302), - [sym__never_special_token] = STATE(302), - [sym__literal] = STATE(302), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_repeat1] = STATE(302), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2211), - [anon_sym_u8] = ACTIONS(2239), - [anon_sym_i8] = ACTIONS(2239), - [anon_sym_u16] = ACTIONS(2239), - [anon_sym_i16] = ACTIONS(2239), - [anon_sym_u32] = ACTIONS(2239), - [anon_sym_i32] = ACTIONS(2239), - [anon_sym_u64] = ACTIONS(2239), - [anon_sym_i64] = ACTIONS(2239), - [anon_sym_u128] = ACTIONS(2239), - [anon_sym_i128] = ACTIONS(2239), - [anon_sym_isize] = ACTIONS(2239), - [anon_sym_usize] = ACTIONS(2239), - [anon_sym_f32] = ACTIONS(2239), - [anon_sym_f64] = ACTIONS(2239), - [anon_sym_bool] = ACTIONS(2239), - [anon_sym_str] = ACTIONS(2239), - [anon_sym_char] = ACTIONS(2239), - [aux_sym__never_special_token_token1] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_impl] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_mod] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_static] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_trait] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_where] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [sym_mutable_specifier] = ACTIONS(2239), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2239), - [sym_super] = ACTIONS(2239), - [sym_crate] = ACTIONS(2239), - [sym_metavariable] = ACTIONS(2243), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [sym_token_tree] = STATE(518), + [sym_token_repetition] = STATE(518), + [sym__literal] = STATE(518), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(518), + [sym_identifier] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2303), + [anon_sym_i8] = ACTIONS(2303), + [anon_sym_u16] = ACTIONS(2303), + [anon_sym_i16] = ACTIONS(2303), + [anon_sym_u32] = ACTIONS(2303), + [anon_sym_i32] = ACTIONS(2303), + [anon_sym_u64] = ACTIONS(2303), + [anon_sym_i64] = ACTIONS(2303), + [anon_sym_u128] = ACTIONS(2303), + [anon_sym_i128] = ACTIONS(2303), + [anon_sym_isize] = ACTIONS(2303), + [anon_sym_usize] = ACTIONS(2303), + [anon_sym_f32] = ACTIONS(2303), + [anon_sym_f64] = ACTIONS(2303), + [anon_sym_bool] = ACTIONS(2303), + [anon_sym_str] = ACTIONS(2303), + [anon_sym_char] = ACTIONS(2303), + [aux_sym__non_special_token_token1] = ACTIONS(2303), + [anon_sym_SQUOTE] = ACTIONS(2303), + [anon_sym_as] = ACTIONS(2303), + [anon_sym_async] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(2303), + [anon_sym_enum] = ACTIONS(2303), + [anon_sym_fn] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_impl] = ACTIONS(2303), + [anon_sym_let] = ACTIONS(2303), + [anon_sym_loop] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2303), + [anon_sym_mod] = ACTIONS(2303), + [anon_sym_pub] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_static] = ACTIONS(2303), + [anon_sym_struct] = ACTIONS(2303), + [anon_sym_trait] = ACTIONS(2303), + [anon_sym_type] = ACTIONS(2303), + [anon_sym_union] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(2303), + [anon_sym_use] = ACTIONS(2303), + [anon_sym_where] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [sym_mutable_specifier] = ACTIONS(2303), + [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(1000), + [sym_self] = ACTIONS(2303), + [sym_super] = ACTIONS(2303), + [sym_crate] = ACTIONS(2303), + [sym_metavariable] = ACTIONS(2305), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [543] = { - [sym__never_special_token] = STATE(519), - [sym_delim_token_tree] = STATE(519), - [sym__delim_tokens] = STATE(519), - [sym__non_delim_token] = STATE(519), - [sym__literal] = STATE(519), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(519), + [sym_delim_token_tree] = STATE(515), + [sym__delim_tokens] = STATE(515), + [sym__non_delim_token] = STATE(515), + [sym__literal] = STATE(515), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(515), [sym_identifier] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2173), [anon_sym_DOLLAR] = ACTIONS(2309), [anon_sym_u8] = ACTIONS(2307), [anon_sym_i8] = ACTIONS(2307), @@ -63479,7 +63413,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2307), [anon_sym_str] = ACTIONS(2307), [anon_sym_char] = ACTIONS(2307), - [aux_sym__never_special_token_token1] = ACTIONS(2307), + [aux_sym__non_special_token_token1] = ACTIONS(2307), [anon_sym_SQUOTE] = ACTIONS(2307), [anon_sym_as] = ACTIONS(2307), [anon_sym_async] = ACTIONS(2307), @@ -63509,33 +63443,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2307), [anon_sym_while] = ACTIONS(2307), [sym_mutable_specifier] = ACTIONS(2307), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), [sym_self] = ACTIONS(2307), [sym_super] = ACTIONS(2307), [sym_crate] = ACTIONS(2307), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [544] = { - [sym__never_special_token] = STATE(521), - [sym_delim_token_tree] = STATE(521), - [sym__delim_tokens] = STATE(521), - [sym__non_delim_token] = STATE(521), - [sym__literal] = STATE(521), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(521), + [sym_delim_token_tree] = STATE(516), + [sym__delim_tokens] = STATE(516), + [sym__non_delim_token] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(516), [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_RPAREN] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), [anon_sym_DOLLAR] = ACTIONS(2313), [anon_sym_u8] = ACTIONS(2311), [anon_sym_i8] = ACTIONS(2311), @@ -63554,7 +63487,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2311), [anon_sym_str] = ACTIONS(2311), [anon_sym_char] = ACTIONS(2311), - [aux_sym__never_special_token_token1] = ACTIONS(2311), + [aux_sym__non_special_token_token1] = ACTIONS(2311), [anon_sym_SQUOTE] = ACTIONS(2311), [anon_sym_as] = ACTIONS(2311), [anon_sym_async] = ACTIONS(2311), @@ -63584,92 +63517,91 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2311), [anon_sym_while] = ACTIONS(2311), [sym_mutable_specifier] = ACTIONS(2311), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(950), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(1000), [sym_self] = ACTIONS(2311), [sym_super] = ACTIONS(2311), [sym_crate] = ACTIONS(2311), - [sym_raw_string_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [545] = { - [sym_token_tree] = STATE(302), - [sym_token_repetition] = STATE(302), - [sym__never_special_token] = STATE(302), - [sym__literal] = STATE(302), - [sym_string_literal] = STATE(568), - [sym_boolean_literal] = STATE(568), - [aux_sym_token_tree_repeat1] = STATE(302), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2211), - [anon_sym_u8] = ACTIONS(2239), - [anon_sym_i8] = ACTIONS(2239), - [anon_sym_u16] = ACTIONS(2239), - [anon_sym_i16] = ACTIONS(2239), - [anon_sym_u32] = ACTIONS(2239), - [anon_sym_i32] = ACTIONS(2239), - [anon_sym_u64] = ACTIONS(2239), - [anon_sym_i64] = ACTIONS(2239), - [anon_sym_u128] = ACTIONS(2239), - [anon_sym_i128] = ACTIONS(2239), - [anon_sym_isize] = ACTIONS(2239), - [anon_sym_usize] = ACTIONS(2239), - [anon_sym_f32] = ACTIONS(2239), - [anon_sym_f64] = ACTIONS(2239), - [anon_sym_bool] = ACTIONS(2239), - [anon_sym_str] = ACTIONS(2239), - [anon_sym_char] = ACTIONS(2239), - [aux_sym__never_special_token_token1] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_impl] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_mod] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_static] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_trait] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_where] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [sym_mutable_specifier] = ACTIONS(2239), - [sym_integer_literal] = ACTIONS(1162), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1162), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2239), - [sym_super] = ACTIONS(2239), - [sym_crate] = ACTIONS(2239), - [sym_metavariable] = ACTIONS(2243), - [sym_raw_string_literal] = ACTIONS(1162), - [sym_float_literal] = ACTIONS(1162), + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(569), + [sym_boolean_literal] = STATE(569), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2235), + [anon_sym_i8] = ACTIONS(2235), + [anon_sym_u16] = ACTIONS(2235), + [anon_sym_i16] = ACTIONS(2235), + [anon_sym_u32] = ACTIONS(2235), + [anon_sym_i32] = ACTIONS(2235), + [anon_sym_u64] = ACTIONS(2235), + [anon_sym_i64] = ACTIONS(2235), + [anon_sym_u128] = ACTIONS(2235), + [anon_sym_i128] = ACTIONS(2235), + [anon_sym_isize] = ACTIONS(2235), + [anon_sym_usize] = ACTIONS(2235), + [anon_sym_f32] = ACTIONS(2235), + [anon_sym_f64] = ACTIONS(2235), + [anon_sym_bool] = ACTIONS(2235), + [anon_sym_str] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [aux_sym__non_special_token_token1] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_fn] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_impl] = ACTIONS(2235), + [anon_sym_let] = ACTIONS(2235), + [anon_sym_loop] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_mod] = ACTIONS(2235), + [anon_sym_pub] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_trait] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_unsafe] = ACTIONS(2235), + [anon_sym_use] = ACTIONS(2235), + [anon_sym_where] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [sym_mutable_specifier] = ACTIONS(2235), + [sym_integer_literal] = ACTIONS(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(1000), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2239), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), [sym_block_comment] = ACTIONS(3), }, [546] = { @@ -63746,7 +63678,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [547] = { - [sym_attribute_item] = STATE(600), + [sym_attribute_item] = STATE(629), [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), @@ -63771,36 +63703,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1421), [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), - [aux_sym_enum_variant_list_repeat1] = STATE(600), - [sym_identifier] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1194), - [anon_sym_union] = ACTIONS(1194), + [aux_sym_enum_variant_list_repeat1] = STATE(629), + [sym_identifier] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -63810,16 +63742,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, [548] = { - [sym_attribute_item] = STATE(600), + [sym_attribute_item] = STATE(629), [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), @@ -63844,36 +63776,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_negative_literal] = STATE(1421), [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), - [aux_sym_enum_variant_list_repeat1] = STATE(600), - [sym_identifier] = ACTIONS(1182), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1194), - [anon_sym_union] = ACTIONS(1194), + [aux_sym_enum_variant_list_repeat1] = STATE(629), + [sym_identifier] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_union] = ACTIONS(1174), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -63883,10 +63815,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -64421,7 +64353,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2341), [anon_sym_str] = ACTIONS(2341), [anon_sym_char] = ACTIONS(2341), - [aux_sym__never_special_token_token1] = ACTIONS(2341), + [aux_sym__non_special_token_token1] = ACTIONS(2341), [anon_sym_SQUOTE] = ACTIONS(2341), [anon_sym_as] = ACTIONS(2341), [anon_sym_async] = ACTIONS(2341), @@ -64456,7 +64388,7 @@ static 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(950), + [sym_line_comment] = ACTIONS(1000), [sym_self] = ACTIONS(2341), [sym_super] = ACTIONS(2341), [sym_crate] = ACTIONS(2341), @@ -64469,7 +64401,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute_item] = STATE(1140), [sym_function_modifiers] = STATE(2411), [sym_extern_modifier] = STATE(1575), - [sym_visibility_modifier] = STATE(672), + [sym_visibility_modifier] = STATE(669), [sym__type] = STATE(1804), [sym_bracketed_type] = STATE(2370), [sym_lifetime] = STATE(2409), @@ -64633,7 +64565,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2347), [anon_sym_str] = ACTIONS(2347), [anon_sym_char] = ACTIONS(2347), - [aux_sym__never_special_token_token1] = ACTIONS(2347), + [aux_sym__non_special_token_token1] = ACTIONS(2347), [anon_sym_SQUOTE] = ACTIONS(2347), [anon_sym_as] = ACTIONS(2347), [anon_sym_async] = ACTIONS(2347), @@ -64668,7 +64600,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2349), [anon_sym_true] = ACTIONS(2347), [anon_sym_false] = ACTIONS(2347), - [sym_line_comment] = ACTIONS(950), + [sym_line_comment] = ACTIONS(1000), [sym_self] = ACTIONS(2347), [sym_super] = ACTIONS(2347), [sym_crate] = ACTIONS(2347), @@ -64678,6 +64610,1266 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [560] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1843), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_COMMA] = ACTIONS(840), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [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(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [561] = { + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_RPAREN] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_RBRACK] = ACTIONS(2359), + [anon_sym_DOLLAR] = ACTIONS(2357), + [anon_sym_u8] = ACTIONS(2357), + [anon_sym_i8] = ACTIONS(2357), + [anon_sym_u16] = ACTIONS(2357), + [anon_sym_i16] = ACTIONS(2357), + [anon_sym_u32] = ACTIONS(2357), + [anon_sym_i32] = ACTIONS(2357), + [anon_sym_u64] = ACTIONS(2357), + [anon_sym_i64] = ACTIONS(2357), + [anon_sym_u128] = ACTIONS(2357), + [anon_sym_i128] = ACTIONS(2357), + [anon_sym_isize] = ACTIONS(2357), + [anon_sym_usize] = ACTIONS(2357), + [anon_sym_f32] = ACTIONS(2357), + [anon_sym_f64] = ACTIONS(2357), + [anon_sym_bool] = ACTIONS(2357), + [anon_sym_str] = ACTIONS(2357), + [anon_sym_char] = ACTIONS(2357), + [aux_sym__non_special_token_token1] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_as] = ACTIONS(2357), + [anon_sym_async] = ACTIONS(2357), + [anon_sym_await] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_default] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_fn] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_impl] = ACTIONS(2357), + [anon_sym_let] = ACTIONS(2357), + [anon_sym_loop] = ACTIONS(2357), + [anon_sym_match] = ACTIONS(2357), + [anon_sym_mod] = ACTIONS(2357), + [anon_sym_pub] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_trait] = ACTIONS(2357), + [anon_sym_type] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_unsafe] = ACTIONS(2357), + [anon_sym_use] = ACTIONS(2357), + [anon_sym_where] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [sym_mutable_specifier] = ACTIONS(2357), + [sym_integer_literal] = ACTIONS(2359), + [aux_sym_string_literal_token1] = ACTIONS(2359), + [sym_char_literal] = ACTIONS(2359), + [anon_sym_true] = ACTIONS(2357), + [anon_sym_false] = ACTIONS(2357), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2357), + [sym_super] = ACTIONS(2357), + [sym_crate] = ACTIONS(2357), + [sym_metavariable] = ACTIONS(2359), + [sym_raw_string_literal] = ACTIONS(2359), + [sym_float_literal] = ACTIONS(2359), + [sym_block_comment] = ACTIONS(3), + }, + [562] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1821), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_COMMA] = ACTIONS(2363), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [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(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [563] = { + [sym_function_modifiers] = STATE(2411), + [sym_const_parameter] = STATE(2119), + [sym_constrained_type_parameter] = STATE(1862), + [sym_optional_type_parameter] = STATE(2119), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(2068), + [sym_bracketed_type] = STATE(2370), + [sym_qualified_type] = STATE(2346), + [sym_lifetime] = STATE(1682), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2365), + [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(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(2367), + [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(2369), + [sym_block_comment] = ACTIONS(3), + }, + [564] = { + [sym_identifier] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_RPAREN] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_RBRACK] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2371), + [anon_sym_u8] = ACTIONS(2371), + [anon_sym_i8] = ACTIONS(2371), + [anon_sym_u16] = ACTIONS(2371), + [anon_sym_i16] = ACTIONS(2371), + [anon_sym_u32] = ACTIONS(2371), + [anon_sym_i32] = ACTIONS(2371), + [anon_sym_u64] = ACTIONS(2371), + [anon_sym_i64] = ACTIONS(2371), + [anon_sym_u128] = ACTIONS(2371), + [anon_sym_i128] = ACTIONS(2371), + [anon_sym_isize] = ACTIONS(2371), + [anon_sym_usize] = ACTIONS(2371), + [anon_sym_f32] = ACTIONS(2371), + [anon_sym_f64] = ACTIONS(2371), + [anon_sym_bool] = ACTIONS(2371), + [anon_sym_str] = ACTIONS(2371), + [anon_sym_char] = ACTIONS(2371), + [aux_sym__non_special_token_token1] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_as] = ACTIONS(2371), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_await] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_enum] = ACTIONS(2371), + [anon_sym_fn] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_impl] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_loop] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_mod] = ACTIONS(2371), + [anon_sym_pub] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2371), + [anon_sym_trait] = ACTIONS(2371), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_unsafe] = ACTIONS(2371), + [anon_sym_use] = ACTIONS(2371), + [anon_sym_where] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [sym_mutable_specifier] = ACTIONS(2371), + [sym_integer_literal] = ACTIONS(2373), + [aux_sym_string_literal_token1] = ACTIONS(2373), + [sym_char_literal] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2371), + [anon_sym_false] = ACTIONS(2371), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2371), + [sym_super] = ACTIONS(2371), + [sym_crate] = ACTIONS(2371), + [sym_metavariable] = ACTIONS(2373), + [sym_raw_string_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), + [sym_block_comment] = ACTIONS(3), + }, + [565] = { + [sym_identifier] = ACTIONS(2375), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_RPAREN] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_RBRACK] = ACTIONS(2377), + [anon_sym_DOLLAR] = ACTIONS(2375), + [anon_sym_u8] = ACTIONS(2375), + [anon_sym_i8] = ACTIONS(2375), + [anon_sym_u16] = ACTIONS(2375), + [anon_sym_i16] = ACTIONS(2375), + [anon_sym_u32] = ACTIONS(2375), + [anon_sym_i32] = ACTIONS(2375), + [anon_sym_u64] = ACTIONS(2375), + [anon_sym_i64] = ACTIONS(2375), + [anon_sym_u128] = ACTIONS(2375), + [anon_sym_i128] = ACTIONS(2375), + [anon_sym_isize] = ACTIONS(2375), + [anon_sym_usize] = ACTIONS(2375), + [anon_sym_f32] = ACTIONS(2375), + [anon_sym_f64] = ACTIONS(2375), + [anon_sym_bool] = ACTIONS(2375), + [anon_sym_str] = ACTIONS(2375), + [anon_sym_char] = ACTIONS(2375), + [aux_sym__non_special_token_token1] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_as] = ACTIONS(2375), + [anon_sym_async] = ACTIONS(2375), + [anon_sym_await] = ACTIONS(2375), + [anon_sym_break] = ACTIONS(2375), + [anon_sym_const] = ACTIONS(2375), + [anon_sym_continue] = ACTIONS(2375), + [anon_sym_default] = ACTIONS(2375), + [anon_sym_enum] = ACTIONS(2375), + [anon_sym_fn] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2375), + [anon_sym_if] = ACTIONS(2375), + [anon_sym_impl] = ACTIONS(2375), + [anon_sym_let] = ACTIONS(2375), + [anon_sym_loop] = ACTIONS(2375), + [anon_sym_match] = ACTIONS(2375), + [anon_sym_mod] = ACTIONS(2375), + [anon_sym_pub] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2375), + [anon_sym_static] = ACTIONS(2375), + [anon_sym_struct] = ACTIONS(2375), + [anon_sym_trait] = ACTIONS(2375), + [anon_sym_type] = ACTIONS(2375), + [anon_sym_union] = ACTIONS(2375), + [anon_sym_unsafe] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2375), + [anon_sym_where] = ACTIONS(2375), + [anon_sym_while] = ACTIONS(2375), + [sym_mutable_specifier] = ACTIONS(2375), + [sym_integer_literal] = ACTIONS(2377), + [aux_sym_string_literal_token1] = ACTIONS(2377), + [sym_char_literal] = ACTIONS(2377), + [anon_sym_true] = ACTIONS(2375), + [anon_sym_false] = ACTIONS(2375), + [sym_line_comment] = ACTIONS(1000), + [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), + }, + [566] = { + [sym_identifier] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_RBRACE] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_RBRACK] = ACTIONS(2381), + [anon_sym_DOLLAR] = ACTIONS(2379), + [anon_sym_u8] = ACTIONS(2379), + [anon_sym_i8] = ACTIONS(2379), + [anon_sym_u16] = ACTIONS(2379), + [anon_sym_i16] = ACTIONS(2379), + [anon_sym_u32] = ACTIONS(2379), + [anon_sym_i32] = ACTIONS(2379), + [anon_sym_u64] = ACTIONS(2379), + [anon_sym_i64] = ACTIONS(2379), + [anon_sym_u128] = ACTIONS(2379), + [anon_sym_i128] = ACTIONS(2379), + [anon_sym_isize] = ACTIONS(2379), + [anon_sym_usize] = ACTIONS(2379), + [anon_sym_f32] = ACTIONS(2379), + [anon_sym_f64] = ACTIONS(2379), + [anon_sym_bool] = ACTIONS(2379), + [anon_sym_str] = ACTIONS(2379), + [anon_sym_char] = ACTIONS(2379), + [aux_sym__non_special_token_token1] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_as] = ACTIONS(2379), + [anon_sym_async] = ACTIONS(2379), + [anon_sym_await] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), + [anon_sym_fn] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_impl] = ACTIONS(2379), + [anon_sym_let] = ACTIONS(2379), + [anon_sym_loop] = ACTIONS(2379), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_mod] = ACTIONS(2379), + [anon_sym_pub] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_static] = ACTIONS(2379), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_trait] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2379), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_unsafe] = ACTIONS(2379), + [anon_sym_use] = ACTIONS(2379), + [anon_sym_where] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [sym_mutable_specifier] = ACTIONS(2379), + [sym_integer_literal] = ACTIONS(2381), + [aux_sym_string_literal_token1] = ACTIONS(2381), + [sym_char_literal] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(2379), + [anon_sym_false] = ACTIONS(2379), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2379), + [sym_super] = ACTIONS(2379), + [sym_crate] = ACTIONS(2379), + [sym_metavariable] = ACTIONS(2381), + [sym_raw_string_literal] = ACTIONS(2381), + [sym_float_literal] = ACTIONS(2381), + [sym_block_comment] = ACTIONS(3), + }, + [567] = { + [sym_identifier] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_RPAREN] = ACTIONS(2385), + [anon_sym_LBRACE] = ACTIONS(2385), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2385), + [anon_sym_RBRACK] = ACTIONS(2385), + [anon_sym_DOLLAR] = ACTIONS(2383), + [anon_sym_u8] = ACTIONS(2383), + [anon_sym_i8] = ACTIONS(2383), + [anon_sym_u16] = ACTIONS(2383), + [anon_sym_i16] = ACTIONS(2383), + [anon_sym_u32] = ACTIONS(2383), + [anon_sym_i32] = ACTIONS(2383), + [anon_sym_u64] = ACTIONS(2383), + [anon_sym_i64] = ACTIONS(2383), + [anon_sym_u128] = ACTIONS(2383), + [anon_sym_i128] = ACTIONS(2383), + [anon_sym_isize] = ACTIONS(2383), + [anon_sym_usize] = ACTIONS(2383), + [anon_sym_f32] = ACTIONS(2383), + [anon_sym_f64] = ACTIONS(2383), + [anon_sym_bool] = ACTIONS(2383), + [anon_sym_str] = ACTIONS(2383), + [anon_sym_char] = ACTIONS(2383), + [aux_sym__non_special_token_token1] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_async] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_default] = ACTIONS(2383), + [anon_sym_enum] = ACTIONS(2383), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_impl] = ACTIONS(2383), + [anon_sym_let] = ACTIONS(2383), + [anon_sym_loop] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_mod] = ACTIONS(2383), + [anon_sym_pub] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_static] = ACTIONS(2383), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_trait] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2383), + [anon_sym_union] = ACTIONS(2383), + [anon_sym_unsafe] = ACTIONS(2383), + [anon_sym_use] = ACTIONS(2383), + [anon_sym_where] = ACTIONS(2383), + [anon_sym_while] = ACTIONS(2383), + [sym_mutable_specifier] = ACTIONS(2383), + [sym_integer_literal] = ACTIONS(2385), + [aux_sym_string_literal_token1] = ACTIONS(2385), + [sym_char_literal] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(2383), + [anon_sym_false] = ACTIONS(2383), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2383), + [sym_super] = ACTIONS(2383), + [sym_crate] = ACTIONS(2383), + [sym_metavariable] = ACTIONS(2385), + [sym_raw_string_literal] = ACTIONS(2385), + [sym_float_literal] = ACTIONS(2385), + [sym_block_comment] = ACTIONS(3), + }, + [568] = { + [sym_identifier] = ACTIONS(2387), + [anon_sym_LPAREN] = ACTIONS(2389), + [anon_sym_RPAREN] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_RBRACE] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(2389), + [anon_sym_RBRACK] = ACTIONS(2389), + [anon_sym_DOLLAR] = ACTIONS(2387), + [anon_sym_u8] = ACTIONS(2387), + [anon_sym_i8] = ACTIONS(2387), + [anon_sym_u16] = ACTIONS(2387), + [anon_sym_i16] = ACTIONS(2387), + [anon_sym_u32] = ACTIONS(2387), + [anon_sym_i32] = ACTIONS(2387), + [anon_sym_u64] = ACTIONS(2387), + [anon_sym_i64] = ACTIONS(2387), + [anon_sym_u128] = ACTIONS(2387), + [anon_sym_i128] = ACTIONS(2387), + [anon_sym_isize] = ACTIONS(2387), + [anon_sym_usize] = ACTIONS(2387), + [anon_sym_f32] = ACTIONS(2387), + [anon_sym_f64] = ACTIONS(2387), + [anon_sym_bool] = ACTIONS(2387), + [anon_sym_str] = ACTIONS(2387), + [anon_sym_char] = ACTIONS(2387), + [aux_sym__non_special_token_token1] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [anon_sym_as] = ACTIONS(2387), + [anon_sym_async] = ACTIONS(2387), + [anon_sym_await] = ACTIONS(2387), + [anon_sym_break] = ACTIONS(2387), + [anon_sym_const] = ACTIONS(2387), + [anon_sym_continue] = ACTIONS(2387), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_enum] = ACTIONS(2387), + [anon_sym_fn] = ACTIONS(2387), + [anon_sym_for] = ACTIONS(2387), + [anon_sym_if] = ACTIONS(2387), + [anon_sym_impl] = ACTIONS(2387), + [anon_sym_let] = ACTIONS(2387), + [anon_sym_loop] = ACTIONS(2387), + [anon_sym_match] = ACTIONS(2387), + [anon_sym_mod] = ACTIONS(2387), + [anon_sym_pub] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2387), + [anon_sym_static] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(2387), + [anon_sym_trait] = ACTIONS(2387), + [anon_sym_type] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(2387), + [anon_sym_use] = ACTIONS(2387), + [anon_sym_where] = ACTIONS(2387), + [anon_sym_while] = ACTIONS(2387), + [sym_mutable_specifier] = ACTIONS(2387), + [sym_integer_literal] = ACTIONS(2389), + [aux_sym_string_literal_token1] = ACTIONS(2389), + [sym_char_literal] = ACTIONS(2389), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2387), + [sym_super] = ACTIONS(2387), + [sym_crate] = ACTIONS(2387), + [sym_metavariable] = ACTIONS(2389), + [sym_raw_string_literal] = ACTIONS(2389), + [sym_float_literal] = ACTIONS(2389), + [sym_block_comment] = ACTIONS(3), + }, + [569] = { + [sym_identifier] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_RPAREN] = ACTIONS(2393), + [anon_sym_LBRACE] = ACTIONS(2393), + [anon_sym_RBRACE] = ACTIONS(2393), + [anon_sym_LBRACK] = ACTIONS(2393), + [anon_sym_RBRACK] = ACTIONS(2393), + [anon_sym_DOLLAR] = ACTIONS(2391), + [anon_sym_u8] = ACTIONS(2391), + [anon_sym_i8] = ACTIONS(2391), + [anon_sym_u16] = ACTIONS(2391), + [anon_sym_i16] = ACTIONS(2391), + [anon_sym_u32] = ACTIONS(2391), + [anon_sym_i32] = ACTIONS(2391), + [anon_sym_u64] = ACTIONS(2391), + [anon_sym_i64] = ACTIONS(2391), + [anon_sym_u128] = ACTIONS(2391), + [anon_sym_i128] = ACTIONS(2391), + [anon_sym_isize] = ACTIONS(2391), + [anon_sym_usize] = ACTIONS(2391), + [anon_sym_f32] = ACTIONS(2391), + [anon_sym_f64] = ACTIONS(2391), + [anon_sym_bool] = ACTIONS(2391), + [anon_sym_str] = ACTIONS(2391), + [anon_sym_char] = ACTIONS(2391), + [aux_sym__non_special_token_token1] = ACTIONS(2391), + [anon_sym_SQUOTE] = ACTIONS(2391), + [anon_sym_as] = ACTIONS(2391), + [anon_sym_async] = ACTIONS(2391), + [anon_sym_await] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(2391), + [anon_sym_const] = ACTIONS(2391), + [anon_sym_continue] = ACTIONS(2391), + [anon_sym_default] = ACTIONS(2391), + [anon_sym_enum] = ACTIONS(2391), + [anon_sym_fn] = ACTIONS(2391), + [anon_sym_for] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2391), + [anon_sym_impl] = ACTIONS(2391), + [anon_sym_let] = ACTIONS(2391), + [anon_sym_loop] = ACTIONS(2391), + [anon_sym_match] = ACTIONS(2391), + [anon_sym_mod] = ACTIONS(2391), + [anon_sym_pub] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2391), + [anon_sym_static] = ACTIONS(2391), + [anon_sym_struct] = ACTIONS(2391), + [anon_sym_trait] = ACTIONS(2391), + [anon_sym_type] = ACTIONS(2391), + [anon_sym_union] = ACTIONS(2391), + [anon_sym_unsafe] = ACTIONS(2391), + [anon_sym_use] = ACTIONS(2391), + [anon_sym_where] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(2391), + [sym_mutable_specifier] = ACTIONS(2391), + [sym_integer_literal] = ACTIONS(2393), + [aux_sym_string_literal_token1] = ACTIONS(2393), + [sym_char_literal] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(2391), + [anon_sym_false] = ACTIONS(2391), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2391), + [sym_super] = ACTIONS(2391), + [sym_crate] = ACTIONS(2391), + [sym_metavariable] = ACTIONS(2393), + [sym_raw_string_literal] = ACTIONS(2393), + [sym_float_literal] = ACTIONS(2393), + [sym_block_comment] = ACTIONS(3), + }, + [570] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2397), + [anon_sym_RPAREN] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2397), + [anon_sym_RBRACK] = ACTIONS(2397), + [anon_sym_DOLLAR] = ACTIONS(2395), + [anon_sym_u8] = ACTIONS(2395), + [anon_sym_i8] = ACTIONS(2395), + [anon_sym_u16] = ACTIONS(2395), + [anon_sym_i16] = ACTIONS(2395), + [anon_sym_u32] = ACTIONS(2395), + [anon_sym_i32] = ACTIONS(2395), + [anon_sym_u64] = ACTIONS(2395), + [anon_sym_i64] = ACTIONS(2395), + [anon_sym_u128] = ACTIONS(2395), + [anon_sym_i128] = ACTIONS(2395), + [anon_sym_isize] = ACTIONS(2395), + [anon_sym_usize] = ACTIONS(2395), + [anon_sym_f32] = ACTIONS(2395), + [anon_sym_f64] = ACTIONS(2395), + [anon_sym_bool] = ACTIONS(2395), + [anon_sym_str] = ACTIONS(2395), + [anon_sym_char] = ACTIONS(2395), + [aux_sym__non_special_token_token1] = ACTIONS(2395), + [anon_sym_SQUOTE] = ACTIONS(2395), + [anon_sym_as] = ACTIONS(2395), + [anon_sym_async] = ACTIONS(2395), + [anon_sym_await] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_fn] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_impl] = ACTIONS(2395), + [anon_sym_let] = ACTIONS(2395), + [anon_sym_loop] = ACTIONS(2395), + [anon_sym_match] = ACTIONS(2395), + [anon_sym_mod] = ACTIONS(2395), + [anon_sym_pub] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_trait] = ACTIONS(2395), + [anon_sym_type] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_unsafe] = ACTIONS(2395), + [anon_sym_use] = ACTIONS(2395), + [anon_sym_where] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [sym_mutable_specifier] = ACTIONS(2395), + [sym_integer_literal] = ACTIONS(2397), + [aux_sym_string_literal_token1] = ACTIONS(2397), + [sym_char_literal] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(2395), + [anon_sym_false] = ACTIONS(2395), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2395), + [sym_super] = ACTIONS(2395), + [sym_crate] = ACTIONS(2395), + [sym_metavariable] = ACTIONS(2397), + [sym_raw_string_literal] = ACTIONS(2397), + [sym_float_literal] = ACTIONS(2397), + [sym_block_comment] = ACTIONS(3), + }, + [571] = { + [sym_identifier] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym_RPAREN] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_RBRACE] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_RBRACK] = ACTIONS(2401), + [anon_sym_DOLLAR] = ACTIONS(2399), + [anon_sym_u8] = ACTIONS(2399), + [anon_sym_i8] = ACTIONS(2399), + [anon_sym_u16] = ACTIONS(2399), + [anon_sym_i16] = ACTIONS(2399), + [anon_sym_u32] = ACTIONS(2399), + [anon_sym_i32] = ACTIONS(2399), + [anon_sym_u64] = ACTIONS(2399), + [anon_sym_i64] = ACTIONS(2399), + [anon_sym_u128] = ACTIONS(2399), + [anon_sym_i128] = ACTIONS(2399), + [anon_sym_isize] = ACTIONS(2399), + [anon_sym_usize] = ACTIONS(2399), + [anon_sym_f32] = ACTIONS(2399), + [anon_sym_f64] = ACTIONS(2399), + [anon_sym_bool] = ACTIONS(2399), + [anon_sym_str] = ACTIONS(2399), + [anon_sym_char] = ACTIONS(2399), + [aux_sym__non_special_token_token1] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_as] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_await] = ACTIONS(2399), + [anon_sym_break] = ACTIONS(2399), + [anon_sym_const] = ACTIONS(2399), + [anon_sym_continue] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(2399), + [anon_sym_enum] = ACTIONS(2399), + [anon_sym_fn] = ACTIONS(2399), + [anon_sym_for] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2399), + [anon_sym_impl] = ACTIONS(2399), + [anon_sym_let] = ACTIONS(2399), + [anon_sym_loop] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_mod] = ACTIONS(2399), + [anon_sym_pub] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2399), + [anon_sym_trait] = ACTIONS(2399), + [anon_sym_type] = ACTIONS(2399), + [anon_sym_union] = ACTIONS(2399), + [anon_sym_unsafe] = ACTIONS(2399), + [anon_sym_use] = ACTIONS(2399), + [anon_sym_where] = ACTIONS(2399), + [anon_sym_while] = ACTIONS(2399), + [sym_mutable_specifier] = ACTIONS(2399), + [sym_integer_literal] = ACTIONS(2401), + [aux_sym_string_literal_token1] = ACTIONS(2401), + [sym_char_literal] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_metavariable] = ACTIONS(2401), + [sym_raw_string_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2401), + [sym_block_comment] = ACTIONS(3), + }, + [572] = { + [sym_identifier] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_RPAREN] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_RBRACK] = ACTIONS(2405), + [anon_sym_DOLLAR] = ACTIONS(2403), + [anon_sym_u8] = ACTIONS(2403), + [anon_sym_i8] = ACTIONS(2403), + [anon_sym_u16] = ACTIONS(2403), + [anon_sym_i16] = ACTIONS(2403), + [anon_sym_u32] = ACTIONS(2403), + [anon_sym_i32] = ACTIONS(2403), + [anon_sym_u64] = ACTIONS(2403), + [anon_sym_i64] = ACTIONS(2403), + [anon_sym_u128] = ACTIONS(2403), + [anon_sym_i128] = ACTIONS(2403), + [anon_sym_isize] = ACTIONS(2403), + [anon_sym_usize] = ACTIONS(2403), + [anon_sym_f32] = ACTIONS(2403), + [anon_sym_f64] = ACTIONS(2403), + [anon_sym_bool] = ACTIONS(2403), + [anon_sym_str] = ACTIONS(2403), + [anon_sym_char] = ACTIONS(2403), + [aux_sym__non_special_token_token1] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_as] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_default] = ACTIONS(2403), + [anon_sym_enum] = ACTIONS(2403), + [anon_sym_fn] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_impl] = ACTIONS(2403), + [anon_sym_let] = ACTIONS(2403), + [anon_sym_loop] = ACTIONS(2403), + [anon_sym_match] = ACTIONS(2403), + [anon_sym_mod] = ACTIONS(2403), + [anon_sym_pub] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(2403), + [anon_sym_trait] = ACTIONS(2403), + [anon_sym_type] = ACTIONS(2403), + [anon_sym_union] = ACTIONS(2403), + [anon_sym_unsafe] = ACTIONS(2403), + [anon_sym_use] = ACTIONS(2403), + [anon_sym_where] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [sym_mutable_specifier] = ACTIONS(2403), + [sym_integer_literal] = ACTIONS(2405), + [aux_sym_string_literal_token1] = ACTIONS(2405), + [sym_char_literal] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(2403), + [anon_sym_false] = ACTIONS(2403), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2403), + [sym_super] = ACTIONS(2403), + [sym_crate] = ACTIONS(2403), + [sym_metavariable] = ACTIONS(2405), + [sym_raw_string_literal] = ACTIONS(2405), + [sym_float_literal] = ACTIONS(2405), + [sym_block_comment] = ACTIONS(3), + }, + [573] = { + [sym_identifier] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2409), + [anon_sym_RPAREN] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_RBRACE] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(2409), + [anon_sym_RBRACK] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2407), + [anon_sym_i8] = ACTIONS(2407), + [anon_sym_u16] = ACTIONS(2407), + [anon_sym_i16] = ACTIONS(2407), + [anon_sym_u32] = ACTIONS(2407), + [anon_sym_i32] = ACTIONS(2407), + [anon_sym_u64] = ACTIONS(2407), + [anon_sym_i64] = ACTIONS(2407), + [anon_sym_u128] = ACTIONS(2407), + [anon_sym_i128] = ACTIONS(2407), + [anon_sym_isize] = ACTIONS(2407), + [anon_sym_usize] = ACTIONS(2407), + [anon_sym_f32] = ACTIONS(2407), + [anon_sym_f64] = ACTIONS(2407), + [anon_sym_bool] = ACTIONS(2407), + [anon_sym_str] = ACTIONS(2407), + [anon_sym_char] = ACTIONS(2407), + [aux_sym__non_special_token_token1] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_as] = ACTIONS(2407), + [anon_sym_async] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_default] = ACTIONS(2407), + [anon_sym_enum] = ACTIONS(2407), + [anon_sym_fn] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_impl] = ACTIONS(2407), + [anon_sym_let] = ACTIONS(2407), + [anon_sym_loop] = ACTIONS(2407), + [anon_sym_match] = ACTIONS(2407), + [anon_sym_mod] = ACTIONS(2407), + [anon_sym_pub] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_static] = ACTIONS(2407), + [anon_sym_struct] = ACTIONS(2407), + [anon_sym_trait] = ACTIONS(2407), + [anon_sym_type] = ACTIONS(2407), + [anon_sym_union] = ACTIONS(2407), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2407), + [anon_sym_where] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [sym_mutable_specifier] = ACTIONS(2407), + [sym_integer_literal] = ACTIONS(2409), + [aux_sym_string_literal_token1] = ACTIONS(2409), + [sym_char_literal] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(2407), + [anon_sym_false] = ACTIONS(2407), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2407), + [sym_super] = ACTIONS(2407), + [sym_crate] = ACTIONS(2407), + [sym_metavariable] = ACTIONS(2409), + [sym_raw_string_literal] = ACTIONS(2409), + [sym_float_literal] = ACTIONS(2409), + [sym_block_comment] = ACTIONS(3), + }, + [574] = { + [sym_identifier] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_RPAREN] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_RBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_RBRACK] = ACTIONS(2413), + [anon_sym_DOLLAR] = ACTIONS(2411), + [anon_sym_u8] = ACTIONS(2411), + [anon_sym_i8] = ACTIONS(2411), + [anon_sym_u16] = ACTIONS(2411), + [anon_sym_i16] = ACTIONS(2411), + [anon_sym_u32] = ACTIONS(2411), + [anon_sym_i32] = ACTIONS(2411), + [anon_sym_u64] = ACTIONS(2411), + [anon_sym_i64] = ACTIONS(2411), + [anon_sym_u128] = ACTIONS(2411), + [anon_sym_i128] = ACTIONS(2411), + [anon_sym_isize] = ACTIONS(2411), + [anon_sym_usize] = ACTIONS(2411), + [anon_sym_f32] = ACTIONS(2411), + [anon_sym_f64] = ACTIONS(2411), + [anon_sym_bool] = ACTIONS(2411), + [anon_sym_str] = ACTIONS(2411), + [anon_sym_char] = ACTIONS(2411), + [aux_sym__non_special_token_token1] = ACTIONS(2411), + [anon_sym_SQUOTE] = ACTIONS(2411), + [anon_sym_as] = ACTIONS(2411), + [anon_sym_async] = ACTIONS(2411), + [anon_sym_await] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_fn] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_impl] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_loop] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_mod] = ACTIONS(2411), + [anon_sym_pub] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_trait] = ACTIONS(2411), + [anon_sym_type] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_unsafe] = ACTIONS(2411), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_where] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [sym_mutable_specifier] = ACTIONS(2411), + [sym_integer_literal] = ACTIONS(2413), + [aux_sym_string_literal_token1] = ACTIONS(2413), + [sym_char_literal] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(2411), + [anon_sym_false] = ACTIONS(2411), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2411), + [sym_super] = ACTIONS(2411), + [sym_crate] = ACTIONS(2411), + [sym_metavariable] = ACTIONS(2413), + [sym_raw_string_literal] = ACTIONS(2413), + [sym_float_literal] = ACTIONS(2413), + [sym_block_comment] = ACTIONS(3), + }, + [575] = { + [sym_identifier] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(2417), + [anon_sym_RPAREN] = ACTIONS(2417), + [anon_sym_LBRACE] = ACTIONS(2417), + [anon_sym_RBRACE] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2417), + [anon_sym_RBRACK] = ACTIONS(2417), + [anon_sym_DOLLAR] = ACTIONS(2415), + [anon_sym_u8] = ACTIONS(2415), + [anon_sym_i8] = ACTIONS(2415), + [anon_sym_u16] = ACTIONS(2415), + [anon_sym_i16] = ACTIONS(2415), + [anon_sym_u32] = ACTIONS(2415), + [anon_sym_i32] = ACTIONS(2415), + [anon_sym_u64] = ACTIONS(2415), + [anon_sym_i64] = ACTIONS(2415), + [anon_sym_u128] = ACTIONS(2415), + [anon_sym_i128] = ACTIONS(2415), + [anon_sym_isize] = ACTIONS(2415), + [anon_sym_usize] = ACTIONS(2415), + [anon_sym_f32] = ACTIONS(2415), + [anon_sym_f64] = ACTIONS(2415), + [anon_sym_bool] = ACTIONS(2415), + [anon_sym_str] = ACTIONS(2415), + [anon_sym_char] = ACTIONS(2415), + [aux_sym__non_special_token_token1] = ACTIONS(2415), + [anon_sym_SQUOTE] = ACTIONS(2415), + [anon_sym_as] = ACTIONS(2415), + [anon_sym_async] = ACTIONS(2415), + [anon_sym_await] = ACTIONS(2415), + [anon_sym_break] = ACTIONS(2415), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_continue] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2415), + [anon_sym_enum] = ACTIONS(2415), + [anon_sym_fn] = ACTIONS(2415), + [anon_sym_for] = ACTIONS(2415), + [anon_sym_if] = ACTIONS(2415), + [anon_sym_impl] = ACTIONS(2415), + [anon_sym_let] = ACTIONS(2415), + [anon_sym_loop] = ACTIONS(2415), + [anon_sym_match] = ACTIONS(2415), + [anon_sym_mod] = ACTIONS(2415), + [anon_sym_pub] = ACTIONS(2415), + [anon_sym_return] = ACTIONS(2415), + [anon_sym_static] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(2415), + [anon_sym_trait] = ACTIONS(2415), + [anon_sym_type] = ACTIONS(2415), + [anon_sym_union] = ACTIONS(2415), + [anon_sym_unsafe] = ACTIONS(2415), + [anon_sym_use] = ACTIONS(2415), + [anon_sym_where] = ACTIONS(2415), + [anon_sym_while] = ACTIONS(2415), + [sym_mutable_specifier] = ACTIONS(2415), + [sym_integer_literal] = ACTIONS(2417), + [aux_sym_string_literal_token1] = ACTIONS(2417), + [sym_char_literal] = ACTIONS(2417), + [anon_sym_true] = ACTIONS(2415), + [anon_sym_false] = ACTIONS(2415), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2415), + [sym_super] = ACTIONS(2415), + [sym_crate] = ACTIONS(2415), + [sym_metavariable] = ACTIONS(2417), + [sym_raw_string_literal] = ACTIONS(2417), + [sym_float_literal] = ACTIONS(2417), + [sym_block_comment] = ACTIONS(3), + }, + [576] = { + [sym_identifier] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym_RPAREN] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2421), + [anon_sym_RBRACK] = ACTIONS(2421), + [anon_sym_DOLLAR] = ACTIONS(2419), + [anon_sym_u8] = ACTIONS(2419), + [anon_sym_i8] = ACTIONS(2419), + [anon_sym_u16] = ACTIONS(2419), + [anon_sym_i16] = ACTIONS(2419), + [anon_sym_u32] = ACTIONS(2419), + [anon_sym_i32] = ACTIONS(2419), + [anon_sym_u64] = ACTIONS(2419), + [anon_sym_i64] = ACTIONS(2419), + [anon_sym_u128] = ACTIONS(2419), + [anon_sym_i128] = ACTIONS(2419), + [anon_sym_isize] = ACTIONS(2419), + [anon_sym_usize] = ACTIONS(2419), + [anon_sym_f32] = ACTIONS(2419), + [anon_sym_f64] = ACTIONS(2419), + [anon_sym_bool] = ACTIONS(2419), + [anon_sym_str] = ACTIONS(2419), + [anon_sym_char] = ACTIONS(2419), + [aux_sym__non_special_token_token1] = ACTIONS(2419), + [anon_sym_SQUOTE] = ACTIONS(2419), + [anon_sym_as] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_break] = ACTIONS(2419), + [anon_sym_const] = ACTIONS(2419), + [anon_sym_continue] = ACTIONS(2419), + [anon_sym_default] = ACTIONS(2419), + [anon_sym_enum] = ACTIONS(2419), + [anon_sym_fn] = ACTIONS(2419), + [anon_sym_for] = ACTIONS(2419), + [anon_sym_if] = ACTIONS(2419), + [anon_sym_impl] = ACTIONS(2419), + [anon_sym_let] = ACTIONS(2419), + [anon_sym_loop] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_mod] = ACTIONS(2419), + [anon_sym_pub] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_static] = ACTIONS(2419), + [anon_sym_struct] = ACTIONS(2419), + [anon_sym_trait] = ACTIONS(2419), + [anon_sym_type] = ACTIONS(2419), + [anon_sym_union] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(2419), + [anon_sym_use] = ACTIONS(2419), + [anon_sym_where] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [sym_mutable_specifier] = ACTIONS(2419), + [sym_integer_literal] = ACTIONS(2421), + [aux_sym_string_literal_token1] = ACTIONS(2421), + [sym_char_literal] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(2419), + [anon_sym_false] = ACTIONS(2419), + [sym_line_comment] = ACTIONS(1000), + [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), + }, + [577] = { + [sym_bracketed_type] = STATE(2440), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(2438), + [sym_scoped_identifier] = STATE(1369), + [sym_scoped_type_identifier] = STATE(1974), + [sym_const_block] = STATE(1473), + [sym__pattern] = STATE(1834), + [sym_tuple_pattern] = STATE(1473), + [sym_slice_pattern] = STATE(1473), + [sym_tuple_struct_pattern] = STATE(1473), + [sym_struct_pattern] = STATE(1473), + [sym_remaining_field_pattern] = STATE(1473), + [sym_mut_pattern] = STATE(1473), + [sym_range_pattern] = STATE(1473), + [sym_ref_pattern] = STATE(1473), + [sym_captured_pattern] = STATE(1473), + [sym_reference_pattern] = STATE(1473), + [sym_or_pattern] = STATE(1473), + [sym__literal_pattern] = STATE(1423), + [sym_negative_literal] = STATE(1421), + [sym_string_literal] = STATE(1421), + [sym_boolean_literal] = STATE(1421), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_RBRACK] = ACTIONS(810), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_ref] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1176), + [anon_sym__] = ACTIONS(822), + [anon_sym_AMP] = ACTIONS(1178), + [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(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), + [sym_block_comment] = ACTIONS(3), + }, + [578] = { [sym_parameter] = STATE(1986), [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), @@ -64702,59 +65894,198 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2353), - [anon_sym_union] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2423), + [anon_sym_union] = ACTIONS(2423), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), - [sym_mutable_specifier] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(2425), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2427), [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(2359), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(2429), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [561] = { + [579] = { + [sym_identifier] = ACTIONS(2431), + [anon_sym_LPAREN] = ACTIONS(2433), + [anon_sym_RPAREN] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_RBRACK] = ACTIONS(2433), + [anon_sym_DOLLAR] = ACTIONS(2431), + [anon_sym_u8] = ACTIONS(2431), + [anon_sym_i8] = ACTIONS(2431), + [anon_sym_u16] = ACTIONS(2431), + [anon_sym_i16] = ACTIONS(2431), + [anon_sym_u32] = ACTIONS(2431), + [anon_sym_i32] = ACTIONS(2431), + [anon_sym_u64] = ACTIONS(2431), + [anon_sym_i64] = ACTIONS(2431), + [anon_sym_u128] = ACTIONS(2431), + [anon_sym_i128] = ACTIONS(2431), + [anon_sym_isize] = ACTIONS(2431), + [anon_sym_usize] = ACTIONS(2431), + [anon_sym_f32] = ACTIONS(2431), + [anon_sym_f64] = ACTIONS(2431), + [anon_sym_bool] = ACTIONS(2431), + [anon_sym_str] = ACTIONS(2431), + [anon_sym_char] = ACTIONS(2431), + [aux_sym__non_special_token_token1] = ACTIONS(2431), + [anon_sym_SQUOTE] = ACTIONS(2431), + [anon_sym_as] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2431), + [anon_sym_break] = ACTIONS(2431), + [anon_sym_const] = ACTIONS(2431), + [anon_sym_continue] = ACTIONS(2431), + [anon_sym_default] = ACTIONS(2431), + [anon_sym_enum] = ACTIONS(2431), + [anon_sym_fn] = ACTIONS(2431), + [anon_sym_for] = ACTIONS(2431), + [anon_sym_if] = ACTIONS(2431), + [anon_sym_impl] = ACTIONS(2431), + [anon_sym_let] = ACTIONS(2431), + [anon_sym_loop] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_mod] = ACTIONS(2431), + [anon_sym_pub] = ACTIONS(2431), + [anon_sym_return] = ACTIONS(2431), + [anon_sym_static] = ACTIONS(2431), + [anon_sym_struct] = ACTIONS(2431), + [anon_sym_trait] = ACTIONS(2431), + [anon_sym_type] = ACTIONS(2431), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_unsafe] = ACTIONS(2431), + [anon_sym_use] = ACTIONS(2431), + [anon_sym_where] = ACTIONS(2431), + [anon_sym_while] = ACTIONS(2431), + [sym_mutable_specifier] = ACTIONS(2431), + [sym_integer_literal] = ACTIONS(2433), + [aux_sym_string_literal_token1] = ACTIONS(2433), + [sym_char_literal] = ACTIONS(2433), + [anon_sym_true] = ACTIONS(2431), + [anon_sym_false] = ACTIONS(2431), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2431), + [sym_super] = ACTIONS(2431), + [sym_crate] = ACTIONS(2431), + [sym_metavariable] = ACTIONS(2433), + [sym_raw_string_literal] = ACTIONS(2433), + [sym_float_literal] = ACTIONS(2433), + [sym_block_comment] = ACTIONS(3), + }, + [580] = { + [sym_identifier] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(620), + [anon_sym_RPAREN] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_LBRACK] = ACTIONS(620), + [anon_sym_RBRACK] = ACTIONS(620), + [anon_sym_DOLLAR] = ACTIONS(620), + [anon_sym_u8] = ACTIONS(622), + [anon_sym_i8] = ACTIONS(622), + [anon_sym_u16] = ACTIONS(622), + [anon_sym_i16] = ACTIONS(622), + [anon_sym_u32] = ACTIONS(622), + [anon_sym_i32] = ACTIONS(622), + [anon_sym_u64] = ACTIONS(622), + [anon_sym_i64] = ACTIONS(622), + [anon_sym_u128] = ACTIONS(622), + [anon_sym_i128] = ACTIONS(622), + [anon_sym_isize] = ACTIONS(622), + [anon_sym_usize] = ACTIONS(622), + [anon_sym_f32] = ACTIONS(622), + [anon_sym_f64] = ACTIONS(622), + [anon_sym_bool] = ACTIONS(622), + [anon_sym_str] = ACTIONS(622), + [anon_sym_char] = ACTIONS(622), + [aux_sym__non_special_token_token1] = ACTIONS(622), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_as] = ACTIONS(622), + [anon_sym_async] = ACTIONS(622), + [anon_sym_await] = ACTIONS(622), + [anon_sym_break] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_continue] = ACTIONS(622), + [anon_sym_default] = ACTIONS(622), + [anon_sym_enum] = ACTIONS(622), + [anon_sym_fn] = ACTIONS(622), + [anon_sym_for] = ACTIONS(622), + [anon_sym_if] = ACTIONS(622), + [anon_sym_impl] = ACTIONS(622), + [anon_sym_let] = ACTIONS(622), + [anon_sym_loop] = ACTIONS(622), + [anon_sym_match] = ACTIONS(622), + [anon_sym_mod] = ACTIONS(622), + [anon_sym_pub] = ACTIONS(622), + [anon_sym_return] = ACTIONS(622), + [anon_sym_static] = ACTIONS(622), + [anon_sym_struct] = ACTIONS(622), + [anon_sym_trait] = ACTIONS(622), + [anon_sym_type] = ACTIONS(622), + [anon_sym_union] = ACTIONS(622), + [anon_sym_unsafe] = ACTIONS(622), + [anon_sym_use] = ACTIONS(622), + [anon_sym_where] = ACTIONS(622), + [anon_sym_while] = ACTIONS(622), + [sym_mutable_specifier] = ACTIONS(622), + [sym_integer_literal] = ACTIONS(620), + [aux_sym_string_literal_token1] = ACTIONS(620), + [sym_char_literal] = ACTIONS(620), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(622), + [sym_super] = ACTIONS(622), + [sym_crate] = ACTIONS(622), + [sym_raw_string_literal] = ACTIONS(620), + [sym_float_literal] = ACTIONS(620), + [sym_block_comment] = ACTIONS(3), + }, + [581] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1821), + [sym__pattern] = STATE(1825), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -64771,35 +66102,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_RPAREN] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), - [anon_sym_COMMA] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -64809,94 +66139,160 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [562] = { - [sym_identifier] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_RPAREN] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2369), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2369), - [anon_sym_RBRACK] = ACTIONS(2369), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_u8] = ACTIONS(2367), - [anon_sym_i8] = ACTIONS(2367), - [anon_sym_u16] = ACTIONS(2367), - [anon_sym_i16] = ACTIONS(2367), - [anon_sym_u32] = ACTIONS(2367), - [anon_sym_i32] = ACTIONS(2367), - [anon_sym_u64] = ACTIONS(2367), - [anon_sym_i64] = ACTIONS(2367), - [anon_sym_u128] = ACTIONS(2367), - [anon_sym_i128] = ACTIONS(2367), - [anon_sym_isize] = ACTIONS(2367), - [anon_sym_usize] = ACTIONS(2367), - [anon_sym_f32] = ACTIONS(2367), - [anon_sym_f64] = ACTIONS(2367), - [anon_sym_bool] = ACTIONS(2367), - [anon_sym_str] = ACTIONS(2367), - [anon_sym_char] = ACTIONS(2367), - [aux_sym__never_special_token_token1] = ACTIONS(2367), - [anon_sym_SQUOTE] = ACTIONS(2367), - [anon_sym_as] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(2367), - [anon_sym_await] = ACTIONS(2367), - [anon_sym_break] = ACTIONS(2367), - [anon_sym_const] = ACTIONS(2367), - [anon_sym_continue] = ACTIONS(2367), - [anon_sym_default] = ACTIONS(2367), - [anon_sym_enum] = ACTIONS(2367), - [anon_sym_fn] = ACTIONS(2367), - [anon_sym_for] = ACTIONS(2367), - [anon_sym_if] = ACTIONS(2367), - [anon_sym_impl] = ACTIONS(2367), - [anon_sym_let] = ACTIONS(2367), - [anon_sym_loop] = ACTIONS(2367), - [anon_sym_match] = ACTIONS(2367), - [anon_sym_mod] = ACTIONS(2367), - [anon_sym_pub] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2367), - [anon_sym_static] = ACTIONS(2367), - [anon_sym_struct] = ACTIONS(2367), - [anon_sym_trait] = ACTIONS(2367), - [anon_sym_type] = ACTIONS(2367), - [anon_sym_union] = ACTIONS(2367), - [anon_sym_unsafe] = ACTIONS(2367), - [anon_sym_use] = ACTIONS(2367), - [anon_sym_where] = ACTIONS(2367), - [anon_sym_while] = ACTIONS(2367), - [sym_mutable_specifier] = ACTIONS(2367), - [sym_integer_literal] = ACTIONS(2369), - [aux_sym_string_literal_token1] = ACTIONS(2369), - [sym_char_literal] = ACTIONS(2369), - [anon_sym_true] = ACTIONS(2367), - [anon_sym_false] = ACTIONS(2367), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2367), - [sym_super] = ACTIONS(2367), - [sym_crate] = ACTIONS(2367), - [sym_metavariable] = ACTIONS(2369), - [sym_raw_string_literal] = ACTIONS(2369), - [sym_float_literal] = ACTIONS(2369), + [582] = { + [sym_identifier] = ACTIONS(654), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_RBRACK] = ACTIONS(652), + [anon_sym_DOLLAR] = 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), + [aux_sym__non_special_token_token1] = ACTIONS(654), + [anon_sym_SQUOTE] = ACTIONS(654), + [anon_sym_as] = ACTIONS(654), + [anon_sym_async] = ACTIONS(654), + [anon_sym_await] = 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_where] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [sym_mutable_specifier] = 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(1000), + [sym_self] = ACTIONS(654), + [sym_super] = ACTIONS(654), + [sym_crate] = ACTIONS(654), + [sym_raw_string_literal] = ACTIONS(652), + [sym_float_literal] = ACTIONS(652), [sym_block_comment] = ACTIONS(3), }, - [563] = { + [583] = { + [sym_identifier] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym_RPAREN] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2421), + [anon_sym_RBRACK] = ACTIONS(2421), + [anon_sym_DOLLAR] = ACTIONS(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), + [aux_sym__non_special_token_token1] = ACTIONS(2419), + [anon_sym_SQUOTE] = ACTIONS(2419), + [anon_sym_as] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_break] = ACTIONS(2419), + [anon_sym_const] = ACTIONS(2419), + [anon_sym_continue] = ACTIONS(2419), + [anon_sym_default] = ACTIONS(2419), + [anon_sym_enum] = ACTIONS(2419), + [anon_sym_fn] = ACTIONS(2419), + [anon_sym_for] = ACTIONS(2419), + [anon_sym_if] = ACTIONS(2419), + [anon_sym_impl] = ACTIONS(2419), + [anon_sym_let] = ACTIONS(2419), + [anon_sym_loop] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_mod] = ACTIONS(2419), + [anon_sym_pub] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_static] = ACTIONS(2419), + [anon_sym_struct] = ACTIONS(2419), + [anon_sym_trait] = ACTIONS(2419), + [anon_sym_type] = ACTIONS(2419), + [anon_sym_union] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(2419), + [anon_sym_use] = ACTIONS(2419), + [anon_sym_where] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [sym_mutable_specifier] = ACTIONS(2419), + [sym_integer_literal] = ACTIONS(2421), + [aux_sym_string_literal_token1] = ACTIONS(2421), + [sym_char_literal] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(2419), + [anon_sym_false] = ACTIONS(2419), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_raw_string_literal] = ACTIONS(2421), + [sym_float_literal] = ACTIONS(2421), + [sym_block_comment] = ACTIONS(3), + }, + [584] = { [sym_function_modifiers] = STATE(2411), - [sym_const_parameter] = STATE(2119), - [sym_constrained_type_parameter] = STATE(1862), - [sym_optional_type_parameter] = STATE(2119), + [sym_higher_ranked_trait_bound] = STATE(1560), + [sym_removed_trait_bound] = STATE(1560), [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(2068), + [sym__type] = STATE(1563), [sym_bracketed_type] = STATE(2370), - [sym_qualified_type] = STATE(2346), - [sym_lifetime] = STATE(1682), + [sym_lifetime] = STATE(1564), [sym_array_type] = STATE(1410), [sym_for_lifetimes] = STATE(1201), [sym_function_type] = STATE(1410), @@ -64914,10 +66310,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(2301), [sym_scoped_type_identifier] = STATE(1352), [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), + [anon_sym_QMARK] = ACTIONS(2437), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -64937,10 +66334,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(892), [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), + [anon_sym_for] = ACTIONS(2439), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), @@ -64954,1135 +66351,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(2375), - [sym_block_comment] = ACTIONS(3), - }, - [564] = { - [sym_identifier] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_RPAREN] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2379), - [anon_sym_LBRACK] = ACTIONS(2379), - [anon_sym_RBRACK] = ACTIONS(2379), - [anon_sym_DOLLAR] = ACTIONS(2377), - [anon_sym_u8] = ACTIONS(2377), - [anon_sym_i8] = ACTIONS(2377), - [anon_sym_u16] = ACTIONS(2377), - [anon_sym_i16] = ACTIONS(2377), - [anon_sym_u32] = ACTIONS(2377), - [anon_sym_i32] = ACTIONS(2377), - [anon_sym_u64] = ACTIONS(2377), - [anon_sym_i64] = ACTIONS(2377), - [anon_sym_u128] = ACTIONS(2377), - [anon_sym_i128] = ACTIONS(2377), - [anon_sym_isize] = ACTIONS(2377), - [anon_sym_usize] = ACTIONS(2377), - [anon_sym_f32] = ACTIONS(2377), - [anon_sym_f64] = ACTIONS(2377), - [anon_sym_bool] = ACTIONS(2377), - [anon_sym_str] = ACTIONS(2377), - [anon_sym_char] = ACTIONS(2377), - [aux_sym__never_special_token_token1] = ACTIONS(2377), - [anon_sym_SQUOTE] = ACTIONS(2377), - [anon_sym_as] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2377), - [anon_sym_await] = ACTIONS(2377), - [anon_sym_break] = ACTIONS(2377), - [anon_sym_const] = ACTIONS(2377), - [anon_sym_continue] = ACTIONS(2377), - [anon_sym_default] = ACTIONS(2377), - [anon_sym_enum] = ACTIONS(2377), - [anon_sym_fn] = ACTIONS(2377), - [anon_sym_for] = ACTIONS(2377), - [anon_sym_if] = ACTIONS(2377), - [anon_sym_impl] = ACTIONS(2377), - [anon_sym_let] = ACTIONS(2377), - [anon_sym_loop] = ACTIONS(2377), - [anon_sym_match] = ACTIONS(2377), - [anon_sym_mod] = ACTIONS(2377), - [anon_sym_pub] = ACTIONS(2377), - [anon_sym_return] = ACTIONS(2377), - [anon_sym_static] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(2377), - [anon_sym_trait] = ACTIONS(2377), - [anon_sym_type] = ACTIONS(2377), - [anon_sym_union] = ACTIONS(2377), - [anon_sym_unsafe] = ACTIONS(2377), - [anon_sym_use] = ACTIONS(2377), - [anon_sym_where] = ACTIONS(2377), - [anon_sym_while] = ACTIONS(2377), - [sym_mutable_specifier] = ACTIONS(2377), - [sym_integer_literal] = ACTIONS(2379), - [aux_sym_string_literal_token1] = ACTIONS(2379), - [sym_char_literal] = ACTIONS(2379), - [anon_sym_true] = ACTIONS(2377), - [anon_sym_false] = ACTIONS(2377), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2377), - [sym_super] = ACTIONS(2377), - [sym_crate] = ACTIONS(2377), - [sym_metavariable] = ACTIONS(2379), - [sym_raw_string_literal] = ACTIONS(2379), - [sym_float_literal] = ACTIONS(2379), - [sym_block_comment] = ACTIONS(3), - }, - [565] = { - [sym_identifier] = ACTIONS(2381), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_RPAREN] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_RBRACK] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(2381), - [anon_sym_u8] = ACTIONS(2381), - [anon_sym_i8] = ACTIONS(2381), - [anon_sym_u16] = ACTIONS(2381), - [anon_sym_i16] = ACTIONS(2381), - [anon_sym_u32] = ACTIONS(2381), - [anon_sym_i32] = ACTIONS(2381), - [anon_sym_u64] = ACTIONS(2381), - [anon_sym_i64] = ACTIONS(2381), - [anon_sym_u128] = ACTIONS(2381), - [anon_sym_i128] = ACTIONS(2381), - [anon_sym_isize] = ACTIONS(2381), - [anon_sym_usize] = ACTIONS(2381), - [anon_sym_f32] = ACTIONS(2381), - [anon_sym_f64] = ACTIONS(2381), - [anon_sym_bool] = ACTIONS(2381), - [anon_sym_str] = ACTIONS(2381), - [anon_sym_char] = ACTIONS(2381), - [aux_sym__never_special_token_token1] = ACTIONS(2381), - [anon_sym_SQUOTE] = ACTIONS(2381), - [anon_sym_as] = ACTIONS(2381), - [anon_sym_async] = ACTIONS(2381), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_break] = ACTIONS(2381), - [anon_sym_const] = ACTIONS(2381), - [anon_sym_continue] = ACTIONS(2381), - [anon_sym_default] = ACTIONS(2381), - [anon_sym_enum] = ACTIONS(2381), - [anon_sym_fn] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2381), - [anon_sym_if] = ACTIONS(2381), - [anon_sym_impl] = ACTIONS(2381), - [anon_sym_let] = ACTIONS(2381), - [anon_sym_loop] = ACTIONS(2381), - [anon_sym_match] = ACTIONS(2381), - [anon_sym_mod] = ACTIONS(2381), - [anon_sym_pub] = ACTIONS(2381), - [anon_sym_return] = ACTIONS(2381), - [anon_sym_static] = ACTIONS(2381), - [anon_sym_struct] = ACTIONS(2381), - [anon_sym_trait] = ACTIONS(2381), - [anon_sym_type] = ACTIONS(2381), - [anon_sym_union] = ACTIONS(2381), - [anon_sym_unsafe] = ACTIONS(2381), - [anon_sym_use] = ACTIONS(2381), - [anon_sym_where] = ACTIONS(2381), - [anon_sym_while] = ACTIONS(2381), - [sym_mutable_specifier] = ACTIONS(2381), - [sym_integer_literal] = ACTIONS(2383), - [aux_sym_string_literal_token1] = ACTIONS(2383), - [sym_char_literal] = ACTIONS(2383), - [anon_sym_true] = ACTIONS(2381), - [anon_sym_false] = ACTIONS(2381), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2381), - [sym_super] = ACTIONS(2381), - [sym_crate] = ACTIONS(2381), - [sym_metavariable] = ACTIONS(2383), - [sym_raw_string_literal] = ACTIONS(2383), - [sym_float_literal] = ACTIONS(2383), - [sym_block_comment] = ACTIONS(3), - }, - [566] = { - [sym_identifier] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_RBRACK] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(2385), - [anon_sym_u8] = ACTIONS(2385), - [anon_sym_i8] = ACTIONS(2385), - [anon_sym_u16] = ACTIONS(2385), - [anon_sym_i16] = ACTIONS(2385), - [anon_sym_u32] = ACTIONS(2385), - [anon_sym_i32] = ACTIONS(2385), - [anon_sym_u64] = ACTIONS(2385), - [anon_sym_i64] = ACTIONS(2385), - [anon_sym_u128] = ACTIONS(2385), - [anon_sym_i128] = ACTIONS(2385), - [anon_sym_isize] = ACTIONS(2385), - [anon_sym_usize] = ACTIONS(2385), - [anon_sym_f32] = ACTIONS(2385), - [anon_sym_f64] = ACTIONS(2385), - [anon_sym_bool] = ACTIONS(2385), - [anon_sym_str] = ACTIONS(2385), - [anon_sym_char] = ACTIONS(2385), - [aux_sym__never_special_token_token1] = ACTIONS(2385), - [anon_sym_SQUOTE] = ACTIONS(2385), - [anon_sym_as] = ACTIONS(2385), - [anon_sym_async] = ACTIONS(2385), - [anon_sym_await] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_impl] = ACTIONS(2385), - [anon_sym_let] = ACTIONS(2385), - [anon_sym_loop] = ACTIONS(2385), - [anon_sym_match] = ACTIONS(2385), - [anon_sym_mod] = ACTIONS(2385), - [anon_sym_pub] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2385), - [anon_sym_trait] = ACTIONS(2385), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), - [anon_sym_unsafe] = ACTIONS(2385), - [anon_sym_use] = ACTIONS(2385), - [anon_sym_where] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [sym_mutable_specifier] = ACTIONS(2385), - [sym_integer_literal] = ACTIONS(2387), - [aux_sym_string_literal_token1] = ACTIONS(2387), - [sym_char_literal] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2385), - [sym_super] = ACTIONS(2385), - [sym_crate] = ACTIONS(2385), - [sym_metavariable] = ACTIONS(2387), - [sym_raw_string_literal] = ACTIONS(2387), - [sym_float_literal] = ACTIONS(2387), - [sym_block_comment] = ACTIONS(3), - }, - [567] = { - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_RPAREN] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_RBRACK] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2389), - [anon_sym_u8] = ACTIONS(2389), - [anon_sym_i8] = ACTIONS(2389), - [anon_sym_u16] = ACTIONS(2389), - [anon_sym_i16] = ACTIONS(2389), - [anon_sym_u32] = ACTIONS(2389), - [anon_sym_i32] = ACTIONS(2389), - [anon_sym_u64] = ACTIONS(2389), - [anon_sym_i64] = ACTIONS(2389), - [anon_sym_u128] = ACTIONS(2389), - [anon_sym_i128] = ACTIONS(2389), - [anon_sym_isize] = ACTIONS(2389), - [anon_sym_usize] = ACTIONS(2389), - [anon_sym_f32] = ACTIONS(2389), - [anon_sym_f64] = ACTIONS(2389), - [anon_sym_bool] = ACTIONS(2389), - [anon_sym_str] = ACTIONS(2389), - [anon_sym_char] = ACTIONS(2389), - [aux_sym__never_special_token_token1] = ACTIONS(2389), - [anon_sym_SQUOTE] = ACTIONS(2389), - [anon_sym_as] = ACTIONS(2389), - [anon_sym_async] = ACTIONS(2389), - [anon_sym_await] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_default] = ACTIONS(2389), - [anon_sym_enum] = ACTIONS(2389), - [anon_sym_fn] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_impl] = ACTIONS(2389), - [anon_sym_let] = ACTIONS(2389), - [anon_sym_loop] = ACTIONS(2389), - [anon_sym_match] = ACTIONS(2389), - [anon_sym_mod] = ACTIONS(2389), - [anon_sym_pub] = ACTIONS(2389), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_static] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(2389), - [anon_sym_trait] = ACTIONS(2389), - [anon_sym_type] = ACTIONS(2389), - [anon_sym_union] = ACTIONS(2389), - [anon_sym_unsafe] = ACTIONS(2389), - [anon_sym_use] = ACTIONS(2389), - [anon_sym_where] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [sym_mutable_specifier] = ACTIONS(2389), - [sym_integer_literal] = ACTIONS(2391), - [aux_sym_string_literal_token1] = ACTIONS(2391), - [sym_char_literal] = ACTIONS(2391), - [anon_sym_true] = ACTIONS(2389), - [anon_sym_false] = ACTIONS(2389), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2389), - [sym_super] = ACTIONS(2389), - [sym_crate] = ACTIONS(2389), - [sym_metavariable] = ACTIONS(2391), - [sym_raw_string_literal] = ACTIONS(2391), - [sym_float_literal] = ACTIONS(2391), - [sym_block_comment] = ACTIONS(3), - }, - [568] = { - [sym_identifier] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_RPAREN] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_RBRACE] = ACTIONS(2395), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_RBRACK] = ACTIONS(2395), - [anon_sym_DOLLAR] = ACTIONS(2393), - [anon_sym_u8] = ACTIONS(2393), - [anon_sym_i8] = ACTIONS(2393), - [anon_sym_u16] = ACTIONS(2393), - [anon_sym_i16] = ACTIONS(2393), - [anon_sym_u32] = ACTIONS(2393), - [anon_sym_i32] = ACTIONS(2393), - [anon_sym_u64] = ACTIONS(2393), - [anon_sym_i64] = ACTIONS(2393), - [anon_sym_u128] = ACTIONS(2393), - [anon_sym_i128] = ACTIONS(2393), - [anon_sym_isize] = ACTIONS(2393), - [anon_sym_usize] = ACTIONS(2393), - [anon_sym_f32] = ACTIONS(2393), - [anon_sym_f64] = ACTIONS(2393), - [anon_sym_bool] = ACTIONS(2393), - [anon_sym_str] = ACTIONS(2393), - [anon_sym_char] = ACTIONS(2393), - [aux_sym__never_special_token_token1] = ACTIONS(2393), - [anon_sym_SQUOTE] = ACTIONS(2393), - [anon_sym_as] = ACTIONS(2393), - [anon_sym_async] = ACTIONS(2393), - [anon_sym_await] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_default] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_fn] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_impl] = ACTIONS(2393), - [anon_sym_let] = ACTIONS(2393), - [anon_sym_loop] = ACTIONS(2393), - [anon_sym_match] = ACTIONS(2393), - [anon_sym_mod] = ACTIONS(2393), - [anon_sym_pub] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_trait] = ACTIONS(2393), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_union] = ACTIONS(2393), - [anon_sym_unsafe] = ACTIONS(2393), - [anon_sym_use] = ACTIONS(2393), - [anon_sym_where] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [sym_mutable_specifier] = ACTIONS(2393), - [sym_integer_literal] = ACTIONS(2395), - [aux_sym_string_literal_token1] = ACTIONS(2395), - [sym_char_literal] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2393), - [sym_super] = ACTIONS(2393), - [sym_crate] = ACTIONS(2393), - [sym_metavariable] = ACTIONS(2395), - [sym_raw_string_literal] = ACTIONS(2395), - [sym_float_literal] = ACTIONS(2395), - [sym_block_comment] = ACTIONS(3), - }, - [569] = { - [sym_identifier] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_RPAREN] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2399), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_RBRACK] = ACTIONS(2399), - [anon_sym_DOLLAR] = ACTIONS(2397), - [anon_sym_u8] = ACTIONS(2397), - [anon_sym_i8] = ACTIONS(2397), - [anon_sym_u16] = ACTIONS(2397), - [anon_sym_i16] = ACTIONS(2397), - [anon_sym_u32] = ACTIONS(2397), - [anon_sym_i32] = ACTIONS(2397), - [anon_sym_u64] = ACTIONS(2397), - [anon_sym_i64] = ACTIONS(2397), - [anon_sym_u128] = ACTIONS(2397), - [anon_sym_i128] = ACTIONS(2397), - [anon_sym_isize] = ACTIONS(2397), - [anon_sym_usize] = ACTIONS(2397), - [anon_sym_f32] = ACTIONS(2397), - [anon_sym_f64] = ACTIONS(2397), - [anon_sym_bool] = ACTIONS(2397), - [anon_sym_str] = ACTIONS(2397), - [anon_sym_char] = ACTIONS(2397), - [aux_sym__never_special_token_token1] = ACTIONS(2397), - [anon_sym_SQUOTE] = ACTIONS(2397), - [anon_sym_as] = ACTIONS(2397), - [anon_sym_async] = ACTIONS(2397), - [anon_sym_await] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_default] = ACTIONS(2397), - [anon_sym_enum] = ACTIONS(2397), - [anon_sym_fn] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_impl] = ACTIONS(2397), - [anon_sym_let] = ACTIONS(2397), - [anon_sym_loop] = ACTIONS(2397), - [anon_sym_match] = ACTIONS(2397), - [anon_sym_mod] = ACTIONS(2397), - [anon_sym_pub] = ACTIONS(2397), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_struct] = ACTIONS(2397), - [anon_sym_trait] = ACTIONS(2397), - [anon_sym_type] = ACTIONS(2397), - [anon_sym_union] = ACTIONS(2397), - [anon_sym_unsafe] = ACTIONS(2397), - [anon_sym_use] = ACTIONS(2397), - [anon_sym_where] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [sym_mutable_specifier] = ACTIONS(2397), - [sym_integer_literal] = ACTIONS(2399), - [aux_sym_string_literal_token1] = ACTIONS(2399), - [sym_char_literal] = ACTIONS(2399), - [anon_sym_true] = ACTIONS(2397), - [anon_sym_false] = ACTIONS(2397), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2397), - [sym_super] = ACTIONS(2397), - [sym_crate] = ACTIONS(2397), - [sym_metavariable] = ACTIONS(2399), - [sym_raw_string_literal] = ACTIONS(2399), - [sym_float_literal] = ACTIONS(2399), - [sym_block_comment] = ACTIONS(3), - }, - [570] = { - [sym_identifier] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_RPAREN] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_RBRACE] = ACTIONS(2403), - [anon_sym_LBRACK] = ACTIONS(2403), - [anon_sym_RBRACK] = ACTIONS(2403), - [anon_sym_DOLLAR] = ACTIONS(2401), - [anon_sym_u8] = ACTIONS(2401), - [anon_sym_i8] = ACTIONS(2401), - [anon_sym_u16] = ACTIONS(2401), - [anon_sym_i16] = ACTIONS(2401), - [anon_sym_u32] = ACTIONS(2401), - [anon_sym_i32] = ACTIONS(2401), - [anon_sym_u64] = ACTIONS(2401), - [anon_sym_i64] = ACTIONS(2401), - [anon_sym_u128] = ACTIONS(2401), - [anon_sym_i128] = ACTIONS(2401), - [anon_sym_isize] = ACTIONS(2401), - [anon_sym_usize] = ACTIONS(2401), - [anon_sym_f32] = ACTIONS(2401), - [anon_sym_f64] = ACTIONS(2401), - [anon_sym_bool] = ACTIONS(2401), - [anon_sym_str] = ACTIONS(2401), - [anon_sym_char] = ACTIONS(2401), - [aux_sym__never_special_token_token1] = ACTIONS(2401), - [anon_sym_SQUOTE] = ACTIONS(2401), - [anon_sym_as] = ACTIONS(2401), - [anon_sym_async] = ACTIONS(2401), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_const] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_default] = ACTIONS(2401), - [anon_sym_enum] = ACTIONS(2401), - [anon_sym_fn] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_impl] = ACTIONS(2401), - [anon_sym_let] = ACTIONS(2401), - [anon_sym_loop] = ACTIONS(2401), - [anon_sym_match] = ACTIONS(2401), - [anon_sym_mod] = ACTIONS(2401), - [anon_sym_pub] = ACTIONS(2401), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_static] = ACTIONS(2401), - [anon_sym_struct] = ACTIONS(2401), - [anon_sym_trait] = ACTIONS(2401), - [anon_sym_type] = ACTIONS(2401), - [anon_sym_union] = ACTIONS(2401), - [anon_sym_unsafe] = ACTIONS(2401), - [anon_sym_use] = ACTIONS(2401), - [anon_sym_where] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [sym_mutable_specifier] = ACTIONS(2401), - [sym_integer_literal] = ACTIONS(2403), - [aux_sym_string_literal_token1] = ACTIONS(2403), - [sym_char_literal] = ACTIONS(2403), - [anon_sym_true] = ACTIONS(2401), - [anon_sym_false] = ACTIONS(2401), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2401), - [sym_super] = ACTIONS(2401), - [sym_crate] = ACTIONS(2401), - [sym_metavariable] = ACTIONS(2403), - [sym_raw_string_literal] = ACTIONS(2403), - [sym_float_literal] = ACTIONS(2403), - [sym_block_comment] = ACTIONS(3), - }, - [571] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN] = ACTIONS(2407), - [anon_sym_RPAREN] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2407), - [anon_sym_RBRACK] = ACTIONS(2407), - [anon_sym_DOLLAR] = ACTIONS(2405), - [anon_sym_u8] = ACTIONS(2405), - [anon_sym_i8] = ACTIONS(2405), - [anon_sym_u16] = ACTIONS(2405), - [anon_sym_i16] = ACTIONS(2405), - [anon_sym_u32] = ACTIONS(2405), - [anon_sym_i32] = ACTIONS(2405), - [anon_sym_u64] = ACTIONS(2405), - [anon_sym_i64] = ACTIONS(2405), - [anon_sym_u128] = ACTIONS(2405), - [anon_sym_i128] = ACTIONS(2405), - [anon_sym_isize] = ACTIONS(2405), - [anon_sym_usize] = ACTIONS(2405), - [anon_sym_f32] = ACTIONS(2405), - [anon_sym_f64] = ACTIONS(2405), - [anon_sym_bool] = ACTIONS(2405), - [anon_sym_str] = ACTIONS(2405), - [anon_sym_char] = ACTIONS(2405), - [aux_sym__never_special_token_token1] = ACTIONS(2405), - [anon_sym_SQUOTE] = ACTIONS(2405), - [anon_sym_as] = ACTIONS(2405), - [anon_sym_async] = ACTIONS(2405), - [anon_sym_await] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_fn] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_impl] = ACTIONS(2405), - [anon_sym_let] = ACTIONS(2405), - [anon_sym_loop] = ACTIONS(2405), - [anon_sym_match] = ACTIONS(2405), - [anon_sym_mod] = ACTIONS(2405), - [anon_sym_pub] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_trait] = ACTIONS(2405), - [anon_sym_type] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_unsafe] = ACTIONS(2405), - [anon_sym_use] = ACTIONS(2405), - [anon_sym_where] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [sym_mutable_specifier] = ACTIONS(2405), - [sym_integer_literal] = ACTIONS(2407), - [aux_sym_string_literal_token1] = ACTIONS(2407), - [sym_char_literal] = ACTIONS(2407), - [anon_sym_true] = ACTIONS(2405), - [anon_sym_false] = ACTIONS(2405), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2405), - [sym_super] = ACTIONS(2405), - [sym_crate] = ACTIONS(2405), - [sym_metavariable] = ACTIONS(2407), - [sym_raw_string_literal] = ACTIONS(2407), - [sym_float_literal] = ACTIONS(2407), - [sym_block_comment] = ACTIONS(3), - }, - [572] = { - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2411), - [anon_sym_LBRACK] = ACTIONS(2411), - [anon_sym_RBRACK] = ACTIONS(2411), - [anon_sym_DOLLAR] = ACTIONS(2409), - [anon_sym_u8] = ACTIONS(2409), - [anon_sym_i8] = ACTIONS(2409), - [anon_sym_u16] = ACTIONS(2409), - [anon_sym_i16] = ACTIONS(2409), - [anon_sym_u32] = ACTIONS(2409), - [anon_sym_i32] = ACTIONS(2409), - [anon_sym_u64] = ACTIONS(2409), - [anon_sym_i64] = ACTIONS(2409), - [anon_sym_u128] = ACTIONS(2409), - [anon_sym_i128] = ACTIONS(2409), - [anon_sym_isize] = ACTIONS(2409), - [anon_sym_usize] = ACTIONS(2409), - [anon_sym_f32] = ACTIONS(2409), - [anon_sym_f64] = ACTIONS(2409), - [anon_sym_bool] = ACTIONS(2409), - [anon_sym_str] = ACTIONS(2409), - [anon_sym_char] = ACTIONS(2409), - [aux_sym__never_special_token_token1] = ACTIONS(2409), - [anon_sym_SQUOTE] = ACTIONS(2409), - [anon_sym_as] = ACTIONS(2409), - [anon_sym_async] = ACTIONS(2409), - [anon_sym_await] = ACTIONS(2409), - [anon_sym_break] = ACTIONS(2409), - [anon_sym_const] = ACTIONS(2409), - [anon_sym_continue] = ACTIONS(2409), - [anon_sym_default] = ACTIONS(2409), - [anon_sym_enum] = ACTIONS(2409), - [anon_sym_fn] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(2409), - [anon_sym_if] = ACTIONS(2409), - [anon_sym_impl] = ACTIONS(2409), - [anon_sym_let] = ACTIONS(2409), - [anon_sym_loop] = ACTIONS(2409), - [anon_sym_match] = ACTIONS(2409), - [anon_sym_mod] = ACTIONS(2409), - [anon_sym_pub] = ACTIONS(2409), - [anon_sym_return] = ACTIONS(2409), - [anon_sym_static] = ACTIONS(2409), - [anon_sym_struct] = ACTIONS(2409), - [anon_sym_trait] = ACTIONS(2409), - [anon_sym_type] = ACTIONS(2409), - [anon_sym_union] = ACTIONS(2409), - [anon_sym_unsafe] = ACTIONS(2409), - [anon_sym_use] = ACTIONS(2409), - [anon_sym_where] = ACTIONS(2409), - [anon_sym_while] = ACTIONS(2409), - [sym_mutable_specifier] = ACTIONS(2409), - [sym_integer_literal] = ACTIONS(2411), - [aux_sym_string_literal_token1] = ACTIONS(2411), - [sym_char_literal] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(2409), - [anon_sym_false] = ACTIONS(2409), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2409), - [sym_super] = ACTIONS(2409), - [sym_crate] = ACTIONS(2409), - [sym_metavariable] = ACTIONS(2411), - [sym_raw_string_literal] = ACTIONS(2411), - [sym_float_literal] = ACTIONS(2411), - [sym_block_comment] = ACTIONS(3), - }, - [573] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1834), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_RBRACK] = ACTIONS(810), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), - [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(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [574] = { - [sym_identifier] = ACTIONS(2413), - [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_RPAREN] = ACTIONS(2415), - [anon_sym_LBRACE] = ACTIONS(2415), - [anon_sym_RBRACE] = ACTIONS(2415), - [anon_sym_LBRACK] = ACTIONS(2415), - [anon_sym_RBRACK] = ACTIONS(2415), - [anon_sym_DOLLAR] = ACTIONS(2413), - [anon_sym_u8] = ACTIONS(2413), - [anon_sym_i8] = ACTIONS(2413), - [anon_sym_u16] = ACTIONS(2413), - [anon_sym_i16] = ACTIONS(2413), - [anon_sym_u32] = ACTIONS(2413), - [anon_sym_i32] = ACTIONS(2413), - [anon_sym_u64] = ACTIONS(2413), - [anon_sym_i64] = ACTIONS(2413), - [anon_sym_u128] = ACTIONS(2413), - [anon_sym_i128] = ACTIONS(2413), - [anon_sym_isize] = ACTIONS(2413), - [anon_sym_usize] = ACTIONS(2413), - [anon_sym_f32] = ACTIONS(2413), - [anon_sym_f64] = ACTIONS(2413), - [anon_sym_bool] = ACTIONS(2413), - [anon_sym_str] = ACTIONS(2413), - [anon_sym_char] = ACTIONS(2413), - [aux_sym__never_special_token_token1] = ACTIONS(2413), - [anon_sym_SQUOTE] = ACTIONS(2413), - [anon_sym_as] = ACTIONS(2413), - [anon_sym_async] = ACTIONS(2413), - [anon_sym_await] = ACTIONS(2413), - [anon_sym_break] = ACTIONS(2413), - [anon_sym_const] = ACTIONS(2413), - [anon_sym_continue] = ACTIONS(2413), - [anon_sym_default] = ACTIONS(2413), - [anon_sym_enum] = ACTIONS(2413), - [anon_sym_fn] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2413), - [anon_sym_if] = ACTIONS(2413), - [anon_sym_impl] = ACTIONS(2413), - [anon_sym_let] = ACTIONS(2413), - [anon_sym_loop] = ACTIONS(2413), - [anon_sym_match] = ACTIONS(2413), - [anon_sym_mod] = ACTIONS(2413), - [anon_sym_pub] = ACTIONS(2413), - [anon_sym_return] = ACTIONS(2413), - [anon_sym_static] = ACTIONS(2413), - [anon_sym_struct] = ACTIONS(2413), - [anon_sym_trait] = ACTIONS(2413), - [anon_sym_type] = ACTIONS(2413), - [anon_sym_union] = ACTIONS(2413), - [anon_sym_unsafe] = ACTIONS(2413), - [anon_sym_use] = ACTIONS(2413), - [anon_sym_where] = ACTIONS(2413), - [anon_sym_while] = ACTIONS(2413), - [sym_mutable_specifier] = ACTIONS(2413), - [sym_integer_literal] = ACTIONS(2415), - [aux_sym_string_literal_token1] = ACTIONS(2415), - [sym_char_literal] = ACTIONS(2415), - [anon_sym_true] = ACTIONS(2413), - [anon_sym_false] = ACTIONS(2413), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2413), - [sym_super] = ACTIONS(2413), - [sym_crate] = ACTIONS(2413), - [sym_metavariable] = ACTIONS(2415), - [sym_raw_string_literal] = ACTIONS(2415), - [sym_float_literal] = ACTIONS(2415), - [sym_block_comment] = ACTIONS(3), - }, - [575] = { - [sym_identifier] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2419), - [anon_sym_RBRACK] = ACTIONS(2419), - [anon_sym_DOLLAR] = ACTIONS(2417), - [anon_sym_u8] = ACTIONS(2417), - [anon_sym_i8] = ACTIONS(2417), - [anon_sym_u16] = ACTIONS(2417), - [anon_sym_i16] = ACTIONS(2417), - [anon_sym_u32] = ACTIONS(2417), - [anon_sym_i32] = ACTIONS(2417), - [anon_sym_u64] = ACTIONS(2417), - [anon_sym_i64] = ACTIONS(2417), - [anon_sym_u128] = ACTIONS(2417), - [anon_sym_i128] = ACTIONS(2417), - [anon_sym_isize] = ACTIONS(2417), - [anon_sym_usize] = ACTIONS(2417), - [anon_sym_f32] = ACTIONS(2417), - [anon_sym_f64] = ACTIONS(2417), - [anon_sym_bool] = ACTIONS(2417), - [anon_sym_str] = ACTIONS(2417), - [anon_sym_char] = ACTIONS(2417), - [aux_sym__never_special_token_token1] = ACTIONS(2417), - [anon_sym_SQUOTE] = ACTIONS(2417), - [anon_sym_as] = ACTIONS(2417), - [anon_sym_async] = ACTIONS(2417), - [anon_sym_await] = ACTIONS(2417), - [anon_sym_break] = ACTIONS(2417), - [anon_sym_const] = ACTIONS(2417), - [anon_sym_continue] = ACTIONS(2417), - [anon_sym_default] = ACTIONS(2417), - [anon_sym_enum] = ACTIONS(2417), - [anon_sym_fn] = ACTIONS(2417), - [anon_sym_for] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2417), - [anon_sym_impl] = ACTIONS(2417), - [anon_sym_let] = ACTIONS(2417), - [anon_sym_loop] = ACTIONS(2417), - [anon_sym_match] = ACTIONS(2417), - [anon_sym_mod] = ACTIONS(2417), - [anon_sym_pub] = ACTIONS(2417), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_static] = ACTIONS(2417), - [anon_sym_struct] = ACTIONS(2417), - [anon_sym_trait] = ACTIONS(2417), - [anon_sym_type] = ACTIONS(2417), - [anon_sym_union] = ACTIONS(2417), - [anon_sym_unsafe] = ACTIONS(2417), - [anon_sym_use] = ACTIONS(2417), - [anon_sym_where] = ACTIONS(2417), - [anon_sym_while] = ACTIONS(2417), - [sym_mutable_specifier] = ACTIONS(2417), - [sym_integer_literal] = ACTIONS(2419), - [aux_sym_string_literal_token1] = ACTIONS(2419), - [sym_char_literal] = ACTIONS(2419), - [anon_sym_true] = ACTIONS(2417), - [anon_sym_false] = ACTIONS(2417), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2417), - [sym_super] = ACTIONS(2417), - [sym_crate] = ACTIONS(2417), - [sym_metavariable] = ACTIONS(2419), - [sym_raw_string_literal] = ACTIONS(2419), - [sym_float_literal] = ACTIONS(2419), - [sym_block_comment] = ACTIONS(3), - }, - [576] = { - [sym_identifier] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_RPAREN] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2423), - [anon_sym_RBRACK] = ACTIONS(2423), - [anon_sym_DOLLAR] = ACTIONS(2421), - [anon_sym_u8] = ACTIONS(2421), - [anon_sym_i8] = ACTIONS(2421), - [anon_sym_u16] = ACTIONS(2421), - [anon_sym_i16] = ACTIONS(2421), - [anon_sym_u32] = ACTIONS(2421), - [anon_sym_i32] = ACTIONS(2421), - [anon_sym_u64] = ACTIONS(2421), - [anon_sym_i64] = ACTIONS(2421), - [anon_sym_u128] = ACTIONS(2421), - [anon_sym_i128] = ACTIONS(2421), - [anon_sym_isize] = ACTIONS(2421), - [anon_sym_usize] = ACTIONS(2421), - [anon_sym_f32] = ACTIONS(2421), - [anon_sym_f64] = ACTIONS(2421), - [anon_sym_bool] = ACTIONS(2421), - [anon_sym_str] = ACTIONS(2421), - [anon_sym_char] = ACTIONS(2421), - [aux_sym__never_special_token_token1] = ACTIONS(2421), - [anon_sym_SQUOTE] = ACTIONS(2421), - [anon_sym_as] = ACTIONS(2421), - [anon_sym_async] = ACTIONS(2421), - [anon_sym_await] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_default] = ACTIONS(2421), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_fn] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_impl] = ACTIONS(2421), - [anon_sym_let] = ACTIONS(2421), - [anon_sym_loop] = ACTIONS(2421), - [anon_sym_match] = ACTIONS(2421), - [anon_sym_mod] = ACTIONS(2421), - [anon_sym_pub] = ACTIONS(2421), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2421), - [anon_sym_trait] = ACTIONS(2421), - [anon_sym_type] = ACTIONS(2421), - [anon_sym_union] = ACTIONS(2421), - [anon_sym_unsafe] = ACTIONS(2421), - [anon_sym_use] = ACTIONS(2421), - [anon_sym_where] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [sym_mutable_specifier] = ACTIONS(2421), - [sym_integer_literal] = ACTIONS(2423), - [aux_sym_string_literal_token1] = ACTIONS(2423), - [sym_char_literal] = ACTIONS(2423), - [anon_sym_true] = ACTIONS(2421), - [anon_sym_false] = ACTIONS(2421), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2421), - [sym_super] = ACTIONS(2421), - [sym_crate] = ACTIONS(2421), - [sym_metavariable] = ACTIONS(2423), - [sym_raw_string_literal] = ACTIONS(2423), - [sym_float_literal] = ACTIONS(2423), - [sym_block_comment] = ACTIONS(3), - }, - [577] = { - [sym_identifier] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_RPAREN] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_LBRACK] = ACTIONS(2427), - [anon_sym_RBRACK] = ACTIONS(2427), - [anon_sym_DOLLAR] = ACTIONS(2425), - [anon_sym_u8] = ACTIONS(2425), - [anon_sym_i8] = ACTIONS(2425), - [anon_sym_u16] = ACTIONS(2425), - [anon_sym_i16] = ACTIONS(2425), - [anon_sym_u32] = ACTIONS(2425), - [anon_sym_i32] = ACTIONS(2425), - [anon_sym_u64] = ACTIONS(2425), - [anon_sym_i64] = ACTIONS(2425), - [anon_sym_u128] = ACTIONS(2425), - [anon_sym_i128] = ACTIONS(2425), - [anon_sym_isize] = ACTIONS(2425), - [anon_sym_usize] = ACTIONS(2425), - [anon_sym_f32] = ACTIONS(2425), - [anon_sym_f64] = ACTIONS(2425), - [anon_sym_bool] = ACTIONS(2425), - [anon_sym_str] = ACTIONS(2425), - [anon_sym_char] = ACTIONS(2425), - [aux_sym__never_special_token_token1] = ACTIONS(2425), - [anon_sym_SQUOTE] = ACTIONS(2425), - [anon_sym_as] = ACTIONS(2425), - [anon_sym_async] = ACTIONS(2425), - [anon_sym_await] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_default] = ACTIONS(2425), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_fn] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_impl] = ACTIONS(2425), - [anon_sym_let] = ACTIONS(2425), - [anon_sym_loop] = ACTIONS(2425), - [anon_sym_match] = ACTIONS(2425), - [anon_sym_mod] = ACTIONS(2425), - [anon_sym_pub] = ACTIONS(2425), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_static] = ACTIONS(2425), - [anon_sym_struct] = ACTIONS(2425), - [anon_sym_trait] = ACTIONS(2425), - [anon_sym_type] = ACTIONS(2425), - [anon_sym_union] = ACTIONS(2425), - [anon_sym_unsafe] = ACTIONS(2425), - [anon_sym_use] = ACTIONS(2425), - [anon_sym_where] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [sym_mutable_specifier] = ACTIONS(2425), - [sym_integer_literal] = ACTIONS(2427), - [aux_sym_string_literal_token1] = ACTIONS(2427), - [sym_char_literal] = ACTIONS(2427), - [anon_sym_true] = ACTIONS(2425), - [anon_sym_false] = ACTIONS(2425), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2425), - [sym_super] = ACTIONS(2425), - [sym_crate] = ACTIONS(2425), - [sym_metavariable] = ACTIONS(2427), - [sym_raw_string_literal] = ACTIONS(2427), - [sym_float_literal] = ACTIONS(2427), - [sym_block_comment] = ACTIONS(3), - }, - [578] = { - [sym_identifier] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_RPAREN] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_RBRACK] = ACTIONS(2431), - [anon_sym_DOLLAR] = ACTIONS(2429), - [anon_sym_u8] = ACTIONS(2429), - [anon_sym_i8] = ACTIONS(2429), - [anon_sym_u16] = ACTIONS(2429), - [anon_sym_i16] = ACTIONS(2429), - [anon_sym_u32] = ACTIONS(2429), - [anon_sym_i32] = ACTIONS(2429), - [anon_sym_u64] = ACTIONS(2429), - [anon_sym_i64] = ACTIONS(2429), - [anon_sym_u128] = ACTIONS(2429), - [anon_sym_i128] = ACTIONS(2429), - [anon_sym_isize] = ACTIONS(2429), - [anon_sym_usize] = ACTIONS(2429), - [anon_sym_f32] = ACTIONS(2429), - [anon_sym_f64] = ACTIONS(2429), - [anon_sym_bool] = ACTIONS(2429), - [anon_sym_str] = ACTIONS(2429), - [anon_sym_char] = ACTIONS(2429), - [aux_sym__never_special_token_token1] = ACTIONS(2429), - [anon_sym_SQUOTE] = ACTIONS(2429), - [anon_sym_as] = ACTIONS(2429), - [anon_sym_async] = ACTIONS(2429), - [anon_sym_await] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_const] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_default] = ACTIONS(2429), - [anon_sym_enum] = ACTIONS(2429), - [anon_sym_fn] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_impl] = ACTIONS(2429), - [anon_sym_let] = ACTIONS(2429), - [anon_sym_loop] = ACTIONS(2429), - [anon_sym_match] = ACTIONS(2429), - [anon_sym_mod] = ACTIONS(2429), - [anon_sym_pub] = ACTIONS(2429), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2429), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_trait] = ACTIONS(2429), - [anon_sym_type] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2429), - [anon_sym_unsafe] = ACTIONS(2429), - [anon_sym_use] = ACTIONS(2429), - [anon_sym_where] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [sym_mutable_specifier] = ACTIONS(2429), - [sym_integer_literal] = ACTIONS(2431), - [aux_sym_string_literal_token1] = ACTIONS(2431), - [sym_char_literal] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(2429), - [anon_sym_false] = ACTIONS(2429), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2429), - [sym_super] = ACTIONS(2429), - [sym_crate] = ACTIONS(2429), - [sym_metavariable] = ACTIONS(2431), - [sym_raw_string_literal] = ACTIONS(2431), - [sym_float_literal] = ACTIONS(2431), - [sym_block_comment] = ACTIONS(3), - }, - [579] = { - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1843), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_RPAREN] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), - [anon_sym_COMMA] = ACTIONS(840), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), - [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(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [580] = { + [585] = { [sym_function_modifiers] = STATE(2411), [sym_higher_ranked_trait_bound] = STATE(1623), [sym_removed_trait_bound] = STATE(1623), [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1629), + [sym__type] = STATE(1624), [sym_bracketed_type] = STATE(2370), [sym_lifetime] = STATE(1626), [sym_array_type] = STATE(1410), @@ -66106,7 +66383,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2435), + [anon_sym_QMARK] = ACTIONS(2437), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -66129,7 +66406,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2439), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), @@ -66146,7 +66423,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [581] = { + [586] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), @@ -66170,34 +66447,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_RBRACK] = ACTIONS(2439), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66207,15 +66484,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [582] = { + [587] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), @@ -66239,34 +66516,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_RPAREN] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66276,15 +66553,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [583] = { + [588] = { [sym_function_modifiers] = STATE(2411), [sym_higher_ranked_trait_bound] = STATE(1623), [sym_removed_trait_bound] = STATE(1623), @@ -66313,7 +66590,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2435), + [anon_sym_QMARK] = ACTIONS(2437), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -66336,7 +66613,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2439), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), @@ -66353,7 +66630,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [584] = { + [589] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), @@ -66377,34 +66654,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_RBRACK] = ACTIONS(2445), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66414,89 +66691,20 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [585] = { - [sym_parameter] = STATE(2300), - [sym_bracketed_type] = STATE(2440), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(2438), - [sym_scoped_identifier] = STATE(1369), - [sym_scoped_type_identifier] = STATE(1974), - [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2131), - [sym_tuple_pattern] = STATE(1473), - [sym_slice_pattern] = STATE(1473), - [sym_tuple_struct_pattern] = STATE(1473), - [sym_struct_pattern] = STATE(1473), - [sym_remaining_field_pattern] = STATE(1473), - [sym_mut_pattern] = STATE(1473), - [sym_range_pattern] = STATE(1473), - [sym_ref_pattern] = STATE(1473), - [sym_captured_pattern] = STATE(1473), - [sym_reference_pattern] = STATE(1473), - [sym_or_pattern] = STATE(1473), - [sym__literal_pattern] = STATE(1423), - [sym_negative_literal] = STATE(1421), - [sym_string_literal] = STATE(1421), - [sym_boolean_literal] = STATE(1421), - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2353), - [anon_sym_union] = ACTIONS(2353), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), - [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), - [sym_mutable_specifier] = ACTIONS(2355), - [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(2359), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [586] = { + [590] = { [sym_function_modifiers] = STATE(2411), [sym_higher_ranked_trait_bound] = STATE(1623), [sym_removed_trait_bound] = STATE(1623), [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1624), + [sym__type] = STATE(1629), [sym_bracketed_type] = STATE(2370), [sym_lifetime] = STATE(1626), [sym_array_type] = STATE(1410), @@ -66520,7 +66728,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2435), + [anon_sym_QMARK] = ACTIONS(2437), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), [anon_sym_u16] = ACTIONS(892), @@ -66543,7 +66751,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2439), [anon_sym_impl] = ACTIONS(704), [anon_sym_union] = ACTIONS(896), [anon_sym_unsafe] = ACTIONS(694), @@ -66560,83 +66768,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, - [587] = { - [sym_identifier] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_RPAREN] = ACTIONS(620), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_RBRACK] = ACTIONS(620), - [anon_sym_DOLLAR] = ACTIONS(620), - [anon_sym_u8] = ACTIONS(622), - [anon_sym_i8] = ACTIONS(622), - [anon_sym_u16] = ACTIONS(622), - [anon_sym_i16] = ACTIONS(622), - [anon_sym_u32] = ACTIONS(622), - [anon_sym_i32] = ACTIONS(622), - [anon_sym_u64] = ACTIONS(622), - [anon_sym_i64] = ACTIONS(622), - [anon_sym_u128] = ACTIONS(622), - [anon_sym_i128] = ACTIONS(622), - [anon_sym_isize] = ACTIONS(622), - [anon_sym_usize] = ACTIONS(622), - [anon_sym_f32] = ACTIONS(622), - [anon_sym_f64] = ACTIONS(622), - [anon_sym_bool] = ACTIONS(622), - [anon_sym_str] = ACTIONS(622), - [anon_sym_char] = ACTIONS(622), - [aux_sym__never_special_token_token1] = ACTIONS(622), - [anon_sym_SQUOTE] = ACTIONS(622), - [anon_sym_as] = ACTIONS(622), - [anon_sym_async] = ACTIONS(622), - [anon_sym_await] = ACTIONS(622), - [anon_sym_break] = ACTIONS(622), - [anon_sym_const] = ACTIONS(622), - [anon_sym_continue] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_enum] = ACTIONS(622), - [anon_sym_fn] = ACTIONS(622), - [anon_sym_for] = ACTIONS(622), - [anon_sym_if] = ACTIONS(622), - [anon_sym_impl] = ACTIONS(622), - [anon_sym_let] = ACTIONS(622), - [anon_sym_loop] = ACTIONS(622), - [anon_sym_match] = ACTIONS(622), - [anon_sym_mod] = ACTIONS(622), - [anon_sym_pub] = ACTIONS(622), - [anon_sym_return] = ACTIONS(622), - [anon_sym_static] = ACTIONS(622), - [anon_sym_struct] = ACTIONS(622), - [anon_sym_trait] = ACTIONS(622), - [anon_sym_type] = ACTIONS(622), - [anon_sym_union] = ACTIONS(622), - [anon_sym_unsafe] = ACTIONS(622), - [anon_sym_use] = ACTIONS(622), - [anon_sym_where] = ACTIONS(622), - [anon_sym_while] = ACTIONS(622), - [sym_mutable_specifier] = ACTIONS(622), - [sym_integer_literal] = ACTIONS(620), - [aux_sym_string_literal_token1] = ACTIONS(620), - [sym_char_literal] = ACTIONS(620), - [anon_sym_true] = ACTIONS(622), - [anon_sym_false] = ACTIONS(622), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(622), - [sym_super] = ACTIONS(622), - [sym_crate] = ACTIONS(622), - [sym_raw_string_literal] = ACTIONS(620), - [sym_float_literal] = ACTIONS(620), + [591] = { + [sym_identifier] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_RBRACK] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2349), + [anon_sym_u8] = ACTIONS(2347), + [anon_sym_i8] = ACTIONS(2347), + [anon_sym_u16] = ACTIONS(2347), + [anon_sym_i16] = ACTIONS(2347), + [anon_sym_u32] = ACTIONS(2347), + [anon_sym_i32] = ACTIONS(2347), + [anon_sym_u64] = ACTIONS(2347), + [anon_sym_i64] = ACTIONS(2347), + [anon_sym_u128] = ACTIONS(2347), + [anon_sym_i128] = ACTIONS(2347), + [anon_sym_isize] = ACTIONS(2347), + [anon_sym_usize] = ACTIONS(2347), + [anon_sym_f32] = ACTIONS(2347), + [anon_sym_f64] = ACTIONS(2347), + [anon_sym_bool] = ACTIONS(2347), + [anon_sym_str] = ACTIONS(2347), + [anon_sym_char] = ACTIONS(2347), + [aux_sym__non_special_token_token1] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2347), + [anon_sym_as] = ACTIONS(2347), + [anon_sym_async] = ACTIONS(2347), + [anon_sym_await] = ACTIONS(2347), + [anon_sym_break] = ACTIONS(2347), + [anon_sym_const] = ACTIONS(2347), + [anon_sym_continue] = ACTIONS(2347), + [anon_sym_default] = ACTIONS(2347), + [anon_sym_enum] = ACTIONS(2347), + [anon_sym_fn] = ACTIONS(2347), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_impl] = ACTIONS(2347), + [anon_sym_let] = ACTIONS(2347), + [anon_sym_loop] = ACTIONS(2347), + [anon_sym_match] = ACTIONS(2347), + [anon_sym_mod] = ACTIONS(2347), + [anon_sym_pub] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2347), + [anon_sym_static] = ACTIONS(2347), + [anon_sym_struct] = ACTIONS(2347), + [anon_sym_trait] = ACTIONS(2347), + [anon_sym_type] = ACTIONS(2347), + [anon_sym_union] = ACTIONS(2347), + [anon_sym_unsafe] = ACTIONS(2347), + [anon_sym_use] = ACTIONS(2347), + [anon_sym_where] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [sym_mutable_specifier] = ACTIONS(2347), + [sym_integer_literal] = ACTIONS(2349), + [aux_sym_string_literal_token1] = ACTIONS(2349), + [sym_char_literal] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2347), + [sym_super] = ACTIONS(2347), + [sym_crate] = ACTIONS(2347), + [sym_raw_string_literal] = ACTIONS(2349), + [sym_float_literal] = ACTIONS(2349), [sym_block_comment] = ACTIONS(3), }, - [588] = { + [592] = { + [sym_parameter] = STATE(2300), [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1825), + [sym__pattern] = STATE(2131), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -66653,35 +66862,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_RPAREN] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2423), + [anon_sym_union] = ACTIONS(2423), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), - [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(2425), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -66690,84 +66898,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(2429), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [589] = { - [sym_function_modifiers] = STATE(2411), - [sym_higher_ranked_trait_bound] = STATE(1560), - [sym_removed_trait_bound] = STATE(1560), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1563), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(1564), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2435), - [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(2319), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2437), - [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), - }, - [590] = { + [593] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), @@ -66791,34 +66930,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), [anon_sym_RBRACK] = ACTIONS(2447), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66828,84 +66967,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [591] = { - [sym_identifier] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_RPAREN] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_LBRACK] = ACTIONS(2427), - [anon_sym_RBRACK] = ACTIONS(2427), - [anon_sym_DOLLAR] = ACTIONS(2427), - [anon_sym_u8] = ACTIONS(2425), - [anon_sym_i8] = ACTIONS(2425), - [anon_sym_u16] = ACTIONS(2425), - [anon_sym_i16] = ACTIONS(2425), - [anon_sym_u32] = ACTIONS(2425), - [anon_sym_i32] = ACTIONS(2425), - [anon_sym_u64] = ACTIONS(2425), - [anon_sym_i64] = ACTIONS(2425), - [anon_sym_u128] = ACTIONS(2425), - [anon_sym_i128] = ACTIONS(2425), - [anon_sym_isize] = ACTIONS(2425), - [anon_sym_usize] = ACTIONS(2425), - [anon_sym_f32] = ACTIONS(2425), - [anon_sym_f64] = ACTIONS(2425), - [anon_sym_bool] = ACTIONS(2425), - [anon_sym_str] = ACTIONS(2425), - [anon_sym_char] = ACTIONS(2425), - [aux_sym__never_special_token_token1] = ACTIONS(2425), - [anon_sym_SQUOTE] = ACTIONS(2425), - [anon_sym_as] = ACTIONS(2425), - [anon_sym_async] = ACTIONS(2425), - [anon_sym_await] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_default] = ACTIONS(2425), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_fn] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_impl] = ACTIONS(2425), - [anon_sym_let] = ACTIONS(2425), - [anon_sym_loop] = ACTIONS(2425), - [anon_sym_match] = ACTIONS(2425), - [anon_sym_mod] = ACTIONS(2425), - [anon_sym_pub] = ACTIONS(2425), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_static] = ACTIONS(2425), - [anon_sym_struct] = ACTIONS(2425), - [anon_sym_trait] = ACTIONS(2425), - [anon_sym_type] = ACTIONS(2425), - [anon_sym_union] = ACTIONS(2425), - [anon_sym_unsafe] = ACTIONS(2425), - [anon_sym_use] = ACTIONS(2425), - [anon_sym_where] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [sym_mutable_specifier] = ACTIONS(2425), - [sym_integer_literal] = ACTIONS(2427), - [aux_sym_string_literal_token1] = ACTIONS(2427), - [sym_char_literal] = ACTIONS(2427), - [anon_sym_true] = ACTIONS(2425), - [anon_sym_false] = ACTIONS(2425), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2425), - [sym_super] = ACTIONS(2425), - [sym_crate] = ACTIONS(2425), - [sym_raw_string_literal] = ACTIONS(2427), - [sym_float_literal] = ACTIONS(2427), + [594] = { + [sym_identifier] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_RPAREN] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_RBRACK] = ACTIONS(2405), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_u8] = ACTIONS(2403), + [anon_sym_i8] = ACTIONS(2403), + [anon_sym_u16] = ACTIONS(2403), + [anon_sym_i16] = ACTIONS(2403), + [anon_sym_u32] = ACTIONS(2403), + [anon_sym_i32] = ACTIONS(2403), + [anon_sym_u64] = ACTIONS(2403), + [anon_sym_i64] = ACTIONS(2403), + [anon_sym_u128] = ACTIONS(2403), + [anon_sym_i128] = ACTIONS(2403), + [anon_sym_isize] = ACTIONS(2403), + [anon_sym_usize] = ACTIONS(2403), + [anon_sym_f32] = ACTIONS(2403), + [anon_sym_f64] = ACTIONS(2403), + [anon_sym_bool] = ACTIONS(2403), + [anon_sym_str] = ACTIONS(2403), + [anon_sym_char] = ACTIONS(2403), + [aux_sym__non_special_token_token1] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_as] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_default] = ACTIONS(2403), + [anon_sym_enum] = ACTIONS(2403), + [anon_sym_fn] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_impl] = ACTIONS(2403), + [anon_sym_let] = ACTIONS(2403), + [anon_sym_loop] = ACTIONS(2403), + [anon_sym_match] = ACTIONS(2403), + [anon_sym_mod] = ACTIONS(2403), + [anon_sym_pub] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(2403), + [anon_sym_trait] = ACTIONS(2403), + [anon_sym_type] = ACTIONS(2403), + [anon_sym_union] = ACTIONS(2403), + [anon_sym_unsafe] = ACTIONS(2403), + [anon_sym_use] = ACTIONS(2403), + [anon_sym_where] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [sym_mutable_specifier] = ACTIONS(2403), + [sym_integer_literal] = ACTIONS(2405), + [aux_sym_string_literal_token1] = ACTIONS(2405), + [sym_char_literal] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(2403), + [anon_sym_false] = ACTIONS(2403), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2403), + [sym_super] = ACTIONS(2403), + [sym_crate] = ACTIONS(2403), + [sym_raw_string_literal] = ACTIONS(2405), + [sym_float_literal] = ACTIONS(2405), [sym_block_comment] = ACTIONS(3), }, - [592] = { + [595] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), @@ -66929,34 +67068,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_LPAREN] = ACTIONS(1164), [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -66966,288 +67105,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [593] = { - [sym_identifier] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [anon_sym_RBRACK] = ACTIONS(652), - [anon_sym_DOLLAR] = 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), - [aux_sym__never_special_token_token1] = ACTIONS(654), - [anon_sym_SQUOTE] = ACTIONS(654), - [anon_sym_as] = ACTIONS(654), - [anon_sym_async] = ACTIONS(654), - [anon_sym_await] = 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_where] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [sym_mutable_specifier] = 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(950), - [sym_self] = ACTIONS(654), - [sym_super] = ACTIONS(654), - [sym_crate] = ACTIONS(654), - [sym_raw_string_literal] = ACTIONS(652), - [sym_float_literal] = ACTIONS(652), - [sym_block_comment] = ACTIONS(3), - }, - [594] = { - [sym_identifier] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_RPAREN] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_RBRACE] = ACTIONS(2403), - [anon_sym_LBRACK] = ACTIONS(2403), - [anon_sym_RBRACK] = ACTIONS(2403), - [anon_sym_DOLLAR] = ACTIONS(2403), - [anon_sym_u8] = ACTIONS(2401), - [anon_sym_i8] = ACTIONS(2401), - [anon_sym_u16] = ACTIONS(2401), - [anon_sym_i16] = ACTIONS(2401), - [anon_sym_u32] = ACTIONS(2401), - [anon_sym_i32] = ACTIONS(2401), - [anon_sym_u64] = ACTIONS(2401), - [anon_sym_i64] = ACTIONS(2401), - [anon_sym_u128] = ACTIONS(2401), - [anon_sym_i128] = ACTIONS(2401), - [anon_sym_isize] = ACTIONS(2401), - [anon_sym_usize] = ACTIONS(2401), - [anon_sym_f32] = ACTIONS(2401), - [anon_sym_f64] = ACTIONS(2401), - [anon_sym_bool] = ACTIONS(2401), - [anon_sym_str] = ACTIONS(2401), - [anon_sym_char] = ACTIONS(2401), - [aux_sym__never_special_token_token1] = ACTIONS(2401), - [anon_sym_SQUOTE] = ACTIONS(2401), - [anon_sym_as] = ACTIONS(2401), - [anon_sym_async] = ACTIONS(2401), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_const] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_default] = ACTIONS(2401), - [anon_sym_enum] = ACTIONS(2401), - [anon_sym_fn] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_impl] = ACTIONS(2401), - [anon_sym_let] = ACTIONS(2401), - [anon_sym_loop] = ACTIONS(2401), - [anon_sym_match] = ACTIONS(2401), - [anon_sym_mod] = ACTIONS(2401), - [anon_sym_pub] = ACTIONS(2401), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_static] = ACTIONS(2401), - [anon_sym_struct] = ACTIONS(2401), - [anon_sym_trait] = ACTIONS(2401), - [anon_sym_type] = ACTIONS(2401), - [anon_sym_union] = ACTIONS(2401), - [anon_sym_unsafe] = ACTIONS(2401), - [anon_sym_use] = ACTIONS(2401), - [anon_sym_where] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [sym_mutable_specifier] = ACTIONS(2401), - [sym_integer_literal] = ACTIONS(2403), - [aux_sym_string_literal_token1] = ACTIONS(2403), - [sym_char_literal] = ACTIONS(2403), - [anon_sym_true] = ACTIONS(2401), - [anon_sym_false] = ACTIONS(2401), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2401), - [sym_super] = ACTIONS(2401), - [sym_crate] = ACTIONS(2401), - [sym_raw_string_literal] = ACTIONS(2403), - [sym_float_literal] = ACTIONS(2403), - [sym_block_comment] = ACTIONS(3), - }, - [595] = { - [sym_identifier] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_RPAREN] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_RBRACE] = ACTIONS(2395), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_RBRACK] = ACTIONS(2395), - [anon_sym_DOLLAR] = ACTIONS(2395), - [anon_sym_u8] = ACTIONS(2393), - [anon_sym_i8] = ACTIONS(2393), - [anon_sym_u16] = ACTIONS(2393), - [anon_sym_i16] = ACTIONS(2393), - [anon_sym_u32] = ACTIONS(2393), - [anon_sym_i32] = ACTIONS(2393), - [anon_sym_u64] = ACTIONS(2393), - [anon_sym_i64] = ACTIONS(2393), - [anon_sym_u128] = ACTIONS(2393), - [anon_sym_i128] = ACTIONS(2393), - [anon_sym_isize] = ACTIONS(2393), - [anon_sym_usize] = ACTIONS(2393), - [anon_sym_f32] = ACTIONS(2393), - [anon_sym_f64] = ACTIONS(2393), - [anon_sym_bool] = ACTIONS(2393), - [anon_sym_str] = ACTIONS(2393), - [anon_sym_char] = ACTIONS(2393), - [aux_sym__never_special_token_token1] = ACTIONS(2393), - [anon_sym_SQUOTE] = ACTIONS(2393), - [anon_sym_as] = ACTIONS(2393), - [anon_sym_async] = ACTIONS(2393), - [anon_sym_await] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_default] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_fn] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_impl] = ACTIONS(2393), - [anon_sym_let] = ACTIONS(2393), - [anon_sym_loop] = ACTIONS(2393), - [anon_sym_match] = ACTIONS(2393), - [anon_sym_mod] = ACTIONS(2393), - [anon_sym_pub] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_trait] = ACTIONS(2393), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_union] = ACTIONS(2393), - [anon_sym_unsafe] = ACTIONS(2393), - [anon_sym_use] = ACTIONS(2393), - [anon_sym_where] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [sym_mutable_specifier] = ACTIONS(2393), - [sym_integer_literal] = ACTIONS(2395), - [aux_sym_string_literal_token1] = ACTIONS(2395), - [sym_char_literal] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2393), - [sym_super] = ACTIONS(2393), - [sym_crate] = ACTIONS(2393), - [sym_raw_string_literal] = ACTIONS(2395), - [sym_float_literal] = ACTIONS(2395), - [sym_block_comment] = ACTIONS(3), - }, [596] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_RPAREN] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_RBRACK] = ACTIONS(2349), - [anon_sym_DOLLAR] = ACTIONS(2349), - [anon_sym_u8] = ACTIONS(2347), - [anon_sym_i8] = ACTIONS(2347), - [anon_sym_u16] = ACTIONS(2347), - [anon_sym_i16] = ACTIONS(2347), - [anon_sym_u32] = ACTIONS(2347), - [anon_sym_i32] = ACTIONS(2347), - [anon_sym_u64] = ACTIONS(2347), - [anon_sym_i64] = ACTIONS(2347), - [anon_sym_u128] = ACTIONS(2347), - [anon_sym_i128] = ACTIONS(2347), - [anon_sym_isize] = ACTIONS(2347), - [anon_sym_usize] = ACTIONS(2347), - [anon_sym_f32] = ACTIONS(2347), - [anon_sym_f64] = ACTIONS(2347), - [anon_sym_bool] = ACTIONS(2347), - [anon_sym_str] = ACTIONS(2347), - [anon_sym_char] = ACTIONS(2347), - [aux_sym__never_special_token_token1] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2347), - [anon_sym_as] = ACTIONS(2347), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_fn] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_impl] = ACTIONS(2347), - [anon_sym_let] = ACTIONS(2347), - [anon_sym_loop] = ACTIONS(2347), - [anon_sym_match] = ACTIONS(2347), - [anon_sym_mod] = ACTIONS(2347), - [anon_sym_pub] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_trait] = ACTIONS(2347), - [anon_sym_type] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_unsafe] = ACTIONS(2347), - [anon_sym_use] = ACTIONS(2347), - [anon_sym_where] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [sym_mutable_specifier] = ACTIONS(2347), - [sym_integer_literal] = ACTIONS(2349), - [aux_sym_string_literal_token1] = ACTIONS(2349), - [sym_char_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [sym_line_comment] = ACTIONS(950), - [sym_self] = ACTIONS(2347), - [sym_super] = ACTIONS(2347), - [sym_crate] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - [sym_float_literal] = ACTIONS(2349), + [sym_identifier] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_RPAREN] = ACTIONS(2393), + [anon_sym_LBRACE] = ACTIONS(2393), + [anon_sym_RBRACE] = ACTIONS(2393), + [anon_sym_LBRACK] = ACTIONS(2393), + [anon_sym_RBRACK] = ACTIONS(2393), + [anon_sym_DOLLAR] = ACTIONS(2393), + [anon_sym_u8] = ACTIONS(2391), + [anon_sym_i8] = ACTIONS(2391), + [anon_sym_u16] = ACTIONS(2391), + [anon_sym_i16] = ACTIONS(2391), + [anon_sym_u32] = ACTIONS(2391), + [anon_sym_i32] = ACTIONS(2391), + [anon_sym_u64] = ACTIONS(2391), + [anon_sym_i64] = ACTIONS(2391), + [anon_sym_u128] = ACTIONS(2391), + [anon_sym_i128] = ACTIONS(2391), + [anon_sym_isize] = ACTIONS(2391), + [anon_sym_usize] = ACTIONS(2391), + [anon_sym_f32] = ACTIONS(2391), + [anon_sym_f64] = ACTIONS(2391), + [anon_sym_bool] = ACTIONS(2391), + [anon_sym_str] = ACTIONS(2391), + [anon_sym_char] = ACTIONS(2391), + [aux_sym__non_special_token_token1] = ACTIONS(2391), + [anon_sym_SQUOTE] = ACTIONS(2391), + [anon_sym_as] = ACTIONS(2391), + [anon_sym_async] = ACTIONS(2391), + [anon_sym_await] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(2391), + [anon_sym_const] = ACTIONS(2391), + [anon_sym_continue] = ACTIONS(2391), + [anon_sym_default] = ACTIONS(2391), + [anon_sym_enum] = ACTIONS(2391), + [anon_sym_fn] = ACTIONS(2391), + [anon_sym_for] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2391), + [anon_sym_impl] = ACTIONS(2391), + [anon_sym_let] = ACTIONS(2391), + [anon_sym_loop] = ACTIONS(2391), + [anon_sym_match] = ACTIONS(2391), + [anon_sym_mod] = ACTIONS(2391), + [anon_sym_pub] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2391), + [anon_sym_static] = ACTIONS(2391), + [anon_sym_struct] = ACTIONS(2391), + [anon_sym_trait] = ACTIONS(2391), + [anon_sym_type] = ACTIONS(2391), + [anon_sym_union] = ACTIONS(2391), + [anon_sym_unsafe] = ACTIONS(2391), + [anon_sym_use] = ACTIONS(2391), + [anon_sym_where] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(2391), + [sym_mutable_specifier] = ACTIONS(2391), + [sym_integer_literal] = ACTIONS(2393), + [aux_sym_string_literal_token1] = ACTIONS(2393), + [sym_char_literal] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(2391), + [anon_sym_false] = ACTIONS(2391), + [sym_line_comment] = ACTIONS(1000), + [sym_self] = ACTIONS(2391), + [sym_super] = ACTIONS(2391), + [sym_crate] = ACTIONS(2391), + [sym_raw_string_literal] = ACTIONS(2393), + [sym_float_literal] = ACTIONS(2393), [sym_block_comment] = ACTIONS(3), }, [597] = { @@ -67257,7 +67189,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1796), + [sym__pattern] = STATE(1873), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -67274,34 +67206,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), - [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(2451), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -67310,10 +67242,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -67325,7 +67257,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2210), + [sym__pattern] = STATE(2191), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -67342,33 +67274,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67378,10 +67310,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -67412,7 +67344,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(2451), + [anon_sym_PLUS] = ACTIONS(2453), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), @@ -67446,90 +67378,158 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2453), + [sym_mutable_specifier] = ACTIONS(2455), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(906), + [sym_self] = ACTIONS(2457), [sym_super] = ACTIONS(906), [sym_crate] = ACTIONS(906), [sym_metavariable] = ACTIONS(908), [sym_block_comment] = ACTIONS(3), }, [600] = { - [sym_attribute_item] = STATE(600), - [aux_sym_enum_variant_list_repeat1] = STATE(600), - [sym_identifier] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_LBRACE] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2457), - [anon_sym_u8] = ACTIONS(2455), - [anon_sym_i8] = ACTIONS(2455), - [anon_sym_u16] = ACTIONS(2455), - [anon_sym_i16] = ACTIONS(2455), - [anon_sym_u32] = ACTIONS(2455), - [anon_sym_i32] = ACTIONS(2455), - [anon_sym_u64] = ACTIONS(2455), - [anon_sym_i64] = ACTIONS(2455), - [anon_sym_u128] = ACTIONS(2455), - [anon_sym_i128] = ACTIONS(2455), - [anon_sym_isize] = ACTIONS(2455), - [anon_sym_usize] = ACTIONS(2455), - [anon_sym_f32] = ACTIONS(2455), - [anon_sym_f64] = ACTIONS(2455), - [anon_sym_bool] = ACTIONS(2455), - [anon_sym_str] = ACTIONS(2455), - [anon_sym_char] = ACTIONS(2455), - [anon_sym_SQUOTE] = ACTIONS(2455), - [anon_sym_async] = ACTIONS(2455), - [anon_sym_break] = ACTIONS(2455), - [anon_sym_const] = ACTIONS(2455), - [anon_sym_continue] = ACTIONS(2455), - [anon_sym_default] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_loop] = ACTIONS(2455), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2455), - [anon_sym_union] = ACTIONS(2455), - [anon_sym_unsafe] = ACTIONS(2455), - [anon_sym_while] = ACTIONS(2455), - [anon_sym_POUND] = ACTIONS(2459), - [anon_sym_BANG] = ACTIONS(2457), - [anon_sym_COMMA] = ACTIONS(2457), - [anon_sym_ref] = ACTIONS(2455), - [anon_sym_LT] = ACTIONS(2457), - [anon_sym_COLON_COLON] = ACTIONS(2457), - [anon_sym__] = ACTIONS(2455), - [anon_sym_AMP] = ACTIONS(2457), - [sym_mutable_specifier] = ACTIONS(2455), - [anon_sym_DOT_DOT] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2457), - [anon_sym_yield] = ACTIONS(2455), - [anon_sym_move] = ACTIONS(2455), - [sym_integer_literal] = ACTIONS(2457), - [aux_sym_string_literal_token1] = ACTIONS(2457), - [sym_char_literal] = ACTIONS(2457), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = ACTIONS(2455), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2455), - [sym_super] = ACTIONS(2455), - [sym_crate] = ACTIONS(2455), - [sym_metavariable] = ACTIONS(2457), - [sym_raw_string_literal] = ACTIONS(2457), - [sym_float_literal] = ACTIONS(2457), + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1394), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(2453), + [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(2319), + [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(2459), + [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), }, [601] = { + [sym_function_modifiers] = STATE(2376), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(1059), + [sym_bracketed_type] = STATE(2479), + [sym_lifetime] = STATE(2470), + [sym_array_type] = STATE(1075), + [sym_for_lifetimes] = STATE(1207), + [sym_function_type] = STATE(1075), + [sym_tuple_type] = STATE(1075), + [sym_unit_type] = STATE(1075), + [sym_generic_type] = STATE(1007), + [sym_generic_type_with_turbofish] = STATE(2480), + [sym_bounded_type] = STATE(1075), + [sym_reference_type] = STATE(1075), + [sym_pointer_type] = STATE(1075), + [sym_empty_type] = STATE(1075), + [sym_abstract_type] = STATE(1075), + [sym_dynamic_type] = STATE(1075), + [sym_macro_invocation] = STATE(1075), + [sym_scoped_identifier] = STATE(2318), + [sym_scoped_type_identifier] = STATE(771), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_u8] = ACTIONS(2471), + [anon_sym_i8] = ACTIONS(2471), + [anon_sym_u16] = ACTIONS(2471), + [anon_sym_i16] = ACTIONS(2471), + [anon_sym_u32] = ACTIONS(2471), + [anon_sym_i32] = ACTIONS(2471), + [anon_sym_u64] = ACTIONS(2471), + [anon_sym_i64] = ACTIONS(2471), + [anon_sym_u128] = ACTIONS(2471), + [anon_sym_i128] = ACTIONS(2471), + [anon_sym_isize] = ACTIONS(2471), + [anon_sym_usize] = ACTIONS(2471), + [anon_sym_f32] = ACTIONS(2471), + [anon_sym_f64] = ACTIONS(2471), + [anon_sym_bool] = ACTIONS(2471), + [anon_sym_str] = ACTIONS(2471), + [anon_sym_char] = ACTIONS(2471), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(2473), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(2477), + [anon_sym_union] = ACTIONS(2479), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_extern] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2483), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_dyn] = ACTIONS(2487), + [sym_mutable_specifier] = ACTIONS(2489), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2491), + [sym_super] = ACTIONS(2491), + [sym_crate] = ACTIONS(2491), + [sym_metavariable] = ACTIONS(2493), + [sym_block_comment] = ACTIONS(3), + }, + [602] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2181), + [sym__pattern] = STATE(2229), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -67546,33 +67546,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67582,22 +67582,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [602] = { + [603] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2199), + [sym__pattern] = STATE(1796), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -67614,33 +67614,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67650,15 +67650,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [603] = { + [604] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), @@ -67682,33 +67682,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67718,22 +67718,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [604] = { + [605] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1489), + [sym__pattern] = STATE(2247), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -67750,33 +67750,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67786,82 +67786,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [605] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1394), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(2451), - [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(2319), - [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(2462), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2464), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(908), - [sym_block_comment] = ACTIONS(3), - }, [606] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), @@ -67886,33 +67818,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67922,10 +67854,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -67937,7 +67869,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2229), + [sym__pattern] = STATE(2181), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -67954,33 +67886,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -67990,10 +67922,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -68005,7 +67937,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1488), + [sym__pattern] = STATE(2199), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -68022,34 +67954,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), - [sym_mutable_specifier] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -68058,10 +67990,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -68073,7 +68005,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1825), + [sym__pattern] = STATE(1848), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -68090,33 +68022,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68126,10 +68058,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(2497), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -68141,7 +68073,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1816), + [sym__pattern] = STATE(1825), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -68158,34 +68090,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), - [sym_mutable_specifier] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -68194,10 +68126,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -68226,33 +68158,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68262,10 +68194,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -68277,7 +68209,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1873), + [sym__pattern] = STATE(1489), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -68294,34 +68226,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), - [sym_mutable_specifier] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -68330,10 +68262,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -68345,7 +68277,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1481), + [sym__pattern] = STATE(1471), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -68362,33 +68294,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68398,10 +68330,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -68413,7 +68345,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1460), + [sym__pattern] = STATE(2212), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -68430,33 +68362,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68466,10 +68398,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -68481,7 +68413,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1826), + [sym__pattern] = STATE(1460), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -68498,33 +68430,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68534,10 +68466,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -68549,7 +68481,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2191), + [sym__pattern] = STATE(1488), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -68566,34 +68498,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), - [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(2499), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -68602,10 +68534,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -68617,7 +68549,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2247), + [sym__pattern] = STATE(1481), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -68634,126 +68566,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [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(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [618] = { - [sym_function_modifiers] = STATE(2411), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(2297), - [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), - [sym_array_type] = STATE(1410), - [sym_for_lifetimes] = STATE(1201), - [sym_function_type] = STATE(1410), - [sym_tuple_type] = STATE(1410), - [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), - [sym_generic_type_with_turbofish] = STATE(2371), - [sym_bounded_type] = STATE(1410), - [sym_reference_type] = STATE(1410), - [sym_pointer_type] = STATE(1410), - [sym_empty_type] = STATE(1410), - [sym_abstract_type] = STATE(1410), - [sym_dynamic_type] = STATE(1410), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(2451), - [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(2319), - [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(2472), + [sym_char_literal] = ACTIONS(734), + [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_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(734), + [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [619] = { + [618] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2085), + [sym__pattern] = STATE(2284), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -68770,33 +68634,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68806,22 +68670,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [620] = { + [619] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2184), + [sym__pattern] = STATE(1826), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -68838,33 +68702,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -68874,22 +68738,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [621] = { + [620] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2284), + [sym__pattern] = STATE(1816), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -68906,34 +68770,34 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), - [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(1178), + [sym_mutable_specifier] = ACTIONS(2501), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), [sym_integer_literal] = ACTIONS(734), @@ -68942,90 +68806,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [622] = { - [sym_function_modifiers] = STATE(2376), - [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1059), - [sym_bracketed_type] = STATE(2479), - [sym_lifetime] = STATE(2470), - [sym_array_type] = STATE(1075), - [sym_for_lifetimes] = STATE(1207), - [sym_function_type] = STATE(1075), - [sym_tuple_type] = STATE(1075), - [sym_unit_type] = STATE(1075), - [sym_generic_type] = STATE(1007), - [sym_generic_type_with_turbofish] = STATE(2480), - [sym_bounded_type] = STATE(1075), - [sym_reference_type] = STATE(1075), - [sym_pointer_type] = STATE(1075), - [sym_empty_type] = STATE(1075), - [sym_abstract_type] = STATE(1075), - [sym_dynamic_type] = STATE(1075), - [sym_macro_invocation] = STATE(1075), - [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(770), - [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_u8] = ACTIONS(2484), - [anon_sym_i8] = ACTIONS(2484), - [anon_sym_u16] = ACTIONS(2484), - [anon_sym_i16] = ACTIONS(2484), - [anon_sym_u32] = ACTIONS(2484), - [anon_sym_i32] = ACTIONS(2484), - [anon_sym_u64] = ACTIONS(2484), - [anon_sym_i64] = ACTIONS(2484), - [anon_sym_u128] = ACTIONS(2484), - [anon_sym_i128] = ACTIONS(2484), - [anon_sym_isize] = ACTIONS(2484), - [anon_sym_usize] = ACTIONS(2484), - [anon_sym_f32] = ACTIONS(2484), - [anon_sym_f64] = ACTIONS(2484), - [anon_sym_bool] = ACTIONS(2484), - [anon_sym_str] = ACTIONS(2484), - [anon_sym_char] = ACTIONS(2484), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2486), - [anon_sym_fn] = ACTIONS(2488), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2490), - [anon_sym_union] = ACTIONS(2492), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2494), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2496), - [anon_sym_AMP] = ACTIONS(2498), - [anon_sym_dyn] = ACTIONS(2500), - [sym_mutable_specifier] = ACTIONS(2502), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2504), - [sym_super] = ACTIONS(2504), - [sym_crate] = ACTIONS(2504), - [sym_metavariable] = ACTIONS(2506), - [sym_block_comment] = ACTIONS(3), - }, - [623] = { + [621] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2190), + [sym__pattern] = STATE(2085), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -69042,33 +68838,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69078,22 +68874,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [624] = { + [622] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2134), + [sym__pattern] = STATE(2185), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -69110,33 +68906,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69146,22 +68942,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [625] = { + [623] = { + [sym_function_modifiers] = STATE(2411), + [sym_extern_modifier] = STATE(1575), + [sym__type] = STATE(2297), + [sym_bracketed_type] = STATE(2370), + [sym_lifetime] = STATE(2409), + [sym_array_type] = STATE(1410), + [sym_for_lifetimes] = STATE(1201), + [sym_function_type] = STATE(1410), + [sym_tuple_type] = STATE(1410), + [sym_unit_type] = STATE(1410), + [sym_generic_type] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(2371), + [sym_bounded_type] = STATE(1410), + [sym_reference_type] = STATE(1410), + [sym_pointer_type] = STATE(1410), + [sym_empty_type] = STATE(1410), + [sym_abstract_type] = STATE(1410), + [sym_dynamic_type] = STATE(1410), + [sym_macro_invocation] = STATE(1410), + [sym_scoped_identifier] = STATE(2301), + [sym_scoped_type_identifier] = STATE(1352), + [aux_sym_function_modifiers_repeat1] = STATE(1575), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_PLUS] = ACTIONS(2453), + [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(2319), + [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(2503), + [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), + }, + [624] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2212), + [sym__pattern] = STATE(2226), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -69178,33 +69042,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69214,22 +69078,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [626] = { + [625] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2185), + [sym__pattern] = STATE(2190), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -69246,33 +69110,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69282,22 +69146,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [627] = { + [626] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1848), + [sym__pattern] = STATE(2134), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -69314,33 +69178,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2508), - [anon_sym_union] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69350,22 +69214,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2510), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [628] = { + [627] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1848), + [sym__pattern] = STATE(2184), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -69382,33 +69246,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2508), - [anon_sym_union] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69418,15 +69282,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2512), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, - [629] = { + [628] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), [sym_generic_type_with_turbofish] = STATE(2438), @@ -69450,33 +69314,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69486,14 +69350,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), }, + [629] = { + [sym_attribute_item] = STATE(629), + [aux_sym_enum_variant_list_repeat1] = STATE(629), + [sym_identifier] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_RBRACK] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_u8] = ACTIONS(2505), + [anon_sym_i8] = ACTIONS(2505), + [anon_sym_u16] = ACTIONS(2505), + [anon_sym_i16] = ACTIONS(2505), + [anon_sym_u32] = ACTIONS(2505), + [anon_sym_i32] = ACTIONS(2505), + [anon_sym_u64] = ACTIONS(2505), + [anon_sym_i64] = ACTIONS(2505), + [anon_sym_u128] = ACTIONS(2505), + [anon_sym_i128] = ACTIONS(2505), + [anon_sym_isize] = ACTIONS(2505), + [anon_sym_usize] = ACTIONS(2505), + [anon_sym_f32] = ACTIONS(2505), + [anon_sym_f64] = ACTIONS(2505), + [anon_sym_bool] = ACTIONS(2505), + [anon_sym_str] = ACTIONS(2505), + [anon_sym_char] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_default] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_loop] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_union] = ACTIONS(2505), + [anon_sym_unsafe] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2505), + [anon_sym_POUND] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_COMMA] = ACTIONS(2507), + [anon_sym_ref] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2507), + [anon_sym__] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2507), + [sym_mutable_specifier] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_PIPE] = ACTIONS(2507), + [anon_sym_yield] = ACTIONS(2505), + [anon_sym_move] = ACTIONS(2505), + [sym_integer_literal] = ACTIONS(2507), + [aux_sym_string_literal_token1] = ACTIONS(2507), + [sym_char_literal] = ACTIONS(2507), + [anon_sym_true] = ACTIONS(2505), + [anon_sym_false] = ACTIONS(2505), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2505), + [sym_super] = ACTIONS(2505), + [sym_crate] = ACTIONS(2505), + [sym_metavariable] = ACTIONS(2507), + [sym_raw_string_literal] = ACTIONS(2507), + [sym_float_literal] = ACTIONS(2507), + [sym_block_comment] = ACTIONS(3), + }, [630] = { [sym_bracketed_type] = STATE(2440), [sym_generic_type] = STATE(2425), @@ -69501,7 +69433,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(1471), + [sym__pattern] = STATE(1848), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -69518,33 +69450,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69554,10 +69486,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(2512), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -69569,7 +69501,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2275), + [sym__pattern] = STATE(2210), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -69586,33 +69518,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69622,10 +69554,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -69637,7 +69569,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(1369), [sym_scoped_type_identifier] = STATE(1974), [sym_const_block] = STATE(1473), - [sym__pattern] = STATE(2226), + [sym__pattern] = STATE(2275), [sym_tuple_pattern] = STATE(1473), [sym_slice_pattern] = STATE(1473), [sym_tuple_struct_pattern] = STATE(1473), @@ -69654,33 +69586,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_literal] = STATE(1421), [sym_boolean_literal] = STATE(1421), [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_u8] = ACTIONS(1170), + [anon_sym_i8] = ACTIONS(1170), + [anon_sym_u16] = ACTIONS(1170), + [anon_sym_i16] = ACTIONS(1170), + [anon_sym_u32] = ACTIONS(1170), + [anon_sym_i32] = ACTIONS(1170), + [anon_sym_u64] = ACTIONS(1170), + [anon_sym_i64] = ACTIONS(1170), + [anon_sym_u128] = ACTIONS(1170), + [anon_sym_i128] = ACTIONS(1170), + [anon_sym_isize] = ACTIONS(1170), + [anon_sym_usize] = ACTIONS(1170), + [anon_sym_f32] = ACTIONS(1170), + [anon_sym_f64] = ACTIONS(1170), + [anon_sym_bool] = ACTIONS(1170), + [anon_sym_str] = ACTIONS(1170), + [anon_sym_char] = ACTIONS(1170), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), [anon_sym_ref] = ACTIONS(716), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1196), + [anon_sym_COLON_COLON] = ACTIONS(1176), [anon_sym__] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1178), [sym_mutable_specifier] = ACTIONS(826), [anon_sym_DOT_DOT] = ACTIONS(828), [anon_sym_DASH] = ACTIONS(732), @@ -69690,10 +69622,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(738), [anon_sym_false] = ACTIONS(738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1200), - [sym_super] = ACTIONS(1200), - [sym_crate] = ACTIONS(1200), - [sym_metavariable] = ACTIONS(1202), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1182), [sym_raw_string_literal] = ACTIONS(734), [sym_float_literal] = ACTIONS(734), [sym_block_comment] = ACTIONS(3), @@ -69703,7 +69635,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_extern_modifier] = STATE(1575), [sym__type] = STATE(1110), [sym_bracketed_type] = STATE(2479), - [sym_lifetime] = STATE(622), + [sym_lifetime] = STATE(601), [sym_array_type] = STATE(1075), [sym_for_lifetimes] = STATE(1207), [sym_function_type] = STATE(1075), @@ -69719,56 +69651,57 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_dynamic_type] = STATE(1075), [sym_macro_invocation] = STATE(1075), [sym_scoped_identifier] = STATE(2318), - [sym_scoped_type_identifier] = STATE(770), + [sym_scoped_type_identifier] = STATE(771), [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_u8] = ACTIONS(2484), - [anon_sym_i8] = ACTIONS(2484), - [anon_sym_u16] = ACTIONS(2484), - [anon_sym_i16] = ACTIONS(2484), - [anon_sym_u32] = ACTIONS(2484), - [anon_sym_i32] = ACTIONS(2484), - [anon_sym_u64] = ACTIONS(2484), - [anon_sym_i64] = ACTIONS(2484), - [anon_sym_u128] = ACTIONS(2484), - [anon_sym_i128] = ACTIONS(2484), - [anon_sym_isize] = ACTIONS(2484), - [anon_sym_usize] = ACTIONS(2484), - [anon_sym_f32] = ACTIONS(2484), - [anon_sym_f64] = ACTIONS(2484), - [anon_sym_bool] = ACTIONS(2484), - [anon_sym_str] = ACTIONS(2484), - [anon_sym_char] = ACTIONS(2484), + [sym_identifier] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_u8] = ACTIONS(2471), + [anon_sym_i8] = ACTIONS(2471), + [anon_sym_u16] = ACTIONS(2471), + [anon_sym_i16] = ACTIONS(2471), + [anon_sym_u32] = ACTIONS(2471), + [anon_sym_i32] = ACTIONS(2471), + [anon_sym_u64] = ACTIONS(2471), + [anon_sym_i64] = ACTIONS(2471), + [anon_sym_u128] = ACTIONS(2471), + [anon_sym_i128] = ACTIONS(2471), + [anon_sym_isize] = ACTIONS(2471), + [anon_sym_usize] = ACTIONS(2471), + [anon_sym_f32] = ACTIONS(2471), + [anon_sym_f64] = ACTIONS(2471), + [anon_sym_bool] = ACTIONS(2471), + [anon_sym_str] = ACTIONS(2471), + [anon_sym_char] = ACTIONS(2471), [anon_sym_SQUOTE] = ACTIONS(2514), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2486), - [anon_sym_fn] = ACTIONS(2488), + [anon_sym_default] = ACTIONS(2473), + [anon_sym_fn] = ACTIONS(2475), [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2490), - [anon_sym_union] = ACTIONS(2492), + [anon_sym_impl] = ACTIONS(2477), + [anon_sym_union] = ACTIONS(2479), [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2494), + [anon_sym_BANG] = ACTIONS(2481), [anon_sym_extern] = ACTIONS(714), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2496), - [anon_sym_AMP] = ACTIONS(2498), - [anon_sym_dyn] = ACTIONS(2500), + [anon_sym_COLON_COLON] = ACTIONS(2483), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_dyn] = ACTIONS(2487), [sym_mutable_specifier] = ACTIONS(2516), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2504), - [sym_super] = ACTIONS(2504), - [sym_crate] = ACTIONS(2504), - [sym_metavariable] = ACTIONS(2506), + [sym_self] = ACTIONS(2491), + [sym_super] = ACTIONS(2491), + [sym_crate] = ACTIONS(2491), + [sym_metavariable] = ACTIONS(2493), [sym_block_comment] = ACTIONS(3), }, [634] = { [sym_function_modifiers] = STATE(2411), + [sym_type_parameters] = STATE(662), [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1800), + [sym__type] = STATE(1701), [sym_bracketed_type] = STATE(2370), [sym_lifetime] = STATE(2409), [sym_array_type] = STATE(1410), @@ -69776,7 +69709,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_type] = STATE(1410), [sym_tuple_type] = STATE(1410), [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), + [sym_generic_type] = STATE(1705), [sym_generic_type_with_turbofish] = STATE(2371), [sym_bounded_type] = STATE(1410), [sym_reference_type] = STATE(1410), @@ -69786,11 +69719,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_dynamic_type] = STATE(1410), [sym_macro_invocation] = STATE(1410), [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), + [sym_scoped_type_identifier] = STATE(1538), [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), + [sym_identifier] = ACTIONS(2518), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2518), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -69821,7 +69753,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(2520), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -69835,9 +69767,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [635] = { [sym_function_modifiers] = STATE(2411), [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(2306), + [sym__type] = STATE(1800), [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(618), + [sym_lifetime] = STATE(2409), [sym_array_type] = STATE(1410), [sym_for_lifetimes] = STATE(1201), [sym_function_type] = STATE(1410), @@ -69857,6 +69789,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2522), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -69876,7 +69809,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -69891,7 +69824,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2520), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), @@ -69901,9 +69833,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [636] = { [sym_function_modifiers] = STATE(2411), - [sym_type_parameters] = STATE(662), [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1701), + [sym__type] = STATE(1939), [sym_bracketed_type] = STATE(2370), [sym_lifetime] = STATE(2409), [sym_array_type] = STATE(1410), @@ -69911,7 +69842,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_type] = STATE(1410), [sym_tuple_type] = STATE(1410), [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1705), + [sym_generic_type] = STATE(1375), [sym_generic_type_with_turbofish] = STATE(2371), [sym_bounded_type] = STATE(1410), [sym_reference_type] = STATE(1410), @@ -69921,10 +69852,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_dynamic_type] = STATE(1410), [sym_macro_invocation] = STATE(1410), [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1538), + [sym_scoped_type_identifier] = STATE(1352), [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2522), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2524), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -69955,7 +69887,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -69969,9 +69901,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [637] = { [sym_function_modifiers] = STATE(2411), [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1784), + [sym__type] = STATE(2306), [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(2409), + [sym_lifetime] = STATE(623), [sym_array_type] = STATE(1410), [sym_for_lifetimes] = STATE(1201), [sym_function_type] = STATE(1410), @@ -69991,7 +69923,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2526), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -70011,7 +69942,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_SQUOTE] = ACTIONS(2514), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -70026,6 +69957,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2526), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), @@ -70223,7 +70155,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2520), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -70237,8 +70169,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [641] = { [sym_function_modifiers] = STATE(2411), [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1939), + [sym__type] = STATE(2068), [sym_bracketed_type] = STATE(2370), + [sym_qualified_type] = STATE(2346), [sym_lifetime] = STATE(2409), [sym_array_type] = STATE(1410), [sym_for_lifetimes] = STATE(1201), @@ -70259,7 +70192,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -70304,9 +70236,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [642] = { [sym_function_modifiers] = STATE(2411), [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1397), + [sym__type] = STATE(1784), [sym_bracketed_type] = STATE(2370), - [sym_lifetime] = STATE(599), + [sym_lifetime] = STATE(2409), [sym_array_type] = STATE(1410), [sym_for_lifetimes] = STATE(1201), [sym_function_type] = STATE(1410), @@ -70326,6 +70258,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_function_modifiers_repeat1] = STATE(1575), [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -70345,7 +70278,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2319), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -70360,7 +70293,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2536), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), @@ -70370,8 +70302,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [643] = { [sym_function_modifiers] = STATE(2411), + [sym_type_parameters] = STATE(692), [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1939), + [sym__type] = STATE(1711), [sym_bracketed_type] = STATE(2370), [sym_lifetime] = STATE(2409), [sym_array_type] = STATE(1410), @@ -70379,7 +70312,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_type] = STATE(1410), [sym_tuple_type] = STATE(1410), [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1375), + [sym_generic_type] = STATE(1641), [sym_generic_type_with_turbofish] = STATE(2371), [sym_bounded_type] = STATE(1410), [sym_reference_type] = STATE(1410), @@ -70389,11 +70322,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_dynamic_type] = STATE(1410), [sym_macro_invocation] = STATE(1410), [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1352), + [sym_scoped_type_identifier] = STATE(1526), [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2315), + [sym_identifier] = ACTIONS(2536), [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(2538), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -70424,7 +70356,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(2520), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -70438,10 +70370,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [644] = { [sym_function_modifiers] = STATE(2411), [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(2068), + [sym__type] = STATE(1397), [sym_bracketed_type] = STATE(2370), - [sym_qualified_type] = STATE(2346), - [sym_lifetime] = STATE(2409), + [sym_lifetime] = STATE(600), [sym_array_type] = STATE(1410), [sym_for_lifetimes] = STATE(1201), [sym_function_type] = STATE(1410), @@ -70480,7 +70411,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(892), [anon_sym_str] = ACTIONS(892), [anon_sym_char] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_SQUOTE] = ACTIONS(2514), [anon_sym_async] = ACTIONS(694), [anon_sym_const] = ACTIONS(694), [anon_sym_default] = ACTIONS(894), @@ -70495,6 +70426,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), + [sym_mutable_specifier] = ACTIONS(2538), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(906), [sym_super] = ACTIONS(906), @@ -70504,9 +70436,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [645] = { [sym_function_modifiers] = STATE(2411), - [sym_type_parameters] = STATE(705), [sym_extern_modifier] = STATE(1575), - [sym__type] = STATE(1711), + [sym__type] = STATE(1939), [sym_bracketed_type] = STATE(2370), [sym_lifetime] = STATE(2409), [sym_array_type] = STATE(1410), @@ -70514,7 +70445,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_type] = STATE(1410), [sym_tuple_type] = STATE(1410), [sym_unit_type] = STATE(1410), - [sym_generic_type] = STATE(1641), + [sym_generic_type] = STATE(1375), [sym_generic_type_with_turbofish] = STATE(2371), [sym_bounded_type] = STATE(1410), [sym_reference_type] = STATE(1410), @@ -70524,10 +70455,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_dynamic_type] = STATE(1410), [sym_macro_invocation] = STATE(1410), [sym_scoped_identifier] = STATE(2301), - [sym_scoped_type_identifier] = STATE(1526), + [sym_scoped_type_identifier] = STATE(1352), [aux_sym_function_modifiers_repeat1] = STATE(1575), - [sym_identifier] = ACTIONS(2540), + [sym_identifier] = ACTIONS(2315), [anon_sym_LPAREN] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(2540), [anon_sym_LBRACK] = ACTIONS(890), [anon_sym_STAR] = ACTIONS(688), [anon_sym_u8] = ACTIONS(892), @@ -70558,7 +70490,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -70625,7 +70557,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(694), [anon_sym_BANG] = ACTIONS(710), [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2520), [anon_sym_COLON_COLON] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(902), [anon_sym_dyn] = ACTIONS(726), @@ -70680,7 +70612,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1657), 1, + STATE(2143), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -70737,200 +70669,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, [129] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2474), 1, - sym_identifier, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2478), 1, - anon_sym_LBRACK, - ACTIONS(2482), 1, - anon_sym_STAR, - ACTIONS(2486), 1, - anon_sym_default, - ACTIONS(2488), 1, - anon_sym_fn, - ACTIONS(2490), 1, - anon_sym_impl, - ACTIONS(2492), 1, - anon_sym_union, - ACTIONS(2494), 1, - anon_sym_BANG, - ACTIONS(2496), 1, - anon_sym_COLON_COLON, - ACTIONS(2498), 1, - anon_sym_AMP, - ACTIONS(2500), 1, - anon_sym_dyn, - ACTIONS(2506), 1, - sym_metavariable, - STATE(770), 1, - sym_scoped_type_identifier, - STATE(1007), 1, - sym_generic_type, - STATE(1059), 1, - sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, - sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, - sym_bracketed_type, - STATE(2480), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1575), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2504), 3, - sym_self, - sym_super, - sym_crate, - STATE(1075), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2484), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [258] = 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(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, - sym_scoped_type_identifier, - STATE(1375), 1, - sym_generic_type, - STATE(2150), 1, - sym__type, - STATE(2301), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2409), 1, - sym_lifetime, - STATE(2411), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1575), 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(1410), 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, - [387] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -70971,104 +70709,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1401), 1, - sym__type, - STATE(2301), 1, - sym_scoped_identifier, - STATE(2370), 1, - sym_bracketed_type, - STATE(2371), 1, - sym_generic_type_with_turbofish, - STATE(2409), 1, - sym_lifetime, - STATE(2411), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1575), 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(1410), 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, - [516] = 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(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, - sym_scoped_type_identifier, - STATE(1375), 1, - sym_generic_type, - STATE(1658), 1, + STATE(2120), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -71124,7 +70765,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [645] = 32, + [258] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71165,7 +70806,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1395), 1, + STATE(1717), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -71221,7 +70862,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [774] = 32, + [387] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71262,7 +70903,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(2143), 1, + STATE(2150), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -71318,7 +70959,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [903] = 32, + [516] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71359,7 +71000,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1651), 1, + STATE(1401), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -71415,7 +71056,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1032] = 32, + [645] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71456,7 +71097,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1659), 1, + STATE(1658), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -71512,7 +71153,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1161] = 32, + [774] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71553,7 +71194,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(2187), 1, + STATE(1395), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -71609,7 +71250,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1290] = 32, + [903] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71640,17 +71281,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, + ACTIONS(2315), 1, + sym_identifier, ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2544), 1, - sym_identifier, STATE(1201), 1, sym_for_lifetimes, - STATE(1539), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1724), 1, + STATE(1375), 1, sym_generic_type, - STATE(1725), 1, + STATE(1651), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -71706,7 +71347,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1419] = 32, + [1032] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71747,7 +71388,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(2089), 1, + STATE(1659), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -71803,7 +71444,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1548] = 32, + [1161] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -71844,7 +71485,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1405), 1, + STATE(2187), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -71900,104 +71541,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1677] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2474), 1, - sym_identifier, - ACTIONS(2476), 1, - anon_sym_LPAREN, - ACTIONS(2478), 1, - anon_sym_LBRACK, - ACTIONS(2482), 1, - anon_sym_STAR, - ACTIONS(2486), 1, - anon_sym_default, - ACTIONS(2488), 1, - anon_sym_fn, - ACTIONS(2490), 1, - anon_sym_impl, - ACTIONS(2492), 1, - anon_sym_union, - ACTIONS(2494), 1, - anon_sym_BANG, - ACTIONS(2496), 1, - anon_sym_COLON_COLON, - ACTIONS(2498), 1, - anon_sym_AMP, - ACTIONS(2500), 1, - anon_sym_dyn, - ACTIONS(2506), 1, - sym_metavariable, - STATE(770), 1, - sym_scoped_type_identifier, - STATE(1007), 1, - sym_generic_type, - STATE(1112), 1, - sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, - sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, - sym_bracketed_type, - STATE(2480), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1575), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2504), 3, - sym_self, - sym_super, - sym_crate, - STATE(1075), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2484), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1806] = 32, + [1290] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72028,17 +71572,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, ACTIONS(2319), 1, anon_sym_SQUOTE, + ACTIONS(2544), 1, + sym_identifier, STATE(1201), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1539), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1724), 1, sym_generic_type, - STATE(1896), 1, + STATE(1725), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -72094,7 +71638,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1935] = 32, + [1419] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72125,17 +71669,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, + ACTIONS(2315), 1, + sym_identifier, ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2546), 1, - sym_identifier, STATE(1201), 1, sym_for_lifetimes, - STATE(1517), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1709), 1, + STATE(1375), 1, sym_generic_type, - STATE(1712), 1, + STATE(2089), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -72191,7 +71735,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2064] = 32, + [1548] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72232,7 +71776,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1900), 1, + STATE(1405), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -72288,59 +71832,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2193] = 32, + [1677] = 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, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2461), 1, + sym_identifier, + ACTIONS(2463), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2469), 1, + anon_sym_STAR, + ACTIONS(2473), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2475), 1, + anon_sym_fn, + ACTIONS(2477), 1, + anon_sym_impl, + ACTIONS(2479), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2481), 1, + anon_sym_BANG, + ACTIONS(2483), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2485), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2487), 1, + anon_sym_dyn, + ACTIONS(2493), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, + STATE(771), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1007), 1, sym_generic_type, - STATE(2000), 1, + STATE(1112), 1, sym__type, - STATE(2301), 1, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2480), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, - sym_lifetime, - STATE(2411), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -72351,11 +71895,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2491), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1075), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72367,7 +71911,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2471), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72385,7 +71929,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2322] = 32, + [1806] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72416,17 +71960,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, + ACTIONS(2315), 1, + sym_identifier, ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2548), 1, - sym_identifier, STATE(1201), 1, sym_for_lifetimes, - STATE(1546), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1653), 1, + STATE(1375), 1, sym_generic_type, - STATE(1691), 1, + STATE(1896), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -72482,7 +72026,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2451] = 32, + [1935] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72513,17 +72057,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, ACTIONS(2319), 1, anon_sym_SQUOTE, + ACTIONS(2546), 1, + sym_identifier, STATE(1201), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1517), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1709), 1, sym_generic_type, - STATE(2298), 1, + STATE(1712), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -72579,7 +72123,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2580] = 32, + [2064] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72620,7 +72164,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1717), 1, + STATE(2000), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -72676,7 +72220,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2709] = 32, + [2193] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72717,7 +72261,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(2297), 1, + STATE(1661), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -72773,7 +72317,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2838] = 32, + [2322] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72804,17 +72348,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, ACTIONS(2319), 1, anon_sym_SQUOTE, + ACTIONS(2548), 1, + sym_identifier, STATE(1201), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1546), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1653), 1, sym_generic_type, - STATE(1928), 1, + STATE(1691), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -72870,7 +72414,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2967] = 32, + [2451] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -72911,7 +72455,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1419), 1, + STATE(2298), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -72967,7 +72511,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3096] = 32, + [2580] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73008,7 +72552,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1424), 1, + STATE(1928), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -73064,7 +72608,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3225] = 32, + [2709] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73105,7 +72649,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1815), 1, + STATE(2297), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -73161,7 +72705,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3354] = 32, + [2838] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73202,10 +72746,10 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, + STATE(1815), 1, + sym__type, STATE(2301), 1, sym_scoped_identifier, - STATE(2310), 1, - sym__type, STATE(2370), 1, sym_bracketed_type, STATE(2371), 1, @@ -73258,59 +72802,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3483] = 32, + [2967] = 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(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2474), 1, - sym_identifier, - ACTIONS(2476), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2478), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2482), 1, - anon_sym_STAR, - ACTIONS(2486), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2488), 1, - anon_sym_fn, - ACTIONS(2490), 1, - anon_sym_impl, - ACTIONS(2492), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2494), 1, - anon_sym_BANG, - ACTIONS(2496), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2498), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2500), 1, - anon_sym_dyn, - ACTIONS(2506), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(770), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1375), 1, sym_generic_type, - STATE(1058), 1, + STATE(1419), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -73321,11 +72865,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2504), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73337,7 +72881,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2484), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73355,7 +72899,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3612] = 32, + [3096] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73396,7 +72940,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1400), 1, + STATE(1424), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -73452,7 +72996,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3741] = 32, + [3225] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73493,7 +73037,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1420), 1, + STATE(1713), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -73549,7 +73093,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3870] = 32, + [3354] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73590,10 +73134,10 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1713), 1, - sym__type, STATE(2301), 1, sym_scoped_identifier, + STATE(2310), 1, + sym__type, STATE(2370), 1, sym_bracketed_type, STATE(2371), 1, @@ -73646,7 +73190,104 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3999] = 32, + [3483] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2461), 1, + sym_identifier, + ACTIONS(2463), 1, + anon_sym_LPAREN, + ACTIONS(2465), 1, + anon_sym_LBRACK, + ACTIONS(2469), 1, + anon_sym_STAR, + ACTIONS(2473), 1, + anon_sym_default, + ACTIONS(2475), 1, + anon_sym_fn, + ACTIONS(2477), 1, + anon_sym_impl, + ACTIONS(2479), 1, + anon_sym_union, + ACTIONS(2481), 1, + anon_sym_BANG, + ACTIONS(2483), 1, + anon_sym_COLON_COLON, + ACTIONS(2485), 1, + anon_sym_AMP, + ACTIONS(2487), 1, + anon_sym_dyn, + ACTIONS(2493), 1, + sym_metavariable, + STATE(771), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_generic_type, + STATE(1058), 1, + sym__type, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, + sym_scoped_identifier, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, + sym_bracketed_type, + STATE(2480), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2491), 3, + sym_self, + sym_super, + sym_crate, + STATE(1075), 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(2471), 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, + [3612] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73687,7 +73328,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(2021), 1, + STATE(1400), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -73743,7 +73384,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4128] = 32, + [3741] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73784,7 +73425,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(2075), 1, + STATE(1420), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -73840,7 +73481,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4257] = 32, + [3870] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73881,7 +73522,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1884), 1, + STATE(1726), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -73937,7 +73578,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4386] = 32, + [3999] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -73978,7 +73619,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1964), 1, + STATE(2021), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -74034,75 +73675,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4515] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1288), 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(1290), 42, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4586] = 32, + [4128] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74143,7 +73716,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1997), 1, + STATE(2075), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -74199,7 +73772,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4715] = 32, + [4257] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74240,7 +73813,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1726), 1, + STATE(1884), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -74296,7 +73869,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4844] = 32, + [4386] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74337,7 +73910,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1804), 1, + STATE(1964), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -74393,7 +73966,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4973] = 32, + [4515] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1272), 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(1274), 42, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4586] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74434,7 +74075,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(2102), 1, + STATE(1997), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -74490,7 +74131,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5102] = 32, + [4715] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74531,7 +74172,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1882), 1, + STATE(2102), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -74587,59 +74228,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5231] = 32, + [4844] = 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(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2474), 1, - sym_identifier, - ACTIONS(2476), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2478), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2482), 1, - anon_sym_STAR, - ACTIONS(2486), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2488), 1, - anon_sym_fn, - ACTIONS(2490), 1, - anon_sym_impl, - ACTIONS(2492), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2494), 1, - anon_sym_BANG, - ACTIONS(2496), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2498), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2500), 1, - anon_sym_dyn, - ACTIONS(2506), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(770), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1375), 1, sym_generic_type, - STATE(1100), 1, + STATE(1804), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -74650,11 +74291,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2504), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74666,7 +74307,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2484), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74684,7 +74325,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5360] = 32, + [4973] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74725,10 +74366,10 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, + STATE(2236), 1, + sym__type, STATE(2301), 1, sym_scoped_identifier, - STATE(2302), 1, - sym__type, STATE(2370), 1, sym_bracketed_type, STATE(2371), 1, @@ -74781,7 +74422,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5489] = 32, + [5102] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -74822,10 +74463,10 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(2236), 1, - sym__type, STATE(2301), 1, sym_scoped_identifier, + STATE(2302), 1, + sym__type, STATE(2370), 1, sym_bracketed_type, STATE(2371), 1, @@ -74878,59 +74519,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5618] = 32, + [5231] = 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, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2461), 1, + sym_identifier, + ACTIONS(2463), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, - ACTIONS(894), 1, + ACTIONS(2469), 1, + anon_sym_STAR, + ACTIONS(2473), 1, anon_sym_default, - ACTIONS(896), 1, + ACTIONS(2475), 1, + anon_sym_fn, + ACTIONS(2477), 1, + anon_sym_impl, + ACTIONS(2479), 1, anon_sym_union, - ACTIONS(900), 1, + ACTIONS(2481), 1, + anon_sym_BANG, + ACTIONS(2483), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(2485), 1, anon_sym_AMP, - ACTIONS(908), 1, + ACTIONS(2487), 1, + anon_sym_dyn, + ACTIONS(2493), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, - ACTIONS(2319), 1, - anon_sym_SQUOTE, - STATE(1201), 1, - sym_for_lifetimes, - STATE(1352), 1, + STATE(771), 1, sym_scoped_type_identifier, - STATE(1375), 1, + STATE(1007), 1, sym_generic_type, - STATE(1678), 1, + STATE(1100), 1, sym__type, - STATE(2301), 1, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, sym_scoped_identifier, - STATE(2370), 1, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, sym_bracketed_type, - STATE(2371), 1, + STATE(2480), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, - sym_lifetime, - STATE(2411), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -74941,11 +74582,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, + ACTIONS(2491), 3, sym_self, sym_super, sym_crate, - STATE(1410), 11, + STATE(1075), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74957,7 +74598,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(892), 17, + ACTIONS(2471), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74975,7 +74616,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5747] = 32, + [5360] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75016,7 +74657,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1875), 1, + STATE(1882), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -75072,59 +74713,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5876] = 32, + [5489] = 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(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2474), 1, - sym_identifier, - ACTIONS(2476), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2478), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2482), 1, - anon_sym_STAR, - ACTIONS(2486), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2488), 1, - anon_sym_fn, - ACTIONS(2490), 1, - anon_sym_impl, - ACTIONS(2492), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2494), 1, - anon_sym_BANG, - ACTIONS(2496), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2498), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2500), 1, - anon_sym_dyn, - ACTIONS(2506), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(770), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1375), 1, sym_generic_type, - STATE(1099), 1, + STATE(1875), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -75135,11 +74776,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2504), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75151,7 +74792,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2484), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75169,7 +74810,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6005] = 32, + [5618] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75210,7 +74851,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(2059), 1, + STATE(1678), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -75266,7 +74907,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6134] = 32, + [5747] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75297,18 +74938,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, - ACTIONS(2315), 1, - sym_identifier, ACTIONS(2319), 1, anon_sym_SQUOTE, + ACTIONS(2550), 1, + sym_identifier, STATE(1201), 1, sym_for_lifetimes, - STATE(1352), 1, + STATE(1529), 1, sym_scoped_type_identifier, - STATE(1375), 1, - sym_generic_type, - STATE(1679), 1, + STATE(1647), 1, sym__type, + STATE(1694), 1, + sym_generic_type, STATE(2301), 1, sym_scoped_identifier, STATE(2370), 1, @@ -75363,7 +75004,104 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6263] = 32, + [5876] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2461), 1, + sym_identifier, + ACTIONS(2463), 1, + anon_sym_LPAREN, + ACTIONS(2465), 1, + anon_sym_LBRACK, + ACTIONS(2469), 1, + anon_sym_STAR, + ACTIONS(2473), 1, + anon_sym_default, + ACTIONS(2475), 1, + anon_sym_fn, + ACTIONS(2477), 1, + anon_sym_impl, + ACTIONS(2479), 1, + anon_sym_union, + ACTIONS(2481), 1, + anon_sym_BANG, + ACTIONS(2483), 1, + anon_sym_COLON_COLON, + ACTIONS(2485), 1, + anon_sym_AMP, + ACTIONS(2487), 1, + anon_sym_dyn, + ACTIONS(2493), 1, + sym_metavariable, + STATE(771), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_generic_type, + STATE(1099), 1, + sym__type, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, + sym_scoped_identifier, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, + sym_bracketed_type, + STATE(2480), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2491), 3, + sym_self, + sym_super, + sym_crate, + STATE(1075), 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(2471), 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, + [6005] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75404,7 +75142,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1727), 1, + STATE(2059), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -75460,7 +75198,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6392] = 32, + [6134] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75501,7 +75239,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1695), 1, + STATE(1679), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -75557,7 +75295,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6521] = 32, + [6263] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75654,7 +75392,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6650] = 32, + [6392] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75695,7 +75433,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1981), 1, + STATE(1695), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -75751,59 +75489,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6779] = 32, + [6521] = 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(2319), 1, - anon_sym_SQUOTE, - ACTIONS(2474), 1, - sym_identifier, - ACTIONS(2476), 1, + ACTIONS(726), 1, + anon_sym_dyn, + ACTIONS(886), 1, anon_sym_LPAREN, - ACTIONS(2478), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(2482), 1, - anon_sym_STAR, - ACTIONS(2486), 1, + ACTIONS(894), 1, anon_sym_default, - ACTIONS(2488), 1, - anon_sym_fn, - ACTIONS(2490), 1, - anon_sym_impl, - ACTIONS(2492), 1, + ACTIONS(896), 1, anon_sym_union, - ACTIONS(2494), 1, - anon_sym_BANG, - ACTIONS(2496), 1, + ACTIONS(900), 1, anon_sym_COLON_COLON, - ACTIONS(2498), 1, + ACTIONS(902), 1, anon_sym_AMP, - ACTIONS(2500), 1, - anon_sym_dyn, - ACTIONS(2506), 1, + ACTIONS(908), 1, sym_metavariable, - STATE(770), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + STATE(1201), 1, + sym_for_lifetimes, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1007), 1, + STATE(1375), 1, sym_generic_type, - STATE(1095), 1, + STATE(1939), 1, sym__type, - STATE(1207), 1, - sym_for_lifetimes, - STATE(2318), 1, + STATE(2301), 1, sym_scoped_identifier, - STATE(2376), 1, - sym_function_modifiers, - STATE(2470), 1, - sym_lifetime, - STATE(2479), 1, + STATE(2370), 1, sym_bracketed_type, - STATE(2480), 1, + STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, + STATE(2411), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -75814,11 +75552,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2504), 3, + ACTIONS(906), 3, sym_self, sym_super, sym_crate, - STATE(1075), 11, + STATE(1410), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75830,7 +75568,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2484), 17, + ACTIONS(892), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75848,7 +75586,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6908] = 32, + [6650] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75889,7 +75627,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1601), 1, + STATE(1981), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -75945,7 +75683,104 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7037] = 32, + [6779] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2461), 1, + sym_identifier, + ACTIONS(2463), 1, + anon_sym_LPAREN, + ACTIONS(2465), 1, + anon_sym_LBRACK, + ACTIONS(2469), 1, + anon_sym_STAR, + ACTIONS(2473), 1, + anon_sym_default, + ACTIONS(2475), 1, + anon_sym_fn, + ACTIONS(2477), 1, + anon_sym_impl, + ACTIONS(2479), 1, + anon_sym_union, + ACTIONS(2481), 1, + anon_sym_BANG, + ACTIONS(2483), 1, + anon_sym_COLON_COLON, + ACTIONS(2485), 1, + anon_sym_AMP, + ACTIONS(2487), 1, + anon_sym_dyn, + ACTIONS(2493), 1, + sym_metavariable, + STATE(771), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_generic_type, + STATE(1095), 1, + sym__type, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, + sym_scoped_identifier, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, + sym_bracketed_type, + STATE(2480), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2491), 3, + sym_self, + sym_super, + sym_crate, + STATE(1075), 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(2471), 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, + [6908] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -75986,7 +75821,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(2171), 1, + STATE(1601), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -76042,7 +75877,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7166] = 32, + [7037] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76083,7 +75918,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(2288), 1, + STATE(2171), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -76139,7 +75974,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7295] = 32, + [7166] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76180,7 +76015,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1681), 1, + STATE(2288), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -76236,7 +76071,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7424] = 32, + [7295] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76267,18 +76102,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(908), 1, sym_metavariable, + ACTIONS(2315), 1, + sym_identifier, ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2550), 1, - sym_identifier, STATE(1201), 1, sym_for_lifetimes, - STATE(1529), 1, + STATE(1352), 1, sym_scoped_type_identifier, - STATE(1647), 1, - sym__type, - STATE(1694), 1, + STATE(1375), 1, sym_generic_type, + STATE(1681), 1, + sym__type, STATE(2301), 1, sym_scoped_identifier, STATE(2370), 1, @@ -76333,7 +76168,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7553] = 32, + [7424] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76374,7 +76209,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1418), 1, + STATE(2138), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -76430,7 +76265,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7682] = 32, + [7553] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76471,8 +76306,6 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1415), 1, - sym_lifetime, STATE(1418), 1, sym__type, STATE(2301), 1, @@ -76481,6 +76314,8 @@ static uint16_t ts_small_parse_table[] = { sym_bracketed_type, STATE(2371), 1, sym_generic_type_with_turbofish, + STATE(2409), 1, + sym_lifetime, STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, @@ -76527,7 +76362,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7811] = 32, + [7682] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76568,7 +76403,9 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1640), 1, + STATE(1415), 1, + sym_lifetime, + STATE(1418), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -76576,8 +76413,6 @@ static uint16_t ts_small_parse_table[] = { sym_bracketed_type, STATE(2371), 1, sym_generic_type_with_turbofish, - STATE(2409), 1, - sym_lifetime, STATE(2411), 1, sym_function_modifiers, ACTIONS(3), 2, @@ -76624,7 +76459,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7940] = 32, + [7811] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76665,7 +76500,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(2138), 1, + STATE(1640), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -76721,7 +76556,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8069] = 32, + [7940] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76762,7 +76597,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1627), 1, + STATE(1727), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -76818,7 +76653,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8198] = 32, + [8069] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76859,7 +76694,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1685), 1, + STATE(1627), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -76915,7 +76750,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8327] = 32, + [8198] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -76956,7 +76791,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1939), 1, + STATE(1685), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -77012,7 +76847,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8456] = 32, + [8327] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77053,7 +76888,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(2132), 1, + STATE(1956), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -77109,7 +76944,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8585] = 32, + [8456] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -77150,7 +76985,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1661), 1, + STATE(2132), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -77206,6 +77041,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + [8585] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_for, + ACTIONS(714), 1, + anon_sym_extern, + ACTIONS(2319), 1, + anon_sym_SQUOTE, + ACTIONS(2461), 1, + sym_identifier, + ACTIONS(2463), 1, + anon_sym_LPAREN, + ACTIONS(2465), 1, + anon_sym_LBRACK, + ACTIONS(2469), 1, + anon_sym_STAR, + ACTIONS(2473), 1, + anon_sym_default, + ACTIONS(2475), 1, + anon_sym_fn, + ACTIONS(2477), 1, + anon_sym_impl, + ACTIONS(2479), 1, + anon_sym_union, + ACTIONS(2481), 1, + anon_sym_BANG, + ACTIONS(2483), 1, + anon_sym_COLON_COLON, + ACTIONS(2485), 1, + anon_sym_AMP, + ACTIONS(2487), 1, + anon_sym_dyn, + ACTIONS(2493), 1, + sym_metavariable, + STATE(771), 1, + sym_scoped_type_identifier, + STATE(1007), 1, + sym_generic_type, + STATE(1059), 1, + sym__type, + STATE(1207), 1, + sym_for_lifetimes, + STATE(2318), 1, + sym_scoped_identifier, + STATE(2376), 1, + sym_function_modifiers, + STATE(2470), 1, + sym_lifetime, + STATE(2479), 1, + sym_bracketed_type, + STATE(2480), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1575), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(694), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2491), 3, + sym_self, + sym_super, + sym_crate, + STATE(1075), 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(2471), 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, [8714] = 32, ACTIONS(77), 1, anon_sym_LT, @@ -77344,7 +77276,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1956), 1, + STATE(1900), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -77441,7 +77373,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(2120), 1, + STATE(1894), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -77829,7 +77761,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1894), 1, + STATE(1784), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -78023,7 +77955,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1784), 1, + STATE(2061), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -78088,33 +78020,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2474), 1, + ACTIONS(2461), 1, sym_identifier, - ACTIONS(2476), 1, + ACTIONS(2463), 1, anon_sym_LPAREN, - ACTIONS(2478), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, - ACTIONS(2482), 1, + ACTIONS(2469), 1, anon_sym_STAR, - ACTIONS(2486), 1, + ACTIONS(2473), 1, anon_sym_default, - ACTIONS(2488), 1, + ACTIONS(2475), 1, anon_sym_fn, - ACTIONS(2490), 1, + ACTIONS(2477), 1, anon_sym_impl, - ACTIONS(2492), 1, + ACTIONS(2479), 1, anon_sym_union, - ACTIONS(2494), 1, + ACTIONS(2481), 1, anon_sym_BANG, - ACTIONS(2496), 1, + ACTIONS(2483), 1, anon_sym_COLON_COLON, - ACTIONS(2498), 1, + ACTIONS(2485), 1, anon_sym_AMP, - ACTIONS(2500), 1, + ACTIONS(2487), 1, anon_sym_dyn, - ACTIONS(2506), 1, + ACTIONS(2493), 1, sym_metavariable, - STATE(770), 1, + STATE(771), 1, sym_scoped_type_identifier, STATE(1007), 1, sym_generic_type, @@ -78142,7 +78074,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2504), 3, + ACTIONS(2491), 3, sym_self, sym_super, sym_crate, @@ -78158,7 +78090,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2484), 17, + ACTIONS(2471), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78217,7 +78149,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(2061), 1, + STATE(1409), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -78314,7 +78246,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1409), 1, + STATE(1649), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -78370,7 +78302,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10262] = 32, + [10262] = 33, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78405,13 +78337,15 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2319), 1, anon_sym_SQUOTE, + ACTIONS(2552), 1, + sym_self, STATE(1201), 1, sym_for_lifetimes, STATE(1352), 1, sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1649), 1, + STATE(1401), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -78426,6 +78360,9 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(906), 2, + sym_super, + sym_crate, STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, @@ -78433,10 +78370,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(906), 3, - sym_self, - sym_super, - sym_crate, STATE(1410), 11, sym_array_type, sym_function_type, @@ -78467,7 +78400,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10391] = 32, + [10393] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78564,7 +78497,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10520] = 33, + [10522] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(688), 1, @@ -78599,15 +78532,13 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2552), 1, - sym_self, STATE(1201), 1, sym_for_lifetimes, STATE(1352), 1, sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1401), 1, + STATE(1660), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -78622,9 +78553,6 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(906), 2, - sym_super, - sym_crate, STATE(1575), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, @@ -78632,6 +78560,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_unsafe, + ACTIONS(906), 3, + sym_self, + sym_super, + sym_crate, STATE(1410), 11, sym_array_type, sym_function_type, @@ -78671,33 +78603,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2474), 1, + ACTIONS(2461), 1, sym_identifier, - ACTIONS(2476), 1, + ACTIONS(2463), 1, anon_sym_LPAREN, - ACTIONS(2478), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, - ACTIONS(2482), 1, + ACTIONS(2469), 1, anon_sym_STAR, - ACTIONS(2486), 1, + ACTIONS(2473), 1, anon_sym_default, - ACTIONS(2488), 1, + ACTIONS(2475), 1, anon_sym_fn, - ACTIONS(2490), 1, + ACTIONS(2477), 1, anon_sym_impl, - ACTIONS(2492), 1, + ACTIONS(2479), 1, anon_sym_union, - ACTIONS(2494), 1, + ACTIONS(2481), 1, anon_sym_BANG, - ACTIONS(2496), 1, + ACTIONS(2483), 1, anon_sym_COLON_COLON, - ACTIONS(2498), 1, + ACTIONS(2485), 1, anon_sym_AMP, - ACTIONS(2500), 1, + ACTIONS(2487), 1, anon_sym_dyn, - ACTIONS(2506), 1, + ACTIONS(2493), 1, sym_metavariable, - STATE(770), 1, + STATE(771), 1, sym_scoped_type_identifier, STATE(1007), 1, sym_generic_type, @@ -78725,7 +78657,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2504), 3, + ACTIONS(2491), 3, sym_self, sym_super, sym_crate, @@ -78741,7 +78673,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2484), 17, + ACTIONS(2471), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78800,7 +78732,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1660), 1, + STATE(1646), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -78962,33 +78894,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2474), 1, + ACTIONS(2461), 1, sym_identifier, - ACTIONS(2476), 1, + ACTIONS(2463), 1, anon_sym_LPAREN, - ACTIONS(2478), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, - ACTIONS(2482), 1, + ACTIONS(2469), 1, anon_sym_STAR, - ACTIONS(2486), 1, + ACTIONS(2473), 1, anon_sym_default, - ACTIONS(2488), 1, + ACTIONS(2475), 1, anon_sym_fn, - ACTIONS(2490), 1, + ACTIONS(2477), 1, anon_sym_impl, - ACTIONS(2492), 1, + ACTIONS(2479), 1, anon_sym_union, - ACTIONS(2494), 1, + ACTIONS(2481), 1, anon_sym_BANG, - ACTIONS(2496), 1, + ACTIONS(2483), 1, anon_sym_COLON_COLON, - ACTIONS(2498), 1, + ACTIONS(2485), 1, anon_sym_AMP, - ACTIONS(2500), 1, + ACTIONS(2487), 1, anon_sym_dyn, - ACTIONS(2506), 1, + ACTIONS(2493), 1, sym_metavariable, - STATE(770), 1, + STATE(771), 1, sym_scoped_type_identifier, STATE(1007), 1, sym_generic_type, @@ -79016,7 +78948,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2504), 3, + ACTIONS(2491), 3, sym_self, sym_super, sym_crate, @@ -79032,7 +78964,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2484), 17, + ACTIONS(2471), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79156,33 +79088,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2474), 1, + ACTIONS(2461), 1, sym_identifier, - ACTIONS(2476), 1, + ACTIONS(2463), 1, anon_sym_LPAREN, - ACTIONS(2478), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, - ACTIONS(2482), 1, + ACTIONS(2469), 1, anon_sym_STAR, - ACTIONS(2486), 1, + ACTIONS(2473), 1, anon_sym_default, - ACTIONS(2488), 1, + ACTIONS(2475), 1, anon_sym_fn, - ACTIONS(2490), 1, + ACTIONS(2477), 1, anon_sym_impl, - ACTIONS(2492), 1, + ACTIONS(2479), 1, anon_sym_union, - ACTIONS(2494), 1, + ACTIONS(2481), 1, anon_sym_BANG, - ACTIONS(2496), 1, + ACTIONS(2483), 1, anon_sym_COLON_COLON, - ACTIONS(2498), 1, + ACTIONS(2485), 1, anon_sym_AMP, - ACTIONS(2500), 1, + ACTIONS(2487), 1, anon_sym_dyn, - ACTIONS(2506), 1, + ACTIONS(2493), 1, sym_metavariable, - STATE(770), 1, + STATE(771), 1, sym_scoped_type_identifier, STATE(1007), 1, sym_generic_type, @@ -79210,7 +79142,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2504), 3, + ACTIONS(2491), 3, sym_self, sym_super, sym_crate, @@ -79226,7 +79158,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2484), 17, + ACTIONS(2471), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79253,33 +79185,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2474), 1, + ACTIONS(2461), 1, sym_identifier, - ACTIONS(2476), 1, + ACTIONS(2463), 1, anon_sym_LPAREN, - ACTIONS(2478), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, - ACTIONS(2482), 1, + ACTIONS(2469), 1, anon_sym_STAR, - ACTIONS(2486), 1, + ACTIONS(2473), 1, anon_sym_default, - ACTIONS(2488), 1, + ACTIONS(2475), 1, anon_sym_fn, - ACTIONS(2490), 1, + ACTIONS(2477), 1, anon_sym_impl, - ACTIONS(2492), 1, + ACTIONS(2479), 1, anon_sym_union, - ACTIONS(2494), 1, + ACTIONS(2481), 1, anon_sym_BANG, - ACTIONS(2496), 1, + ACTIONS(2483), 1, anon_sym_COLON_COLON, - ACTIONS(2498), 1, + ACTIONS(2485), 1, anon_sym_AMP, - ACTIONS(2500), 1, + ACTIONS(2487), 1, anon_sym_dyn, - ACTIONS(2506), 1, + ACTIONS(2493), 1, sym_metavariable, - STATE(770), 1, + STATE(771), 1, sym_scoped_type_identifier, STATE(1007), 1, sym_generic_type, @@ -79307,7 +79239,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2504), 3, + ACTIONS(2491), 3, sym_self, sym_super, sym_crate, @@ -79323,7 +79255,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2484), 17, + ACTIONS(2471), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79479,7 +79411,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1646), 1, + STATE(1657), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -79770,7 +79702,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(2094), 1, + STATE(1674), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -80061,7 +79993,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(2197), 1, + STATE(2094), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -80158,7 +80090,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1674), 1, + STATE(2197), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -80546,7 +80478,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1676), 1, + STATE(1856), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -80643,7 +80575,7 @@ static uint16_t ts_small_parse_table[] = { sym_scoped_type_identifier, STATE(1375), 1, sym_generic_type, - STATE(1856), 1, + STATE(1676), 1, sym__type, STATE(2301), 1, sym_scoped_identifier, @@ -81193,33 +81125,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(2319), 1, anon_sym_SQUOTE, - ACTIONS(2474), 1, + ACTIONS(2461), 1, sym_identifier, - ACTIONS(2476), 1, + ACTIONS(2463), 1, anon_sym_LPAREN, - ACTIONS(2478), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, - ACTIONS(2482), 1, + ACTIONS(2469), 1, anon_sym_STAR, - ACTIONS(2486), 1, + ACTIONS(2473), 1, anon_sym_default, - ACTIONS(2488), 1, + ACTIONS(2475), 1, anon_sym_fn, - ACTIONS(2490), 1, + ACTIONS(2477), 1, anon_sym_impl, - ACTIONS(2492), 1, + ACTIONS(2479), 1, anon_sym_union, - ACTIONS(2494), 1, + ACTIONS(2481), 1, anon_sym_BANG, - ACTIONS(2496), 1, + ACTIONS(2483), 1, anon_sym_COLON_COLON, - ACTIONS(2498), 1, + ACTIONS(2485), 1, anon_sym_AMP, - ACTIONS(2500), 1, + ACTIONS(2487), 1, anon_sym_dyn, - ACTIONS(2506), 1, + ACTIONS(2493), 1, sym_metavariable, - STATE(770), 1, + STATE(771), 1, sym_scoped_type_identifier, STATE(1007), 1, sym_generic_type, @@ -81247,7 +81179,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2504), 3, + ACTIONS(2491), 3, sym_self, sym_super, sym_crate, @@ -81263,7 +81195,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2484), 17, + ACTIONS(2471), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81348,26 +81280,25 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(406), 18, + ACTIONS(880), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, + anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2558), 39, + ACTIONS(878), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81399,6 +81330,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, + anon_sym_DASH, anon_sym_yield, anon_sym_move, anon_sym_true, @@ -81411,25 +81343,26 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(880), 17, + ACTIONS(406), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, - anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(878), 40, + ACTIONS(2558), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81461,7 +81394,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, - anon_sym_DASH, anon_sym_yield, anon_sym_move, anon_sym_true, @@ -81537,7 +81469,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1288), 15, + ACTIONS(1272), 15, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -81553,7 +81485,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1290), 38, + ACTIONS(1274), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81771,7 +81703,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14664] = 7, + [14664] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1408), 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(1410), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14720] = 7, ACTIONS(2566), 1, anon_sym_LPAREN, ACTIONS(2574), 1, @@ -81828,11 +81813,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14728] = 3, + [14784] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1459), 9, + ACTIONS(1716), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81842,7 +81827,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1461), 38, + ACTIONS(1718), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81881,7 +81866,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14784] = 6, + [14840] = 6, ACTIONS(2594), 1, anon_sym_BANG, ACTIONS(2596), 1, @@ -81937,11 +81922,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14846] = 3, + [14902] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1383), 9, + ACTIONS(1328), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81951,7 +81936,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1385), 38, + ACTIONS(1330), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81990,7 +81975,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14902] = 5, + [14958] = 5, ACTIONS(2602), 1, anon_sym_BANG, ACTIONS(2604), 1, @@ -82045,7 +82030,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14962] = 7, + [15018] = 7, ACTIONS(2566), 1, anon_sym_LPAREN, ACTIONS(2574), 1, @@ -82102,68 +82087,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15026] = 3, + [15082] = 5, + ACTIONS(2614), 1, + anon_sym_BANG, + ACTIONS(2616), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1735), 9, + ACTIONS(2612), 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(2610), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1737), 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, - [15082] = 5, - ACTIONS(2614), 1, + 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, + [15142] = 5, + ACTIONS(2622), 1, anon_sym_BANG, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 17, + ACTIONS(2620), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82181,7 +82168,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2610), 28, + ACTIONS(2618), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82210,11 +82197,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15142] = 3, + [15202] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1595), 9, + ACTIONS(1848), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82224,7 +82211,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1597), 38, + ACTIONS(1850), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82263,15 +82250,19 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15198] = 5, - ACTIONS(2622), 1, - anon_sym_BANG, - ACTIONS(2624), 1, - anon_sym_COLON_COLON, + [15258] = 7, + ACTIONS(2566), 1, + anon_sym_LPAREN, + ACTIONS(2574), 1, + anon_sym_LT2, + STATE(814), 1, + sym_type_arguments, + STATE(866), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 17, + ACTIONS(2628), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82289,9 +82280,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2618), 28, + ACTIONS(2626), 26, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82302,7 +82292,6 @@ static 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, @@ -82318,15 +82307,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15258] = 5, - ACTIONS(2630), 1, + [15322] = 5, + ACTIONS(2634), 1, anon_sym_BANG, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 17, + ACTIONS(2632), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82344,7 +82333,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2626), 28, + ACTIONS(2630), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82373,11 +82362,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15318] = 3, + [15382] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1875), 9, + ACTIONS(1558), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82387,7 +82376,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1877), 38, + ACTIONS(1560), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82426,12 +82415,12 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15374] = 7, + [15438] = 7, ACTIONS(2570), 1, anon_sym_BANG, - ACTIONS(2634), 1, + ACTIONS(2638), 1, anon_sym_LBRACE, - ACTIONS(2636), 1, + ACTIONS(2640), 1, anon_sym_COLON_COLON, STATE(1117), 1, sym_field_initializer_list, @@ -82483,122 +82472,174 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15438] = 7, - ACTIONS(2566), 1, - anon_sym_LPAREN, - ACTIONS(2574), 1, - anon_sym_LT2, - STATE(814), 1, - sym_type_arguments, - STATE(866), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2640), 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(2638), 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, - [15502] = 5, - ACTIONS(2642), 1, - anon_sym_else, - STATE(1067), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(502), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(500), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + [15502] = 4, + ACTIONS(2642), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2634), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2636), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15559] = 5, + ACTIONS(2644), 1, + anon_sym_else, + STATE(1055), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(396), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(394), 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, + [15618] = 5, + ACTIONS(2650), 1, + anon_sym_SQUOTE, + STATE(1066), 1, + sym_loop_label, + 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, + [15677] = 4, + ACTIONS(2652), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15561] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 16, + ACTIONS(2614), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -82615,11 +82656,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2624), 30, + ACTIONS(2616), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -82646,71 +82686,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15616] = 5, - ACTIONS(2648), 1, - anon_sym_SQUOTE, - STATE(1066), 1, - sym_loop_label, + [15734] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - 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), 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, - [15675] = 5, - ACTIONS(2642), 1, - anon_sym_else, - STATE(1055), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(396), 15, + ACTIONS(2614), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -82724,7 +82707,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(394), 29, + ACTIONS(2616), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82736,6 +82719,7 @@ static 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, @@ -82754,8 +82738,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15734] = 4, - ACTIONS(2650), 1, + [15789] = 4, + ACTIONS(2654), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, @@ -82807,16 +82791,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15791] = 4, - ACTIONS(2652), 1, - anon_sym_LBRACE, + [15846] = 5, + ACTIONS(2644), 1, + anon_sym_else, + STATE(1067), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 16, + ACTIONS(502), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -82830,63 +82815,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2604), 29, + ACTIONS(500), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15848] = 4, - ACTIONS(2654), 1, anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2630), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2632), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -82894,7 +82827,6 @@ static 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, @@ -82919,7 +82851,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 16, + ACTIONS(2602), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -82936,7 +82868,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2616), 29, + ACTIONS(2604), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -82970,7 +82902,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1479), 7, + ACTIONS(1428), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82978,7 +82910,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1481), 38, + ACTIONS(1430), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83021,7 +82953,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1687), 7, + ACTIONS(1656), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83029,7 +82961,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1689), 38, + ACTIONS(1658), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83072,7 +83004,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1907), 7, + ACTIONS(1880), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83080,7 +83012,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1909), 38, + ACTIONS(1882), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83123,7 +83055,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1867), 7, + ACTIONS(1840), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83131,7 +83063,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1869), 38, + ACTIONS(1842), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83174,7 +83106,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1899), 7, + ACTIONS(1872), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83182,7 +83114,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1901), 38, + ACTIONS(1874), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83225,7 +83157,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1863), 7, + ACTIONS(1836), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83233,7 +83165,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1865), 38, + ACTIONS(1838), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83276,7 +83208,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1855), 7, + ACTIONS(1832), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83284,7 +83216,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1857), 38, + ACTIONS(1834), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83327,7 +83259,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1843), 7, + ACTIONS(1824), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83335,7 +83267,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1845), 38, + ACTIONS(1826), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83378,7 +83310,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1931), 7, + ACTIONS(1904), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83386,7 +83318,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1933), 38, + ACTIONS(1906), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83429,7 +83361,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1831), 7, + ACTIONS(1808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83437,7 +83369,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1833), 38, + ACTIONS(1810), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83480,7 +83412,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1827), 7, + ACTIONS(1800), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83488,7 +83420,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1829), 38, + ACTIONS(1802), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83584,7 +83516,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1927), 7, + ACTIONS(1900), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83592,7 +83524,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1929), 38, + ACTIONS(1902), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83635,7 +83567,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1823), 7, + ACTIONS(1796), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83643,7 +83575,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1825), 38, + ACTIONS(1798), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83686,7 +83618,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1891), 7, + ACTIONS(1868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83694,7 +83626,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1893), 38, + ACTIONS(1870), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83788,7 +83720,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1208), 7, + ACTIONS(1188), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83796,7 +83728,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1210), 38, + ACTIONS(1190), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83839,7 +83771,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1815), 7, + ACTIONS(1792), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83847,7 +83779,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1817), 38, + ACTIONS(1794), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83890,7 +83822,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1923), 7, + ACTIONS(1896), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83898,7 +83830,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1925), 38, + ACTIONS(1898), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83941,7 +83873,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1919), 7, + ACTIONS(1892), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83949,7 +83881,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1921), 38, + ACTIONS(1894), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83992,7 +83924,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1883), 7, + ACTIONS(1856), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84000,7 +83932,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1885), 38, + ACTIONS(1858), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84043,7 +83975,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1811), 7, + ACTIONS(1784), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84051,7 +83983,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1813), 38, + ACTIONS(1786), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84094,7 +84026,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1807), 7, + ACTIONS(1780), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84102,7 +84034,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1809), 38, + ACTIONS(1782), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84145,7 +84077,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1879), 7, + ACTIONS(1852), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84153,7 +84085,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1881), 38, + ACTIONS(1854), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84196,7 +84128,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1240), 7, + ACTIONS(1224), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84204,7 +84136,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1242), 38, + ACTIONS(1226), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84247,7 +84179,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1935), 7, + ACTIONS(1908), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84255,7 +84187,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1937), 38, + ACTIONS(1910), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84400,7 +84332,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1799), 7, + ACTIONS(1776), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84408,7 +84340,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1801), 38, + ACTIONS(1778), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84451,7 +84383,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1791), 7, + ACTIONS(1764), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84459,7 +84391,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1793), 38, + ACTIONS(1766), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84502,7 +84434,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1771), 7, + ACTIONS(1744), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84510,7 +84442,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1773), 38, + ACTIONS(1746), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84553,7 +84485,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1763), 7, + ACTIONS(1740), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84561,7 +84493,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1765), 38, + ACTIONS(1742), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84604,7 +84536,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1747), 7, + ACTIONS(1732), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84612,7 +84544,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1749), 38, + ACTIONS(1734), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84655,7 +84587,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1947), 7, + ACTIONS(1924), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84663,7 +84595,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1949), 38, + ACTIONS(1926), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84706,7 +84638,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1979), 7, + ACTIONS(1952), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84714,7 +84646,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1981), 38, + ACTIONS(1954), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84757,7 +84689,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1731), 7, + ACTIONS(1704), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84765,7 +84697,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1733), 38, + ACTIONS(1706), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84808,7 +84740,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1987), 7, + ACTIONS(1960), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84816,7 +84748,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1989), 38, + ACTIONS(1962), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84961,7 +84893,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2051), 7, + ACTIONS(1590), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84969,7 +84901,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2053), 38, + ACTIONS(1592), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85063,7 +84995,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2083), 7, + ACTIONS(1304), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85071,7 +85003,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2085), 38, + ACTIONS(1306), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85114,7 +85046,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2059), 7, + ACTIONS(1582), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85122,7 +85054,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2061), 38, + ACTIONS(1584), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85319,7 +85251,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1859), 7, + ACTIONS(1828), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85327,7 +85259,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1861), 38, + ACTIONS(1830), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85370,7 +85302,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1851), 7, + ACTIONS(1820), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85378,7 +85310,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1853), 38, + ACTIONS(1822), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85421,7 +85353,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1835), 7, + ACTIONS(1804), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85429,7 +85361,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1837), 38, + ACTIONS(1806), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85472,7 +85404,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1819), 7, + ACTIONS(1788), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85480,7 +85412,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1821), 38, + ACTIONS(1790), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85627,7 +85559,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 15, + ACTIONS(2628), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85643,7 +85575,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2584), 29, + ACTIONS(2626), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85677,7 +85609,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1399), 7, + ACTIONS(1344), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85685,7 +85617,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1401), 38, + ACTIONS(1346), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85728,7 +85660,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1288), 7, + ACTIONS(1272), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85736,7 +85668,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1290), 38, + ACTIONS(1274), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85779,7 +85711,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1679), 7, + ACTIONS(1648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85787,7 +85719,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1681), 38, + ACTIONS(1650), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85830,7 +85762,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1663), 7, + ACTIONS(1632), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85838,7 +85770,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1665), 38, + ACTIONS(1634), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85932,7 +85864,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1659), 7, + ACTIONS(1628), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85940,7 +85872,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1661), 38, + ACTIONS(1630), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85983,7 +85915,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1655), 7, + ACTIONS(1624), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85991,7 +85923,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1657), 38, + ACTIONS(1626), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86034,7 +85966,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1471), 7, + ACTIONS(1420), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86042,7 +85974,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1473), 38, + ACTIONS(1422), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86240,7 +86172,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2015), 7, + ACTIONS(1984), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86248,7 +86180,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2017), 38, + ACTIONS(1986), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86291,7 +86223,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2031), 7, + ACTIONS(2000), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86299,7 +86231,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2033), 38, + ACTIONS(2002), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86342,7 +86274,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1635), 7, + ACTIONS(1098), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86350,7 +86282,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1637), 38, + ACTIONS(1100), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86395,7 +86327,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, + ACTIONS(2586), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86411,7 +86343,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2638), 29, + ACTIONS(2584), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86445,7 +86377,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2071), 7, + ACTIONS(1472), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86453,7 +86385,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2073), 38, + ACTIONS(1474), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86496,7 +86428,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2091), 7, + ACTIONS(1300), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86504,7 +86436,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2093), 38, + ACTIONS(1302), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86547,7 +86479,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1631), 7, + ACTIONS(1598), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86555,7 +86487,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1633), 38, + ACTIONS(1600), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86650,7 +86582,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1525), 7, + ACTIONS(1484), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86658,7 +86590,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1527), 38, + ACTIONS(1486), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86701,7 +86633,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2039), 7, + ACTIONS(1610), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86709,7 +86641,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2041), 38, + ACTIONS(1612), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86752,7 +86684,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1533), 7, + ACTIONS(1492), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86760,7 +86692,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1535), 38, + ACTIONS(1494), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86803,7 +86735,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2023), 7, + ACTIONS(1692), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86811,7 +86743,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2025), 38, + ACTIONS(1694), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86854,7 +86786,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1615), 7, + ACTIONS(1578), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86862,7 +86794,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1617), 38, + ACTIONS(1580), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86905,7 +86837,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1603), 7, + ACTIONS(1566), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86913,7 +86845,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1605), 38, + ACTIONS(1568), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87059,7 +86991,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1569), 7, + ACTIONS(1528), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87067,7 +86999,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1571), 38, + ACTIONS(1530), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87110,7 +87042,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1991), 7, + ACTIONS(1964), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87118,7 +87050,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1993), 38, + ACTIONS(1966), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87161,7 +87093,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1983), 7, + ACTIONS(1956), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87169,7 +87101,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1985), 38, + ACTIONS(1958), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87212,7 +87144,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1583), 7, + ACTIONS(1546), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87220,7 +87152,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1585), 38, + ACTIONS(1548), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87263,7 +87195,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1587), 7, + ACTIONS(1550), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87271,7 +87203,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1589), 38, + ACTIONS(1552), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87314,7 +87246,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1611), 7, + ACTIONS(1574), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87322,7 +87254,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1613), 38, + ACTIONS(1576), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87365,7 +87297,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1955), 7, + ACTIONS(1948), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87373,7 +87305,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1957), 38, + ACTIONS(1950), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87416,7 +87348,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1723), 7, + ACTIONS(1700), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87424,7 +87356,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1725), 38, + ACTIONS(1702), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87518,7 +87450,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1507), 7, + ACTIONS(1456), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87526,7 +87458,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1509), 38, + ACTIONS(1458), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87569,7 +87501,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1577), 7, + ACTIONS(1536), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87577,7 +87509,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1579), 38, + ACTIONS(1538), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87620,7 +87552,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1503), 7, + ACTIONS(1452), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87628,7 +87560,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1505), 38, + ACTIONS(1454), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87671,7 +87603,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1487), 7, + ACTIONS(1436), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87679,7 +87611,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1489), 38, + ACTIONS(1438), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87722,7 +87654,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1573), 7, + ACTIONS(1532), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87730,7 +87662,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1575), 38, + ACTIONS(1534), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87773,7 +87705,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1463), 7, + ACTIONS(1412), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87781,7 +87713,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1465), 38, + ACTIONS(1414), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87824,7 +87756,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1541), 7, + ACTIONS(1500), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87832,7 +87764,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1543), 38, + ACTIONS(1502), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87875,7 +87807,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1407), 7, + ACTIONS(1352), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87883,7 +87815,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1409), 38, + ACTIONS(1354), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87977,7 +87909,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1292), 7, + ACTIONS(1276), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87985,7 +87917,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1294), 38, + ACTIONS(1278), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88028,7 +87960,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1391), 7, + ACTIONS(1336), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88036,7 +87968,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1393), 38, + ACTIONS(1338), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88079,7 +88011,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1915), 7, + ACTIONS(1884), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88087,7 +88019,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1917), 38, + ACTIONS(1886), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88130,7 +88062,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1367), 7, + ACTIONS(1312), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88138,7 +88070,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1369), 38, + ACTIONS(1314), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88181,7 +88113,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1623), 7, + ACTIONS(1586), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88189,7 +88121,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1625), 38, + ACTIONS(1588), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88232,7 +88164,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1228), 7, + ACTIONS(1212), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88240,7 +88172,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1230), 38, + ACTIONS(1214), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88283,7 +88215,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1296), 7, + ACTIONS(1280), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88291,7 +88223,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1298), 38, + ACTIONS(1282), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88334,7 +88266,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1216), 7, + ACTIONS(1200), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88342,7 +88274,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1218), 38, + ACTIONS(1202), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88436,7 +88368,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1212), 7, + ACTIONS(1192), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88444,7 +88376,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1214), 38, + ACTIONS(1194), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88487,7 +88419,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1174), 7, + ACTIONS(1154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88495,7 +88427,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1176), 38, + ACTIONS(1156), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88589,7 +88521,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1639), 7, + ACTIONS(1606), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88597,7 +88529,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1641), 38, + ACTIONS(1608), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88691,7 +88623,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1651), 7, + ACTIONS(1620), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88699,7 +88631,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1653), 38, + ACTIONS(1622), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88742,7 +88674,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1170), 7, + ACTIONS(1150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88750,7 +88682,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1172), 38, + ACTIONS(1152), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88895,7 +88827,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1308), 7, + ACTIONS(1292), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88903,7 +88835,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1310), 38, + ACTIONS(1294), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89253,7 +89185,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1395), 7, + ACTIONS(1340), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89261,7 +89193,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1397), 38, + ACTIONS(1342), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89457,7 +89389,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1272), 7, + ACTIONS(1256), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89465,7 +89397,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1274), 38, + ACTIONS(1258), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89508,7 +89440,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1599), 7, + ACTIONS(1562), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89516,7 +89448,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1601), 38, + ACTIONS(1564), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89559,7 +89491,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1415), 7, + ACTIONS(1360), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89567,7 +89499,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1417), 38, + ACTIONS(1362), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89610,7 +89542,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1427), 7, + ACTIONS(1376), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89618,7 +89550,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1429), 38, + ACTIONS(1378), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89661,7 +89593,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1431), 7, + ACTIONS(1380), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89669,7 +89601,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1433), 38, + ACTIONS(1382), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89764,7 +89696,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1475), 7, + ACTIONS(1424), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89772,7 +89704,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1477), 38, + ACTIONS(1426), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89815,7 +89747,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1607), 7, + ACTIONS(1570), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89823,7 +89755,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1609), 38, + ACTIONS(1572), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89866,7 +89798,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1491), 7, + ACTIONS(1440), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89874,7 +89806,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1493), 38, + ACTIONS(1442), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89917,7 +89849,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1671), 7, + ACTIONS(1640), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89925,7 +89857,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1673), 38, + ACTIONS(1642), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89968,7 +89900,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1683), 7, + ACTIONS(1652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89976,7 +89908,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1685), 38, + ACTIONS(1654), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90019,7 +89951,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1495), 7, + ACTIONS(1444), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90027,7 +89959,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1497), 38, + ACTIONS(1446), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90070,7 +90002,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1515), 7, + ACTIONS(1464), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90078,7 +90010,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1517), 38, + ACTIONS(1466), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90121,7 +90053,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1775), 7, + ACTIONS(1748), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90129,7 +90061,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1777), 38, + ACTIONS(1750), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90172,7 +90104,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1521), 7, + ACTIONS(1480), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90180,7 +90112,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1523), 38, + ACTIONS(1482), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90223,7 +90155,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1779), 7, + ACTIONS(1752), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90231,7 +90163,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1781), 38, + ACTIONS(1754), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90274,7 +90206,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1783), 7, + ACTIONS(1760), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90282,7 +90214,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1785), 38, + ACTIONS(1762), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90325,7 +90257,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1529), 7, + ACTIONS(1488), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90333,7 +90265,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1531), 38, + ACTIONS(1490), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90376,7 +90308,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1795), 7, + ACTIONS(1768), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90384,7 +90316,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1797), 38, + ACTIONS(1770), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90479,7 +90411,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1839), 7, + ACTIONS(1812), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90487,7 +90419,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1841), 38, + ACTIONS(1814), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90530,7 +90462,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1887), 7, + ACTIONS(1860), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90538,7 +90470,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1889), 38, + ACTIONS(1862), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90581,7 +90513,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1939), 7, + ACTIONS(1916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90589,7 +90521,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1941), 38, + ACTIONS(1918), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90632,7 +90564,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1545), 7, + ACTIONS(1504), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90640,7 +90572,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1547), 38, + ACTIONS(1506), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90734,7 +90666,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1557), 7, + ACTIONS(1516), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90742,7 +90674,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1559), 38, + ACTIONS(1518), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90785,7 +90717,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2047), 7, + ACTIONS(1594), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90793,7 +90725,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2049), 38, + ACTIONS(1596), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90836,7 +90768,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2067), 7, + ACTIONS(1468), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90844,7 +90776,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2069), 38, + ACTIONS(1470), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90887,7 +90819,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2079), 7, + ACTIONS(1308), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90895,7 +90827,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2081), 38, + ACTIONS(1310), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90938,7 +90870,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2035), 7, + ACTIONS(2004), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90946,7 +90878,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2037), 38, + ACTIONS(2006), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90989,7 +90921,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2027), 7, + ACTIONS(1996), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90997,7 +90929,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2029), 38, + ACTIONS(1998), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91040,7 +90972,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2019), 7, + ACTIONS(1988), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91048,7 +90980,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2021), 38, + ACTIONS(1990), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91091,7 +91023,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2007), 7, + ACTIONS(1976), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91099,7 +91031,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2009), 38, + ACTIONS(1978), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91193,7 +91125,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1565), 7, + ACTIONS(1524), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91201,7 +91133,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1567), 38, + ACTIONS(1526), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91244,7 +91176,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1304), 7, + ACTIONS(1288), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91252,7 +91184,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1306), 38, + ACTIONS(1290), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91347,7 +91279,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1847), 7, + ACTIONS(1816), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91355,7 +91287,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1849), 38, + ACTIONS(1818), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91398,7 +91330,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1667), 7, + ACTIONS(1636), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91406,7 +91338,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1669), 38, + ACTIONS(1638), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91449,7 +91381,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1803), 7, + ACTIONS(1772), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91457,7 +91389,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1805), 38, + ACTIONS(1774), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91500,7 +91432,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1743), 7, + ACTIONS(1712), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91508,7 +91440,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1745), 38, + ACTIONS(1714), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91602,7 +91534,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1787), 7, + ACTIONS(1756), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91610,7 +91542,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1789), 38, + ACTIONS(1758), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91704,7 +91636,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1675), 7, + ACTIONS(1644), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91712,7 +91644,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1677), 38, + ACTIONS(1646), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91755,7 +91687,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2063), 7, + ACTIONS(1476), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91763,7 +91695,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2065), 38, + ACTIONS(1478), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91858,7 +91790,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2075), 7, + ACTIONS(1372), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91866,7 +91798,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2077), 38, + ACTIONS(1374), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91961,7 +91893,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1715), 7, + ACTIONS(1684), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91969,7 +91901,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1717), 38, + ACTIONS(1686), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92012,7 +91944,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1711), 7, + ACTIONS(1680), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92020,7 +91952,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1713), 38, + ACTIONS(1682), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92063,7 +91995,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1707), 7, + ACTIONS(1676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92071,7 +92003,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1709), 38, + ACTIONS(1678), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92114,7 +92046,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1871), 7, + ACTIONS(1844), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92122,7 +92054,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1873), 38, + ACTIONS(1846), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92165,7 +92097,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1691), 7, + ACTIONS(1660), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92173,7 +92105,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1693), 38, + ACTIONS(1662), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92216,7 +92148,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1643), 7, + ACTIONS(1196), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92224,7 +92156,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1645), 38, + ACTIONS(1198), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92267,7 +92199,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2011), 7, + ACTIONS(1980), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92275,7 +92207,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2013), 38, + ACTIONS(1982), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92318,7 +92250,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1703), 7, + ACTIONS(1672), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92326,7 +92258,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1705), 38, + ACTIONS(1674), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92369,7 +92301,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2003), 7, + ACTIONS(1972), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92377,7 +92309,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2005), 38, + ACTIONS(1974), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92420,7 +92352,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1695), 7, + ACTIONS(1664), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92428,7 +92360,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1697), 38, + ACTIONS(1666), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92471,7 +92403,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1098), 7, + ACTIONS(1614), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92479,7 +92411,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1100), 38, + ACTIONS(1616), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92522,7 +92454,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1699), 7, + ACTIONS(1668), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92530,7 +92462,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1701), 38, + ACTIONS(1670), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92625,7 +92557,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1591), 7, + ACTIONS(1554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92633,7 +92565,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1593), 38, + ACTIONS(1556), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92676,7 +92608,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1561), 7, + ACTIONS(1520), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92684,7 +92616,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1563), 38, + ACTIONS(1522), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92727,7 +92659,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1439), 7, + ACTIONS(1388), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92735,7 +92667,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1441), 38, + ACTIONS(1390), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92778,7 +92710,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1435), 7, + ACTIONS(1384), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92786,7 +92718,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1437), 38, + ACTIONS(1386), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92829,7 +92761,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1423), 7, + ACTIONS(1368), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92837,7 +92769,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1425), 38, + ACTIONS(1370), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92880,7 +92812,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1419), 7, + ACTIONS(1364), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92888,7 +92820,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1421), 38, + ACTIONS(1366), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92931,7 +92863,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1411), 7, + ACTIONS(1356), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92939,7 +92871,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1413), 38, + ACTIONS(1358), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92982,7 +92914,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1387), 7, + ACTIONS(1332), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92990,7 +92922,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1389), 38, + ACTIONS(1334), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93033,7 +92965,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1379), 7, + ACTIONS(1324), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93041,7 +92973,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1381), 38, + ACTIONS(1326), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93084,7 +93016,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1967), 7, + ACTIONS(1936), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93092,7 +93024,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1969), 38, + ACTIONS(1938), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93135,7 +93067,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1375), 7, + ACTIONS(1320), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93143,7 +93075,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1377), 38, + ACTIONS(1322), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93186,7 +93118,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1371), 7, + ACTIONS(1316), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93194,7 +93126,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1373), 38, + ACTIONS(1318), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93237,7 +93169,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1300), 7, + ACTIONS(1284), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93245,7 +93177,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1302), 38, + ACTIONS(1286), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93288,7 +93220,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1284), 7, + ACTIONS(1268), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93296,7 +93228,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1286), 38, + ACTIONS(1270), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93339,7 +93271,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1280), 7, + ACTIONS(1264), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93347,7 +93279,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1282), 38, + ACTIONS(1266), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93390,7 +93322,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1268), 7, + ACTIONS(1252), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93398,7 +93330,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1270), 38, + ACTIONS(1254), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93441,7 +93373,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1963), 7, + ACTIONS(1932), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93449,7 +93381,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1965), 38, + ACTIONS(1934), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93492,7 +93424,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1260), 7, + ACTIONS(1244), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93500,7 +93432,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1262), 38, + ACTIONS(1246), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93543,7 +93475,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1256), 7, + ACTIONS(1240), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93551,7 +93483,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1258), 38, + ACTIONS(1242), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93594,7 +93526,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1252), 7, + ACTIONS(1236), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93602,7 +93534,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1254), 38, + ACTIONS(1238), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93696,7 +93628,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1248), 7, + ACTIONS(1232), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93704,7 +93636,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1250), 38, + ACTIONS(1234), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93747,7 +93679,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1244), 7, + ACTIONS(1228), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93755,7 +93687,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1246), 38, + ACTIONS(1230), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93798,7 +93730,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1959), 7, + ACTIONS(1928), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93806,7 +93738,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1961), 38, + ACTIONS(1930), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93849,7 +93781,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1236), 7, + ACTIONS(1220), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93857,7 +93789,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1238), 38, + ACTIONS(1222), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93900,7 +93832,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1951), 7, + ACTIONS(1920), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93908,7 +93840,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1953), 38, + ACTIONS(1922), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93951,7 +93883,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1895), 7, + ACTIONS(1864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93959,7 +93891,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1897), 38, + ACTIONS(1866), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94002,7 +93934,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 17, + ACTIONS(2612), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94020,7 +93952,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2618), 28, + ACTIONS(2610), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94053,7 +93985,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1232), 7, + ACTIONS(1216), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94061,7 +93993,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1234), 38, + ACTIONS(1218), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94104,7 +94036,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1971), 7, + ACTIONS(1940), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94112,7 +94044,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1973), 38, + ACTIONS(1942), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94155,7 +94087,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1220), 7, + ACTIONS(1204), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94163,7 +94095,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1222), 38, + ACTIONS(1206), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94258,7 +94190,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1903), 7, + ACTIONS(1876), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94266,7 +94198,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1905), 38, + ACTIONS(1878), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94309,7 +94241,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1911), 7, + ACTIONS(1888), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94317,7 +94249,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1913), 38, + ACTIONS(1890), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94360,7 +94292,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1204), 7, + ACTIONS(1184), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94368,7 +94300,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1206), 38, + ACTIONS(1186), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94411,7 +94343,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1178), 7, + ACTIONS(1158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94419,7 +94351,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1180), 38, + ACTIONS(1160), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94513,7 +94445,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1975), 7, + ACTIONS(1944), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94521,7 +94453,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1977), 38, + ACTIONS(1946), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94564,7 +94496,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1995), 7, + ACTIONS(1968), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94572,7 +94504,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1997), 38, + ACTIONS(1970), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94615,7 +94547,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1999), 7, + ACTIONS(1992), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94623,7 +94555,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2001), 38, + ACTIONS(1994), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94666,7 +94598,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2055), 7, + ACTIONS(1542), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94674,7 +94606,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2057), 38, + ACTIONS(1544), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94717,7 +94649,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1943), 7, + ACTIONS(1912), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94725,7 +94657,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1945), 38, + ACTIONS(1914), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94874,7 +94806,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1755), 7, + ACTIONS(1724), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94882,7 +94814,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1757), 38, + ACTIONS(1726), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94976,7 +94908,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2087), 7, + ACTIONS(1602), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94984,7 +94916,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2089), 38, + ACTIONS(1604), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95078,7 +95010,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2099), 7, + ACTIONS(1296), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95086,7 +95018,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2101), 38, + ACTIONS(1298), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95129,7 +95061,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1276), 7, + ACTIONS(1260), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95137,7 +95069,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1278), 38, + ACTIONS(1262), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95180,7 +95112,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1264), 7, + ACTIONS(1248), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95188,7 +95120,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1266), 38, + ACTIONS(1250), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95231,7 +95163,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1751), 7, + ACTIONS(1720), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95239,7 +95171,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1753), 38, + ACTIONS(1722), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95282,7 +95214,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1224), 7, + ACTIONS(1208), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95290,7 +95222,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1226), 38, + ACTIONS(1210), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95333,7 +95265,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1549), 7, + ACTIONS(1508), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95341,7 +95273,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1551), 38, + ACTIONS(1510), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95384,7 +95316,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1443), 7, + ACTIONS(1392), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95392,7 +95324,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1445), 38, + ACTIONS(1394), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95435,7 +95367,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1447), 7, + ACTIONS(1396), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95443,7 +95375,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1449), 38, + ACTIONS(1398), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95486,7 +95418,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1451), 7, + ACTIONS(1400), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95494,7 +95426,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1453), 38, + ACTIONS(1402), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95537,7 +95469,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1767), 7, + ACTIONS(1736), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95545,7 +95477,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1769), 38, + ACTIONS(1738), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95588,7 +95520,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1455), 7, + ACTIONS(1404), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95596,7 +95528,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1457), 38, + ACTIONS(1406), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95639,7 +95571,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1467), 7, + ACTIONS(1416), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95647,7 +95579,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1469), 38, + ACTIONS(1418), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95690,7 +95622,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1483), 7, + ACTIONS(1432), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95698,7 +95630,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1485), 38, + ACTIONS(1434), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95741,7 +95673,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1499), 7, + ACTIONS(1448), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95749,7 +95681,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1501), 38, + ACTIONS(1450), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95792,7 +95724,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1511), 7, + ACTIONS(1460), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95800,7 +95732,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1513), 38, + ACTIONS(1462), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95843,7 +95775,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1759), 7, + ACTIONS(1728), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95851,7 +95783,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1761), 38, + ACTIONS(1730), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95894,7 +95826,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1537), 7, + ACTIONS(1496), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95902,7 +95834,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1539), 38, + ACTIONS(1498), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95945,7 +95877,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1739), 7, + ACTIONS(1708), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95953,7 +95885,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1741), 38, + ACTIONS(1710), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95996,7 +95928,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1553), 7, + ACTIONS(1512), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96004,7 +95936,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1555), 38, + ACTIONS(1514), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96047,7 +95979,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1719), 7, + ACTIONS(1688), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96055,7 +95987,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1721), 38, + ACTIONS(1690), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96098,7 +96030,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1727), 7, + ACTIONS(1696), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96106,7 +96038,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1729), 38, + ACTIONS(1698), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96200,7 +96132,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2401), 15, + ACTIONS(2403), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96216,7 +96148,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2403), 29, + ACTIONS(2405), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97600,7 +97532,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2393), 15, + ACTIONS(2391), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97616,7 +97548,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2395), 29, + ACTIONS(2393), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99268,7 +99200,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, + ACTIONS(2586), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99284,7 +99216,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2638), 29, + ACTIONS(2584), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99686,7 +99618,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2425), 15, + ACTIONS(2419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99702,7 +99634,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2427), 29, + ACTIONS(2421), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99836,7 +99768,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 15, + ACTIONS(2628), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99852,7 +99784,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2584), 29, + ACTIONS(2626), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100943,7 +100875,7 @@ static uint16_t ts_small_parse_table[] = { STATE(1140), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - ACTIONS(2457), 9, + ACTIONS(2507), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -100953,7 +100885,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2455), 32, + ACTIONS(2505), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101478,9 +101410,9 @@ static uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [35670] = 7, - ACTIONS(2634), 1, + ACTIONS(2638), 1, anon_sym_LBRACE, - ACTIONS(2636), 1, + ACTIONS(2640), 1, anon_sym_COLON_COLON, ACTIONS(3093), 1, anon_sym_BANG, @@ -102776,9 +102708,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2488), 1, + ACTIONS(2475), 1, anon_sym_fn, - ACTIONS(2496), 1, + ACTIONS(2483), 1, anon_sym_COLON_COLON, ACTIONS(3131), 1, sym_identifier, @@ -102786,7 +102718,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_default, ACTIONS(3137), 1, sym_metavariable, - STATE(778), 1, + STATE(766), 1, sym_scoped_type_identifier, STATE(854), 1, sym_generic_type, @@ -102812,7 +102744,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2504), 3, + ACTIONS(2491), 3, sym_self, sym_super, sym_crate, @@ -102839,7 +102771,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1288), 10, + ACTIONS(1272), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -102850,7 +102782,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(1290), 32, + ACTIONS(1274), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103002,7 +102934,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, - ACTIONS(997), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, ACTIONS(3141), 1, sym_identifier, @@ -103066,9 +102998,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_for, ACTIONS(714), 1, anon_sym_extern, - ACTIONS(2488), 1, + ACTIONS(2475), 1, anon_sym_fn, - ACTIONS(2496), 1, + ACTIONS(2483), 1, anon_sym_COLON_COLON, ACTIONS(3135), 1, anon_sym_default, @@ -103076,7 +103008,7 @@ static uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(3153), 1, sym_identifier, - STATE(765), 1, + STATE(775), 1, sym_scoped_type_identifier, STATE(839), 1, sym_generic_type, @@ -103102,7 +103034,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2504), 3, + ACTIONS(2491), 3, sym_self, sym_super, sym_crate, @@ -103130,7 +103062,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, - ACTIONS(997), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, ACTIONS(3141), 1, sym_identifier, @@ -103192,7 +103124,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(997), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, ACTIONS(3157), 1, sym_identifier, @@ -103302,7 +103234,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, ACTIONS(736), 1, aux_sym_string_literal_token1, - ACTIONS(997), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, ACTIONS(3167), 1, sym_identifier, @@ -103409,7 +103341,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, - ACTIONS(997), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, ACTIONS(3141), 1, sym_identifier, @@ -103514,7 +103446,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 16, + ACTIONS(2614), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -103531,7 +103463,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2624), 24, + ACTIONS(2616), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -103561,7 +103493,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, - ACTIONS(997), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, ACTIONS(3141), 1, sym_identifier, @@ -103900,7 +103832,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 16, + ACTIONS(2622), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -103917,7 +103849,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2616), 24, + ACTIONS(2624), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -103946,7 +103878,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 16, + ACTIONS(2634), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -103963,7 +103895,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2632), 24, + ACTIONS(2636), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106621,7 +106553,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(3249), 1, anon_sym_CARET, - STATE(782), 1, + STATE(780), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -107318,7 +107250,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(3249), 1, anon_sym_CARET, - STATE(779), 1, + STATE(785), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -111572,7 +111504,7 @@ static uint16_t ts_small_parse_table[] = { [48555] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(997), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, ACTIONS(3141), 1, sym_identifier, @@ -111616,7 +111548,7 @@ static uint16_t ts_small_parse_table[] = { [48610] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(997), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, ACTIONS(3141), 1, sym_identifier, @@ -111660,7 +111592,7 @@ static uint16_t ts_small_parse_table[] = { [48665] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(997), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, ACTIONS(3141), 1, sym_identifier, @@ -111704,7 +111636,7 @@ static uint16_t ts_small_parse_table[] = { [48720] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(997), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, ACTIONS(3141), 1, sym_identifier, @@ -111748,7 +111680,7 @@ static uint16_t ts_small_parse_table[] = { [48775] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(997), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, ACTIONS(3141), 1, sym_identifier, @@ -111792,7 +111724,7 @@ static uint16_t ts_small_parse_table[] = { [48830] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(997), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, ACTIONS(3141), 1, sym_identifier, @@ -111836,7 +111768,7 @@ static uint16_t ts_small_parse_table[] = { [48885] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(997), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, ACTIONS(3141), 1, sym_identifier, @@ -111880,7 +111812,7 @@ static uint16_t ts_small_parse_table[] = { [48940] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(997), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, ACTIONS(3409), 1, sym_identifier, @@ -111922,7 +111854,7 @@ static uint16_t ts_small_parse_table[] = { [48992] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(997), 1, + ACTIONS(966), 1, anon_sym_COLON_COLON, ACTIONS(3417), 1, sym_identifier, @@ -111989,12 +111921,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [49074] = 3, - ACTIONS(2425), 1, + ACTIONS(2419), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2427), 20, + ACTIONS(2421), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112079,15 +112011,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [49186] = 4, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2632), 2, + ACTIONS(2636), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2626), 15, + ACTIONS(2630), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112190,13 +112122,13 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 2, + ACTIONS(2618), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2614), 2, + ACTIONS(2622), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2616), 14, + ACTIONS(2624), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112215,13 +112147,13 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 2, + ACTIONS(2630), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2630), 2, + ACTIONS(2634), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2632), 14, + ACTIONS(2636), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112240,13 +112172,13 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 2, + ACTIONS(2610), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2622), 2, + ACTIONS(2614), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2624), 14, + ACTIONS(2616), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112262,15 +112194,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [49405] = 4, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 2, + ACTIONS(2624), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2610), 15, + ACTIONS(2618), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112312,15 +112244,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [49463] = 4, - ACTIONS(2620), 1, + ACTIONS(2612), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 2, + ACTIONS(2616), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2618), 15, + ACTIONS(2610), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112348,7 +112280,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2638), 13, + ACTIONS(2584), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112374,7 +112306,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 13, + ACTIONS(2626), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112492,7 +112424,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 16, + ACTIONS(2610), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112617,10 +112549,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 2, + ACTIONS(2634), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2632), 13, + ACTIONS(2636), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112753,10 +112685,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 2, + ACTIONS(2622), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2616), 13, + ACTIONS(2624), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113093,14 +113025,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, [50423] = 4, - ACTIONS(2586), 1, + ACTIONS(2628), 1, anon_sym_COLON, ACTIONS(3526), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 12, + ACTIONS(2626), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113114,14 +113046,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, [50448] = 4, - ACTIONS(2640), 1, + ACTIONS(2586), 1, anon_sym_COLON, ACTIONS(3526), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2638), 12, + ACTIONS(2584), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113234,12 +113166,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, [50586] = 3, - ACTIONS(2401), 1, + ACTIONS(2403), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2403), 13, + ACTIONS(2405), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113275,7 +113207,7 @@ static uint16_t ts_small_parse_table[] = { [50630] = 4, ACTIONS(3550), 1, anon_sym_pat, - STATE(576), 1, + STATE(567), 1, sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, @@ -113413,7 +113345,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 13, + ACTIONS(2626), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113467,7 +113399,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2638), 13, + ACTIONS(2584), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113539,10 +113471,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 2, + ACTIONS(2614), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2624), 11, + ACTIONS(2616), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113937,20 +113869,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, [51377] = 5, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_COLON, ACTIONS(3564), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 5, + ACTIONS(2618), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2616), 5, + ACTIONS(2624), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, @@ -113975,20 +113907,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51423] = 5, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_COLON, ACTIONS(3567), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 5, + ACTIONS(2630), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2632), 5, + ACTIONS(2636), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, @@ -114020,20 +113952,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_PIPE, [51483] = 5, - ACTIONS(2622), 1, + ACTIONS(2614), 1, anon_sym_COLON, ACTIONS(3572), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 5, + ACTIONS(2610), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2624), 5, + ACTIONS(2616), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, @@ -114085,12 +114017,12 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3572), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2618), 4, + ACTIONS(2610), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2624), 6, + ACTIONS(2616), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -114104,12 +114036,12 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3567), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2626), 4, + ACTIONS(2630), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2632), 6, + ACTIONS(2636), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -114123,12 +114055,12 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3564), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2610), 4, + ACTIONS(2618), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2616), 6, + ACTIONS(2624), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -114192,12 +114124,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51692] = 5, - ACTIONS(2622), 1, + ACTIONS(2614), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2618), 3, + ACTIONS(2610), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, @@ -114205,19 +114137,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2624), 5, + ACTIONS(2616), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [51717] = 5, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 3, + ACTIONS(2630), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, @@ -114225,7 +114157,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2632), 5, + ACTIONS(2636), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, @@ -114251,12 +114183,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51765] = 5, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, @@ -114264,7 +114196,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2616), 5, + ACTIONS(2624), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, @@ -115928,7 +115860,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(464), 1, + STATE(466), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -116092,7 +116024,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(3860), 1, anon_sym_SEMI, - STATE(371), 1, + STATE(373), 1, sym_field_declaration_list, STATE(1616), 1, sym_type_parameters, @@ -116303,7 +116235,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3884), 1, anon_sym_SEMI, - STATE(407), 1, + STATE(409), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -116620,7 +116552,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(3926), 1, anon_sym_LT, - STATE(376), 1, + STATE(378), 1, sym_declaration_list, STATE(1652), 1, sym_type_parameters, @@ -116952,7 +116884,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(3926), 1, anon_sym_LT, - STATE(465), 1, + STATE(468), 1, sym_declaration_list, STATE(1716), 1, sym_type_parameters, @@ -117334,7 +117266,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(4013), 1, anon_sym_SEMI, - STATE(453), 1, + STATE(456), 1, sym_field_declaration_list, STATE(1932), 1, sym_ordered_field_declaration_list, @@ -117501,7 +117433,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(4033), 1, anon_sym_SEMI, - STATE(351), 1, + STATE(352), 1, sym_field_declaration_list, STATE(2082), 1, sym_ordered_field_declaration_list, @@ -117896,7 +117828,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4083), 1, anon_sym_DASH_GT, - STATE(334), 1, + STATE(335), 1, sym_block, STATE(1971), 1, sym_where_clause, @@ -117992,7 +117924,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4095), 1, anon_sym_SEMI, - STATE(291), 1, + STATE(289), 1, sym_block, STATE(2145), 1, sym_where_clause, @@ -118021,7 +117953,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(4097), 1, anon_sym_SEMI, - STATE(478), 1, + STATE(480), 1, sym_declaration_list, STATE(2057), 1, sym_where_clause, @@ -118035,7 +117967,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3924), 1, anon_sym_COLON, - STATE(341), 1, + STATE(342), 1, sym_declaration_list, STATE(1831), 1, sym_trait_bounds, @@ -118082,7 +118014,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(4101), 1, anon_sym_DASH_GT, - STATE(279), 1, + STATE(277), 1, sym_block, STATE(2142), 1, sym_where_clause, @@ -118114,7 +118046,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4103), 1, anon_sym_SEMI, - STATE(422), 1, + STATE(424), 1, sym_block, STATE(1890), 1, sym_where_clause, @@ -118146,7 +118078,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(4107), 1, anon_sym_SEMI, - STATE(493), 1, + STATE(301), 1, sym_declaration_list, STATE(1999), 1, sym_where_clause, @@ -118226,7 +118158,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(4121), 1, anon_sym_SEMI, - STATE(319), 1, + STATE(320), 1, sym_declaration_list, STATE(2095), 1, sym_where_clause, @@ -118376,7 +118308,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4143), 1, anon_sym_SEMI, - STATE(462), 1, + STATE(464), 1, sym_block, STATE(2060), 1, sym_where_clause, @@ -118392,7 +118324,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4145), 1, anon_sym_SEMI, - STATE(333), 1, + STATE(334), 1, sym_block, STATE(2114), 1, sym_where_clause, @@ -118496,7 +118428,7 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57507] = 7, - ACTIONS(2451), 1, + ACTIONS(2453), 1, anon_sym_PLUS, ACTIONS(3924), 1, anon_sym_COLON, @@ -118520,7 +118452,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(4165), 1, anon_sym_SEMI, - STATE(278), 1, + STATE(276), 1, sym_declaration_list, STATE(2032), 1, sym_where_clause, @@ -118549,7 +118481,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(4169), 1, anon_sym_SEMI, - STATE(369), 1, + STATE(371), 1, sym_declaration_list, STATE(1899), 1, sym_where_clause, @@ -118577,7 +118509,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(4171), 1, anon_sym_LBRACE, - STATE(276), 1, + STATE(273), 1, sym_enum_variant_list, STATE(1866), 1, sym_type_parameters, @@ -118695,7 +118627,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(4181), 1, anon_sym_SEMI, - STATE(382), 1, + STATE(384), 1, sym_declaration_list, STATE(1897), 1, sym_where_clause, @@ -118743,7 +118675,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(4189), 1, anon_sym_DASH_GT, - STATE(445), 1, + STATE(448), 1, sym_block, STATE(1950), 1, sym_where_clause, @@ -118790,7 +118722,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(4191), 1, anon_sym_SEMI, - STATE(348), 1, + STATE(349), 1, sym_declaration_list, STATE(2130), 1, sym_where_clause, @@ -118838,7 +118770,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(4203), 1, anon_sym_DASH_GT, - STATE(441), 1, + STATE(445), 1, sym_block, STATE(1926), 1, sym_where_clause, @@ -118881,7 +118813,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(3804), 1, anon_sym_LT, - STATE(384), 1, + STATE(386), 1, sym_field_declaration_list, STATE(1851), 1, sym_type_parameters, @@ -118899,7 +118831,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4209), 1, anon_sym_SEMI, - STATE(429), 1, + STATE(431), 1, sym_block, STATE(2069), 1, sym_where_clause, @@ -118956,7 +118888,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(4213), 1, anon_sym_SEMI, - STATE(391), 1, + STATE(393), 1, sym_declaration_list, STATE(2019), 1, sym_where_clause, @@ -118999,7 +118931,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3924), 1, anon_sym_COLON, - STATE(435), 1, + STATE(439), 1, sym_declaration_list, STATE(1868), 1, sym_trait_bounds, @@ -119015,7 +118947,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3924), 1, anon_sym_COLON, - STATE(482), 1, + STATE(375), 1, sym_declaration_list, STATE(1790), 1, sym_trait_bounds, @@ -119078,7 +119010,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, ACTIONS(4223), 1, anon_sym_DASH_GT, - STATE(490), 1, + STATE(303), 1, sym_block, STATE(2048), 1, sym_where_clause, @@ -119155,7 +119087,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, ACTIONS(4233), 1, anon_sym_SEMI, - STATE(425), 1, + STATE(429), 1, sym_declaration_list, STATE(1898), 1, sym_where_clause, @@ -119171,7 +119103,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4235), 1, anon_sym_SEMI, - STATE(406), 1, + STATE(408), 1, sym_block, STATE(2087), 1, sym_where_clause, @@ -119863,7 +119795,7 @@ static uint16_t ts_small_parse_table[] = { [59367] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(950), 1, + ACTIONS(1000), 1, sym_line_comment, ACTIONS(4341), 1, aux_sym_token_repetition_pattern_token1, @@ -119876,7 +119808,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3802), 1, anon_sym_where, - STATE(457), 1, + STATE(461), 1, sym_field_declaration_list, STATE(2235), 1, sym_where_clause, @@ -119898,7 +119830,7 @@ static uint16_t ts_small_parse_table[] = { [59416] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(950), 1, + ACTIONS(1000), 1, sym_line_comment, ACTIONS(4345), 1, aux_sym_token_repetition_pattern_token1, @@ -119911,7 +119843,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(285), 1, + STATE(283), 1, sym_declaration_list, STATE(2151), 1, sym_where_clause, @@ -119923,7 +119855,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(345), 1, + STATE(346), 1, sym_declaration_list, STATE(2313), 1, sym_where_clause, @@ -120087,7 +120019,7 @@ static uint16_t ts_small_parse_table[] = { [59682] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(950), 1, + ACTIONS(1000), 1, sym_line_comment, ACTIONS(4379), 1, aux_sym_token_repetition_pattern_token1, @@ -120096,7 +120028,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_QMARK, [59697] = 5, - ACTIONS(2451), 1, + ACTIONS(2453), 1, anon_sym_PLUS, ACTIONS(4383), 1, anon_sym_COMMA, @@ -120252,7 +120184,7 @@ static uint16_t ts_small_parse_table[] = { [59914] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(950), 1, + ACTIONS(1000), 1, sym_line_comment, ACTIONS(4421), 1, aux_sym_token_repetition_pattern_token1, @@ -120297,7 +120229,7 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59980] = 5, - ACTIONS(2451), 1, + ACTIONS(2453), 1, anon_sym_PLUS, ACTIONS(4425), 1, anon_sym_COMMA, @@ -120392,7 +120324,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(419), 1, + STATE(422), 1, sym_declaration_list, STATE(2263), 1, sym_where_clause, @@ -120415,7 +120347,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(4171), 1, anon_sym_LBRACE, - STATE(446), 1, + STATE(449), 1, sym_enum_variant_list, STATE(2238), 1, sym_where_clause, @@ -120508,7 +120440,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(455), 1, + STATE(459), 1, sym_declaration_list, STATE(2195), 1, sym_where_clause, @@ -120554,7 +120486,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(434), 1, + STATE(437), 1, sym_declaration_list, STATE(2260), 1, sym_where_clause, @@ -120620,7 +120552,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3802), 1, anon_sym_where, - STATE(331), 1, + STATE(332), 1, sym_field_declaration_list, STATE(2309), 1, sym_where_clause, @@ -120790,7 +120722,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(4171), 1, anon_sym_LBRACE, - STATE(469), 1, + STATE(472), 1, sym_enum_variant_list, STATE(2326), 1, sym_where_clause, @@ -121052,7 +120984,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4564), 1, anon_sym_SEMI, - STATE(414), 1, + STATE(416), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -121121,7 +121053,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4576), 1, anon_sym_SEMI, - STATE(476), 1, + STATE(400), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -121131,7 +121063,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4578), 1, anon_sym_SEMI, - STATE(284), 1, + STATE(282), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -121141,7 +121073,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4580), 1, anon_sym_SEMI, - STATE(330), 1, + STATE(331), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -121335,7 +121267,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, [61416] = 4, - ACTIONS(2528), 1, + ACTIONS(2524), 1, anon_sym_RPAREN, ACTIONS(4620), 1, anon_sym_COMMA, @@ -121398,7 +121330,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4633), 1, anon_sym_SEMI, - STATE(367), 1, + STATE(369), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -121423,7 +121355,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, [61538] = 4, - ACTIONS(2634), 1, + ACTIONS(2638), 1, anon_sym_LBRACE, ACTIONS(4643), 1, anon_sym_COLON_COLON, @@ -121541,7 +121473,7 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61702] = 4, - ACTIONS(2451), 1, + ACTIONS(2453), 1, anon_sym_PLUS, ACTIONS(4666), 1, sym_mutable_specifier, @@ -121633,7 +121565,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4685), 1, anon_sym_SEMI, - STATE(339), 1, + STATE(340), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -121715,7 +121647,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COMMA, [61942] = 4, - ACTIONS(2441), 1, + ACTIONS(2443), 1, anon_sym_RPAREN, ACTIONS(4706), 1, anon_sym_COMMA, @@ -121725,7 +121657,7 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61956] = 4, - ACTIONS(2439), 1, + ACTIONS(2445), 1, anon_sym_RBRACK, ACTIONS(4708), 1, anon_sym_COMMA, @@ -121821,7 +121753,7 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62088] = 4, - ACTIONS(2445), 1, + ACTIONS(2449), 1, anon_sym_RPAREN, ACTIONS(4731), 1, anon_sym_COMMA, @@ -121835,7 +121767,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4733), 1, anon_sym_SEMI, - STATE(430), 1, + STATE(432), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -121954,7 +121886,7 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62270] = 3, - ACTIONS(2451), 1, + ACTIONS(2453), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, @@ -122103,7 +122035,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4796), 1, anon_sym_SEMI, - STATE(393), 1, + STATE(395), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -122297,7 +122229,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4840), 1, anon_sym_SEMI, - STATE(375), 1, + STATE(255), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -122416,7 +122348,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4870), 1, anon_sym_SEMI, - STATE(321), 1, + STATE(322), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -122499,7 +122431,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4892), 1, anon_sym_SEMI, - STATE(295), 1, + STATE(293), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -122577,7 +122509,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4908), 1, anon_sym_SEMI, - STATE(272), 1, + STATE(270), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -122604,7 +122536,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2379), 3, + ACTIONS(2373), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -122661,7 +122593,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4922), 1, anon_sym_SEMI, - STATE(395), 1, + STATE(397), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -122691,7 +122623,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4930), 1, anon_sym_SEMI, - STATE(486), 1, + STATE(345), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -122779,7 +122711,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4954), 1, anon_sym_SEMI, - STATE(290), 1, + STATE(288), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -122805,7 +122737,7 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63444] = 4, - ACTIONS(2634), 1, + ACTIONS(2638), 1, anon_sym_LBRACE, ACTIONS(4962), 1, anon_sym_COLON_COLON, @@ -122920,7 +122852,7 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63602] = 4, - ACTIONS(2538), 1, + ACTIONS(2540), 1, anon_sym_RPAREN, ACTIONS(4988), 1, anon_sym_COMMA, @@ -122953,7 +122885,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4994), 1, anon_sym_SEMI, - STATE(473), 1, + STATE(475), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -123032,7 +122964,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(5018), 1, anon_sym_SEMI, - STATE(431), 1, + STATE(435), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -123209,7 +123141,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(5062), 1, anon_sym_SEMI, - STATE(460), 1, + STATE(462), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -123310,7 +123242,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(5084), 1, anon_sym_SEMI, - STATE(326), 1, + STATE(327), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -123320,7 +123252,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(5086), 1, anon_sym_SEMI, - STATE(324), 1, + STATE(325), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -123340,7 +123272,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(5088), 1, anon_sym_SEMI, - STATE(362), 1, + STATE(364), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -123360,7 +123292,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(5092), 1, anon_sym_SEMI, - STATE(389), 1, + STATE(391), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -123406,7 +123338,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2391), 3, + ACTIONS(2401), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -123473,7 +123405,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(5113), 1, anon_sym_SEMI, - STATE(402), 1, + STATE(404), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -123503,7 +123435,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(5119), 1, anon_sym_SEMI, - STATE(340), 1, + STATE(341), 1, sym_block, ACTIONS(3), 2, sym_block_comment, @@ -123531,7 +123463,7 @@ static uint16_t ts_small_parse_table[] = { [64436] = 3, ACTIONS(4171), 1, anon_sym_LBRACE, - STATE(470), 1, + STATE(478), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, @@ -123555,7 +123487,7 @@ static uint16_t ts_small_parse_table[] = { [64469] = 3, ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(397), 1, + STATE(399), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -123895,7 +123827,7 @@ static uint16_t ts_small_parse_table[] = { [64934] = 3, ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(286), 1, + STATE(284), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -123903,7 +123835,7 @@ static uint16_t ts_small_parse_table[] = { [64945] = 3, ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(287), 1, + STATE(285), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -123973,7 +123905,7 @@ static uint16_t ts_small_parse_table[] = { [65040] = 3, ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(354), 1, + STATE(355), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -123996,7 +123928,7 @@ static uint16_t ts_small_parse_table[] = { [65071] = 3, ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(347), 1, + STATE(348), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -124095,7 +124027,7 @@ static uint16_t ts_small_parse_table[] = { [65204] = 3, ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(332), 1, + STATE(333), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -124205,7 +124137,7 @@ static uint16_t ts_small_parse_table[] = { [65354] = 3, ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(440), 1, + STATE(443), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -124213,7 +124145,7 @@ static uint16_t ts_small_parse_table[] = { [65365] = 3, ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(427), 1, + STATE(430), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -124229,7 +124161,7 @@ static uint16_t ts_small_parse_table[] = { [65387] = 3, ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(413), 1, + STATE(417), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -124237,13 +124169,13 @@ static uint16_t ts_small_parse_table[] = { [65398] = 3, ACTIONS(4171), 1, anon_sym_LBRACE, - STATE(388), 1, + STATE(390), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65409] = 3, - ACTIONS(2634), 1, + ACTIONS(2638), 1, anon_sym_LBRACE, STATE(1131), 1, sym_field_initializer_list, @@ -124434,7 +124366,7 @@ static uint16_t ts_small_parse_table[] = { [65667] = 3, ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(359), 1, + STATE(360), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -124621,7 +124553,7 @@ static uint16_t ts_small_parse_table[] = { [65921] = 3, ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(454), 1, + STATE(457), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -124669,7 +124601,7 @@ static uint16_t ts_small_parse_table[] = { [65987] = 3, ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(451), 1, + STATE(454), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -124685,7 +124617,7 @@ static uint16_t ts_small_parse_table[] = { [66009] = 3, ACTIONS(4171), 1, anon_sym_LBRACE, - STATE(443), 1, + STATE(447), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, @@ -124748,7 +124680,7 @@ static uint16_t ts_small_parse_table[] = { [66095] = 3, ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(433), 1, + STATE(436), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -124796,7 +124728,7 @@ static uint16_t ts_small_parse_table[] = { [66161] = 3, ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(423), 1, + STATE(426), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -124820,7 +124752,7 @@ static uint16_t ts_small_parse_table[] = { [66194] = 3, ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(417), 1, + STATE(421), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -124828,7 +124760,7 @@ static uint16_t ts_small_parse_table[] = { [66205] = 3, ACTIONS(3844), 1, anon_sym_LBRACE, - STATE(415), 1, + STATE(418), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -124860,7 +124792,7 @@ static uint16_t ts_small_parse_table[] = { [66249] = 3, ACTIONS(3800), 1, anon_sym_LBRACE, - STATE(410), 1, + STATE(413), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, @@ -124877,7 +124809,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2395), 2, + ACTIONS(2393), 2, anon_sym_COMMA, anon_sym_GT, [66280] = 3, @@ -125439,7 +125371,7 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [67026] = 2, - ACTIONS(2451), 1, + ACTIONS(2453), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, @@ -125517,7 +125449,7 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [67130] = 2, - ACTIONS(2419), 1, + ACTIONS(2397), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, @@ -125805,7 +125737,7 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [67514] = 2, - ACTIONS(2480), 1, + ACTIONS(2467), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, @@ -125949,7 +125881,7 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [67706] = 2, - ACTIONS(2387), 1, + ACTIONS(2413), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, @@ -126470,8 +126402,8 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(725)] = 10004, [SMALL_STATE(726)] = 10133, [SMALL_STATE(727)] = 10262, - [SMALL_STATE(728)] = 10391, - [SMALL_STATE(729)] = 10520, + [SMALL_STATE(728)] = 10393, + [SMALL_STATE(729)] = 10522, [SMALL_STATE(730)] = 10651, [SMALL_STATE(731)] = 10780, [SMALL_STATE(732)] = 10909, @@ -126508,26 +126440,26 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(763)] = 14530, [SMALL_STATE(764)] = 14597, [SMALL_STATE(765)] = 14664, - [SMALL_STATE(766)] = 14728, + [SMALL_STATE(766)] = 14720, [SMALL_STATE(767)] = 14784, - [SMALL_STATE(768)] = 14846, + [SMALL_STATE(768)] = 14840, [SMALL_STATE(769)] = 14902, - [SMALL_STATE(770)] = 14962, - [SMALL_STATE(771)] = 15026, + [SMALL_STATE(770)] = 14958, + [SMALL_STATE(771)] = 15018, [SMALL_STATE(772)] = 15082, [SMALL_STATE(773)] = 15142, - [SMALL_STATE(774)] = 15198, + [SMALL_STATE(774)] = 15202, [SMALL_STATE(775)] = 15258, - [SMALL_STATE(776)] = 15318, - [SMALL_STATE(777)] = 15374, + [SMALL_STATE(776)] = 15322, + [SMALL_STATE(777)] = 15382, [SMALL_STATE(778)] = 15438, [SMALL_STATE(779)] = 15502, - [SMALL_STATE(780)] = 15561, - [SMALL_STATE(781)] = 15616, - [SMALL_STATE(782)] = 15675, + [SMALL_STATE(780)] = 15559, + [SMALL_STATE(781)] = 15618, + [SMALL_STATE(782)] = 15677, [SMALL_STATE(783)] = 15734, - [SMALL_STATE(784)] = 15791, - [SMALL_STATE(785)] = 15848, + [SMALL_STATE(784)] = 15789, + [SMALL_STATE(785)] = 15846, [SMALL_STATE(786)] = 15905, [SMALL_STATE(787)] = 15962, [SMALL_STATE(788)] = 16016, @@ -128329,13 +128261,13 @@ static TSParseActionEntry ts_parse_actions[] = { [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), @@ -128351,11 +128283,11 @@ static TSParseActionEntry ts_parse_actions[] = { [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), @@ -128382,13 +128314,13 @@ static TSParseActionEntry ts_parse_actions[] = { [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1544), [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(781), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(767), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(768), [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2563), [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2159), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(631), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(632), [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(62), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(636), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(612), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(634), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(597), [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2161), [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(161), [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2559), @@ -128404,11 +128336,11 @@ static TSParseActionEntry ts_parse_actions[] = { [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2231), [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1472), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(644), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(641), [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2489), [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(64), [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), - [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(560), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(578), [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2233), [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1074), @@ -128425,10 +128357,10 @@ static TSParseActionEntry ts_parse_actions[] = { [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), @@ -128436,7 +128368,7 @@ static TSParseActionEntry ts_parse_actions[] = { [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), @@ -128452,10 +128384,10 @@ static TSParseActionEntry ts_parse_actions[] = { [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), @@ -128488,7 +128420,7 @@ static TSParseActionEntry ts_parse_actions[] = { [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(777), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(778), [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(36), [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(10), @@ -128501,18 +128433,18 @@ static TSParseActionEntry ts_parse_actions[] = { [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2244), [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(781), [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(798), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(632), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(624), [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(51), [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2258), [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(172), [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2248), [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(58), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(644), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(641), [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2489), [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(64), [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), - [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(560), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(578), [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2233), [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1074), @@ -128525,28 +128457,28 @@ static TSParseActionEntry ts_parse_actions[] = { [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), @@ -128568,7 +128500,7 @@ static TSParseActionEntry ts_parse_actions[] = { [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), @@ -128630,13 +128562,13 @@ static TSParseActionEntry ts_parse_actions[] = { [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), @@ -128685,7 +128617,7 @@ static TSParseActionEntry ts_parse_actions[] = { [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), @@ -128715,7 +128647,7 @@ static TSParseActionEntry ts_parse_actions[] = { [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), @@ -128723,7 +128655,7 @@ static TSParseActionEntry ts_parse_actions[] = { [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), @@ -128734,43 +128666,43 @@ static TSParseActionEntry ts_parse_actions[] = { [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 112), [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 112), [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(245), - [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(373), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(372), - [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(370), - [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2423), - [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(568), - [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1878), - [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(570), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(556), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(249), + [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(484), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(485), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(486), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2423), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(569), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1878), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(572), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(556), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2271), [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(996), @@ -128782,8 +128714,8 @@ static TSParseActionEntry ts_parse_actions[] = { [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1581), [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2347), [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2228), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(645), - [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(610), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(643), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(620), [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2352), [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1354), [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2062), @@ -128795,7 +128727,7 @@ static TSParseActionEntry ts_parse_actions[] = { [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1321), [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2227), [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1485), - [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(644), + [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(641), [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2461), [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2362), [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1361), @@ -128803,8 +128735,8 @@ static TSParseActionEntry ts_parse_actions[] = { [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), @@ -128829,570 +128761,570 @@ static TSParseActionEntry ts_parse_actions[] = { [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [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_struct_item, 7, .production_id = 123), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), - [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(302), - [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(539), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(538), - [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(537), - [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2547), - [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(568), - [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1878), - [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(570), - [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(302), - [1341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(303), - [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(544), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(543), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(541), - [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(303), - [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(595), - [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1836), - [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(594), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 225), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 225), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 228), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 228), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 223), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 223), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 223), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 223), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 230), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 230), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 184), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 184), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 241), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 241), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 148), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 148), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 146), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 146), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 231), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 231), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 232), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 232), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 177), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 177), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 236), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 236), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 184), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 184), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 242), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 242), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1428), - [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(579), - [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(573), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1373), - [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2253), - [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1783), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2465), - [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(629), - [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(644), - [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2452), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1473), - [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(608), - [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(604), - [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1490), - [2183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2268), - [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1421), - [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1832), - [2192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1387), - [2195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1922), - [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1922), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 241), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 241), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [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_trait_item, 7, .production_id = 212), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 210), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 210), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 225), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 225), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 228), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 228), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 242), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 242), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [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_trait_item, 4, .production_id = 49), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [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_const_item, 8, .production_id = 223), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 223), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 223), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 223), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 230), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 230), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 184), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 184), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [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_type_item, 6, .production_id = 162), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [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_static_item, 7, .production_id = 197), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), + [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_impl_item, 5, .production_id = 104), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [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_macro_definition, 6, .production_id = 47), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [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_impl_item, 6, .production_id = 108), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 148), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 148), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 146), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 146), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 231), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 231), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 232), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 232), + [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_field_declaration_list, 3), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 177), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 177), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 236), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 236), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), + [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_static_item, 6, .production_id = 157), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 184), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 184), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(492), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(544), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(543), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(541), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(492), + [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(596), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1836), + [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(594), + [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(493), + [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(542), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(537), + [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(520), + [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2547), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(569), + [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1878), + [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(572), + [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(493), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1428), + [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(560), + [2113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(577), + [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1373), + [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2253), + [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1783), + [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2465), + [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(628), + [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(641), + [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2452), + [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1473), + [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(616), + [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(612), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1490), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2268), + [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1421), + [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1832), + [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1387), + [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1922), + [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1922), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), @@ -129412,123 +129344,123 @@ static TSParseActionEntry ts_parse_actions[] = { [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2465), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2465), [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), @@ -129540,30 +129472,30 @@ static TSParseActionEntry ts_parse_actions[] = { [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), @@ -129673,12 +129605,12 @@ static TSParseActionEntry ts_parse_actions[] = { [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), @@ -129863,7 +129795,7 @@ static TSParseActionEntry ts_parse_actions[] = { [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), @@ -129880,13 +129812,13 @@ static TSParseActionEntry ts_parse_actions[] = { [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 219), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 173), [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), @@ -129904,34 +129836,34 @@ static TSParseActionEntry ts_parse_actions[] = { [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), @@ -129950,14 +129882,14 @@ static TSParseActionEntry ts_parse_actions[] = { [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), @@ -129998,18 +129930,18 @@ static TSParseActionEntry ts_parse_actions[] = { [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), @@ -130055,10 +129987,10 @@ static TSParseActionEntry ts_parse_actions[] = { [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), @@ -130110,21 +130042,21 @@ static TSParseActionEntry ts_parse_actions[] = { [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), @@ -130147,55 +130079,55 @@ static TSParseActionEntry ts_parse_actions[] = { [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(494), + [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(495), [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(496), - [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(497), + [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(497), + [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(586), + [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(585), [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), @@ -130213,14 +130145,14 @@ static TSParseActionEntry ts_parse_actions[] = { [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), @@ -130234,12 +130166,12 @@ static TSParseActionEntry ts_parse_actions[] = { [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), @@ -130261,14 +130193,14 @@ static TSParseActionEntry ts_parse_actions[] = { [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), @@ -130276,76 +130208,76 @@ static TSParseActionEntry ts_parse_actions[] = { [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), [4173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), @@ -130371,9 +130303,9 @@ static TSParseActionEntry ts_parse_actions[] = { [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), @@ -130392,36 +130324,36 @@ static TSParseActionEntry ts_parse_actions[] = { [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(609), + [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(610), [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), @@ -130431,19 +130363,19 @@ static TSParseActionEntry ts_parse_actions[] = { [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), @@ -130453,18 +130385,18 @@ static TSParseActionEntry ts_parse_actions[] = { [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), [4484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1849), @@ -130473,53 +130405,53 @@ static TSParseActionEntry ts_parse_actions[] = { [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), [4505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1585), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), [4595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1319), [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), @@ -130539,7 +130471,7 @@ static TSParseActionEntry ts_parse_actions[] = { [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1559), [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), @@ -130547,13 +130479,13 @@ static TSParseActionEntry ts_parse_actions[] = { [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(712), + [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(698), [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), @@ -130564,20 +130496,20 @@ static TSParseActionEntry ts_parse_actions[] = { [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1569), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), @@ -130586,16 +130518,16 @@ static TSParseActionEntry ts_parse_actions[] = { [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), [4755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1672), @@ -130605,11 +130537,11 @@ static TSParseActionEntry ts_parse_actions[] = { [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(247), + [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(246), [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), [4785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2169), @@ -130617,8 +130549,8 @@ static TSParseActionEntry ts_parse_actions[] = { [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), @@ -130635,10 +130567,10 @@ static TSParseActionEntry ts_parse_actions[] = { [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), [4829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(126), [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1186), [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), @@ -130652,7 +130584,7 @@ static TSParseActionEntry ts_parse_actions[] = { [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), @@ -130663,26 +130595,26 @@ static TSParseActionEntry ts_parse_actions[] = { [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), @@ -130691,30 +130623,30 @@ static TSParseActionEntry ts_parse_actions[] = { [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 190), [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), @@ -130726,7 +130658,7 @@ static TSParseActionEntry ts_parse_actions[] = { [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), @@ -130736,7 +130668,7 @@ static TSParseActionEntry ts_parse_actions[] = { [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), @@ -130748,7 +130680,7 @@ static TSParseActionEntry ts_parse_actions[] = { [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), @@ -130759,24 +130691,24 @@ static TSParseActionEntry ts_parse_actions[] = { [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), - [5098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(585), + [5098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(592), [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 221), [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), @@ -130801,7 +130733,7 @@ static TSParseActionEntry ts_parse_actions[] = { [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), @@ -130816,35 +130748,35 @@ static TSParseActionEntry ts_parse_actions[] = { [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), @@ -130875,12 +130807,12 @@ static TSParseActionEntry ts_parse_actions[] = { [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), @@ -130890,7 +130822,7 @@ static TSParseActionEntry ts_parse_actions[] = { [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), @@ -130902,14 +130834,14 @@ static TSParseActionEntry ts_parse_actions[] = { [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), @@ -130917,18 +130849,18 @@ static TSParseActionEntry ts_parse_actions[] = { [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), @@ -130936,72 +130868,72 @@ static TSParseActionEntry ts_parse_actions[] = { [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), [5435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), [5493] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), @@ -131012,7 +130944,7 @@ static TSParseActionEntry ts_parse_actions[] = { [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), From 0da672499343a183d02230f524eec7b34548e0f3 Mon Sep 17 00:00:00 2001 From: ninevra Date: Mon, 7 Mar 2022 20:19:40 -0800 Subject: [PATCH 6/6] Regenerate parser with updated tree-sitter --- src/parser.c | 10670 +++++++++++++++++++------------------ src/tree_sitter/parser.h | 5 +- 2 files changed, 5520 insertions(+), 5155 deletions(-) diff --git a/src/parser.c b/src/parser.c index 5a96099d..2b569952 100644 --- a/src/parser.c +++ b/src/parser.c @@ -341,7 +341,7 @@ enum { alias_sym_type_identifier = 322, }; -static const char *ts_symbol_names[] = { +static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym_identifier] = "identifier", [anon_sym_SEMI] = ";", @@ -667,7 +667,7 @@ static const char *ts_symbol_names[] = { [alias_sym_type_identifier] = "type_identifier", }; -static TSSymbol ts_symbol_map[] = { +static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [sym_identifier] = sym_identifier, [anon_sym_SEMI] = anon_sym_SEMI, @@ -2324,7 +2324,7 @@ enum { field_value = 28, }; -static const char *ts_field_names[] = { +static const char * const ts_field_names[] = { [0] = NULL, [field_alias] = "alias", [field_alternative] = "alternative", @@ -3252,7 +3252,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_type_parameters, 4}, }; -static TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, [1] = { [0] = sym_identifier, @@ -3526,7 +3526,7 @@ static TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGT }, }; -static uint16_t ts_non_terminal_alias_map[] = { +static const uint16_t ts_non_terminal_alias_map[] = { sym_generic_type_with_turbofish, 2, sym_generic_type_with_turbofish, sym_generic_type, @@ -3534,1066 +3534,1128 @@ static uint16_t ts_non_terminal_alias_map[] = { }; static inline bool sym_identifier_character_set_1(int32_t c) { - return (c < 43020 - ? (c < 4096 - ? (c < 2693 - ? (c < 1969 - ? (c < 910 - ? (c < 736 - ? (c < 186 + return (c < 43514 + ? (c < 4193 + ? (c < 2707 + ? (c < 1994 + ? (c < 931 + ? (c < 748 + ? (c < 192 ? (c < 170 ? (c < 'a' ? (c >= 'A' && c <= '_') : c <= 'z') - : (c <= 170 || c == 181)) - : (c <= 186 || (c < 248 - ? (c < 216 - ? (c >= 192 && c <= 214) - : c <= 246) - : (c <= 705 || (c >= 710 && c <= 721))))) - : (c <= 740 || (c < 891 - ? (c < 880 - ? (c < 750 - ? c == 748 - : c <= 750) - : (c <= 884 || (c >= 886 && c <= 887))) - : (c <= 893 || (c < 904 - ? (c < 902 - ? c == 895 - : c <= 902) - : (c <= 906 || c == 908)))))) - : (c <= 929 || (c < 1646 - ? (c < 1369 - ? (c < 1162 - ? (c < 1015 - ? (c >= 931 && c <= 1013) - : c <= 1153) - : (c <= 1327 || (c >= 1329 && c <= 1366))) - : (c <= 1369 || (c < 1519 - ? (c < 1488 - ? (c >= 1376 && c <= 1416) - : c <= 1514) - : (c <= 1522 || (c >= 1568 && c <= 1610))))) - : (c <= 1647 || (c < 1786 - ? (c < 1765 - ? (c < 1749 - ? (c >= 1649 && c <= 1747) - : c <= 1749) - : (c <= 1766 || (c >= 1774 && c <= 1775))) - : (c <= 1788 || (c < 1810 - ? (c < 1808 - ? c == 1791 - : c <= 1808) - : (c <= 1839 || (c >= 1869 && c <= 1957))))))))) - : (c <= 1969 || (c < 2474 + : (c <= 170 || (c < 186 + ? c == 181 + : c <= 186))) + : (c <= 214 || (c < 710 + ? (c < 248 + ? (c >= 216 && c <= 246) + : c <= 705) + : (c <= 721 || (c >= 736 && c <= 740))))) + : (c <= 748 || (c < 895 + ? (c < 886 + ? (c < 880 + ? c == 750 + : c <= 884) + : (c <= 887 || (c >= 891 && c <= 893))) + : (c <= 895 || (c < 908 + ? (c < 904 + ? c == 902 + : c <= 906) + : (c <= 908 || (c >= 910 && c <= 929))))))) + : (c <= 1013 || (c < 1649 + ? (c < 1376 + ? (c < 1329 + ? (c < 1162 + ? (c >= 1015 && c <= 1153) + : c <= 1327) + : (c <= 1366 || c == 1369)) + : (c <= 1416 || (c < 1568 + ? (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522) + : (c <= 1610 || (c >= 1646 && c <= 1647))))) + : (c <= 1747 || (c < 1791 + ? (c < 1774 + ? (c < 1765 + ? c == 1749 + : c <= 1766) + : (c <= 1775 || (c >= 1786 && c <= 1788))) + : (c <= 1791 || (c < 1869 + ? (c < 1810 + ? c == 1808 + : c <= 1839) + : (c <= 1957 || c == 1969)))))))) + : (c <= 2026 || (c < 2482 ? (c < 2208 - ? (c < 2074 - ? (c < 2042 - ? (c < 2036 - ? (c >= 1994 && c <= 2026) - : c <= 2037) - : (c <= 2042 || (c >= 2048 && c <= 2069))) - : (c <= 2074 || (c < 2112 - ? (c < 2088 - ? c == 2084 - : c <= 2088) - : (c <= 2136 || (c >= 2144 && c <= 2154))))) - : (c <= 2228 || (c < 2392 - ? (c < 2365 - ? (c < 2308 - ? (c >= 2230 && c <= 2247) - : c <= 2361) - : (c <= 2365 || c == 2384)) - : (c <= 2401 || (c < 2447 - ? (c < 2437 - ? (c >= 2417 && c <= 2432) - : c <= 2444) - : (c <= 2448 || (c >= 2451 && c <= 2472))))))) - : (c <= 2480 || (c < 2575 - ? (c < 2524 - ? (c < 2493 - ? (c < 2486 - ? c == 2482 - : c <= 2489) - : (c <= 2493 || c == 2510)) - : (c <= 2525 || (c < 2556 - ? (c < 2544 - ? (c >= 2527 && c <= 2529) - : c <= 2545) - : (c <= 2556 || (c >= 2565 && c <= 2570))))) - : (c <= 2576 || (c < 2616 - ? (c < 2610 - ? (c < 2602 - ? (c >= 2579 && c <= 2600) - : c <= 2608) - : (c <= 2611 || (c >= 2613 && c <= 2614))) - : (c <= 2617 || (c < 2654 - ? (c >= 2649 && c <= 2652) - : (c <= 2654 || (c >= 2674 && c <= 2676))))))))))) - : (c <= 2701 || (c < 3214 - ? (c < 2947 - ? (c < 2821 - ? (c < 2741 - ? (c < 2730 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : c <= 2728) - : (c <= 2736 || (c >= 2738 && c <= 2739))) - : (c <= 2745 || (c < 2784 - ? (c < 2768 + ? (c < 2088 + ? (c < 2048 + ? (c < 2042 + ? (c >= 2036 && c <= 2037) + : c <= 2042) + : (c <= 2069 || (c < 2084 + ? c == 2074 + : c <= 2084))) + : (c <= 2088 || (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2136) + : c <= 2154) + : (c <= 2183 || (c >= 2185 && c <= 2190))))) + : (c <= 2249 || (c < 2417 + ? (c < 2384 + ? (c < 2365 + ? (c >= 2308 && c <= 2361) + : c <= 2365) + : (c <= 2384 || (c >= 2392 && c <= 2401))) + : (c <= 2432 || (c < 2451 + ? (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448) + : (c <= 2472 || (c >= 2474 && c <= 2480))))))) + : (c <= 2482 || (c < 2579 + ? (c < 2527 + ? (c < 2510 + ? (c < 2493 + ? (c >= 2486 && c <= 2489) + : c <= 2493) + : (c <= 2510 || (c >= 2524 && c <= 2525))) + : (c <= 2529 || (c < 2565 + ? (c < 2556 + ? (c >= 2544 && c <= 2545) + : c <= 2556) + : (c <= 2570 || (c >= 2575 && c <= 2576))))) + : (c <= 2600 || (c < 2649 + ? (c < 2613 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611) + : (c <= 2614 || (c >= 2616 && c <= 2617))) + : (c <= 2652 || (c < 2693 + ? (c < 2674 + ? c == 2654 + : c <= 2676) + : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) + : (c <= 2728 || (c < 3242 + ? (c < 2962 + ? (c < 2858 + ? (c < 2784 + ? (c < 2741 + ? (c < 2738 + ? (c >= 2730 && c <= 2736) + : c <= 2739) + : (c <= 2745 || (c < 2768 ? c == 2749 - : c <= 2768) - : (c <= 2785 || c == 2809)))) - : (c <= 2828 || (c < 2869 - ? (c < 2858 - ? (c < 2835 - ? (c >= 2831 && c <= 2832) - : c <= 2856) - : (c <= 2864 || (c >= 2866 && c <= 2867))) - : (c <= 2873 || (c < 2911 - ? (c < 2908 - ? c == 2877 - : c <= 2909) - : (c <= 2913 || c == 2929)))))) - : (c <= 2947 || (c < 3024 - ? (c < 2972 - ? (c < 2962 - ? (c < 2958 - ? (c >= 2949 && c <= 2954) - : c <= 2960) - : (c <= 2965 || (c >= 2969 && c <= 2970))) - : (c <= 2972 || (c < 2984 - ? (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980) - : (c <= 2986 || (c >= 2990 && c <= 3001))))) - : (c <= 3024 || (c < 3133 - ? (c < 3090 - ? (c < 3086 - ? (c >= 3077 && c <= 3084) - : c <= 3088) - : (c <= 3112 || (c >= 3114 && c <= 3129))) - : (c <= 3133 || (c < 3200 - ? (c < 3168 - ? (c >= 3160 && c <= 3162) - : c <= 3169) - : (c <= 3200 || (c >= 3205 && c <= 3212))))))))) - : (c <= 3216 || (c < 3520 - ? (c < 3346 - ? (c < 3294 - ? (c < 3253 - ? (c < 3242 - ? (c >= 3218 && c <= 3240) - : c <= 3251) - : (c <= 3257 || c == 3261)) - : (c <= 3294 || (c < 3332 - ? (c < 3313 + : c <= 2768))) + : (c <= 2785 || (c < 2831 + ? (c < 2821 + ? c == 2809 + : c <= 2828) + : (c <= 2832 || (c >= 2835 && c <= 2856))))) + : (c <= 2864 || (c < 2911 + ? (c < 2877 + ? (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873) + : (c <= 2877 || (c >= 2908 && c <= 2909))) + : (c <= 2913 || (c < 2949 + ? (c < 2947 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c >= 2958 && c <= 2960))))))) + : (c <= 2965 || (c < 3090 + ? (c < 2984 + ? (c < 2974 + ? (c < 2972 + ? (c >= 2969 && c <= 2970) + : c <= 2972) + : (c <= 2975 || (c >= 2979 && c <= 2980))) + : (c <= 2986 || (c < 3077 + ? (c < 3024 + ? (c >= 2990 && c <= 3001) + : c <= 3024) + : (c <= 3084 || (c >= 3086 && c <= 3088))))) + : (c <= 3112 || (c < 3168 + ? (c < 3160 + ? (c < 3133 + ? (c >= 3114 && c <= 3129) + : c <= 3133) + : (c <= 3162 || c == 3165)) + : (c <= 3169 || (c < 3214 + ? (c < 3205 + ? c == 3200 + : c <= 3212) + : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) + : (c <= 3251 || (c < 3648 + ? (c < 3412 + ? (c < 3332 + ? (c < 3293 + ? (c < 3261 + ? (c >= 3253 && c <= 3257) + : c <= 3261) + : (c <= 3294 || (c < 3313 ? (c >= 3296 && c <= 3297) - : c <= 3314) - : (c <= 3340 || (c >= 3342 && c <= 3344))))) - : (c <= 3386 || (c < 3450 - ? (c < 3412 - ? (c < 3406 - ? c == 3389 - : c <= 3406) - : (c <= 3414 || (c >= 3423 && c <= 3425))) - : (c <= 3455 || (c < 3507 - ? (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505) - : (c <= 3515 || c == 3517)))))) - : (c <= 3526 || (c < 3762 - ? (c < 3716 - ? (c < 3648 - ? (c < 3634 - ? (c >= 3585 && c <= 3632) - : c <= 3634) - : (c <= 3654 || (c >= 3713 && c <= 3714))) - : (c <= 3716 || (c < 3749 - ? (c < 3724 - ? (c >= 3718 && c <= 3722) - : c <= 3747) - : (c <= 3749 || (c >= 3751 && c <= 3760))))) - : (c <= 3762 || (c < 3840 - ? (c < 3782 - ? (c < 3776 - ? c == 3773 - : c <= 3780) - : (c <= 3782 || (c >= 3804 && c <= 3807))) - : (c <= 3840 || (c < 3913 - ? (c >= 3904 && c <= 3911) - : (c <= 3948 || (c >= 3976 && c <= 3980))))))))))))) - : (c <= 4138 || (c < 8025 - ? (c < 5952 - ? (c < 4752 - ? (c < 4295 - ? (c < 4197 - ? (c < 4186 - ? (c < 4176 - ? c == 4159 - : c <= 4181) - : (c <= 4189 || c == 4193)) - : (c <= 4198 || (c < 4238 - ? (c < 4213 - ? (c >= 4206 && c <= 4208) - : c <= 4225) - : (c <= 4238 || (c >= 4256 && c <= 4293))))) - : (c <= 4295 || (c < 4688 - ? (c < 4348 + : c <= 3314))) + : (c <= 3340 || (c < 3389 + ? (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3386) + : (c <= 3389 || c == 3406)))) + : (c <= 3414 || (c < 3507 + ? (c < 3461 + ? (c < 3450 + ? (c >= 3423 && c <= 3425) + : c <= 3455) + : (c <= 3478 || (c >= 3482 && c <= 3505))) + : (c <= 3515 || (c < 3585 + ? (c < 3520 + ? c == 3517 + : c <= 3526) + : (c <= 3632 || c == 3634)))))) + : (c <= 3654 || (c < 3782 + ? (c < 3749 + ? (c < 3718 + ? (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716) + : (c <= 3722 || (c >= 3724 && c <= 3747))) + : (c <= 3749 || (c < 3773 + ? (c < 3762 + ? (c >= 3751 && c <= 3760) + : c <= 3762) + : (c <= 3773 || (c >= 3776 && c <= 3780))))) + : (c <= 3782 || (c < 3976 + ? (c < 3904 + ? (c < 3840 + ? (c >= 3804 && c <= 3807) + : c <= 3840) + : (c <= 3911 || (c >= 3913 && c <= 3948))) + : (c <= 3980 || (c < 4176 + ? (c < 4159 + ? (c >= 4096 && c <= 4138) + : c <= 4159) + : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) + : (c <= 4193 || (c < 8134 + ? (c < 6176 + ? (c < 4808 + ? (c < 4688 + ? (c < 4295 + ? (c < 4213 + ? (c < 4206 + ? (c >= 4197 && c <= 4198) + : c <= 4208) + : (c <= 4225 || (c < 4256 + ? c == 4238 + : c <= 4293))) + : (c <= 4295 || (c < 4348 ? (c < 4304 ? c == 4301 : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))) - : (c <= 4694 || (c < 4704 + : (c <= 4680 || (c >= 4682 && c <= 4685))))) + : (c <= 4694 || (c < 4752 + ? (c < 4704 ? (c < 4698 ? c == 4696 : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))))))) - : (c <= 4784 || (c < 5024 - ? (c < 4808 - ? (c < 4800 + : (c <= 4744 || (c >= 4746 && c <= 4749))) + : (c <= 4784 || (c < 4800 ? (c < 4792 ? (c >= 4786 && c <= 4789) : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))) - : (c <= 4822 || (c < 4888 + : (c <= 4800 || (c >= 4802 && c <= 4805))))))) + : (c <= 4822 || (c < 5792 + ? (c < 5024 + ? (c < 4888 ? (c < 4882 ? (c >= 4824 && c <= 4880) : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))))) - : (c <= 5109 || (c < 5792 - ? (c < 5743 + : (c <= 4954 || (c >= 4992 && c <= 5007))) + : (c <= 5109 || (c < 5743 ? (c < 5121 ? (c >= 5112 && c <= 5117) : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))) - : (c <= 5866 || (c < 5902 + : (c <= 5759 || (c >= 5761 && c <= 5786))))) + : (c <= 5866 || (c < 5984 + ? (c < 5919 ? (c < 5888 ? (c >= 5870 && c <= 5880) - : c <= 5900) - : (c <= 5905 || (c >= 5920 && c <= 5937))))))))) - : (c <= 5969 || (c < 7043 - ? (c < 6400 - ? (c < 6108 - ? (c < 6016 - ? (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000) - : (c <= 6067 || c == 6103)) - : (c <= 6108 || (c < 6314 - ? (c < 6272 - ? (c >= 6176 && c <= 6264) - : c <= 6312) - : (c <= 6314 || (c >= 6320 && c <= 6389))))) - : (c <= 6430 || (c < 6656 - ? (c < 6528 - ? (c < 6512 - ? (c >= 6480 && c <= 6509) - : c <= 6516) - : (c <= 6571 || (c >= 6576 && c <= 6601))) - : (c <= 6678 || (c < 6917 - ? (c < 6823 - ? (c >= 6688 && c <= 6740) - : c <= 6823) - : (c <= 6963 || (c >= 6981 && c <= 6987))))))) - : (c <= 7072 || (c < 7406 - ? (c < 7258 - ? (c < 7168 - ? (c < 7098 - ? (c >= 7086 && c <= 7087) - : c <= 7141) - : (c <= 7203 || (c >= 7245 && c <= 7247))) - : (c <= 7293 || (c < 7357 - ? (c < 7312 - ? (c >= 7296 && c <= 7304) - : c <= 7354) - : (c <= 7359 || (c >= 7401 && c <= 7404))))) - : (c <= 7411 || (c < 7960 - ? (c < 7424 - ? (c < 7418 - ? (c >= 7413 && c <= 7414) - : c <= 7418) - : (c <= 7615 || (c >= 7680 && c <= 7957))) - : (c <= 7965 || (c < 8008 - ? (c >= 7968 && c <= 8005) - : (c <= 8013 || (c >= 8016 && c <= 8023))))))))))) - : (c <= 8025 || (c < 11631 - ? (c < 8469 - ? (c < 8150 - ? (c < 8118 - ? (c < 8031 - ? (c < 8029 - ? c == 8027 - : c <= 8029) - : (c <= 8061 || (c >= 8064 && c <= 8116))) - : (c <= 8124 || (c < 8134 - ? (c < 8130 - ? c == 8126 - : c <= 8132) - : (c <= 8140 || (c >= 8144 && c <= 8147))))) - : (c <= 8155 || (c < 8319 - ? (c < 8182 - ? (c < 8178 - ? (c >= 8160 && c <= 8172) - : c <= 8180) - : (c <= 8188 || c == 8305)) - : (c <= 8319 || (c < 8455 - ? (c < 8450 - ? (c >= 8336 && c <= 8348) - : c <= 8450) - : (c <= 8455 || (c >= 8458 && c <= 8467))))))) - : (c <= 8469 || (c < 11264 - ? (c < 8490 - ? (c < 8486 - ? (c < 8484 - ? (c >= 8472 && c <= 8477) - : c <= 8484) - : (c <= 8486 || c == 8488)) - : (c <= 8505 || (c < 8526 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521) - : (c <= 8526 || (c >= 8544 && c <= 8584))))) - : (c <= 11310 || (c < 11520 - ? (c < 11499 - ? (c < 11360 - ? (c >= 11312 && c <= 11358) - : c <= 11492) - : (c <= 11502 || (c >= 11506 && c <= 11507))) - : (c <= 11557 || (c < 11565 - ? c == 11559 - : (c <= 11565 || (c >= 11568 && c <= 11623))))))))) - : (c <= 11631 || (c < 12704 - ? (c < 12293 - ? (c < 11704 - ? (c < 11688 - ? (c < 11680 - ? (c >= 11648 && c <= 11670) - : c <= 11686) - : (c <= 11694 || (c >= 11696 && c <= 11702))) - : (c <= 11710 || (c < 11728 - ? (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726) - : (c <= 11734 || (c >= 11736 && c <= 11742))))) - : (c <= 12295 || (c < 12445 - ? (c < 12344 - ? (c < 12337 - ? (c >= 12321 && c <= 12329) - : c <= 12341) - : (c <= 12348 || (c >= 12353 && c <= 12438))) - : (c <= 12447 || (c < 12549 - ? (c < 12540 + : c <= 5905) + : (c <= 5937 || (c >= 5952 && c <= 5969))) + : (c <= 5996 || (c < 6103 + ? (c < 6016 + ? (c >= 5998 && c <= 6000) + : c <= 6067) + : (c <= 6103 || c == 6108)))))))) + : (c <= 6264 || (c < 7312 + ? (c < 6823 + ? (c < 6512 + ? (c < 6320 + ? (c < 6314 + ? (c >= 6272 && c <= 6312) + : c <= 6314) + : (c <= 6389 || (c < 6480 + ? (c >= 6400 && c <= 6430) + : c <= 6509))) + : (c <= 6516 || (c < 6656 + ? (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601) + : (c <= 6678 || (c >= 6688 && c <= 6740))))) + : (c <= 6823 || (c < 7098 + ? (c < 7043 + ? (c < 6981 + ? (c >= 6917 && c <= 6963) + : c <= 6988) + : (c <= 7072 || (c >= 7086 && c <= 7087))) + : (c <= 7141 || (c < 7258 + ? (c < 7245 + ? (c >= 7168 && c <= 7203) + : c <= 7247) + : (c <= 7293 || (c >= 7296 && c <= 7304))))))) + : (c <= 7354 || (c < 8008 + ? (c < 7418 + ? (c < 7406 + ? (c < 7401 + ? (c >= 7357 && c <= 7359) + : c <= 7404) + : (c <= 7411 || (c >= 7413 && c <= 7414))) + : (c <= 7418 || (c < 7960 + ? (c < 7680 + ? (c >= 7424 && c <= 7615) + : c <= 7957) + : (c <= 7965 || (c >= 7968 && c <= 8005))))) + : (c <= 8013 || (c < 8031 + ? (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || c == 8029)) + : (c <= 8061 || (c < 8126 + ? (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) + : (c <= 8140 || (c < 12337 + ? (c < 8544 + ? (c < 8458 + ? (c < 8305 + ? (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188))) + : (c <= 8305 || (c < 8450 + ? (c < 8336 + ? c == 8319 + : c <= 8348) + : (c <= 8450 || c == 8455)))) + : (c <= 8467 || (c < 8488 + ? (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || c == 8486)) + : (c <= 8488 || (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || c == 8526)))))) + : (c <= 8584 || (c < 11680 + ? (c < 11559 + ? (c < 11506 + ? (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11502) + : (c <= 11507 || (c >= 11520 && c <= 11557))) + : (c <= 11559 || (c < 11631 + ? (c < 11568 + ? c == 11565 + : c <= 11623) + : (c <= 11631 || (c >= 11648 && c <= 11670))))) + : (c <= 11686 || (c < 11720 + ? (c < 11704 + ? (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702) + : (c <= 11710 || (c >= 11712 && c <= 11718))) + : (c <= 11726 || (c < 12293 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) + : (c <= 12341 || (c < 42891 + ? (c < 19968 + ? (c < 12549 + ? (c < 12445 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12447 || (c < 12540 ? (c >= 12449 && c <= 12538) - : c <= 12543) - : (c <= 12591 || (c >= 12593 && c <= 12686))))))) - : (c <= 12735 || (c < 42623 - ? (c < 42192 - ? (c < 19968 - ? (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903) - : (c <= 40956 || (c >= 40960 && c <= 42124))) - : (c <= 42237 || (c < 42538 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42527) - : (c <= 42539 || (c >= 42560 && c <= 42606))))) - : (c <= 42653 || (c < 42946 - ? (c < 42786 - ? (c < 42775 - ? (c >= 42656 && c <= 42735) - : c <= 42783) - : (c <= 42888 || (c >= 42891 && c <= 42943))) - : (c <= 42954 || (c < 43011 - ? (c >= 42997 && c <= 43009) - : (c <= 43013 || (c >= 43015 && c <= 43018))))))))))))))) - : (c <= 43042 || (c < 70453 - ? (c < 66176 - ? (c < 64112 - ? (c < 43697 - ? (c < 43471 - ? (c < 43261 - ? (c < 43250 - ? (c < 43138 - ? (c >= 43072 && c <= 43123) - : c <= 43187) - : (c <= 43255 || c == 43259)) - : (c <= 43262 || (c < 43360 - ? (c < 43312 - ? (c >= 43274 && c <= 43301) - : c <= 43334) - : (c <= 43388 || (c >= 43396 && c <= 43442))))) - : (c <= 43471 || (c < 43584 - ? (c < 43514 - ? (c < 43494 - ? (c >= 43488 && c <= 43492) - : c <= 43503) - : (c <= 43518 || (c >= 43520 && c <= 43560))) - : (c <= 43586 || (c < 43642 - ? (c < 43616 - ? (c >= 43588 && c <= 43595) - : c <= 43638) - : (c <= 43642 || (c >= 43646 && c <= 43695))))))) - : (c <= 43697 || (c < 43793 - ? (c < 43739 - ? (c < 43712 - ? (c < 43705 - ? (c >= 43701 && c <= 43702) - : c <= 43709) - : (c <= 43712 || c == 43714)) - : (c <= 43741 || (c < 43777 - ? (c < 43762 - ? (c >= 43744 && c <= 43754) - : c <= 43764) - : (c <= 43782 || (c >= 43785 && c <= 43790))))) - : (c <= 43798 || (c < 43888 - ? (c < 43824 - ? (c < 43816 - ? (c >= 43808 && c <= 43814) - : c <= 43822) - : (c <= 43866 || (c >= 43868 && c <= 43881))) - : (c <= 44002 || (c < 55243 - ? (c < 55216 - ? (c >= 44032 && c <= 55203) - : c <= 55238) - : (c <= 55291 || (c >= 63744 && c <= 64109))))))))) - : (c <= 64217 || (c < 65147 - ? (c < 64326 - ? (c < 64298 - ? (c < 64285 - ? (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279) - : (c <= 64285 || (c >= 64287 && c <= 64296))) - : (c <= 64310 || (c < 64320 - ? (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318) - : (c <= 64321 || (c >= 64323 && c <= 64324))))) - : (c <= 64433 || (c < 65008 - ? (c < 64848 - ? (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829) - : (c <= 64911 || (c >= 64914 && c <= 64967))) - : (c <= 65017 || (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || c == 65145)))))) - : (c <= 65147 || (c < 65498 - ? (c < 65382 - ? (c < 65313 + : c <= 12543))) + : (c <= 12591 || (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c >= 13312 && c <= 19903))))) + : (c <= 42124 || (c < 42560 + ? (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42527 || (c >= 42538 && c <= 42539))) + : (c <= 42606 || (c < 42775 + ? (c < 42656 + ? (c >= 42623 && c <= 42653) + : c <= 42735) + : (c <= 42783 || (c >= 42786 && c <= 42888))))))) + : (c <= 42954 || (c < 43250 + ? (c < 43011 + ? (c < 42965 + ? (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963) + : (c <= 42969 || (c >= 42994 && c <= 43009))) + : (c <= 43013 || (c < 43072 + ? (c < 43020 + ? (c >= 43015 && c <= 43018) + : c <= 43042) + : (c <= 43123 || (c >= 43138 && c <= 43187))))) + : (c <= 43255 || (c < 43360 + ? (c < 43274 + ? (c < 43261 + ? c == 43259 + : c <= 43262) + : (c <= 43301 || (c >= 43312 && c <= 43334))) + : (c <= 43388 || (c < 43488 + ? (c < 43471 + ? (c >= 43396 && c <= 43442) + : c <= 43471) + : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) + : (c <= 43518 || (c < 70727 + ? (c < 66956 + ? (c < 64914 + ? (c < 43868 + ? (c < 43714 + ? (c < 43646 + ? (c < 43588 + ? (c < 43584 + ? (c >= 43520 && c <= 43560) + : c <= 43586) + : (c <= 43595 || (c < 43642 + ? (c >= 43616 && c <= 43638) + : c <= 43642))) + : (c <= 43695 || (c < 43705 + ? (c < 43701 + ? c == 43697 + : c <= 43702) + : (c <= 43709 || c == 43712)))) + : (c <= 43714 || (c < 43785 + ? (c < 43762 + ? (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43754) + : (c <= 43764 || (c >= 43777 && c <= 43782))) + : (c <= 43790 || (c < 43816 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814) + : (c <= 43822 || (c >= 43824 && c <= 43866))))))) + : (c <= 43881 || (c < 64287 + ? (c < 63744 + ? (c < 55216 + ? (c < 44032 + ? (c >= 43888 && c <= 44002) + : c <= 55203) + : (c <= 55238 || (c >= 55243 && c <= 55291))) + : (c <= 64109 || (c < 64275 + ? (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262) + : (c <= 64279 || c == 64285)))) + : (c <= 64296 || (c < 64323 + ? (c < 64318 + ? (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316) + : (c <= 64318 || (c >= 64320 && c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65599 + ? (c < 65382 + ? (c < 65147 + ? (c < 65139 + ? (c < 65137 + ? (c >= 65008 && c <= 65017) + : c <= 65137) + : (c <= 65139 || (c < 65145 + ? c == 65143 + : c <= 65145))) + : (c <= 65147 || (c < 65313 ? (c < 65151 ? c == 65149 : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))) - : (c <= 65437 || (c < 65482 + : (c <= 65338 || (c >= 65345 && c <= 65370))))) + : (c <= 65437 || (c < 65498 + ? (c < 65482 ? (c < 65474 ? (c >= 65440 && c <= 65470) : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))))) - : (c <= 65500 || (c < 65599 - ? (c < 65576 + : (c <= 65487 || (c >= 65490 && c <= 65495))) + : (c <= 65500 || (c < 65576 ? (c < 65549 ? (c >= 65536 && c <= 65547) : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : (c <= 65786 || (c >= 65856 && c <= 65908))))))))))) - : (c <= 66204 || (c < 68416 - ? (c < 67639 - ? (c < 66736 - ? (c < 66432 - ? (c < 66349 - ? (c < 66304 - ? (c >= 66208 && c <= 66256) - : c <= 66335) - : (c <= 66378 || (c >= 66384 && c <= 66421))) - : (c <= 66461 || (c < 66513 - ? (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511) - : (c <= 66517 || (c >= 66560 && c <= 66717))))) - : (c <= 66771 || (c < 67392 - ? (c < 66864 - ? (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855) - : (c <= 66915 || (c >= 67072 && c <= 67382))) - : (c <= 67413 || (c < 67592 - ? (c < 67584 - ? (c >= 67424 && c <= 67431) - : c <= 67589) - : (c <= 67592 || (c >= 67594 && c <= 67637))))))) - : (c <= 67640 || (c < 68030 - ? (c < 67808 - ? (c < 67680 - ? (c < 67647 - ? c == 67644 - : c <= 67669) - : (c <= 67702 || (c >= 67712 && c <= 67742))) - : (c <= 67826 || (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c >= 67968 && c <= 68023))))) - : (c <= 68031 || (c < 68192 - ? (c < 68117 - ? (c < 68112 - ? c == 68096 - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))) - : (c <= 68220 || (c < 68297 - ? (c < 68288 - ? (c >= 68224 && c <= 68252) - : c <= 68295) - : (c <= 68324 || (c >= 68352 && c <= 68405))))))))) - : (c <= 68437 || (c < 69968 - ? (c < 69415 - ? (c < 68800 - ? (c < 68608 - ? (c < 68480 - ? (c >= 68448 && c <= 68466) - : c <= 68497) - : (c <= 68680 || (c >= 68736 && c <= 68786))) - : (c <= 68850 || (c < 69296 - ? (c < 69248 - ? (c >= 68864 && c <= 68899) - : c <= 69289) - : (c <= 69297 || (c >= 69376 && c <= 69404))))) - : (c <= 69415 || (c < 69763 - ? (c < 69600 - ? (c < 69552 - ? (c >= 69424 && c <= 69445) - : c <= 69572) - : (c <= 69622 || (c >= 69635 && c <= 69687))) - : (c <= 69807 || (c < 69956 - ? (c < 69891 - ? (c >= 69840 && c <= 69864) - : c <= 69926) - : (c <= 69956 || c == 69959)))))) - : (c <= 70002 || (c < 70282 - ? (c < 70108 - ? (c < 70081 - ? (c < 70019 - ? c == 70006 - : c <= 70066) - : (c <= 70084 || c == 70106)) - : (c <= 70108 || (c < 70272 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70187) - : (c <= 70278 || c == 70280)))) - : (c <= 70285 || (c < 70415 - ? (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70366 || (c >= 70405 && c <= 70412))) - : (c <= 70416 || (c < 70442 - ? (c >= 70419 && c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))))))))))))) - : (c <= 70457 || (c < 113808 - ? (c < 72818 - ? (c < 71945 - ? (c < 71040 - ? (c < 70727 - ? (c < 70493 + : (c <= 65594 || (c >= 65596 && c <= 65597))))))) + : (c <= 65613 || (c < 66464 + ? (c < 66208 + ? (c < 65856 + ? (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786) + : (c <= 65908 || (c >= 66176 && c <= 66204))) + : (c <= 66256 || (c < 66384 + ? (c < 66349 + ? (c >= 66304 && c <= 66335) + : c <= 66378) + : (c <= 66421 || (c >= 66432 && c <= 66461))))) + : (c <= 66499 || (c < 66776 + ? (c < 66560 + ? (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517) + : (c <= 66717 || (c >= 66736 && c <= 66771))) + : (c <= 66811 || (c < 66928 + ? (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915) + : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) + : (c <= 66962 || (c < 68864 + ? (c < 67828 + ? (c < 67506 + ? (c < 67072 + ? (c < 66979 + ? (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977) + : (c <= 66993 || (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004))) + : (c <= 67382 || (c < 67456 + ? (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431) + : (c <= 67461 || (c >= 67463 && c <= 67504))))) + : (c <= 67514 || (c < 67644 + ? (c < 67594 + ? (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592) + : (c <= 67637 || (c >= 67639 && c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c >= 67808 && c <= 67826))))))) + : (c <= 67829 || (c < 68224 + ? (c < 68096 + ? (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68096 || (c < 68121 + ? (c < 68117 + ? (c >= 68112 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c >= 68192 && c <= 68220))))) + : (c <= 68252 || (c < 68448 + ? (c < 68352 + ? (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68324) + : (c <= 68405 || (c >= 68416 && c <= 68437))) + : (c <= 68466 || (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) + : (c <= 68899 || (c < 70106 + ? (c < 69749 + ? (c < 69488 + ? (c < 69376 + ? (c < 69296 + ? (c >= 69248 && c <= 69289) + : c <= 69297) + : (c <= 69404 || (c < 69424 + ? c == 69415 + : c <= 69445))) + : (c <= 69505 || (c < 69635 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69687 || (c >= 69745 && c <= 69746))))) + : (c <= 69749 || (c < 69959 + ? (c < 69891 + ? (c < 69840 + ? (c >= 69763 && c <= 69807) + : c <= 69864) + : (c <= 69926 || c == 69956)) + : (c <= 69959 || (c < 70019 + ? (c < 70006 + ? (c >= 69968 && c <= 70002) + : c <= 70006) + : (c <= 70066 || (c >= 70081 && c <= 70084))))))) + : (c <= 70106 || (c < 70405 + ? (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70187 || (c >= 70272 && c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70366))))) + : (c <= 70412 || (c < 70453 + ? (c < 70442 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))) + : (c <= 70457 || (c < 70493 ? (c < 70480 ? c == 70461 : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))) - : (c <= 70730 || (c < 70852 + : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) + : (c <= 70730 || (c < 119894 + ? (c < 73056 + ? (c < 72001 + ? (c < 71424 + ? (c < 71128 + ? (c < 70852 ? (c < 70784 ? (c >= 70751 && c <= 70753) : c <= 70831) - : (c <= 70853 || c == 70855)))) - : (c <= 71086 || (c < 71352 - ? (c < 71236 - ? (c < 71168 - ? (c >= 71128 && c <= 71131) - : c <= 71215) - : (c <= 71236 || (c >= 71296 && c <= 71338))) - : (c <= 71352 || (c < 71840 + : (c <= 70853 || (c < 71040 + ? c == 70855 + : c <= 71086))) + : (c <= 71131 || (c < 71296 + ? (c < 71236 + ? (c >= 71168 && c <= 71215) + : c <= 71236) + : (c <= 71338 || c == 71352)))) + : (c <= 71450 || (c < 71945 + ? (c < 71840 ? (c < 71680 - ? (c >= 71424 && c <= 71450) + ? (c >= 71488 && c <= 71494) : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))))))) - : (c <= 71945 || (c < 72192 - ? (c < 72001 - ? (c < 71960 + : (c <= 71903 || (c >= 71935 && c <= 71942))) + : (c <= 71945 || (c < 71960 ? (c < 71957 ? (c >= 71948 && c <= 71955) : c <= 71958) - : (c <= 71983 || c == 71999)) - : (c <= 72001 || (c < 72161 + : (c <= 71983 || c == 71999)))))) + : (c <= 72001 || (c < 72349 + ? (c < 72192 + ? (c < 72161 ? (c < 72106 ? (c >= 72096 && c <= 72103) : c <= 72144) - : (c <= 72161 || c == 72163)))) - : (c <= 72192 || (c < 72349 - ? (c < 72272 + : (c <= 72161 || c == 72163)) + : (c <= 72192 || (c < 72272 ? (c < 72250 ? (c >= 72203 && c <= 72242) : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))) - : (c <= 72349 || (c < 72714 + : (c <= 72272 || (c >= 72284 && c <= 72329))))) + : (c <= 72349 || (c < 72818 + ? (c < 72714 ? (c < 72704 - ? (c >= 72384 && c <= 72440) + ? (c >= 72368 && c <= 72440) : c <= 72712) - : (c <= 72750 || c == 72768)))))))) - : (c <= 72847 || (c < 92992 - ? (c < 73648 - ? (c < 73056 - ? (c < 72971 + : (c <= 72750 || c == 72768)) + : (c <= 72847 || (c < 72971 ? (c < 72968 ? (c >= 72960 && c <= 72966) : c <= 72969) - : (c <= 73008 || c == 73030)) - : (c <= 73061 || (c < 73112 + : (c <= 73008 || c == 73030)))))))) + : (c <= 73061 || (c < 93952 + ? (c < 82944 + ? (c < 73728 + ? (c < 73112 ? (c < 73066 ? (c >= 73063 && c <= 73064) : c <= 73097) - : (c <= 73112 || (c >= 73440 && c <= 73458))))) - : (c <= 73648 || (c < 82944 - ? (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c >= 77824 && c <= 78894))) - : (c <= 83526 || (c < 92880 + : (c <= 73112 || (c < 73648 + ? (c >= 73440 && c <= 73458) + : c <= 73648))) + : (c <= 74649 || (c < 77712 + ? (c < 74880 + ? (c >= 74752 && c <= 74862) + : c <= 75075) + : (c <= 77808 || (c >= 77824 && c <= 78894))))) + : (c <= 83526 || (c < 92928 + ? (c < 92784 ? (c < 92736 ? (c >= 92160 && c <= 92728) : c <= 92766) - : (c <= 92909 || (c >= 92928 && c <= 92975))))))) - : (c <= 92995 || (c < 100352 - ? (c < 94032 - ? (c < 93760 - ? (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071) - : (c <= 93823 || (c >= 93952 && c <= 94026))) - : (c <= 94032 || (c < 94179 - ? (c < 94176 - ? (c >= 94099 && c <= 94111) - : c <= 94177) - : (c <= 94179 || (c >= 94208 && c <= 100343))))) - : (c <= 101589 || (c < 110960 - ? (c < 110928 - ? (c < 110592 - ? (c >= 101632 && c <= 101640) - : c <= 110878) - : (c <= 110930 || (c >= 110948 && c <= 110951))) - : (c <= 111355 || (c < 113776 - ? (c >= 113664 && c <= 113770) - : (c <= 113788 || (c >= 113792 && c <= 113800))))))))))) - : (c <= 113817 || (c < 126469 - ? (c < 120488 - ? (c < 120005 - ? (c < 119973 - ? (c < 119966 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : c <= 119964) - : (c <= 119967 || c == 119970)) - : (c <= 119974 || (c < 119995 - ? (c < 119982 + : (c <= 92862 || (c >= 92880 && c <= 92909))) + : (c <= 92975 || (c < 93053 + ? (c < 93027 + ? (c >= 92992 && c <= 92995) + : c <= 93047) + : (c <= 93071 || (c >= 93760 && c <= 93823))))))) + : (c <= 94026 || (c < 110589 + ? (c < 94208 + ? (c < 94176 + ? (c < 94099 + ? c == 94032 + : c <= 94111) + : (c <= 94177 || c == 94179)) + : (c <= 100343 || (c < 110576 + ? (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640) + : (c <= 110579 || (c >= 110581 && c <= 110587))))) + : (c <= 110590 || (c < 113664 + ? (c < 110948 + ? (c < 110928 + ? (c >= 110592 && c <= 110882) + : c <= 110930) + : (c <= 110951 || (c >= 110960 && c <= 111355))) + : (c <= 113770 || (c < 113808 + ? (c < 113792 + ? (c >= 113776 && c <= 113788) + : c <= 113800) + : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 125259 + ? (c < 120572 + ? (c < 120086 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c >= 119997 && c <= 120003))))) - : (c <= 120069 || (c < 120123 - ? (c < 120086 - ? (c < 120077 - ? (c >= 120071 && c <= 120074) - : c <= 120084) - : (c <= 120092 || (c >= 120094 && c <= 120121))) - : (c <= 120126 || (c < 120138 - ? (c < 120134 - ? (c >= 120128 && c <= 120132) - : c <= 120134) - : (c <= 120144 || (c >= 120146 && c <= 120485))))))) - : (c <= 120512 || (c < 120772 - ? (c < 120630 - ? (c < 120572 - ? (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))) - : (c <= 120654 || (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c >= 120746 && c <= 120770))))) - : (c <= 120779 || (c < 124928 - ? (c < 123214 - ? (c < 123191 - ? (c >= 123136 && c <= 123180) - : c <= 123197) - : (c <= 123214 || (c >= 123584 && c <= 123627))) - : (c <= 125124 || (c < 125259 - ? (c >= 125184 && c <= 125251) - : (c <= 125259 || (c >= 126464 && c <= 126467))))))))) - : (c <= 126495 || (c < 126561 - ? (c < 126537 - ? (c < 126516 - ? (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c >= 126505 && c <= 126514))) - : (c <= 126519 || (c < 126530 - ? (c < 126523 - ? c == 126521 - : c <= 126523) - : (c <= 126530 || c == 126535)))) - : (c <= 126537 || (c < 126551 - ? (c < 126545 - ? (c < 126541 - ? c == 126539 - : c <= 126543) - : (c <= 126546 || c == 126548)) - : (c <= 126551 || (c < 126557 - ? (c < 126555 - ? c == 126553 - : c <= 126555) - : (c <= 126557 || c == 126559)))))) - : (c <= 126562 || (c < 126629 - ? (c < 126585 - ? (c < 126572 - ? (c < 126567 - ? c == 126564 - : c <= 126570) - : (c <= 126578 || (c >= 126580 && c <= 126583))) - : (c <= 126588 || (c < 126603 - ? (c < 126592 - ? c == 126590 - : c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 173824 - ? (c < 131072 - ? (c >= 126635 && c <= 126651) - : c <= 173789) - : (c <= 177972 || (c >= 177984 && c <= 178205))) - : (c <= 183969 || (c < 194560 - ? (c >= 183984 && c <= 191456) + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069) + : (c <= 120074 || (c >= 120077 && c <= 120084))))) + : (c <= 120092 || (c < 120138 + ? (c < 120128 + ? (c < 120123 + ? (c >= 120094 && c <= 120121) + : c <= 120126) + : (c <= 120132 || c == 120134)) + : (c <= 120144 || (c < 120514 + ? (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512) + : (c <= 120538 || (c >= 120540 && c <= 120570))))))) + : (c <= 120596 || (c < 123191 + ? (c < 120714 + ? (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c >= 120688 && c <= 120712))) + : (c <= 120744 || (c < 122624 + ? (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779) + : (c <= 122654 || (c >= 123136 && c <= 123180))))) + : (c <= 123197 || (c < 124904 + ? (c < 123584 + ? (c < 123536 + ? c == 123214 + : c <= 123565) + : (c <= 123627 || (c >= 124896 && c <= 124902))) + : (c <= 124907 || (c < 124928 + ? (c < 124912 + ? (c >= 124909 && c <= 124910) + : c <= 124926) + : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) + : (c <= 125259 || (c < 126559 + ? (c < 126535 + ? (c < 126505 + ? (c < 126497 + ? (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495) + : (c <= 126498 || (c < 126503 + ? c == 126500 + : c <= 126503))) + : (c <= 126514 || (c < 126523 + ? (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521) + : (c <= 126523 || c == 126530)))) + : (c <= 126535 || (c < 126548 + ? (c < 126541 + ? (c < 126539 + ? c == 126537 + : c <= 126539) + : (c <= 126543 || (c >= 126545 && c <= 126546))) + : (c <= 126548 || (c < 126555 + ? (c < 126553 + ? c == 126551 + : c <= 126553) + : (c <= 126555 || c == 126557)))))) + : (c <= 126559 || (c < 126625 + ? (c < 126580 + ? (c < 126567 + ? (c < 126564 + ? (c >= 126561 && c <= 126562) + : c <= 126564) + : (c <= 126570 || (c >= 126572 && c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c >= 126603 && c <= 126619))))) + : (c <= 126627 || (c < 177984 + ? (c < 131072 + ? (c < 126635 + ? (c >= 126629 && c <= 126633) + : c <= 126651) + : (c <= 173791 || (c >= 173824 && c <= 177976))) + : (c <= 178205 || (c < 194560 + ? (c < 183984 + ? (c >= 178208 && c <= 183969) + : c <= 191456) : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 43020 - ? (c < 3976 - ? (c < 2674 - ? (c < 1869 - ? (c < 908 - ? (c < 710 - ? (c < 181 + return (c < 43514 + ? (c < 4193 + ? (c < 2707 + ? (c < 1994 + ? (c < 910 + ? (c < 736 + ? (c < 186 ? (c < 'a' ? (c < '_' ? (c >= 'A' && c <= 'Z') : c <= '_') - : (c <= 'z' || c == 170)) - : (c <= 181 || (c < 216 - ? (c < 192 - ? c == 186 - : c <= 214) - : (c <= 246 || (c >= 248 && c <= 705))))) - : (c <= 721 || (c < 886 - ? (c < 750 - ? (c < 748 - ? (c >= 736 && c <= 740) - : c <= 748) - : (c <= 750 || (c >= 880 && c <= 884))) - : (c <= 887 || (c < 902 - ? (c < 895 - ? (c >= 891 && c <= 893) - : c <= 895) - : (c <= 902 || (c >= 904 && c <= 906))))))) - : (c <= 908 || (c < 1568 - ? (c < 1329 - ? (c < 1015 - ? (c < 931 - ? (c >= 910 && c <= 929) - : c <= 1013) - : (c <= 1153 || (c >= 1162 && c <= 1327))) - : (c <= 1366 || (c < 1488 - ? (c < 1376 - ? c == 1369 - : c <= 1416) - : (c <= 1514 || (c >= 1519 && c <= 1522))))) - : (c <= 1610 || (c < 1774 - ? (c < 1749 - ? (c < 1649 - ? (c >= 1646 && c <= 1647) - : c <= 1747) - : (c <= 1749 || (c >= 1765 && c <= 1766))) - : (c <= 1775 || (c < 1808 - ? (c < 1791 - ? (c >= 1786 && c <= 1788) - : c <= 1791) - : (c <= 1808 || (c >= 1810 && c <= 1839))))))))) - : (c <= 1957 || (c < 2451 - ? (c < 2144 - ? (c < 2048 - ? (c < 2036 - ? (c < 1994 - ? c == 1969 - : c <= 2026) - : (c <= 2037 || c == 2042)) - : (c <= 2069 || (c < 2088 - ? (c < 2084 + : (c <= 'z' || (c < 181 + ? c == 170 + : c <= 181))) + : (c <= 186 || (c < 248 + ? (c < 216 + ? (c >= 192 && c <= 214) + : c <= 246) + : (c <= 705 || (c >= 710 && c <= 721))))) + : (c <= 740 || (c < 891 + ? (c < 880 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c >= 886 && c <= 887))) + : (c <= 893 || (c < 904 + ? (c < 902 + ? c == 895 + : c <= 902) + : (c <= 906 || c == 908)))))) + : (c <= 929 || (c < 1649 + ? (c < 1376 + ? (c < 1162 + ? (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153) + : (c <= 1327 || (c < 1369 + ? (c >= 1329 && c <= 1366) + : c <= 1369))) + : (c <= 1416 || (c < 1568 + ? (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522) + : (c <= 1610 || (c >= 1646 && c <= 1647))))) + : (c <= 1747 || (c < 1791 + ? (c < 1774 + ? (c < 1765 + ? c == 1749 + : c <= 1766) + : (c <= 1775 || (c >= 1786 && c <= 1788))) + : (c <= 1791 || (c < 1869 + ? (c < 1810 + ? c == 1808 + : c <= 1839) + : (c <= 1957 || c == 1969)))))))) + : (c <= 2026 || (c < 2482 + ? (c < 2208 + ? (c < 2088 + ? (c < 2048 + ? (c < 2042 + ? (c >= 2036 && c <= 2037) + : c <= 2042) + : (c <= 2069 || (c < 2084 ? c == 2074 - : c <= 2084) - : (c <= 2088 || (c >= 2112 && c <= 2136))))) - : (c <= 2154 || (c < 2384 - ? (c < 2308 - ? (c < 2230 - ? (c >= 2208 && c <= 2228) - : c <= 2247) - : (c <= 2361 || c == 2365)) - : (c <= 2384 || (c < 2437 - ? (c < 2417 - ? (c >= 2392 && c <= 2401) - : c <= 2432) - : (c <= 2444 || (c >= 2447 && c <= 2448))))))) - : (c <= 2472 || (c < 2565 - ? (c < 2510 - ? (c < 2486 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482) - : (c <= 2489 || c == 2493)) - : (c <= 2510 || (c < 2544 - ? (c < 2527 - ? (c >= 2524 && c <= 2525) - : c <= 2529) - : (c <= 2545 || c == 2556)))) - : (c <= 2570 || (c < 2613 - ? (c < 2602 - ? (c < 2579 - ? (c >= 2575 && c <= 2576) - : c <= 2600) - : (c <= 2608 || (c >= 2610 && c <= 2611))) - : (c <= 2614 || (c < 2649 - ? (c >= 2616 && c <= 2617) - : (c <= 2652 || c == 2654)))))))))) - : (c <= 2676 || (c < 3205 - ? (c < 2929 - ? (c < 2809 - ? (c < 2738 - ? (c < 2707 - ? (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))) - : (c <= 2739 || (c < 2768 - ? (c < 2749 - ? (c >= 2741 && c <= 2745) - : c <= 2749) - : (c <= 2768 || (c >= 2784 && c <= 2785))))) - : (c <= 2809 || (c < 2866 - ? (c < 2835 - ? (c < 2831 - ? (c >= 2821 && c <= 2828) - : c <= 2832) - : (c <= 2856 || (c >= 2858 && c <= 2864))) - : (c <= 2867 || (c < 2908 - ? (c < 2877 - ? (c >= 2869 && c <= 2873) - : c <= 2877) - : (c <= 2909 || (c >= 2911 && c <= 2913))))))) - : (c <= 2929 || (c < 2990 - ? (c < 2969 - ? (c < 2958 - ? (c < 2949 - ? c == 2947 - : c <= 2954) - : (c <= 2960 || (c >= 2962 && c <= 2965))) - : (c <= 2970 || (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c >= 2984 && c <= 2986))))) - : (c <= 3001 || (c < 3114 - ? (c < 3086 - ? (c < 3077 - ? c == 3024 - : c <= 3084) - : (c <= 3088 || (c >= 3090 && c <= 3112))) - : (c <= 3129 || (c < 3168 - ? (c < 3160 - ? c == 3133 - : c <= 3162) - : (c <= 3169 || c == 3200)))))))) - : (c <= 3212 || (c < 3517 - ? (c < 3342 - ? (c < 3261 - ? (c < 3242 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240) - : (c <= 3251 || (c >= 3253 && c <= 3257))) - : (c <= 3261 || (c < 3313 - ? (c < 3296 - ? c == 3294 - : c <= 3297) - : (c <= 3314 || (c >= 3332 && c <= 3340))))) - : (c <= 3344 || (c < 3423 - ? (c < 3406 - ? (c < 3389 - ? (c >= 3346 && c <= 3386) - : c <= 3389) - : (c <= 3406 || (c >= 3412 && c <= 3414))) - : (c <= 3425 || (c < 3482 - ? (c < 3461 - ? (c >= 3450 && c <= 3455) - : c <= 3478) - : (c <= 3505 || (c >= 3507 && c <= 3515))))))) - : (c <= 3517 || (c < 3751 - ? (c < 3713 - ? (c < 3634 - ? (c < 3585 - ? (c >= 3520 && c <= 3526) - : c <= 3632) - : (c <= 3634 || (c >= 3648 && c <= 3654))) - : (c <= 3714 || (c < 3724 - ? (c < 3718 - ? c == 3716 - : c <= 3722) - : (c <= 3747 || c == 3749)))) - : (c <= 3760 || (c < 3804 - ? (c < 3776 - ? (c < 3773 - ? c == 3762 - : c <= 3773) - : (c <= 3780 || c == 3782)) - : (c <= 3807 || (c < 3904 - ? c == 3840 - : (c <= 3911 || (c >= 3913 && c <= 3948))))))))))))) - : (c <= 3980 || (c < 8016 - ? (c < 5920 - ? (c < 4746 - ? (c < 4256 - ? (c < 4193 - ? (c < 4176 + : c <= 2084))) + : (c <= 2088 || (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2136) + : c <= 2154) + : (c <= 2183 || (c >= 2185 && c <= 2190))))) + : (c <= 2249 || (c < 2417 + ? (c < 2384 + ? (c < 2365 + ? (c >= 2308 && c <= 2361) + : c <= 2365) + : (c <= 2384 || (c >= 2392 && c <= 2401))) + : (c <= 2432 || (c < 2451 + ? (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448) + : (c <= 2472 || (c >= 2474 && c <= 2480))))))) + : (c <= 2482 || (c < 2579 + ? (c < 2527 + ? (c < 2510 + ? (c < 2493 + ? (c >= 2486 && c <= 2489) + : c <= 2493) + : (c <= 2510 || (c >= 2524 && c <= 2525))) + : (c <= 2529 || (c < 2565 + ? (c < 2556 + ? (c >= 2544 && c <= 2545) + : c <= 2556) + : (c <= 2570 || (c >= 2575 && c <= 2576))))) + : (c <= 2600 || (c < 2649 + ? (c < 2613 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611) + : (c <= 2614 || (c >= 2616 && c <= 2617))) + : (c <= 2652 || (c < 2693 + ? (c < 2674 + ? c == 2654 + : c <= 2676) + : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) + : (c <= 2728 || (c < 3242 + ? (c < 2962 + ? (c < 2858 + ? (c < 2784 + ? (c < 2741 + ? (c < 2738 + ? (c >= 2730 && c <= 2736) + : c <= 2739) + : (c <= 2745 || (c < 2768 + ? c == 2749 + : c <= 2768))) + : (c <= 2785 || (c < 2831 + ? (c < 2821 + ? c == 2809 + : c <= 2828) + : (c <= 2832 || (c >= 2835 && c <= 2856))))) + : (c <= 2864 || (c < 2911 + ? (c < 2877 + ? (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873) + : (c <= 2877 || (c >= 2908 && c <= 2909))) + : (c <= 2913 || (c < 2949 + ? (c < 2947 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c >= 2958 && c <= 2960))))))) + : (c <= 2965 || (c < 3090 + ? (c < 2984 + ? (c < 2974 + ? (c < 2972 + ? (c >= 2969 && c <= 2970) + : c <= 2972) + : (c <= 2975 || (c >= 2979 && c <= 2980))) + : (c <= 2986 || (c < 3077 + ? (c < 3024 + ? (c >= 2990 && c <= 3001) + : c <= 3024) + : (c <= 3084 || (c >= 3086 && c <= 3088))))) + : (c <= 3112 || (c < 3168 + ? (c < 3160 + ? (c < 3133 + ? (c >= 3114 && c <= 3129) + : c <= 3133) + : (c <= 3162 || c == 3165)) + : (c <= 3169 || (c < 3214 + ? (c < 3205 + ? c == 3200 + : c <= 3212) + : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) + : (c <= 3251 || (c < 3648 + ? (c < 3412 + ? (c < 3332 + ? (c < 3293 + ? (c < 3261 + ? (c >= 3253 && c <= 3257) + : c <= 3261) + : (c <= 3294 || (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314))) + : (c <= 3340 || (c < 3389 + ? (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3386) + : (c <= 3389 || c == 3406)))) + : (c <= 3414 || (c < 3507 + ? (c < 3461 + ? (c < 3450 + ? (c >= 3423 && c <= 3425) + : c <= 3455) + : (c <= 3478 || (c >= 3482 && c <= 3505))) + : (c <= 3515 || (c < 3585 + ? (c < 3520 + ? c == 3517 + : c <= 3526) + : (c <= 3632 || c == 3634)))))) + : (c <= 3654 || (c < 3782 + ? (c < 3749 + ? (c < 3718 + ? (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716) + : (c <= 3722 || (c >= 3724 && c <= 3747))) + : (c <= 3749 || (c < 3773 + ? (c < 3762 + ? (c >= 3751 && c <= 3760) + : c <= 3762) + : (c <= 3773 || (c >= 3776 && c <= 3780))))) + : (c <= 3782 || (c < 3976 + ? (c < 3904 + ? (c < 3840 + ? (c >= 3804 && c <= 3807) + : c <= 3840) + : (c <= 3911 || (c >= 3913 && c <= 3948))) + : (c <= 3980 || (c < 4176 ? (c < 4159 ? (c >= 4096 && c <= 4138) : c <= 4159) - : (c <= 4181 || (c >= 4186 && c <= 4189))) - : (c <= 4193 || (c < 4213 + : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) + : (c <= 4193 || (c < 8134 + ? (c < 6176 + ? (c < 4808 + ? (c < 4688 + ? (c < 4295 + ? (c < 4213 ? (c < 4206 ? (c >= 4197 && c <= 4198) : c <= 4208) - : (c <= 4225 || c == 4238)))) - : (c <= 4293 || (c < 4682 - ? (c < 4304 - ? (c < 4301 - ? c == 4295 - : c <= 4301) - : (c <= 4346 || (c >= 4348 && c <= 4680))) - : (c <= 4685 || (c < 4698 - ? (c < 4696 - ? (c >= 4688 && c <= 4694) - : c <= 4696) - : (c <= 4701 || (c >= 4704 && c <= 4744))))))) - : (c <= 4749 || (c < 4992 - ? (c < 4802 - ? (c < 4792 - ? (c < 4786 - ? (c >= 4752 && c <= 4784) - : c <= 4789) - : (c <= 4798 || c == 4800)) - : (c <= 4805 || (c < 4882 - ? (c < 4824 - ? (c >= 4808 && c <= 4822) - : c <= 4880) - : (c <= 4885 || (c >= 4888 && c <= 4954))))) - : (c <= 5007 || (c < 5761 - ? (c < 5121 - ? (c < 5112 - ? (c >= 5024 && c <= 5109) - : c <= 5117) - : (c <= 5740 || (c >= 5743 && c <= 5759))) - : (c <= 5786 || (c < 5888 - ? (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880) - : (c <= 5900 || (c >= 5902 && c <= 5905))))))))) - : (c <= 5937 || (c < 6981 - ? (c < 6320 - ? (c < 6103 - ? (c < 5998 - ? (c < 5984 - ? (c >= 5952 && c <= 5969) - : c <= 5996) - : (c <= 6000 || (c >= 6016 && c <= 6067))) - : (c <= 6103 || (c < 6272 - ? (c < 6176 - ? c == 6108 - : c <= 6264) - : (c <= 6312 || c == 6314)))) - : (c <= 6389 || (c < 6576 - ? (c < 6512 - ? (c < 6480 + : (c <= 4225 || (c < 4256 + ? c == 4238 + : c <= 4293))) + : (c <= 4295 || (c < 4348 + ? (c < 4304 + ? c == 4301 + : c <= 4346) + : (c <= 4680 || (c >= 4682 && c <= 4685))))) + : (c <= 4694 || (c < 4752 + ? (c < 4704 + ? (c < 4698 + ? c == 4696 + : c <= 4701) + : (c <= 4744 || (c >= 4746 && c <= 4749))) + : (c <= 4784 || (c < 4800 + ? (c < 4792 + ? (c >= 4786 && c <= 4789) + : c <= 4798) + : (c <= 4800 || (c >= 4802 && c <= 4805))))))) + : (c <= 4822 || (c < 5792 + ? (c < 5024 + ? (c < 4888 + ? (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885) + : (c <= 4954 || (c >= 4992 && c <= 5007))) + : (c <= 5109 || (c < 5743 + ? (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740) + : (c <= 5759 || (c >= 5761 && c <= 5786))))) + : (c <= 5866 || (c < 5984 + ? (c < 5919 + ? (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5905) + : (c <= 5937 || (c >= 5952 && c <= 5969))) + : (c <= 5996 || (c < 6103 + ? (c < 6016 + ? (c >= 5998 && c <= 6000) + : c <= 6067) + : (c <= 6103 || c == 6108)))))))) + : (c <= 6264 || (c < 7312 + ? (c < 6823 + ? (c < 6512 + ? (c < 6320 + ? (c < 6314 + ? (c >= 6272 && c <= 6312) + : c <= 6314) + : (c <= 6389 || (c < 6480 ? (c >= 6400 && c <= 6430) - : c <= 6509) - : (c <= 6516 || (c >= 6528 && c <= 6571))) - : (c <= 6601 || (c < 6823 - ? (c < 6688 - ? (c >= 6656 && c <= 6678) - : c <= 6740) - : (c <= 6823 || (c >= 6917 && c <= 6963))))))) - : (c <= 6987 || (c < 7401 - ? (c < 7245 - ? (c < 7098 - ? (c < 7086 - ? (c >= 7043 && c <= 7072) - : c <= 7087) - : (c <= 7141 || (c >= 7168 && c <= 7203))) - : (c <= 7247 || (c < 7312 - ? (c < 7296 - ? (c >= 7258 && c <= 7293) - : c <= 7304) - : (c <= 7354 || (c >= 7357 && c <= 7359))))) - : (c <= 7404 || (c < 7680 - ? (c < 7418 - ? (c < 7413 - ? (c >= 7406 && c <= 7411) - : c <= 7414) - : (c <= 7418 || (c >= 7424 && c <= 7615))) - : (c <= 7957 || (c < 7968 - ? (c >= 7960 && c <= 7965) - : (c <= 8005 || (c >= 8008 && c <= 8013))))))))))) - : (c <= 8023 || (c < 11631 - ? (c < 8458 - ? (c < 8144 - ? (c < 8064 - ? (c < 8029 - ? (c < 8027 - ? c == 8025 - : c <= 8027) - : (c <= 8029 || (c >= 8031 && c <= 8061))) - : (c <= 8116 || (c < 8130 - ? (c < 8126 - ? (c >= 8118 && c <= 8124) - : c <= 8126) - : (c <= 8132 || (c >= 8134 && c <= 8140))))) - : (c <= 8147 || (c < 8305 - ? (c < 8178 - ? (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172) - : (c <= 8180 || (c >= 8182 && c <= 8188))) + : c <= 6509))) + : (c <= 6516 || (c < 6656 + ? (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601) + : (c <= 6678 || (c >= 6688 && c <= 6740))))) + : (c <= 6823 || (c < 7098 + ? (c < 7043 + ? (c < 6981 + ? (c >= 6917 && c <= 6963) + : c <= 6988) + : (c <= 7072 || (c >= 7086 && c <= 7087))) + : (c <= 7141 || (c < 7258 + ? (c < 7245 + ? (c >= 7168 && c <= 7203) + : c <= 7247) + : (c <= 7293 || (c >= 7296 && c <= 7304))))))) + : (c <= 7354 || (c < 8008 + ? (c < 7418 + ? (c < 7406 + ? (c < 7401 + ? (c >= 7357 && c <= 7359) + : c <= 7404) + : (c <= 7411 || (c >= 7413 && c <= 7414))) + : (c <= 7418 || (c < 7960 + ? (c < 7680 + ? (c >= 7424 && c <= 7615) + : c <= 7957) + : (c <= 7965 || (c >= 7968 && c <= 8005))))) + : (c <= 8013 || (c < 8031 + ? (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || c == 8029)) + : (c <= 8061 || (c < 8126 + ? (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) + : (c <= 8140 || (c < 12337 + ? (c < 8544 + ? (c < 8458 + ? (c < 8305 + ? (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188))) : (c <= 8305 || (c < 8450 ? (c < 8336 ? c == 8319 : c <= 8348) - : (c <= 8450 || c == 8455)))))) - : (c <= 8467 || (c < 8544 - ? (c < 8488 + : (c <= 8450 || c == 8455)))) + : (c <= 8467 || (c < 8488 ? (c < 8484 ? (c < 8472 ? c == 8469 @@ -4603,1194 +4665,1288 @@ static inline bool sym_identifier_character_set_2(int32_t c) { ? (c < 8508 ? (c >= 8490 && c <= 8505) : c <= 8511) - : (c <= 8521 || c == 8526)))) - : (c <= 8584 || (c < 11506 - ? (c < 11360 - ? (c < 11312 - ? (c >= 11264 && c <= 11310) - : c <= 11358) - : (c <= 11492 || (c >= 11499 && c <= 11502))) - : (c <= 11507 || (c < 11565 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : c <= 11559) - : (c <= 11565 || (c >= 11568 && c <= 11623))))))))) - : (c <= 11631 || (c < 12704 - ? (c < 12293 - ? (c < 11704 - ? (c < 11688 - ? (c < 11680 - ? (c >= 11648 && c <= 11670) - : c <= 11686) - : (c <= 11694 || (c >= 11696 && c <= 11702))) - : (c <= 11710 || (c < 11728 - ? (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726) - : (c <= 11734 || (c >= 11736 && c <= 11742))))) - : (c <= 12295 || (c < 12445 - ? (c < 12344 - ? (c < 12337 - ? (c >= 12321 && c <= 12329) - : c <= 12341) - : (c <= 12348 || (c >= 12353 && c <= 12438))) - : (c <= 12447 || (c < 12549 - ? (c < 12540 + : (c <= 8521 || c == 8526)))))) + : (c <= 8584 || (c < 11680 + ? (c < 11559 + ? (c < 11506 + ? (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11502) + : (c <= 11507 || (c >= 11520 && c <= 11557))) + : (c <= 11559 || (c < 11631 + ? (c < 11568 + ? c == 11565 + : c <= 11623) + : (c <= 11631 || (c >= 11648 && c <= 11670))))) + : (c <= 11686 || (c < 11720 + ? (c < 11704 + ? (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702) + : (c <= 11710 || (c >= 11712 && c <= 11718))) + : (c <= 11726 || (c < 12293 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) + : (c <= 12341 || (c < 42891 + ? (c < 19968 + ? (c < 12549 + ? (c < 12445 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12447 || (c < 12540 ? (c >= 12449 && c <= 12538) - : c <= 12543) - : (c <= 12591 || (c >= 12593 && c <= 12686))))))) - : (c <= 12735 || (c < 42623 - ? (c < 42192 - ? (c < 19968 - ? (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903) - : (c <= 40956 || (c >= 40960 && c <= 42124))) - : (c <= 42237 || (c < 42538 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42527) - : (c <= 42539 || (c >= 42560 && c <= 42606))))) - : (c <= 42653 || (c < 42946 - ? (c < 42786 - ? (c < 42775 - ? (c >= 42656 && c <= 42735) - : c <= 42783) - : (c <= 42888 || (c >= 42891 && c <= 42943))) - : (c <= 42954 || (c < 43011 - ? (c >= 42997 && c <= 43009) - : (c <= 43013 || (c >= 43015 && c <= 43018))))))))))))))) - : (c <= 43042 || (c < 70453 - ? (c < 66176 - ? (c < 64112 - ? (c < 43697 - ? (c < 43471 - ? (c < 43261 - ? (c < 43250 - ? (c < 43138 - ? (c >= 43072 && c <= 43123) - : c <= 43187) - : (c <= 43255 || c == 43259)) - : (c <= 43262 || (c < 43360 - ? (c < 43312 - ? (c >= 43274 && c <= 43301) - : c <= 43334) - : (c <= 43388 || (c >= 43396 && c <= 43442))))) - : (c <= 43471 || (c < 43584 - ? (c < 43514 - ? (c < 43494 - ? (c >= 43488 && c <= 43492) - : c <= 43503) - : (c <= 43518 || (c >= 43520 && c <= 43560))) - : (c <= 43586 || (c < 43642 - ? (c < 43616 - ? (c >= 43588 && c <= 43595) - : c <= 43638) - : (c <= 43642 || (c >= 43646 && c <= 43695))))))) - : (c <= 43697 || (c < 43793 - ? (c < 43739 - ? (c < 43712 - ? (c < 43705 - ? (c >= 43701 && c <= 43702) - : c <= 43709) - : (c <= 43712 || c == 43714)) - : (c <= 43741 || (c < 43777 - ? (c < 43762 - ? (c >= 43744 && c <= 43754) - : c <= 43764) - : (c <= 43782 || (c >= 43785 && c <= 43790))))) - : (c <= 43798 || (c < 43888 - ? (c < 43824 - ? (c < 43816 - ? (c >= 43808 && c <= 43814) - : c <= 43822) - : (c <= 43866 || (c >= 43868 && c <= 43881))) - : (c <= 44002 || (c < 55243 - ? (c < 55216 - ? (c >= 44032 && c <= 55203) - : c <= 55238) - : (c <= 55291 || (c >= 63744 && c <= 64109))))))))) - : (c <= 64217 || (c < 65147 - ? (c < 64326 - ? (c < 64298 - ? (c < 64285 - ? (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279) - : (c <= 64285 || (c >= 64287 && c <= 64296))) - : (c <= 64310 || (c < 64320 - ? (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318) - : (c <= 64321 || (c >= 64323 && c <= 64324))))) - : (c <= 64433 || (c < 65008 - ? (c < 64848 - ? (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829) - : (c <= 64911 || (c >= 64914 && c <= 64967))) - : (c <= 65017 || (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || c == 65145)))))) - : (c <= 65147 || (c < 65498 - ? (c < 65382 - ? (c < 65313 + : c <= 12543))) + : (c <= 12591 || (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c >= 13312 && c <= 19903))))) + : (c <= 42124 || (c < 42560 + ? (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42527 || (c >= 42538 && c <= 42539))) + : (c <= 42606 || (c < 42775 + ? (c < 42656 + ? (c >= 42623 && c <= 42653) + : c <= 42735) + : (c <= 42783 || (c >= 42786 && c <= 42888))))))) + : (c <= 42954 || (c < 43250 + ? (c < 43011 + ? (c < 42965 + ? (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963) + : (c <= 42969 || (c >= 42994 && c <= 43009))) + : (c <= 43013 || (c < 43072 + ? (c < 43020 + ? (c >= 43015 && c <= 43018) + : c <= 43042) + : (c <= 43123 || (c >= 43138 && c <= 43187))))) + : (c <= 43255 || (c < 43360 + ? (c < 43274 + ? (c < 43261 + ? c == 43259 + : c <= 43262) + : (c <= 43301 || (c >= 43312 && c <= 43334))) + : (c <= 43388 || (c < 43488 + ? (c < 43471 + ? (c >= 43396 && c <= 43442) + : c <= 43471) + : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) + : (c <= 43518 || (c < 70727 + ? (c < 66956 + ? (c < 64914 + ? (c < 43868 + ? (c < 43714 + ? (c < 43646 + ? (c < 43588 + ? (c < 43584 + ? (c >= 43520 && c <= 43560) + : c <= 43586) + : (c <= 43595 || (c < 43642 + ? (c >= 43616 && c <= 43638) + : c <= 43642))) + : (c <= 43695 || (c < 43705 + ? (c < 43701 + ? c == 43697 + : c <= 43702) + : (c <= 43709 || c == 43712)))) + : (c <= 43714 || (c < 43785 + ? (c < 43762 + ? (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43754) + : (c <= 43764 || (c >= 43777 && c <= 43782))) + : (c <= 43790 || (c < 43816 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814) + : (c <= 43822 || (c >= 43824 && c <= 43866))))))) + : (c <= 43881 || (c < 64287 + ? (c < 63744 + ? (c < 55216 + ? (c < 44032 + ? (c >= 43888 && c <= 44002) + : c <= 55203) + : (c <= 55238 || (c >= 55243 && c <= 55291))) + : (c <= 64109 || (c < 64275 + ? (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262) + : (c <= 64279 || c == 64285)))) + : (c <= 64296 || (c < 64323 + ? (c < 64318 + ? (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316) + : (c <= 64318 || (c >= 64320 && c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65599 + ? (c < 65382 + ? (c < 65147 + ? (c < 65139 + ? (c < 65137 + ? (c >= 65008 && c <= 65017) + : c <= 65137) + : (c <= 65139 || (c < 65145 + ? c == 65143 + : c <= 65145))) + : (c <= 65147 || (c < 65313 ? (c < 65151 ? c == 65149 : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))) - : (c <= 65437 || (c < 65482 + : (c <= 65338 || (c >= 65345 && c <= 65370))))) + : (c <= 65437 || (c < 65498 + ? (c < 65482 ? (c < 65474 ? (c >= 65440 && c <= 65470) : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))))) - : (c <= 65500 || (c < 65599 - ? (c < 65576 + : (c <= 65487 || (c >= 65490 && c <= 65495))) + : (c <= 65500 || (c < 65576 ? (c < 65549 ? (c >= 65536 && c <= 65547) : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : (c <= 65786 || (c >= 65856 && c <= 65908))))))))))) - : (c <= 66204 || (c < 68416 - ? (c < 67639 - ? (c < 66736 - ? (c < 66432 - ? (c < 66349 - ? (c < 66304 - ? (c >= 66208 && c <= 66256) - : c <= 66335) - : (c <= 66378 || (c >= 66384 && c <= 66421))) - : (c <= 66461 || (c < 66513 - ? (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511) - : (c <= 66517 || (c >= 66560 && c <= 66717))))) - : (c <= 66771 || (c < 67392 - ? (c < 66864 - ? (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855) - : (c <= 66915 || (c >= 67072 && c <= 67382))) - : (c <= 67413 || (c < 67592 - ? (c < 67584 - ? (c >= 67424 && c <= 67431) - : c <= 67589) - : (c <= 67592 || (c >= 67594 && c <= 67637))))))) - : (c <= 67640 || (c < 68030 - ? (c < 67808 - ? (c < 67680 - ? (c < 67647 - ? c == 67644 - : c <= 67669) - : (c <= 67702 || (c >= 67712 && c <= 67742))) - : (c <= 67826 || (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c >= 67968 && c <= 68023))))) - : (c <= 68031 || (c < 68192 - ? (c < 68117 - ? (c < 68112 - ? c == 68096 - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))) - : (c <= 68220 || (c < 68297 - ? (c < 68288 - ? (c >= 68224 && c <= 68252) - : c <= 68295) - : (c <= 68324 || (c >= 68352 && c <= 68405))))))))) - : (c <= 68437 || (c < 69968 - ? (c < 69415 - ? (c < 68800 - ? (c < 68608 - ? (c < 68480 - ? (c >= 68448 && c <= 68466) - : c <= 68497) - : (c <= 68680 || (c >= 68736 && c <= 68786))) - : (c <= 68850 || (c < 69296 - ? (c < 69248 - ? (c >= 68864 && c <= 68899) - : c <= 69289) - : (c <= 69297 || (c >= 69376 && c <= 69404))))) - : (c <= 69415 || (c < 69763 - ? (c < 69600 - ? (c < 69552 - ? (c >= 69424 && c <= 69445) - : c <= 69572) - : (c <= 69622 || (c >= 69635 && c <= 69687))) - : (c <= 69807 || (c < 69956 - ? (c < 69891 - ? (c >= 69840 && c <= 69864) - : c <= 69926) - : (c <= 69956 || c == 69959)))))) - : (c <= 70002 || (c < 70282 - ? (c < 70108 - ? (c < 70081 - ? (c < 70019 - ? c == 70006 - : c <= 70066) - : (c <= 70084 || c == 70106)) - : (c <= 70108 || (c < 70272 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70187) - : (c <= 70278 || c == 70280)))) - : (c <= 70285 || (c < 70415 - ? (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70366 || (c >= 70405 && c <= 70412))) - : (c <= 70416 || (c < 70442 - ? (c >= 70419 && c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))))))))))))) - : (c <= 70457 || (c < 113808 - ? (c < 72818 - ? (c < 71945 - ? (c < 71040 - ? (c < 70727 - ? (c < 70493 + : (c <= 65594 || (c >= 65596 && c <= 65597))))))) + : (c <= 65613 || (c < 66464 + ? (c < 66208 + ? (c < 65856 + ? (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786) + : (c <= 65908 || (c >= 66176 && c <= 66204))) + : (c <= 66256 || (c < 66384 + ? (c < 66349 + ? (c >= 66304 && c <= 66335) + : c <= 66378) + : (c <= 66421 || (c >= 66432 && c <= 66461))))) + : (c <= 66499 || (c < 66776 + ? (c < 66560 + ? (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517) + : (c <= 66717 || (c >= 66736 && c <= 66771))) + : (c <= 66811 || (c < 66928 + ? (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915) + : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) + : (c <= 66962 || (c < 68864 + ? (c < 67828 + ? (c < 67506 + ? (c < 67072 + ? (c < 66979 + ? (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977) + : (c <= 66993 || (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004))) + : (c <= 67382 || (c < 67456 + ? (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431) + : (c <= 67461 || (c >= 67463 && c <= 67504))))) + : (c <= 67514 || (c < 67644 + ? (c < 67594 + ? (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592) + : (c <= 67637 || (c >= 67639 && c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c >= 67808 && c <= 67826))))))) + : (c <= 67829 || (c < 68224 + ? (c < 68096 + ? (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68096 || (c < 68121 + ? (c < 68117 + ? (c >= 68112 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c >= 68192 && c <= 68220))))) + : (c <= 68252 || (c < 68448 + ? (c < 68352 + ? (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68324) + : (c <= 68405 || (c >= 68416 && c <= 68437))) + : (c <= 68466 || (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) + : (c <= 68899 || (c < 70106 + ? (c < 69749 + ? (c < 69488 + ? (c < 69376 + ? (c < 69296 + ? (c >= 69248 && c <= 69289) + : c <= 69297) + : (c <= 69404 || (c < 69424 + ? c == 69415 + : c <= 69445))) + : (c <= 69505 || (c < 69635 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69687 || (c >= 69745 && c <= 69746))))) + : (c <= 69749 || (c < 69959 + ? (c < 69891 + ? (c < 69840 + ? (c >= 69763 && c <= 69807) + : c <= 69864) + : (c <= 69926 || c == 69956)) + : (c <= 69959 || (c < 70019 + ? (c < 70006 + ? (c >= 69968 && c <= 70002) + : c <= 70006) + : (c <= 70066 || (c >= 70081 && c <= 70084))))))) + : (c <= 70106 || (c < 70405 + ? (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70187 || (c >= 70272 && c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70366))))) + : (c <= 70412 || (c < 70453 + ? (c < 70442 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))) + : (c <= 70457 || (c < 70493 ? (c < 70480 ? c == 70461 : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))) - : (c <= 70730 || (c < 70852 + : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) + : (c <= 70730 || (c < 119894 + ? (c < 73056 + ? (c < 72001 + ? (c < 71424 + ? (c < 71128 + ? (c < 70852 ? (c < 70784 ? (c >= 70751 && c <= 70753) : c <= 70831) - : (c <= 70853 || c == 70855)))) - : (c <= 71086 || (c < 71352 - ? (c < 71236 - ? (c < 71168 - ? (c >= 71128 && c <= 71131) - : c <= 71215) - : (c <= 71236 || (c >= 71296 && c <= 71338))) - : (c <= 71352 || (c < 71840 + : (c <= 70853 || (c < 71040 + ? c == 70855 + : c <= 71086))) + : (c <= 71131 || (c < 71296 + ? (c < 71236 + ? (c >= 71168 && c <= 71215) + : c <= 71236) + : (c <= 71338 || c == 71352)))) + : (c <= 71450 || (c < 71945 + ? (c < 71840 ? (c < 71680 - ? (c >= 71424 && c <= 71450) + ? (c >= 71488 && c <= 71494) : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))))))) - : (c <= 71945 || (c < 72192 - ? (c < 72001 - ? (c < 71960 + : (c <= 71903 || (c >= 71935 && c <= 71942))) + : (c <= 71945 || (c < 71960 ? (c < 71957 ? (c >= 71948 && c <= 71955) : c <= 71958) - : (c <= 71983 || c == 71999)) - : (c <= 72001 || (c < 72161 + : (c <= 71983 || c == 71999)))))) + : (c <= 72001 || (c < 72349 + ? (c < 72192 + ? (c < 72161 ? (c < 72106 ? (c >= 72096 && c <= 72103) : c <= 72144) - : (c <= 72161 || c == 72163)))) - : (c <= 72192 || (c < 72349 - ? (c < 72272 + : (c <= 72161 || c == 72163)) + : (c <= 72192 || (c < 72272 ? (c < 72250 ? (c >= 72203 && c <= 72242) : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))) - : (c <= 72349 || (c < 72714 + : (c <= 72272 || (c >= 72284 && c <= 72329))))) + : (c <= 72349 || (c < 72818 + ? (c < 72714 ? (c < 72704 - ? (c >= 72384 && c <= 72440) + ? (c >= 72368 && c <= 72440) : c <= 72712) - : (c <= 72750 || c == 72768)))))))) - : (c <= 72847 || (c < 92992 - ? (c < 73648 - ? (c < 73056 - ? (c < 72971 + : (c <= 72750 || c == 72768)) + : (c <= 72847 || (c < 72971 ? (c < 72968 ? (c >= 72960 && c <= 72966) : c <= 72969) - : (c <= 73008 || c == 73030)) - : (c <= 73061 || (c < 73112 + : (c <= 73008 || c == 73030)))))))) + : (c <= 73061 || (c < 93952 + ? (c < 82944 + ? (c < 73728 + ? (c < 73112 ? (c < 73066 ? (c >= 73063 && c <= 73064) : c <= 73097) - : (c <= 73112 || (c >= 73440 && c <= 73458))))) - : (c <= 73648 || (c < 82944 - ? (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c >= 77824 && c <= 78894))) - : (c <= 83526 || (c < 92880 + : (c <= 73112 || (c < 73648 + ? (c >= 73440 && c <= 73458) + : c <= 73648))) + : (c <= 74649 || (c < 77712 + ? (c < 74880 + ? (c >= 74752 && c <= 74862) + : c <= 75075) + : (c <= 77808 || (c >= 77824 && c <= 78894))))) + : (c <= 83526 || (c < 92928 + ? (c < 92784 ? (c < 92736 ? (c >= 92160 && c <= 92728) : c <= 92766) - : (c <= 92909 || (c >= 92928 && c <= 92975))))))) - : (c <= 92995 || (c < 100352 - ? (c < 94032 - ? (c < 93760 - ? (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071) - : (c <= 93823 || (c >= 93952 && c <= 94026))) - : (c <= 94032 || (c < 94179 - ? (c < 94176 - ? (c >= 94099 && c <= 94111) - : c <= 94177) - : (c <= 94179 || (c >= 94208 && c <= 100343))))) - : (c <= 101589 || (c < 110960 - ? (c < 110928 - ? (c < 110592 - ? (c >= 101632 && c <= 101640) - : c <= 110878) - : (c <= 110930 || (c >= 110948 && c <= 110951))) - : (c <= 111355 || (c < 113776 - ? (c >= 113664 && c <= 113770) - : (c <= 113788 || (c >= 113792 && c <= 113800))))))))))) - : (c <= 113817 || (c < 126469 - ? (c < 120488 - ? (c < 120005 - ? (c < 119973 - ? (c < 119966 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : c <= 119964) - : (c <= 119967 || c == 119970)) - : (c <= 119974 || (c < 119995 - ? (c < 119982 + : (c <= 92862 || (c >= 92880 && c <= 92909))) + : (c <= 92975 || (c < 93053 + ? (c < 93027 + ? (c >= 92992 && c <= 92995) + : c <= 93047) + : (c <= 93071 || (c >= 93760 && c <= 93823))))))) + : (c <= 94026 || (c < 110589 + ? (c < 94208 + ? (c < 94176 + ? (c < 94099 + ? c == 94032 + : c <= 94111) + : (c <= 94177 || c == 94179)) + : (c <= 100343 || (c < 110576 + ? (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640) + : (c <= 110579 || (c >= 110581 && c <= 110587))))) + : (c <= 110590 || (c < 113664 + ? (c < 110948 + ? (c < 110928 + ? (c >= 110592 && c <= 110882) + : c <= 110930) + : (c <= 110951 || (c >= 110960 && c <= 111355))) + : (c <= 113770 || (c < 113808 + ? (c < 113792 + ? (c >= 113776 && c <= 113788) + : c <= 113800) + : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 125259 + ? (c < 120572 + ? (c < 120086 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c >= 119997 && c <= 120003))))) - : (c <= 120069 || (c < 120123 - ? (c < 120086 - ? (c < 120077 - ? (c >= 120071 && c <= 120074) - : c <= 120084) - : (c <= 120092 || (c >= 120094 && c <= 120121))) - : (c <= 120126 || (c < 120138 - ? (c < 120134 - ? (c >= 120128 && c <= 120132) - : c <= 120134) - : (c <= 120144 || (c >= 120146 && c <= 120485))))))) - : (c <= 120512 || (c < 120772 - ? (c < 120630 - ? (c < 120572 - ? (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))) - : (c <= 120654 || (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c >= 120746 && c <= 120770))))) - : (c <= 120779 || (c < 124928 - ? (c < 123214 - ? (c < 123191 - ? (c >= 123136 && c <= 123180) - : c <= 123197) - : (c <= 123214 || (c >= 123584 && c <= 123627))) - : (c <= 125124 || (c < 125259 - ? (c >= 125184 && c <= 125251) - : (c <= 125259 || (c >= 126464 && c <= 126467))))))))) - : (c <= 126495 || (c < 126561 - ? (c < 126537 - ? (c < 126516 - ? (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c >= 126505 && c <= 126514))) - : (c <= 126519 || (c < 126530 - ? (c < 126523 - ? c == 126521 - : c <= 126523) - : (c <= 126530 || c == 126535)))) - : (c <= 126537 || (c < 126551 - ? (c < 126545 - ? (c < 126541 - ? c == 126539 - : c <= 126543) - : (c <= 126546 || c == 126548)) - : (c <= 126551 || (c < 126557 - ? (c < 126555 - ? c == 126553 - : c <= 126555) - : (c <= 126557 || c == 126559)))))) - : (c <= 126562 || (c < 126629 - ? (c < 126585 - ? (c < 126572 - ? (c < 126567 - ? c == 126564 - : c <= 126570) - : (c <= 126578 || (c >= 126580 && c <= 126583))) - : (c <= 126588 || (c < 126603 - ? (c < 126592 - ? c == 126590 - : c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 173824 - ? (c < 131072 - ? (c >= 126635 && c <= 126651) - : c <= 173789) - : (c <= 177972 || (c >= 177984 && c <= 178205))) - : (c <= 183969 || (c < 194560 - ? (c >= 183984 && c <= 191456) + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069) + : (c <= 120074 || (c >= 120077 && c <= 120084))))) + : (c <= 120092 || (c < 120138 + ? (c < 120128 + ? (c < 120123 + ? (c >= 120094 && c <= 120121) + : c <= 120126) + : (c <= 120132 || c == 120134)) + : (c <= 120144 || (c < 120514 + ? (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512) + : (c <= 120538 || (c >= 120540 && c <= 120570))))))) + : (c <= 120596 || (c < 123191 + ? (c < 120714 + ? (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c >= 120688 && c <= 120712))) + : (c <= 120744 || (c < 122624 + ? (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779) + : (c <= 122654 || (c >= 123136 && c <= 123180))))) + : (c <= 123197 || (c < 124904 + ? (c < 123584 + ? (c < 123536 + ? c == 123214 + : c <= 123565) + : (c <= 123627 || (c >= 124896 && c <= 124902))) + : (c <= 124907 || (c < 124928 + ? (c < 124912 + ? (c >= 124909 && c <= 124910) + : c <= 124926) + : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) + : (c <= 125259 || (c < 126559 + ? (c < 126535 + ? (c < 126505 + ? (c < 126497 + ? (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495) + : (c <= 126498 || (c < 126503 + ? c == 126500 + : c <= 126503))) + : (c <= 126514 || (c < 126523 + ? (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521) + : (c <= 126523 || c == 126530)))) + : (c <= 126535 || (c < 126548 + ? (c < 126541 + ? (c < 126539 + ? c == 126537 + : c <= 126539) + : (c <= 126543 || (c >= 126545 && c <= 126546))) + : (c <= 126548 || (c < 126555 + ? (c < 126553 + ? c == 126551 + : c <= 126553) + : (c <= 126555 || c == 126557)))))) + : (c <= 126559 || (c < 126625 + ? (c < 126580 + ? (c < 126567 + ? (c < 126564 + ? (c >= 126561 && c <= 126562) + : c <= 126564) + : (c <= 126570 || (c >= 126572 && c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c >= 126603 && c <= 126619))))) + : (c <= 126627 || (c < 177984 + ? (c < 131072 + ? (c < 126635 + ? (c >= 126629 && c <= 126633) + : c <= 126651) + : (c <= 173791 || (c >= 173824 && c <= 177976))) + : (c <= 178205 || (c < 194560 + ? (c < 183984 + ? (c >= 178208 && c <= 183969) + : c <= 191456) : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < 43020 - ? (c < 4096 - ? (c < 2693 - ? (c < 1969 - ? (c < 910 - ? (c < 736 - ? (c < 186 + return (c < 43514 + ? (c < 4193 + ? (c < 2707 + ? (c < 1994 + ? (c < 931 + ? (c < 748 + ? (c < 192 ? (c < 170 ? (c < 'a' ? (c >= 'A' && c <= 'Z') : c <= 'z') - : (c <= 170 || c == 181)) - : (c <= 186 || (c < 248 - ? (c < 216 - ? (c >= 192 && c <= 214) - : c <= 246) - : (c <= 705 || (c >= 710 && c <= 721))))) - : (c <= 740 || (c < 891 - ? (c < 880 - ? (c < 750 - ? c == 748 - : c <= 750) - : (c <= 884 || (c >= 886 && c <= 887))) - : (c <= 893 || (c < 904 - ? (c < 902 - ? c == 895 - : c <= 902) - : (c <= 906 || c == 908)))))) - : (c <= 929 || (c < 1646 - ? (c < 1369 - ? (c < 1162 - ? (c < 1015 - ? (c >= 931 && c <= 1013) - : c <= 1153) - : (c <= 1327 || (c >= 1329 && c <= 1366))) - : (c <= 1369 || (c < 1519 - ? (c < 1488 - ? (c >= 1376 && c <= 1416) - : c <= 1514) - : (c <= 1522 || (c >= 1568 && c <= 1610))))) - : (c <= 1647 || (c < 1786 - ? (c < 1765 - ? (c < 1749 - ? (c >= 1649 && c <= 1747) - : c <= 1749) - : (c <= 1766 || (c >= 1774 && c <= 1775))) - : (c <= 1788 || (c < 1810 - ? (c < 1808 - ? c == 1791 - : c <= 1808) - : (c <= 1839 || (c >= 1869 && c <= 1957))))))))) - : (c <= 1969 || (c < 2474 + : (c <= 170 || (c < 186 + ? c == 181 + : c <= 186))) + : (c <= 214 || (c < 710 + ? (c < 248 + ? (c >= 216 && c <= 246) + : c <= 705) + : (c <= 721 || (c >= 736 && c <= 740))))) + : (c <= 748 || (c < 895 + ? (c < 886 + ? (c < 880 + ? c == 750 + : c <= 884) + : (c <= 887 || (c >= 891 && c <= 893))) + : (c <= 895 || (c < 908 + ? (c < 904 + ? c == 902 + : c <= 906) + : (c <= 908 || (c >= 910 && c <= 929))))))) + : (c <= 1013 || (c < 1649 + ? (c < 1376 + ? (c < 1329 + ? (c < 1162 + ? (c >= 1015 && c <= 1153) + : c <= 1327) + : (c <= 1366 || c == 1369)) + : (c <= 1416 || (c < 1568 + ? (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522) + : (c <= 1610 || (c >= 1646 && c <= 1647))))) + : (c <= 1747 || (c < 1791 + ? (c < 1774 + ? (c < 1765 + ? c == 1749 + : c <= 1766) + : (c <= 1775 || (c >= 1786 && c <= 1788))) + : (c <= 1791 || (c < 1869 + ? (c < 1810 + ? c == 1808 + : c <= 1839) + : (c <= 1957 || c == 1969)))))))) + : (c <= 2026 || (c < 2482 ? (c < 2208 - ? (c < 2074 - ? (c < 2042 - ? (c < 2036 - ? (c >= 1994 && c <= 2026) - : c <= 2037) - : (c <= 2042 || (c >= 2048 && c <= 2069))) - : (c <= 2074 || (c < 2112 - ? (c < 2088 - ? c == 2084 - : c <= 2088) - : (c <= 2136 || (c >= 2144 && c <= 2154))))) - : (c <= 2228 || (c < 2392 - ? (c < 2365 - ? (c < 2308 - ? (c >= 2230 && c <= 2247) - : c <= 2361) - : (c <= 2365 || c == 2384)) - : (c <= 2401 || (c < 2447 - ? (c < 2437 - ? (c >= 2417 && c <= 2432) - : c <= 2444) - : (c <= 2448 || (c >= 2451 && c <= 2472))))))) - : (c <= 2480 || (c < 2575 - ? (c < 2524 - ? (c < 2493 - ? (c < 2486 - ? c == 2482 - : c <= 2489) - : (c <= 2493 || c == 2510)) - : (c <= 2525 || (c < 2556 - ? (c < 2544 - ? (c >= 2527 && c <= 2529) - : c <= 2545) - : (c <= 2556 || (c >= 2565 && c <= 2570))))) - : (c <= 2576 || (c < 2616 - ? (c < 2610 - ? (c < 2602 - ? (c >= 2579 && c <= 2600) - : c <= 2608) - : (c <= 2611 || (c >= 2613 && c <= 2614))) - : (c <= 2617 || (c < 2654 - ? (c >= 2649 && c <= 2652) - : (c <= 2654 || (c >= 2674 && c <= 2676))))))))))) - : (c <= 2701 || (c < 3214 - ? (c < 2947 - ? (c < 2821 - ? (c < 2741 - ? (c < 2730 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : c <= 2728) - : (c <= 2736 || (c >= 2738 && c <= 2739))) - : (c <= 2745 || (c < 2784 - ? (c < 2768 + ? (c < 2088 + ? (c < 2048 + ? (c < 2042 + ? (c >= 2036 && c <= 2037) + : c <= 2042) + : (c <= 2069 || (c < 2084 + ? c == 2074 + : c <= 2084))) + : (c <= 2088 || (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2136) + : c <= 2154) + : (c <= 2183 || (c >= 2185 && c <= 2190))))) + : (c <= 2249 || (c < 2417 + ? (c < 2384 + ? (c < 2365 + ? (c >= 2308 && c <= 2361) + : c <= 2365) + : (c <= 2384 || (c >= 2392 && c <= 2401))) + : (c <= 2432 || (c < 2451 + ? (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448) + : (c <= 2472 || (c >= 2474 && c <= 2480))))))) + : (c <= 2482 || (c < 2579 + ? (c < 2527 + ? (c < 2510 + ? (c < 2493 + ? (c >= 2486 && c <= 2489) + : c <= 2493) + : (c <= 2510 || (c >= 2524 && c <= 2525))) + : (c <= 2529 || (c < 2565 + ? (c < 2556 + ? (c >= 2544 && c <= 2545) + : c <= 2556) + : (c <= 2570 || (c >= 2575 && c <= 2576))))) + : (c <= 2600 || (c < 2649 + ? (c < 2613 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611) + : (c <= 2614 || (c >= 2616 && c <= 2617))) + : (c <= 2652 || (c < 2693 + ? (c < 2674 + ? c == 2654 + : c <= 2676) + : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) + : (c <= 2728 || (c < 3242 + ? (c < 2962 + ? (c < 2858 + ? (c < 2784 + ? (c < 2741 + ? (c < 2738 + ? (c >= 2730 && c <= 2736) + : c <= 2739) + : (c <= 2745 || (c < 2768 ? c == 2749 - : c <= 2768) - : (c <= 2785 || c == 2809)))) - : (c <= 2828 || (c < 2869 - ? (c < 2858 - ? (c < 2835 - ? (c >= 2831 && c <= 2832) - : c <= 2856) - : (c <= 2864 || (c >= 2866 && c <= 2867))) - : (c <= 2873 || (c < 2911 - ? (c < 2908 - ? c == 2877 - : c <= 2909) - : (c <= 2913 || c == 2929)))))) - : (c <= 2947 || (c < 3024 - ? (c < 2972 - ? (c < 2962 - ? (c < 2958 - ? (c >= 2949 && c <= 2954) - : c <= 2960) - : (c <= 2965 || (c >= 2969 && c <= 2970))) - : (c <= 2972 || (c < 2984 - ? (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980) - : (c <= 2986 || (c >= 2990 && c <= 3001))))) - : (c <= 3024 || (c < 3133 - ? (c < 3090 - ? (c < 3086 - ? (c >= 3077 && c <= 3084) - : c <= 3088) - : (c <= 3112 || (c >= 3114 && c <= 3129))) - : (c <= 3133 || (c < 3200 - ? (c < 3168 - ? (c >= 3160 && c <= 3162) - : c <= 3169) - : (c <= 3200 || (c >= 3205 && c <= 3212))))))))) - : (c <= 3216 || (c < 3520 - ? (c < 3346 - ? (c < 3294 - ? (c < 3253 - ? (c < 3242 - ? (c >= 3218 && c <= 3240) - : c <= 3251) - : (c <= 3257 || c == 3261)) - : (c <= 3294 || (c < 3332 - ? (c < 3313 + : c <= 2768))) + : (c <= 2785 || (c < 2831 + ? (c < 2821 + ? c == 2809 + : c <= 2828) + : (c <= 2832 || (c >= 2835 && c <= 2856))))) + : (c <= 2864 || (c < 2911 + ? (c < 2877 + ? (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873) + : (c <= 2877 || (c >= 2908 && c <= 2909))) + : (c <= 2913 || (c < 2949 + ? (c < 2947 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c >= 2958 && c <= 2960))))))) + : (c <= 2965 || (c < 3090 + ? (c < 2984 + ? (c < 2974 + ? (c < 2972 + ? (c >= 2969 && c <= 2970) + : c <= 2972) + : (c <= 2975 || (c >= 2979 && c <= 2980))) + : (c <= 2986 || (c < 3077 + ? (c < 3024 + ? (c >= 2990 && c <= 3001) + : c <= 3024) + : (c <= 3084 || (c >= 3086 && c <= 3088))))) + : (c <= 3112 || (c < 3168 + ? (c < 3160 + ? (c < 3133 + ? (c >= 3114 && c <= 3129) + : c <= 3133) + : (c <= 3162 || c == 3165)) + : (c <= 3169 || (c < 3214 + ? (c < 3205 + ? c == 3200 + : c <= 3212) + : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) + : (c <= 3251 || (c < 3648 + ? (c < 3412 + ? (c < 3332 + ? (c < 3293 + ? (c < 3261 + ? (c >= 3253 && c <= 3257) + : c <= 3261) + : (c <= 3294 || (c < 3313 ? (c >= 3296 && c <= 3297) - : c <= 3314) - : (c <= 3340 || (c >= 3342 && c <= 3344))))) - : (c <= 3386 || (c < 3450 - ? (c < 3412 - ? (c < 3406 - ? c == 3389 - : c <= 3406) - : (c <= 3414 || (c >= 3423 && c <= 3425))) - : (c <= 3455 || (c < 3507 - ? (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505) - : (c <= 3515 || c == 3517)))))) - : (c <= 3526 || (c < 3762 - ? (c < 3716 - ? (c < 3648 - ? (c < 3634 - ? (c >= 3585 && c <= 3632) - : c <= 3634) - : (c <= 3654 || (c >= 3713 && c <= 3714))) - : (c <= 3716 || (c < 3749 - ? (c < 3724 - ? (c >= 3718 && c <= 3722) - : c <= 3747) - : (c <= 3749 || (c >= 3751 && c <= 3760))))) - : (c <= 3762 || (c < 3840 - ? (c < 3782 - ? (c < 3776 - ? c == 3773 - : c <= 3780) - : (c <= 3782 || (c >= 3804 && c <= 3807))) - : (c <= 3840 || (c < 3913 - ? (c >= 3904 && c <= 3911) - : (c <= 3948 || (c >= 3976 && c <= 3980))))))))))))) - : (c <= 4138 || (c < 8025 - ? (c < 5952 - ? (c < 4752 - ? (c < 4295 - ? (c < 4197 - ? (c < 4186 - ? (c < 4176 - ? c == 4159 - : c <= 4181) - : (c <= 4189 || c == 4193)) - : (c <= 4198 || (c < 4238 - ? (c < 4213 - ? (c >= 4206 && c <= 4208) - : c <= 4225) - : (c <= 4238 || (c >= 4256 && c <= 4293))))) - : (c <= 4295 || (c < 4688 - ? (c < 4348 + : c <= 3314))) + : (c <= 3340 || (c < 3389 + ? (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3386) + : (c <= 3389 || c == 3406)))) + : (c <= 3414 || (c < 3507 + ? (c < 3461 + ? (c < 3450 + ? (c >= 3423 && c <= 3425) + : c <= 3455) + : (c <= 3478 || (c >= 3482 && c <= 3505))) + : (c <= 3515 || (c < 3585 + ? (c < 3520 + ? c == 3517 + : c <= 3526) + : (c <= 3632 || c == 3634)))))) + : (c <= 3654 || (c < 3782 + ? (c < 3749 + ? (c < 3718 + ? (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716) + : (c <= 3722 || (c >= 3724 && c <= 3747))) + : (c <= 3749 || (c < 3773 + ? (c < 3762 + ? (c >= 3751 && c <= 3760) + : c <= 3762) + : (c <= 3773 || (c >= 3776 && c <= 3780))))) + : (c <= 3782 || (c < 3976 + ? (c < 3904 + ? (c < 3840 + ? (c >= 3804 && c <= 3807) + : c <= 3840) + : (c <= 3911 || (c >= 3913 && c <= 3948))) + : (c <= 3980 || (c < 4176 + ? (c < 4159 + ? (c >= 4096 && c <= 4138) + : c <= 4159) + : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) + : (c <= 4193 || (c < 8134 + ? (c < 6176 + ? (c < 4808 + ? (c < 4688 + ? (c < 4295 + ? (c < 4213 + ? (c < 4206 + ? (c >= 4197 && c <= 4198) + : c <= 4208) + : (c <= 4225 || (c < 4256 + ? c == 4238 + : c <= 4293))) + : (c <= 4295 || (c < 4348 ? (c < 4304 ? c == 4301 : c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))) - : (c <= 4694 || (c < 4704 + : (c <= 4680 || (c >= 4682 && c <= 4685))))) + : (c <= 4694 || (c < 4752 + ? (c < 4704 ? (c < 4698 ? c == 4696 : c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))))))) - : (c <= 4784 || (c < 5024 - ? (c < 4808 - ? (c < 4800 + : (c <= 4744 || (c >= 4746 && c <= 4749))) + : (c <= 4784 || (c < 4800 ? (c < 4792 ? (c >= 4786 && c <= 4789) : c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))) - : (c <= 4822 || (c < 4888 + : (c <= 4800 || (c >= 4802 && c <= 4805))))))) + : (c <= 4822 || (c < 5792 + ? (c < 5024 + ? (c < 4888 ? (c < 4882 ? (c >= 4824 && c <= 4880) : c <= 4885) - : (c <= 4954 || (c >= 4992 && c <= 5007))))) - : (c <= 5109 || (c < 5792 - ? (c < 5743 + : (c <= 4954 || (c >= 4992 && c <= 5007))) + : (c <= 5109 || (c < 5743 ? (c < 5121 ? (c >= 5112 && c <= 5117) : c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))) - : (c <= 5866 || (c < 5902 + : (c <= 5759 || (c >= 5761 && c <= 5786))))) + : (c <= 5866 || (c < 5984 + ? (c < 5919 ? (c < 5888 ? (c >= 5870 && c <= 5880) - : c <= 5900) - : (c <= 5905 || (c >= 5920 && c <= 5937))))))))) - : (c <= 5969 || (c < 7043 - ? (c < 6400 - ? (c < 6108 - ? (c < 6016 - ? (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000) - : (c <= 6067 || c == 6103)) - : (c <= 6108 || (c < 6314 - ? (c < 6272 - ? (c >= 6176 && c <= 6264) - : c <= 6312) - : (c <= 6314 || (c >= 6320 && c <= 6389))))) - : (c <= 6430 || (c < 6656 - ? (c < 6528 - ? (c < 6512 - ? (c >= 6480 && c <= 6509) - : c <= 6516) - : (c <= 6571 || (c >= 6576 && c <= 6601))) - : (c <= 6678 || (c < 6917 - ? (c < 6823 - ? (c >= 6688 && c <= 6740) - : c <= 6823) - : (c <= 6963 || (c >= 6981 && c <= 6987))))))) - : (c <= 7072 || (c < 7406 - ? (c < 7258 - ? (c < 7168 - ? (c < 7098 - ? (c >= 7086 && c <= 7087) - : c <= 7141) - : (c <= 7203 || (c >= 7245 && c <= 7247))) - : (c <= 7293 || (c < 7357 - ? (c < 7312 - ? (c >= 7296 && c <= 7304) - : c <= 7354) - : (c <= 7359 || (c >= 7401 && c <= 7404))))) - : (c <= 7411 || (c < 7960 - ? (c < 7424 - ? (c < 7418 - ? (c >= 7413 && c <= 7414) - : c <= 7418) - : (c <= 7615 || (c >= 7680 && c <= 7957))) - : (c <= 7965 || (c < 8008 - ? (c >= 7968 && c <= 8005) - : (c <= 8013 || (c >= 8016 && c <= 8023))))))))))) - : (c <= 8025 || (c < 11631 - ? (c < 8469 - ? (c < 8150 - ? (c < 8118 - ? (c < 8031 - ? (c < 8029 - ? c == 8027 - : c <= 8029) - : (c <= 8061 || (c >= 8064 && c <= 8116))) - : (c <= 8124 || (c < 8134 - ? (c < 8130 - ? c == 8126 - : c <= 8132) - : (c <= 8140 || (c >= 8144 && c <= 8147))))) - : (c <= 8155 || (c < 8319 - ? (c < 8182 - ? (c < 8178 - ? (c >= 8160 && c <= 8172) - : c <= 8180) - : (c <= 8188 || c == 8305)) - : (c <= 8319 || (c < 8455 - ? (c < 8450 - ? (c >= 8336 && c <= 8348) - : c <= 8450) - : (c <= 8455 || (c >= 8458 && c <= 8467))))))) - : (c <= 8469 || (c < 11264 - ? (c < 8490 - ? (c < 8486 - ? (c < 8484 - ? (c >= 8472 && c <= 8477) - : c <= 8484) - : (c <= 8486 || c == 8488)) - : (c <= 8505 || (c < 8526 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521) - : (c <= 8526 || (c >= 8544 && c <= 8584))))) - : (c <= 11310 || (c < 11520 - ? (c < 11499 - ? (c < 11360 - ? (c >= 11312 && c <= 11358) - : c <= 11492) - : (c <= 11502 || (c >= 11506 && c <= 11507))) - : (c <= 11557 || (c < 11565 - ? c == 11559 - : (c <= 11565 || (c >= 11568 && c <= 11623))))))))) - : (c <= 11631 || (c < 12704 - ? (c < 12293 - ? (c < 11704 - ? (c < 11688 - ? (c < 11680 - ? (c >= 11648 && c <= 11670) - : c <= 11686) - : (c <= 11694 || (c >= 11696 && c <= 11702))) - : (c <= 11710 || (c < 11728 - ? (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726) - : (c <= 11734 || (c >= 11736 && c <= 11742))))) - : (c <= 12295 || (c < 12445 - ? (c < 12344 - ? (c < 12337 - ? (c >= 12321 && c <= 12329) - : c <= 12341) - : (c <= 12348 || (c >= 12353 && c <= 12438))) - : (c <= 12447 || (c < 12549 - ? (c < 12540 + : c <= 5905) + : (c <= 5937 || (c >= 5952 && c <= 5969))) + : (c <= 5996 || (c < 6103 + ? (c < 6016 + ? (c >= 5998 && c <= 6000) + : c <= 6067) + : (c <= 6103 || c == 6108)))))))) + : (c <= 6264 || (c < 7312 + ? (c < 6823 + ? (c < 6512 + ? (c < 6320 + ? (c < 6314 + ? (c >= 6272 && c <= 6312) + : c <= 6314) + : (c <= 6389 || (c < 6480 + ? (c >= 6400 && c <= 6430) + : c <= 6509))) + : (c <= 6516 || (c < 6656 + ? (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601) + : (c <= 6678 || (c >= 6688 && c <= 6740))))) + : (c <= 6823 || (c < 7098 + ? (c < 7043 + ? (c < 6981 + ? (c >= 6917 && c <= 6963) + : c <= 6988) + : (c <= 7072 || (c >= 7086 && c <= 7087))) + : (c <= 7141 || (c < 7258 + ? (c < 7245 + ? (c >= 7168 && c <= 7203) + : c <= 7247) + : (c <= 7293 || (c >= 7296 && c <= 7304))))))) + : (c <= 7354 || (c < 8008 + ? (c < 7418 + ? (c < 7406 + ? (c < 7401 + ? (c >= 7357 && c <= 7359) + : c <= 7404) + : (c <= 7411 || (c >= 7413 && c <= 7414))) + : (c <= 7418 || (c < 7960 + ? (c < 7680 + ? (c >= 7424 && c <= 7615) + : c <= 7957) + : (c <= 7965 || (c >= 7968 && c <= 8005))))) + : (c <= 8013 || (c < 8031 + ? (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || c == 8029)) + : (c <= 8061 || (c < 8126 + ? (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) + : (c <= 8140 || (c < 12337 + ? (c < 8544 + ? (c < 8458 + ? (c < 8305 + ? (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188))) + : (c <= 8305 || (c < 8450 + ? (c < 8336 + ? c == 8319 + : c <= 8348) + : (c <= 8450 || c == 8455)))) + : (c <= 8467 || (c < 8488 + ? (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || c == 8486)) + : (c <= 8488 || (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || c == 8526)))))) + : (c <= 8584 || (c < 11680 + ? (c < 11559 + ? (c < 11506 + ? (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11502) + : (c <= 11507 || (c >= 11520 && c <= 11557))) + : (c <= 11559 || (c < 11631 + ? (c < 11568 + ? c == 11565 + : c <= 11623) + : (c <= 11631 || (c >= 11648 && c <= 11670))))) + : (c <= 11686 || (c < 11720 + ? (c < 11704 + ? (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702) + : (c <= 11710 || (c >= 11712 && c <= 11718))) + : (c <= 11726 || (c < 12293 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) + : (c <= 12341 || (c < 42891 + ? (c < 19968 + ? (c < 12549 + ? (c < 12445 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12447 || (c < 12540 ? (c >= 12449 && c <= 12538) - : c <= 12543) - : (c <= 12591 || (c >= 12593 && c <= 12686))))))) - : (c <= 12735 || (c < 42623 - ? (c < 42192 - ? (c < 19968 - ? (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903) - : (c <= 40956 || (c >= 40960 && c <= 42124))) - : (c <= 42237 || (c < 42538 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42527) - : (c <= 42539 || (c >= 42560 && c <= 42606))))) - : (c <= 42653 || (c < 42946 - ? (c < 42786 - ? (c < 42775 - ? (c >= 42656 && c <= 42735) - : c <= 42783) - : (c <= 42888 || (c >= 42891 && c <= 42943))) - : (c <= 42954 || (c < 43011 - ? (c >= 42997 && c <= 43009) - : (c <= 43013 || (c >= 43015 && c <= 43018))))))))))))))) - : (c <= 43042 || (c < 70453 - ? (c < 66176 - ? (c < 64112 - ? (c < 43697 - ? (c < 43471 - ? (c < 43261 - ? (c < 43250 - ? (c < 43138 - ? (c >= 43072 && c <= 43123) - : c <= 43187) - : (c <= 43255 || c == 43259)) - : (c <= 43262 || (c < 43360 - ? (c < 43312 - ? (c >= 43274 && c <= 43301) - : c <= 43334) - : (c <= 43388 || (c >= 43396 && c <= 43442))))) - : (c <= 43471 || (c < 43584 - ? (c < 43514 - ? (c < 43494 - ? (c >= 43488 && c <= 43492) - : c <= 43503) - : (c <= 43518 || (c >= 43520 && c <= 43560))) - : (c <= 43586 || (c < 43642 - ? (c < 43616 - ? (c >= 43588 && c <= 43595) - : c <= 43638) - : (c <= 43642 || (c >= 43646 && c <= 43695))))))) - : (c <= 43697 || (c < 43793 - ? (c < 43739 - ? (c < 43712 - ? (c < 43705 - ? (c >= 43701 && c <= 43702) - : c <= 43709) - : (c <= 43712 || c == 43714)) - : (c <= 43741 || (c < 43777 - ? (c < 43762 - ? (c >= 43744 && c <= 43754) - : c <= 43764) - : (c <= 43782 || (c >= 43785 && c <= 43790))))) - : (c <= 43798 || (c < 43888 - ? (c < 43824 - ? (c < 43816 - ? (c >= 43808 && c <= 43814) - : c <= 43822) - : (c <= 43866 || (c >= 43868 && c <= 43881))) - : (c <= 44002 || (c < 55243 - ? (c < 55216 - ? (c >= 44032 && c <= 55203) - : c <= 55238) - : (c <= 55291 || (c >= 63744 && c <= 64109))))))))) - : (c <= 64217 || (c < 65147 - ? (c < 64326 - ? (c < 64298 - ? (c < 64285 - ? (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279) - : (c <= 64285 || (c >= 64287 && c <= 64296))) - : (c <= 64310 || (c < 64320 - ? (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318) - : (c <= 64321 || (c >= 64323 && c <= 64324))))) - : (c <= 64433 || (c < 65008 - ? (c < 64848 - ? (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829) - : (c <= 64911 || (c >= 64914 && c <= 64967))) - : (c <= 65017 || (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || c == 65145)))))) - : (c <= 65147 || (c < 65498 - ? (c < 65382 - ? (c < 65313 + : c <= 12543))) + : (c <= 12591 || (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c >= 13312 && c <= 19903))))) + : (c <= 42124 || (c < 42560 + ? (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42527 || (c >= 42538 && c <= 42539))) + : (c <= 42606 || (c < 42775 + ? (c < 42656 + ? (c >= 42623 && c <= 42653) + : c <= 42735) + : (c <= 42783 || (c >= 42786 && c <= 42888))))))) + : (c <= 42954 || (c < 43250 + ? (c < 43011 + ? (c < 42965 + ? (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963) + : (c <= 42969 || (c >= 42994 && c <= 43009))) + : (c <= 43013 || (c < 43072 + ? (c < 43020 + ? (c >= 43015 && c <= 43018) + : c <= 43042) + : (c <= 43123 || (c >= 43138 && c <= 43187))))) + : (c <= 43255 || (c < 43360 + ? (c < 43274 + ? (c < 43261 + ? c == 43259 + : c <= 43262) + : (c <= 43301 || (c >= 43312 && c <= 43334))) + : (c <= 43388 || (c < 43488 + ? (c < 43471 + ? (c >= 43396 && c <= 43442) + : c <= 43471) + : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) + : (c <= 43518 || (c < 70727 + ? (c < 66956 + ? (c < 64914 + ? (c < 43868 + ? (c < 43714 + ? (c < 43646 + ? (c < 43588 + ? (c < 43584 + ? (c >= 43520 && c <= 43560) + : c <= 43586) + : (c <= 43595 || (c < 43642 + ? (c >= 43616 && c <= 43638) + : c <= 43642))) + : (c <= 43695 || (c < 43705 + ? (c < 43701 + ? c == 43697 + : c <= 43702) + : (c <= 43709 || c == 43712)))) + : (c <= 43714 || (c < 43785 + ? (c < 43762 + ? (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43754) + : (c <= 43764 || (c >= 43777 && c <= 43782))) + : (c <= 43790 || (c < 43816 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814) + : (c <= 43822 || (c >= 43824 && c <= 43866))))))) + : (c <= 43881 || (c < 64287 + ? (c < 63744 + ? (c < 55216 + ? (c < 44032 + ? (c >= 43888 && c <= 44002) + : c <= 55203) + : (c <= 55238 || (c >= 55243 && c <= 55291))) + : (c <= 64109 || (c < 64275 + ? (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262) + : (c <= 64279 || c == 64285)))) + : (c <= 64296 || (c < 64323 + ? (c < 64318 + ? (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316) + : (c <= 64318 || (c >= 64320 && c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65599 + ? (c < 65382 + ? (c < 65147 + ? (c < 65139 + ? (c < 65137 + ? (c >= 65008 && c <= 65017) + : c <= 65137) + : (c <= 65139 || (c < 65145 + ? c == 65143 + : c <= 65145))) + : (c <= 65147 || (c < 65313 ? (c < 65151 ? c == 65149 : c <= 65276) - : (c <= 65338 || (c >= 65345 && c <= 65370))) - : (c <= 65437 || (c < 65482 + : (c <= 65338 || (c >= 65345 && c <= 65370))))) + : (c <= 65437 || (c < 65498 + ? (c < 65482 ? (c < 65474 ? (c >= 65440 && c <= 65470) : c <= 65479) - : (c <= 65487 || (c >= 65490 && c <= 65495))))) - : (c <= 65500 || (c < 65599 - ? (c < 65576 + : (c <= 65487 || (c >= 65490 && c <= 65495))) + : (c <= 65500 || (c < 65576 ? (c < 65549 ? (c >= 65536 && c <= 65547) : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : (c <= 65786 || (c >= 65856 && c <= 65908))))))))))) - : (c <= 66204 || (c < 68416 - ? (c < 67639 - ? (c < 66736 - ? (c < 66432 - ? (c < 66349 - ? (c < 66304 - ? (c >= 66208 && c <= 66256) - : c <= 66335) - : (c <= 66378 || (c >= 66384 && c <= 66421))) - : (c <= 66461 || (c < 66513 - ? (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511) - : (c <= 66517 || (c >= 66560 && c <= 66717))))) - : (c <= 66771 || (c < 67392 - ? (c < 66864 - ? (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855) - : (c <= 66915 || (c >= 67072 && c <= 67382))) - : (c <= 67413 || (c < 67592 - ? (c < 67584 - ? (c >= 67424 && c <= 67431) - : c <= 67589) - : (c <= 67592 || (c >= 67594 && c <= 67637))))))) - : (c <= 67640 || (c < 68030 - ? (c < 67808 - ? (c < 67680 - ? (c < 67647 - ? c == 67644 - : c <= 67669) - : (c <= 67702 || (c >= 67712 && c <= 67742))) - : (c <= 67826 || (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c >= 67968 && c <= 68023))))) - : (c <= 68031 || (c < 68192 - ? (c < 68117 - ? (c < 68112 - ? c == 68096 - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))) - : (c <= 68220 || (c < 68297 - ? (c < 68288 - ? (c >= 68224 && c <= 68252) - : c <= 68295) - : (c <= 68324 || (c >= 68352 && c <= 68405))))))))) - : (c <= 68437 || (c < 69968 - ? (c < 69415 - ? (c < 68800 - ? (c < 68608 - ? (c < 68480 - ? (c >= 68448 && c <= 68466) - : c <= 68497) - : (c <= 68680 || (c >= 68736 && c <= 68786))) - : (c <= 68850 || (c < 69296 - ? (c < 69248 - ? (c >= 68864 && c <= 68899) - : c <= 69289) - : (c <= 69297 || (c >= 69376 && c <= 69404))))) - : (c <= 69415 || (c < 69763 - ? (c < 69600 - ? (c < 69552 - ? (c >= 69424 && c <= 69445) - : c <= 69572) - : (c <= 69622 || (c >= 69635 && c <= 69687))) - : (c <= 69807 || (c < 69956 - ? (c < 69891 - ? (c >= 69840 && c <= 69864) - : c <= 69926) - : (c <= 69956 || c == 69959)))))) - : (c <= 70002 || (c < 70282 - ? (c < 70108 - ? (c < 70081 - ? (c < 70019 - ? c == 70006 - : c <= 70066) - : (c <= 70084 || c == 70106)) - : (c <= 70108 || (c < 70272 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70187) - : (c <= 70278 || c == 70280)))) - : (c <= 70285 || (c < 70415 - ? (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70366 || (c >= 70405 && c <= 70412))) - : (c <= 70416 || (c < 70442 - ? (c >= 70419 && c <= 70440) - : (c <= 70448 || (c >= 70450 && c <= 70451))))))))))))) - : (c <= 70457 || (c < 113808 - ? (c < 72818 - ? (c < 71945 - ? (c < 71040 - ? (c < 70727 - ? (c < 70493 + : (c <= 65594 || (c >= 65596 && c <= 65597))))))) + : (c <= 65613 || (c < 66464 + ? (c < 66208 + ? (c < 65856 + ? (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786) + : (c <= 65908 || (c >= 66176 && c <= 66204))) + : (c <= 66256 || (c < 66384 + ? (c < 66349 + ? (c >= 66304 && c <= 66335) + : c <= 66378) + : (c <= 66421 || (c >= 66432 && c <= 66461))))) + : (c <= 66499 || (c < 66776 + ? (c < 66560 + ? (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517) + : (c <= 66717 || (c >= 66736 && c <= 66771))) + : (c <= 66811 || (c < 66928 + ? (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915) + : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) + : (c <= 66962 || (c < 68864 + ? (c < 67828 + ? (c < 67506 + ? (c < 67072 + ? (c < 66979 + ? (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977) + : (c <= 66993 || (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004))) + : (c <= 67382 || (c < 67456 + ? (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431) + : (c <= 67461 || (c >= 67463 && c <= 67504))))) + : (c <= 67514 || (c < 67644 + ? (c < 67594 + ? (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592) + : (c <= 67637 || (c >= 67639 && c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c >= 67808 && c <= 67826))))))) + : (c <= 67829 || (c < 68224 + ? (c < 68096 + ? (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68096 || (c < 68121 + ? (c < 68117 + ? (c >= 68112 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c >= 68192 && c <= 68220))))) + : (c <= 68252 || (c < 68448 + ? (c < 68352 + ? (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68324) + : (c <= 68405 || (c >= 68416 && c <= 68437))) + : (c <= 68466 || (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) + : (c <= 68899 || (c < 70106 + ? (c < 69749 + ? (c < 69488 + ? (c < 69376 + ? (c < 69296 + ? (c >= 69248 && c <= 69289) + : c <= 69297) + : (c <= 69404 || (c < 69424 + ? c == 69415 + : c <= 69445))) + : (c <= 69505 || (c < 69635 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69687 || (c >= 69745 && c <= 69746))))) + : (c <= 69749 || (c < 69959 + ? (c < 69891 + ? (c < 69840 + ? (c >= 69763 && c <= 69807) + : c <= 69864) + : (c <= 69926 || c == 69956)) + : (c <= 69959 || (c < 70019 + ? (c < 70006 + ? (c >= 69968 && c <= 70002) + : c <= 70006) + : (c <= 70066 || (c >= 70081 && c <= 70084))))))) + : (c <= 70106 || (c < 70405 + ? (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70187 || (c >= 70272 && c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70366))))) + : (c <= 70412 || (c < 70453 + ? (c < 70442 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))) + : (c <= 70457 || (c < 70493 ? (c < 70480 ? c == 70461 : c <= 70480) - : (c <= 70497 || (c >= 70656 && c <= 70708))) - : (c <= 70730 || (c < 70852 + : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) + : (c <= 70730 || (c < 119894 + ? (c < 73056 + ? (c < 72001 + ? (c < 71424 + ? (c < 71128 + ? (c < 70852 ? (c < 70784 ? (c >= 70751 && c <= 70753) : c <= 70831) - : (c <= 70853 || c == 70855)))) - : (c <= 71086 || (c < 71352 - ? (c < 71236 - ? (c < 71168 - ? (c >= 71128 && c <= 71131) - : c <= 71215) - : (c <= 71236 || (c >= 71296 && c <= 71338))) - : (c <= 71352 || (c < 71840 + : (c <= 70853 || (c < 71040 + ? c == 70855 + : c <= 71086))) + : (c <= 71131 || (c < 71296 + ? (c < 71236 + ? (c >= 71168 && c <= 71215) + : c <= 71236) + : (c <= 71338 || c == 71352)))) + : (c <= 71450 || (c < 71945 + ? (c < 71840 ? (c < 71680 - ? (c >= 71424 && c <= 71450) + ? (c >= 71488 && c <= 71494) : c <= 71723) - : (c <= 71903 || (c >= 71935 && c <= 71942))))))) - : (c <= 71945 || (c < 72192 - ? (c < 72001 - ? (c < 71960 + : (c <= 71903 || (c >= 71935 && c <= 71942))) + : (c <= 71945 || (c < 71960 ? (c < 71957 ? (c >= 71948 && c <= 71955) : c <= 71958) - : (c <= 71983 || c == 71999)) - : (c <= 72001 || (c < 72161 + : (c <= 71983 || c == 71999)))))) + : (c <= 72001 || (c < 72349 + ? (c < 72192 + ? (c < 72161 ? (c < 72106 ? (c >= 72096 && c <= 72103) : c <= 72144) - : (c <= 72161 || c == 72163)))) - : (c <= 72192 || (c < 72349 - ? (c < 72272 + : (c <= 72161 || c == 72163)) + : (c <= 72192 || (c < 72272 ? (c < 72250 ? (c >= 72203 && c <= 72242) : c <= 72250) - : (c <= 72272 || (c >= 72284 && c <= 72329))) - : (c <= 72349 || (c < 72714 + : (c <= 72272 || (c >= 72284 && c <= 72329))))) + : (c <= 72349 || (c < 72818 + ? (c < 72714 ? (c < 72704 - ? (c >= 72384 && c <= 72440) + ? (c >= 72368 && c <= 72440) : c <= 72712) - : (c <= 72750 || c == 72768)))))))) - : (c <= 72847 || (c < 92992 - ? (c < 73648 - ? (c < 73056 - ? (c < 72971 + : (c <= 72750 || c == 72768)) + : (c <= 72847 || (c < 72971 ? (c < 72968 ? (c >= 72960 && c <= 72966) : c <= 72969) - : (c <= 73008 || c == 73030)) - : (c <= 73061 || (c < 73112 + : (c <= 73008 || c == 73030)))))))) + : (c <= 73061 || (c < 93952 + ? (c < 82944 + ? (c < 73728 + ? (c < 73112 ? (c < 73066 ? (c >= 73063 && c <= 73064) : c <= 73097) - : (c <= 73112 || (c >= 73440 && c <= 73458))))) - : (c <= 73648 || (c < 82944 - ? (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c >= 77824 && c <= 78894))) - : (c <= 83526 || (c < 92880 + : (c <= 73112 || (c < 73648 + ? (c >= 73440 && c <= 73458) + : c <= 73648))) + : (c <= 74649 || (c < 77712 + ? (c < 74880 + ? (c >= 74752 && c <= 74862) + : c <= 75075) + : (c <= 77808 || (c >= 77824 && c <= 78894))))) + : (c <= 83526 || (c < 92928 + ? (c < 92784 ? (c < 92736 ? (c >= 92160 && c <= 92728) : c <= 92766) - : (c <= 92909 || (c >= 92928 && c <= 92975))))))) - : (c <= 92995 || (c < 100352 - ? (c < 94032 - ? (c < 93760 - ? (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071) - : (c <= 93823 || (c >= 93952 && c <= 94026))) - : (c <= 94032 || (c < 94179 - ? (c < 94176 - ? (c >= 94099 && c <= 94111) - : c <= 94177) - : (c <= 94179 || (c >= 94208 && c <= 100343))))) - : (c <= 101589 || (c < 110960 - ? (c < 110928 - ? (c < 110592 - ? (c >= 101632 && c <= 101640) - : c <= 110878) - : (c <= 110930 || (c >= 110948 && c <= 110951))) - : (c <= 111355 || (c < 113776 - ? (c >= 113664 && c <= 113770) - : (c <= 113788 || (c >= 113792 && c <= 113800))))))))))) - : (c <= 113817 || (c < 126469 - ? (c < 120488 - ? (c < 120005 - ? (c < 119973 - ? (c < 119966 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : c <= 119964) - : (c <= 119967 || c == 119970)) - : (c <= 119974 || (c < 119995 - ? (c < 119982 + : (c <= 92862 || (c >= 92880 && c <= 92909))) + : (c <= 92975 || (c < 93053 + ? (c < 93027 + ? (c >= 92992 && c <= 92995) + : c <= 93047) + : (c <= 93071 || (c >= 93760 && c <= 93823))))))) + : (c <= 94026 || (c < 110589 + ? (c < 94208 + ? (c < 94176 + ? (c < 94099 + ? c == 94032 + : c <= 94111) + : (c <= 94177 || c == 94179)) + : (c <= 100343 || (c < 110576 + ? (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640) + : (c <= 110579 || (c >= 110581 && c <= 110587))))) + : (c <= 110590 || (c < 113664 + ? (c < 110948 + ? (c < 110928 + ? (c >= 110592 && c <= 110882) + : c <= 110930) + : (c <= 110951 || (c >= 110960 && c <= 111355))) + : (c <= 113770 || (c < 113808 + ? (c < 113792 + ? (c >= 113776 && c <= 113788) + : c <= 113800) + : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 125259 + ? (c < 120572 + ? (c < 120086 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c >= 119997 && c <= 120003))))) - : (c <= 120069 || (c < 120123 - ? (c < 120086 - ? (c < 120077 - ? (c >= 120071 && c <= 120074) - : c <= 120084) - : (c <= 120092 || (c >= 120094 && c <= 120121))) - : (c <= 120126 || (c < 120138 - ? (c < 120134 - ? (c >= 120128 && c <= 120132) - : c <= 120134) - : (c <= 120144 || (c >= 120146 && c <= 120485))))))) - : (c <= 120512 || (c < 120772 - ? (c < 120630 - ? (c < 120572 - ? (c < 120540 - ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))) - : (c <= 120654 || (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c >= 120746 && c <= 120770))))) - : (c <= 120779 || (c < 124928 - ? (c < 123214 - ? (c < 123191 - ? (c >= 123136 && c <= 123180) - : c <= 123197) - : (c <= 123214 || (c >= 123584 && c <= 123627))) - : (c <= 125124 || (c < 125259 - ? (c >= 125184 && c <= 125251) - : (c <= 125259 || (c >= 126464 && c <= 126467))))))))) - : (c <= 126495 || (c < 126561 - ? (c < 126537 - ? (c < 126516 - ? (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c >= 126505 && c <= 126514))) - : (c <= 126519 || (c < 126530 - ? (c < 126523 - ? c == 126521 - : c <= 126523) - : (c <= 126530 || c == 126535)))) - : (c <= 126537 || (c < 126551 - ? (c < 126545 - ? (c < 126541 - ? c == 126539 - : c <= 126543) - : (c <= 126546 || c == 126548)) - : (c <= 126551 || (c < 126557 - ? (c < 126555 - ? c == 126553 - : c <= 126555) - : (c <= 126557 || c == 126559)))))) - : (c <= 126562 || (c < 126629 - ? (c < 126585 - ? (c < 126572 - ? (c < 126567 - ? c == 126564 - : c <= 126570) - : (c <= 126578 || (c >= 126580 && c <= 126583))) - : (c <= 126588 || (c < 126603 - ? (c < 126592 - ? c == 126590 - : c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 173824 - ? (c < 131072 - ? (c >= 126635 && c <= 126651) - : c <= 173789) - : (c <= 177972 || (c >= 177984 && c <= 178205))) - : (c <= 183969 || (c < 194560 - ? (c >= 183984 && c <= 191456) + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069) + : (c <= 120074 || (c >= 120077 && c <= 120084))))) + : (c <= 120092 || (c < 120138 + ? (c < 120128 + ? (c < 120123 + ? (c >= 120094 && c <= 120121) + : c <= 120126) + : (c <= 120132 || c == 120134)) + : (c <= 120144 || (c < 120514 + ? (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512) + : (c <= 120538 || (c >= 120540 && c <= 120570))))))) + : (c <= 120596 || (c < 123191 + ? (c < 120714 + ? (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c >= 120688 && c <= 120712))) + : (c <= 120744 || (c < 122624 + ? (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779) + : (c <= 122654 || (c >= 123136 && c <= 123180))))) + : (c <= 123197 || (c < 124904 + ? (c < 123584 + ? (c < 123536 + ? c == 123214 + : c <= 123565) + : (c <= 123627 || (c >= 124896 && c <= 124902))) + : (c <= 124907 || (c < 124928 + ? (c < 124912 + ? (c >= 124909 && c <= 124910) + : c <= 124926) + : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) + : (c <= 125259 || (c < 126559 + ? (c < 126535 + ? (c < 126505 + ? (c < 126497 + ? (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495) + : (c <= 126498 || (c < 126503 + ? c == 126500 + : c <= 126503))) + : (c <= 126514 || (c < 126523 + ? (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521) + : (c <= 126523 || c == 126530)))) + : (c <= 126535 || (c < 126548 + ? (c < 126541 + ? (c < 126539 + ? c == 126537 + : c <= 126539) + : (c <= 126543 || (c >= 126545 && c <= 126546))) + : (c <= 126548 || (c < 126555 + ? (c < 126553 + ? c == 126551 + : c <= 126553) + : (c <= 126555 || c == 126557)))))) + : (c <= 126559 || (c < 126625 + ? (c < 126580 + ? (c < 126567 + ? (c < 126564 + ? (c >= 126561 && c <= 126562) + : c <= 126564) + : (c <= 126570 || (c >= 126572 && c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c >= 126603 && c <= 126619))))) + : (c <= 126627 || (c < 177984 + ? (c < 131072 + ? (c < 126635 + ? (c >= 126629 && c <= 126633) + : c <= 126651) + : (c <= 173791 || (c >= 173824 && c <= 177976))) + : (c <= 178205 || (c < 194560 + ? (c < 183984 + ? (c >= 178208 && c <= 183969) + : c <= 191456) : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } static inline bool sym_identifier_character_set_4(int32_t c) { - return (c < 43072 - ? (c < 3724 - ? (c < 2738 - ? (c < 2045 - ? (c < 1155 + return (c < 43642 + ? (c < 3792 + ? (c < 2763 + ? (c < 2112 + ? (c < 1162 ? (c < 748 ? (c < 186 ? (c < 170 @@ -5819,367 +5975,373 @@ static inline bool sym_identifier_character_set_4(int32_t c) { ? (c < 910 ? c == 908 : c <= 929) - : (c <= 1013 || (c >= 1015 && c <= 1153))))))) - : (c <= 1159 || (c < 1552 - ? (c < 1471 - ? (c < 1369 - ? (c < 1329 - ? (c >= 1162 && c <= 1327) - : c <= 1366) - : (c <= 1369 || (c < 1425 - ? (c >= 1376 && c <= 1416) - : c <= 1469))) - : (c <= 1471 || (c < 1479 - ? (c < 1476 - ? (c >= 1473 && c <= 1474) - : c <= 1477) - : (c <= 1479 || (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522))))) - : (c <= 1562 || (c < 1791 - ? (c < 1749 - ? (c < 1646 - ? (c >= 1568 && c <= 1641) - : c <= 1747) - : (c <= 1756 || (c < 1770 - ? (c >= 1759 && c <= 1768) - : c <= 1788))) - : (c <= 1791 || (c < 1984 - ? (c < 1869 - ? (c >= 1808 && c <= 1866) - : c <= 1969) - : (c <= 2037 || c == 2042)))))))) - : (c <= 2045 || (c < 2556 - ? (c < 2451 - ? (c < 2259 - ? (c < 2144 - ? (c < 2112 - ? (c >= 2048 && c <= 2093) - : c <= 2139) - : (c <= 2154 || (c < 2230 - ? (c >= 2208 && c <= 2228) - : c <= 2247))) - : (c <= 2273 || (c < 2417 - ? (c < 2406 - ? (c >= 2275 && c <= 2403) - : c <= 2415) - : (c <= 2435 || (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448))))) - : (c <= 2472 || (c < 2507 - ? (c < 2486 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482) - : (c <= 2489 || (c < 2503 - ? (c >= 2492 && c <= 2500) - : c <= 2504))) - : (c <= 2510 || (c < 2527 - ? (c < 2524 - ? c == 2519 - : c <= 2525) - : (c <= 2531 || (c >= 2534 && c <= 2545))))))) - : (c <= 2556 || (c < 2631 - ? (c < 2602 - ? (c < 2565 - ? (c < 2561 + : (c <= 1013 || (c < 1155 + ? (c >= 1015 && c <= 1153) + : c <= 1159))))))) + : (c <= 1327 || (c < 1568 + ? (c < 1473 + ? (c < 1376 + ? (c < 1369 + ? (c >= 1329 && c <= 1366) + : c <= 1369) + : (c <= 1416 || (c < 1471 + ? (c >= 1425 && c <= 1469) + : c <= 1471))) + : (c <= 1474 || (c < 1488 + ? (c < 1479 + ? (c >= 1476 && c <= 1477) + : c <= 1479) + : (c <= 1514 || (c < 1552 + ? (c >= 1519 && c <= 1522) + : c <= 1562))))) + : (c <= 1641 || (c < 1808 + ? (c < 1759 + ? (c < 1749 + ? (c >= 1646 && c <= 1747) + : c <= 1756) + : (c <= 1768 || (c < 1791 + ? (c >= 1770 && c <= 1788) + : c <= 1791))) + : (c <= 1866 || (c < 2042 + ? (c < 1984 + ? (c >= 1869 && c <= 1969) + : c <= 2037) + : (c <= 2042 || (c < 2048 + ? c == 2045 + : c <= 2093))))))))) + : (c <= 2139 || (c < 2565 + ? (c < 2482 + ? (c < 2406 + ? (c < 2185 + ? (c < 2160 + ? (c >= 2144 && c <= 2154) + : c <= 2183) + : (c <= 2190 || (c < 2275 + ? (c >= 2200 && c <= 2273) + : c <= 2403))) + : (c <= 2415 || (c < 2447 + ? (c < 2437 + ? (c >= 2417 && c <= 2435) + : c <= 2444) + : (c <= 2448 || (c < 2474 + ? (c >= 2451 && c <= 2472) + : c <= 2480))))) + : (c <= 2482 || (c < 2524 + ? (c < 2503 + ? (c < 2492 + ? (c >= 2486 && c <= 2489) + : c <= 2500) + : (c <= 2504 || (c < 2519 + ? (c >= 2507 && c <= 2510) + : c <= 2519))) + : (c <= 2525 || (c < 2556 + ? (c < 2534 + ? (c >= 2527 && c <= 2531) + : c <= 2545) + : (c <= 2556 || (c < 2561 ? c == 2558 - : c <= 2563) - : (c <= 2570 || (c < 2579 + : c <= 2563))))))) + : (c <= 2570 || (c < 2649 + ? (c < 2616 + ? (c < 2602 + ? (c < 2579 ? (c >= 2575 && c <= 2576) - : c <= 2600))) - : (c <= 2608 || (c < 2616 - ? (c < 2613 + : c <= 2600) + : (c <= 2608 || (c < 2613 ? (c >= 2610 && c <= 2611) - : c <= 2614) - : (c <= 2617 || (c < 2622 + : c <= 2614))) + : (c <= 2617 || (c < 2631 + ? (c < 2622 ? c == 2620 - : c <= 2626))))) - : (c <= 2632 || (c < 2689 - ? (c < 2649 - ? (c < 2641 + : c <= 2626) + : (c <= 2632 || (c < 2641 ? (c >= 2635 && c <= 2637) - : c <= 2641) - : (c <= 2652 || (c < 2662 + : c <= 2641))))) + : (c <= 2652 || (c < 2707 + ? (c < 2689 + ? (c < 2662 ? c == 2654 - : c <= 2677))) - : (c <= 2691 || (c < 2707 - ? (c < 2703 + : c <= 2677) + : (c <= 2691 || (c < 2703 ? (c >= 2693 && c <= 2701) - : c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))))))))))) - : (c <= 2739 || (c < 3146 - ? (c < 2929 - ? (c < 2835 - ? (c < 2784 - ? (c < 2759 - ? (c < 2748 - ? (c >= 2741 && c <= 2745) - : c <= 2757) - : (c <= 2761 || (c < 2768 - ? (c >= 2763 && c <= 2765) - : c <= 2768))) - : (c <= 2787 || (c < 2817 - ? (c < 2809 - ? (c >= 2790 && c <= 2799) - : c <= 2815) - : (c <= 2819 || (c < 2831 - ? (c >= 2821 && c <= 2828) - : c <= 2832))))) - : (c <= 2856 || (c < 2891 - ? (c < 2869 - ? (c < 2866 - ? (c >= 2858 && c <= 2864) - : c <= 2867) - : (c <= 2873 || (c < 2887 - ? (c >= 2876 && c <= 2884) - : c <= 2888))) - : (c <= 2893 || (c < 2911 - ? (c < 2908 - ? (c >= 2901 && c <= 2903) - : c <= 2909) - : (c <= 2915 || (c >= 2918 && c <= 2927))))))) - : (c <= 2929 || (c < 3014 - ? (c < 2972 - ? (c < 2958 - ? (c < 2949 - ? (c >= 2946 && c <= 2947) - : c <= 2954) - : (c <= 2960 || (c < 2969 - ? (c >= 2962 && c <= 2965) - : c <= 2970))) - : (c <= 2972 || (c < 2984 - ? (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980) - : (c <= 2986 || (c < 3006 - ? (c >= 2990 && c <= 3001) - : c <= 3010))))) - : (c <= 3016 || (c < 3086 - ? (c < 3031 - ? (c < 3024 - ? (c >= 3018 && c <= 3021) - : c <= 3024) - : (c <= 3031 || (c < 3072 - ? (c >= 3046 && c <= 3055) - : c <= 3084))) - : (c <= 3088 || (c < 3133 - ? (c < 3114 - ? (c >= 3090 && c <= 3112) - : c <= 3129) - : (c <= 3140 || (c >= 3142 && c <= 3144))))))))) - : (c <= 3149 || (c < 3402 - ? (c < 3270 - ? (c < 3205 - ? (c < 3168 + : c <= 2705))) + : (c <= 2728 || (c < 2741 + ? (c < 2738 + ? (c >= 2730 && c <= 2736) + : c <= 2739) + : (c <= 2745 || (c < 2759 + ? (c >= 2748 && c <= 2757) + : c <= 2761))))))))))) + : (c <= 2765 || (c < 3200 + ? (c < 2969 + ? (c < 2876 + ? (c < 2821 + ? (c < 2790 + ? (c < 2784 + ? c == 2768 + : c <= 2787) + : (c <= 2799 || (c < 2817 + ? (c >= 2809 && c <= 2815) + : c <= 2819))) + : (c <= 2828 || (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873))))) + : (c <= 2884 || (c < 2918 + ? (c < 2901 + ? (c < 2891 + ? (c >= 2887 && c <= 2888) + : c <= 2893) + : (c <= 2903 || (c < 2911 + ? (c >= 2908 && c <= 2909) + : c <= 2915))) + : (c <= 2927 || (c < 2949 + ? (c < 2946 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c < 2962 + ? (c >= 2958 && c <= 2960) + : c <= 2965))))))) + : (c <= 2970 || (c < 3072 + ? (c < 3006 + ? (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))) + : (c <= 3010 || (c < 3024 + ? (c < 3018 + ? (c >= 3014 && c <= 3016) + : c <= 3021) + : (c <= 3024 || (c < 3046 + ? c == 3031 + : c <= 3055))))) + : (c <= 3084 || (c < 3146 + ? (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || (c < 3142 + ? (c >= 3132 && c <= 3140) + : c <= 3144))) + : (c <= 3149 || (c < 3165 ? (c < 3160 ? (c >= 3157 && c <= 3158) : c <= 3162) - : (c <= 3171 || (c < 3200 - ? (c >= 3174 && c <= 3183) - : c <= 3203))) - : (c <= 3212 || (c < 3242 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240) - : (c <= 3251 || (c < 3260 - ? (c >= 3253 && c <= 3257) - : c <= 3268))))) - : (c <= 3272 || (c < 3313 - ? (c < 3294 - ? (c < 3285 - ? (c >= 3274 && c <= 3277) - : c <= 3286) - : (c <= 3294 || (c < 3302 - ? (c >= 3296 && c <= 3299) - : c <= 3311))) - : (c <= 3314 || (c < 3346 - ? (c < 3342 - ? (c >= 3328 && c <= 3340) - : c <= 3344) - : (c <= 3396 || (c >= 3398 && c <= 3400))))))) - : (c <= 3406 || (c < 3535 - ? (c < 3461 - ? (c < 3430 + : (c <= 3165 || (c < 3174 + ? (c >= 3168 && c <= 3171) + : c <= 3183))))))))) + : (c <= 3203 || (c < 3461 + ? (c < 3302 + ? (c < 3260 + ? (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257))) + : (c <= 3268 || (c < 3285 + ? (c < 3274 + ? (c >= 3270 && c <= 3272) + : c <= 3277) + : (c <= 3286 || (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3299))))) + : (c <= 3311 || (c < 3402 + ? (c < 3342 + ? (c < 3328 + ? (c >= 3313 && c <= 3314) + : c <= 3340) + : (c <= 3344 || (c < 3398 + ? (c >= 3346 && c <= 3396) + : c <= 3400))) + : (c <= 3406 || (c < 3430 ? (c < 3423 ? (c >= 3412 && c <= 3415) : c <= 3427) : (c <= 3439 || (c < 3457 ? (c >= 3450 && c <= 3455) - : c <= 3459))) - : (c <= 3478 || (c < 3517 + : c <= 3459))))))) + : (c <= 3478 || (c < 3648 + ? (c < 3535 + ? (c < 3517 ? (c < 3507 ? (c >= 3482 && c <= 3505) : c <= 3515) : (c <= 3517 || (c < 3530 ? (c >= 3520 && c <= 3526) - : c <= 3530))))) - : (c <= 3540 || (c < 3648 - ? (c < 3558 + : c <= 3530))) + : (c <= 3540 || (c < 3558 ? (c < 3544 ? c == 3542 : c <= 3551) : (c <= 3567 || (c < 3585 ? (c >= 3570 && c <= 3571) - : c <= 3642))) - : (c <= 3662 || (c < 3716 + : c <= 3642))))) + : (c <= 3662 || (c < 3749 + ? (c < 3716 ? (c < 3713 ? (c >= 3664 && c <= 3673) : c <= 3714) - : (c <= 3716 || (c >= 3718 && c <= 3722))))))))))))) - : (c <= 3747 || (c < 7312 - ? (c < 5112 - ? (c < 4295 - ? (c < 3895 - ? (c < 3792 - ? (c < 3776 - ? (c < 3751 - ? c == 3749 - : c <= 3773) - : (c <= 3780 || (c < 3784 - ? c == 3782 - : c <= 3789))) - : (c <= 3801 || (c < 3864 + : (c <= 3716 || (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747))) + : (c <= 3749 || (c < 3782 + ? (c < 3776 + ? (c >= 3751 && c <= 3773) + : c <= 3780) + : (c <= 3782 || (c >= 3784 && c <= 3789))))))))))))) + : (c <= 3801 || (c < 8027 + ? (c < 5952 + ? (c < 4698 + ? (c < 3993 + ? (c < 3895 + ? (c < 3864 ? (c < 3840 ? (c >= 3804 && c <= 3807) : c <= 3840) : (c <= 3865 || (c < 3893 ? (c >= 3872 && c <= 3881) - : c <= 3893))))) - : (c <= 3895 || (c < 3993 - ? (c < 3913 + : c <= 3893))) + : (c <= 3895 || (c < 3913 ? (c < 3902 ? c == 3897 : c <= 3911) : (c <= 3948 || (c < 3974 ? (c >= 3953 && c <= 3972) - : c <= 3991))) - : (c <= 4028 || (c < 4176 + : c <= 3991))))) + : (c <= 4028 || (c < 4301 + ? (c < 4176 ? (c < 4096 ? c == 4038 : c <= 4169) - : (c <= 4253 || (c >= 4256 && c <= 4293))))))) - : (c <= 4295 || (c < 4792 - ? (c < 4696 - ? (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c < 4688 - ? (c >= 4682 && c <= 4685) - : c <= 4694))) - : (c <= 4696 || (c < 4746 - ? (c < 4704 - ? (c >= 4698 && c <= 4701) - : c <= 4744) - : (c <= 4749 || (c < 4786 - ? (c >= 4752 && c <= 4784) - : c <= 4789))))) - : (c <= 4798 || (c < 4888 - ? (c < 4808 - ? (c < 4802 - ? c == 4800 - : c <= 4805) - : (c <= 4822 || (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885))) - : (c <= 4954 || (c < 4992 - ? (c < 4969 - ? (c >= 4957 && c <= 4959) - : c <= 4977) - : (c <= 5007 || (c >= 5024 && c <= 5109))))))))) - : (c <= 5117 || (c < 6432 - ? (c < 6002 - ? (c < 5888 - ? (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880))) - : (c <= 5900 || (c < 5952 - ? (c < 5920 - ? (c >= 5902 && c <= 5908) - : c <= 5940) - : (c <= 5971 || (c < 5998 + : (c <= 4253 || (c < 4295 + ? (c >= 4256 && c <= 4293) + : c <= 4295))) + : (c <= 4301 || (c < 4682 + ? (c < 4348 + ? (c >= 4304 && c <= 4346) + : c <= 4680) + : (c <= 4685 || (c < 4696 + ? (c >= 4688 && c <= 4694) + : c <= 4696))))))) + : (c <= 4701 || (c < 4957 + ? (c < 4800 + ? (c < 4752 + ? (c < 4746 + ? (c >= 4704 && c <= 4744) + : c <= 4749) + : (c <= 4784 || (c < 4792 + ? (c >= 4786 && c <= 4789) + : c <= 4798))) + : (c <= 4800 || (c < 4824 + ? (c < 4808 + ? (c >= 4802 && c <= 4805) + : c <= 4822) + : (c <= 4880 || (c < 4888 + ? (c >= 4882 && c <= 4885) + : c <= 4954))))) + : (c <= 4959 || (c < 5743 + ? (c < 5024 + ? (c < 4992 + ? (c >= 4969 && c <= 4977) + : c <= 5007) + : (c <= 5109 || (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740))) + : (c <= 5759 || (c < 5870 + ? (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866) + : (c <= 5880 || (c < 5919 + ? (c >= 5888 && c <= 5909) + : c <= 5940))))))))) + : (c <= 5971 || (c < 6783 + ? (c < 6320 + ? (c < 6108 + ? (c < 6002 + ? (c < 5998 ? (c >= 5984 && c <= 5996) - : c <= 6000))))) - : (c <= 6003 || (c < 6160 - ? (c < 6108 - ? (c < 6103 + : c <= 6000) + : (c <= 6003 || (c < 6103 ? (c >= 6016 && c <= 6099) - : c <= 6103) - : (c <= 6109 || (c < 6155 + : c <= 6103))) + : (c <= 6109 || (c < 6159 + ? (c < 6155 ? (c >= 6112 && c <= 6121) - : c <= 6157))) - : (c <= 6169 || (c < 6320 - ? (c < 6272 + : c <= 6157) + : (c <= 6169 || (c < 6272 ? (c >= 6176 && c <= 6264) - : c <= 6314) - : (c <= 6389 || (c >= 6400 && c <= 6430))))))) - : (c <= 6443 || (c < 6823 - ? (c < 6608 - ? (c < 6512 - ? (c < 6470 - ? (c >= 6448 && c <= 6459) - : c <= 6509) - : (c <= 6516 || (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601))) - : (c <= 6618 || (c < 6752 - ? (c < 6688 - ? (c >= 6656 && c <= 6683) - : c <= 6750) - : (c <= 6780 || (c < 6800 - ? (c >= 6783 && c <= 6793) - : c <= 6809))))) - : (c <= 6823 || (c < 7040 - ? (c < 6912 - ? (c < 6847 - ? (c >= 6832 && c <= 6845) - : c <= 6848) - : (c <= 6987 || (c < 7019 - ? (c >= 6992 && c <= 7001) - : c <= 7027))) - : (c <= 7155 || (c < 7245 - ? (c < 7232 - ? (c >= 7168 && c <= 7223) - : c <= 7241) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))))))) - : (c <= 7354 || (c < 11312 - ? (c < 8182 - ? (c < 8029 - ? (c < 7960 - ? (c < 7380 - ? (c < 7376 - ? (c >= 7357 && c <= 7359) - : c <= 7378) - : (c <= 7418 || (c < 7675 - ? (c >= 7424 && c <= 7673) + : c <= 6314))))) + : (c <= 6389 || (c < 6528 + ? (c < 6448 + ? (c < 6432 + ? (c >= 6400 && c <= 6430) + : c <= 6443) + : (c <= 6459 || (c < 6512 + ? (c >= 6470 && c <= 6509) + : c <= 6516))) + : (c <= 6571 || (c < 6656 + ? (c < 6608 + ? (c >= 6576 && c <= 6601) + : c <= 6618) + : (c <= 6683 || (c < 6752 + ? (c >= 6688 && c <= 6750) + : c <= 6780))))))) + : (c <= 6793 || (c < 7296 + ? (c < 6992 + ? (c < 6832 + ? (c < 6823 + ? (c >= 6800 && c <= 6809) + : c <= 6823) + : (c <= 6845 || (c < 6912 + ? (c >= 6847 && c <= 6862) + : c <= 6988))) + : (c <= 7001 || (c < 7168 + ? (c < 7040 + ? (c >= 7019 && c <= 7027) + : c <= 7155) + : (c <= 7223 || (c < 7245 + ? (c >= 7232 && c <= 7241) + : c <= 7293))))) + : (c <= 7304 || (c < 7960 + ? (c < 7376 + ? (c < 7357 + ? (c >= 7312 && c <= 7354) + : c <= 7359) + : (c <= 7378 || (c < 7424 + ? (c >= 7380 && c <= 7418) : c <= 7957))) : (c <= 7965 || (c < 8016 ? (c < 8008 ? (c >= 7968 && c <= 8005) : c <= 8013) - : (c <= 8023 || (c < 8027 - ? c == 8025 - : c <= 8027))))) - : (c <= 8029 || (c < 8134 - ? (c < 8118 - ? (c < 8064 - ? (c >= 8031 && c <= 8061) - : c <= 8116) - : (c <= 8124 || (c < 8130 - ? c == 8126 - : c <= 8132))) - : (c <= 8140 || (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c >= 8178 && c <= 8180))))))) - : (c <= 8188 || (c < 8469 - ? (c < 8400 + : (c <= 8023 || c == 8025)))))))))) + : (c <= 8027 || (c < 11728 + ? (c < 8469 + ? (c < 8182 + ? (c < 8130 + ? (c < 8064 + ? (c < 8031 + ? c == 8029 + : c <= 8061) + : (c <= 8116 || (c < 8126 + ? (c >= 8118 && c <= 8124) + : c <= 8126))) + : (c <= 8132 || (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c < 8178 + ? (c >= 8160 && c <= 8172) + : c <= 8180))))) + : (c <= 8188 || (c < 8400 ? (c < 8305 ? (c < 8276 ? (c >= 8255 && c <= 8256) @@ -6193,8 +6355,9 @@ static inline bool sym_identifier_character_set_4(int32_t c) { : c <= 8432) : (c <= 8450 || (c < 8458 ? c == 8455 - : c <= 8467))))) - : (c <= 8469 || (c < 8508 + : c <= 8467))))))) + : (c <= 8469 || (c < 11520 + ? (c < 8508 ? (c < 8486 ? (c < 8484 ? (c >= 8472 && c <= 8477) @@ -6206,516 +6369,561 @@ static inline bool sym_identifier_character_set_4(int32_t c) { ? (c < 8526 ? (c >= 8517 && c <= 8521) : c <= 8526) - : (c <= 8584 || (c >= 11264 && c <= 11310))))))))) - : (c <= 11358 || (c < 12441 - ? (c < 11704 - ? (c < 11568 - ? (c < 11520 - ? (c < 11499 - ? (c >= 11360 && c <= 11492) - : c <= 11507) - : (c <= 11557 || (c < 11565 + : (c <= 8584 || (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11507))))) + : (c <= 11557 || (c < 11680 + ? (c < 11568 + ? (c < 11565 ? c == 11559 - : c <= 11565))) - : (c <= 11623 || (c < 11680 - ? (c < 11647 + : c <= 11565) + : (c <= 11623 || (c < 11647 ? c == 11631 - : c <= 11670) - : (c <= 11686 || (c < 11696 + : c <= 11670))) + : (c <= 11686 || (c < 11704 + ? (c < 11696 ? (c >= 11688 && c <= 11694) - : c <= 11702))))) - : (c <= 11710 || (c < 12293 - ? (c < 11728 - ? (c < 11720 + : c <= 11702) + : (c <= 11710 || (c < 11720 ? (c >= 11712 && c <= 11718) - : c <= 11726) - : (c <= 11734 || (c < 11744 + : c <= 11726))))))))) + : (c <= 11734 || (c < 42775 + ? (c < 12549 + ? (c < 12344 + ? (c < 12293 + ? (c < 11744 ? (c >= 11736 && c <= 11742) - : c <= 11775))) - : (c <= 12295 || (c < 12344 - ? (c < 12337 + : c <= 11775) + : (c <= 12295 || (c < 12337 ? (c >= 12321 && c <= 12335) - : c <= 12341) - : (c <= 12348 || (c >= 12353 && c <= 12438))))))) - : (c <= 12442 || (c < 42240 - ? (c < 12704 - ? (c < 12540 - ? (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538) - : (c <= 12543 || (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686))) - : (c <= 12735 || (c < 19968 - ? (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903) - : (c <= 40956 || (c < 42192 - ? (c >= 40960 && c <= 42124) - : c <= 42237))))) - : (c <= 42508 || (c < 42786 - ? (c < 42612 - ? (c < 42560 - ? (c >= 42512 && c <= 42539) - : c <= 42607) - : (c <= 42621 || (c < 42775 - ? (c >= 42623 && c <= 42737) - : c <= 42783))) - : (c <= 42888 || (c < 42997 - ? (c < 42946 - ? (c >= 42891 && c <= 42943) + : c <= 12341))) + : (c <= 12348 || (c < 12445 + ? (c < 12441 + ? (c >= 12353 && c <= 12438) + : c <= 12442) + : (c <= 12447 || (c < 12540 + ? (c >= 12449 && c <= 12538) + : c <= 12543))))) + : (c <= 12591 || (c < 42192 + ? (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c < 19968 + ? (c >= 13312 && c <= 19903) + : c <= 42124))) + : (c <= 42237 || (c < 42560 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42539) + : (c <= 42607 || (c < 42623 + ? (c >= 42612 && c <= 42621) + : c <= 42737))))))) + : (c <= 42783 || (c < 43259 + ? (c < 42994 + ? (c < 42960 + ? (c < 42891 + ? (c >= 42786 && c <= 42888) : c <= 42954) - : (c <= 43047 || c == 43052)))))))))))))) - : (c <= 43123 || (c < 71096 - ? (c < 66864 - ? (c < 64914 - ? (c < 43816 - ? (c < 43584 - ? (c < 43312 - ? (c < 43232 - ? (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225) - : (c <= 43255 || (c < 43261 - ? c == 43259 - : c <= 43309))) - : (c <= 43347 || (c < 43471 - ? (c < 43392 - ? (c >= 43360 && c <= 43388) - : c <= 43456) - : (c <= 43481 || (c < 43520 - ? (c >= 43488 && c <= 43518) - : c <= 43574))))) - : (c <= 43597 || (c < 43762 - ? (c < 43642 - ? (c < 43616 - ? (c >= 43600 && c <= 43609) - : c <= 43638) - : (c <= 43714 || (c < 43744 + : (c <= 42961 || (c < 42965 + ? c == 42963 + : c <= 42969))) + : (c <= 43047 || (c < 43136 + ? (c < 43072 + ? c == 43052 + : c <= 43123) + : (c <= 43205 || (c < 43232 + ? (c >= 43216 && c <= 43225) + : c <= 43255))))) + : (c <= 43259 || (c < 43488 + ? (c < 43360 + ? (c < 43312 + ? (c >= 43261 && c <= 43309) + : c <= 43347) + : (c <= 43388 || (c < 43471 + ? (c >= 43392 && c <= 43456) + : c <= 43481))) + : (c <= 43518 || (c < 43600 + ? (c < 43584 + ? (c >= 43520 && c <= 43574) + : c <= 43597) + : (c <= 43609 || (c >= 43616 && c <= 43638))))))))))))))) + : (c <= 43714 || (c < 71472 + ? (c < 67644 + ? (c < 65382 + ? (c < 64318 + ? (c < 44012 + ? (c < 43793 + ? (c < 43762 + ? (c < 43744 ? (c >= 43739 && c <= 43741) - : c <= 43759))) - : (c <= 43766 || (c < 43793 - ? (c < 43785 + : c <= 43759) + : (c <= 43766 || (c < 43785 ? (c >= 43777 && c <= 43782) - : c <= 43790) - : (c <= 43798 || (c >= 43808 && c <= 43814))))))) - : (c <= 43822 || (c < 64275 - ? (c < 44032 - ? (c < 43888 - ? (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881) - : (c <= 44010 || (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025))) - : (c <= 55203 || (c < 63744 - ? (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291) - : (c <= 64109 || (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262))))) - : (c <= 64279 || (c < 64323 - ? (c < 64312 - ? (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310) - : (c <= 64316 || (c < 64320 - ? c == 64318 - : c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65549 - ? (c < 65151 - ? (c < 65137 - ? (c < 65056 - ? (c < 65024 - ? (c >= 65008 && c <= 65017) - : c <= 65039) - : (c <= 65071 || (c < 65101 - ? (c >= 65075 && c <= 65076) - : c <= 65103))) - : (c <= 65137 || (c < 65145 - ? (c < 65143 - ? c == 65139 - : c <= 65143) - : (c <= 65145 || (c < 65149 - ? c == 65147 - : c <= 65149))))) - : (c <= 65276 || (c < 65474 - ? (c < 65343 - ? (c < 65313 - ? (c >= 65296 && c <= 65305) - : c <= 65338) - : (c <= 65343 || (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65470))) - : (c <= 65479 || (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c >= 65536 && c <= 65547))))))) - : (c <= 65574 || (c < 66349 - ? (c < 65856 - ? (c < 65599 + : c <= 43790))) + : (c <= 43798 || (c < 43824 + ? (c < 43816 + ? (c >= 43808 && c <= 43814) + : c <= 43822) + : (c <= 43866 || (c < 43888 + ? (c >= 43868 && c <= 43881) + : c <= 44010))))) + : (c <= 44013 || (c < 64112 + ? (c < 55216 + ? (c < 44032 + ? (c >= 44016 && c <= 44025) + : c <= 55203) + : (c <= 55238 || (c < 63744 + ? (c >= 55243 && c <= 55291) + : c <= 64109))) + : (c <= 64217 || (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64296 || (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316))))))) + : (c <= 64318 || (c < 65101 + ? (c < 64848 + ? (c < 64326 + ? (c < 64323 + ? (c >= 64320 && c <= 64321) + : c <= 64324) + : (c <= 64433 || (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829))) + : (c <= 64911 || (c < 65024 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65017) + : (c <= 65039 || (c < 65075 + ? (c >= 65056 && c <= 65071) + : c <= 65076))))) + : (c <= 65103 || (c < 65149 + ? (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || (c < 65147 + ? c == 65145 + : c <= 65147))) + : (c <= 65149 || (c < 65313 + ? (c < 65296 + ? (c >= 65151 && c <= 65276) + : c <= 65305) + : (c <= 65338 || (c < 65345 + ? c == 65343 + : c <= 65370))))))))) + : (c <= 65470 || (c < 66560 + ? (c < 65856 + ? (c < 65549 + ? (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c < 65536 + ? (c >= 65498 && c <= 65500) + : c <= 65547))) + : (c <= 65574 || (c < 65599 ? (c < 65596 ? (c >= 65576 && c <= 65594) : c <= 65597) : (c <= 65613 || (c < 65664 ? (c >= 65616 && c <= 65629) - : c <= 65786))) - : (c <= 65908 || (c < 66208 + : c <= 65786))))) + : (c <= 65908 || (c < 66349 + ? (c < 66208 ? (c < 66176 ? c == 66045 : c <= 66204) : (c <= 66256 || (c < 66304 ? c == 66272 - : c <= 66335))))) - : (c <= 66378 || (c < 66560 - ? (c < 66464 + : c <= 66335))) + : (c <= 66378 || (c < 66464 ? (c < 66432 ? (c >= 66384 && c <= 66426) : c <= 66461) : (c <= 66499 || (c < 66513 ? (c >= 66504 && c <= 66511) - : c <= 66517))) - : (c <= 66717 || (c < 66776 + : c <= 66517))))))) + : (c <= 66717 || (c < 66995 + ? (c < 66928 + ? (c < 66776 ? (c < 66736 ? (c >= 66720 && c <= 66729) : c <= 66771) - : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) - : (c <= 66915 || (c < 69632 - ? (c < 68152 - ? (c < 67808 - ? (c < 67594 - ? (c < 67424 - ? (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413) - : (c <= 67431 || (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592))) - : (c <= 67637 || (c < 67647 - ? (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644) - : (c <= 67669 || (c < 67712 - ? (c >= 67680 && c <= 67702) - : c <= 67742))))) - : (c <= 67826 || (c < 68096 - ? (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031))) - : (c <= 68099 || (c < 68117 - ? (c < 68108 - ? (c >= 68101 && c <= 68102) - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))))))) - : (c <= 68154 || (c < 68800 - ? (c < 68352 - ? (c < 68224 - ? (c < 68192 + : (c <= 66811 || (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915))) + : (c <= 66938 || (c < 66964 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : c <= 66962) + : (c <= 66965 || (c < 66979 + ? (c >= 66967 && c <= 66977) + : c <= 66993))))) + : (c <= 67001 || (c < 67463 + ? (c < 67392 + ? (c < 67072 + ? (c >= 67003 && c <= 67004) + : c <= 67382) + : (c <= 67413 || (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461))) + : (c <= 67504 || (c < 67592 + ? (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589) + : (c <= 67592 || (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640))))))))))) + : (c <= 67644 || (c < 69968 + ? (c < 68480 + ? (c < 68108 + ? (c < 67840 + ? (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c < 67828 + ? (c >= 67808 && c <= 67826) + : c <= 67829))) + : (c <= 67861 || (c < 68030 + ? (c < 67968 + ? (c >= 67872 && c <= 67897) + : c <= 68023) + : (c <= 68031 || (c < 68101 + ? (c >= 68096 && c <= 68099) + : c <= 68102))))) + : (c <= 68115 || (c < 68224 + ? (c < 68152 + ? (c < 68121 + ? (c >= 68117 && c <= 68119) + : c <= 68149) + : (c <= 68154 || (c < 68192 ? c == 68159 - : c <= 68220) - : (c <= 68252 || (c < 68297 + : c <= 68220))) + : (c <= 68252 || (c < 68352 + ? (c < 68297 ? (c >= 68288 && c <= 68295) - : c <= 68326))) - : (c <= 68405 || (c < 68480 - ? (c < 68448 + : c <= 68326) + : (c <= 68405 || (c < 68448 ? (c >= 68416 && c <= 68437) - : c <= 68466) - : (c <= 68497 || (c < 68736 + : c <= 68466))))))) + : (c <= 68497 || (c < 69488 + ? (c < 69248 + ? (c < 68800 + ? (c < 68736 ? (c >= 68608 && c <= 68680) - : c <= 68786))))) - : (c <= 68850 || (c < 69376 - ? (c < 69248 - ? (c < 68912 + : c <= 68786) + : (c <= 68850 || (c < 68912 ? (c >= 68864 && c <= 68903) - : c <= 68921) - : (c <= 69289 || (c < 69296 + : c <= 68921))) + : (c <= 69289 || (c < 69376 + ? (c < 69296 ? (c >= 69291 && c <= 69292) - : c <= 69297))) - : (c <= 69404 || (c < 69552 - ? (c < 69424 + : c <= 69297) + : (c <= 69404 || (c < 69424 ? c == 69415 - : c <= 69456) - : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) - : (c <= 69702 || (c < 70384 - ? (c < 70094 - ? (c < 69942 - ? (c < 69840 - ? (c < 69759 - ? (c >= 69734 && c <= 69743) - : c <= 69818) - : (c <= 69864 || (c < 69888 - ? (c >= 69872 && c <= 69881) - : c <= 69940))) - : (c <= 69951 || (c < 70006 - ? (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003) - : (c <= 70006 || (c < 70089 - ? (c >= 70016 && c <= 70084) - : c <= 70092))))) - : (c <= 70106 || (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70199 || (c < 70272 - ? c == 70206 - : c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70378))))))) - : (c <= 70393 || (c < 70487 - ? (c < 70450 - ? (c < 70415 - ? (c < 70405 + : c <= 69456))))) + : (c <= 69509 || (c < 69826 + ? (c < 69632 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69702 || (c < 69759 + ? (c >= 69734 && c <= 69749) + : c <= 69818))) + : (c <= 69826 || (c < 69888 + ? (c < 69872 + ? (c >= 69840 && c <= 69864) + : c <= 69881) + : (c <= 69940 || (c < 69956 + ? (c >= 69942 && c <= 69951) + : c <= 69959))))))))) + : (c <= 70003 || (c < 70471 + ? (c < 70287 + ? (c < 70144 + ? (c < 70089 + ? (c < 70016 + ? c == 70006 + : c <= 70084) + : (c <= 70092 || (c < 70108 + ? (c >= 70094 && c <= 70106) + : c <= 70108))) + : (c <= 70161 || (c < 70272 + ? (c < 70206 + ? (c >= 70163 && c <= 70199) + : c <= 70206) + : (c <= 70278 || (c < 70282 + ? c == 70280 + : c <= 70285))))) + : (c <= 70301 || (c < 70415 + ? (c < 70384 + ? (c < 70320 + ? (c >= 70303 && c <= 70312) + : c <= 70378) + : (c <= 70393 || (c < 70405 ? (c >= 70400 && c <= 70403) - : c <= 70412) - : (c <= 70416 || (c < 70442 + : c <= 70412))) + : (c <= 70416 || (c < 70450 + ? (c < 70442 ? (c >= 70419 && c <= 70440) - : c <= 70448))) - : (c <= 70451 || (c < 70471 - ? (c < 70459 + : c <= 70448) + : (c <= 70451 || (c < 70459 ? (c >= 70453 && c <= 70457) - : c <= 70468) - : (c <= 70472 || (c < 70480 + : c <= 70468))))))) + : (c <= 70472 || (c < 70864 + ? (c < 70512 + ? (c < 70487 + ? (c < 70480 ? (c >= 70475 && c <= 70477) - : c <= 70480))))) - : (c <= 70487 || (c < 70750 - ? (c < 70512 - ? (c < 70502 + : c <= 70480) + : (c <= 70487 || (c < 70502 ? (c >= 70493 && c <= 70499) - : c <= 70508) - : (c <= 70516 || (c < 70736 + : c <= 70508))) + : (c <= 70516 || (c < 70750 + ? (c < 70736 ? (c >= 70656 && c <= 70730) - : c <= 70745))) - : (c <= 70753 || (c < 70864 - ? (c < 70855 + : c <= 70745) + : (c <= 70753 || (c < 70855 ? (c >= 70784 && c <= 70853) - : c <= 70855) - : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) - : (c <= 71104 || (c < 119894 - ? (c < 73104 - ? (c < 72163 - ? (c < 71935 - ? (c < 71360 - ? (c < 71236 - ? (c < 71168 - ? (c >= 71128 && c <= 71133) - : c <= 71232) - : (c <= 71236 || (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352))) - : (c <= 71369 || (c < 71472 - ? (c < 71453 - ? (c >= 71424 && c <= 71450) - : c <= 71467) - : (c <= 71481 || (c < 71840 - ? (c >= 71680 && c <= 71738) - : c <= 71913))))) - : (c <= 71942 || (c < 71995 - ? (c < 71957 - ? (c < 71948 - ? c == 71945 - : c <= 71955) - : (c <= 71958 || (c < 71991 - ? (c >= 71960 && c <= 71989) - : c <= 71992))) - : (c <= 72003 || (c < 72106 - ? (c < 72096 - ? (c >= 72016 && c <= 72025) - : c <= 72103) - : (c <= 72151 || (c >= 72154 && c <= 72161))))))) - : (c <= 72164 || (c < 72873 - ? (c < 72704 - ? (c < 72272 - ? (c < 72263 + : c <= 70855))))) + : (c <= 70873 || (c < 71248 + ? (c < 71128 + ? (c < 71096 + ? (c >= 71040 && c <= 71093) + : c <= 71104) + : (c <= 71133 || (c < 71236 + ? (c >= 71168 && c <= 71232) + : c <= 71236))) + : (c <= 71257 || (c < 71424 + ? (c < 71360 + ? (c >= 71296 && c <= 71352) + : c <= 71369) + : (c <= 71450 || (c >= 71453 && c <= 71467))))))))))))) + : (c <= 71481 || (c < 119973 + ? (c < 82944 + ? (c < 72784 + ? (c < 72096 + ? (c < 71948 + ? (c < 71840 + ? (c < 71680 + ? (c >= 71488 && c <= 71494) + : c <= 71738) + : (c <= 71913 || (c < 71945 + ? (c >= 71935 && c <= 71942) + : c <= 71945))) + : (c <= 71955 || (c < 71991 + ? (c < 71960 + ? (c >= 71957 && c <= 71958) + : c <= 71989) + : (c <= 71992 || (c < 72016 + ? (c >= 71995 && c <= 72003) + : c <= 72025))))) + : (c <= 72103 || (c < 72272 + ? (c < 72163 + ? (c < 72154 + ? (c >= 72106 && c <= 72151) + : c <= 72161) + : (c <= 72164 || (c < 72263 ? (c >= 72192 && c <= 72254) - : c <= 72263) - : (c <= 72345 || (c < 72384 + : c <= 72263))) + : (c <= 72345 || (c < 72704 + ? (c < 72368 ? c == 72349 - : c <= 72440))) - : (c <= 72712 || (c < 72784 - ? (c < 72760 + : c <= 72440) + : (c <= 72712 || (c < 72760 ? (c >= 72714 && c <= 72758) - : c <= 72768) - : (c <= 72793 || (c < 72850 + : c <= 72768))))))) + : (c <= 72793 || (c < 73063 + ? (c < 72971 + ? (c < 72873 + ? (c < 72850 ? (c >= 72818 && c <= 72847) - : c <= 72871))))) - : (c <= 72886 || (c < 73023 - ? (c < 72971 - ? (c < 72968 + : c <= 72871) + : (c <= 72886 || (c < 72968 ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73014 || (c < 73020 + : c <= 72969))) + : (c <= 73014 || (c < 73023 + ? (c < 73020 ? c == 73018 - : c <= 73021))) - : (c <= 73031 || (c < 73063 - ? (c < 73056 + : c <= 73021) + : (c <= 73031 || (c < 73056 ? (c >= 73040 && c <= 73049) - : c <= 73061) - : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) - : (c <= 73105 || (c < 94095 - ? (c < 92768 - ? (c < 74752 - ? (c < 73440 - ? (c < 73120 - ? (c >= 73107 && c <= 73112) - : c <= 73129) - : (c <= 73462 || (c < 73728 - ? c == 73648 - : c <= 74649))) - : (c <= 74862 || (c < 82944 - ? (c < 77824 - ? (c >= 74880 && c <= 75075) - : c <= 78894) - : (c <= 83526 || (c < 92736 + : c <= 73061))))) + : (c <= 73064 || (c < 73648 + ? (c < 73107 + ? (c < 73104 + ? (c >= 73066 && c <= 73102) + : c <= 73105) + : (c <= 73112 || (c < 73440 + ? (c >= 73120 && c <= 73129) + : c <= 73462))) + : (c <= 73648 || (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c < 77824 + ? (c >= 77712 && c <= 77808) + : c <= 78894))))))))) + : (c <= 83526 || (c < 110581 + ? (c < 93053 + ? (c < 92880 + ? (c < 92768 + ? (c < 92736 ? (c >= 92160 && c <= 92728) - : c <= 92766))))) - : (c <= 92777 || (c < 93027 - ? (c < 92928 - ? (c < 92912 - ? (c >= 92880 && c <= 92909) - : c <= 92916) - : (c <= 92982 || (c < 93008 - ? (c >= 92992 && c <= 92995) - : c <= 93017))) - : (c <= 93047 || (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c >= 94031 && c <= 94087))))))) - : (c <= 94111 || (c < 113776 - ? (c < 101632 - ? (c < 94192 - ? (c < 94179 - ? (c >= 94176 && c <= 94177) - : c <= 94180) - : (c <= 94193 || (c < 100352 - ? (c >= 94208 && c <= 100343) - : c <= 101589))) - : (c <= 101640 || (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110878) - : c <= 110930) - : (c <= 110951 || (c < 113664 - ? (c >= 110960 && c <= 111355) - : c <= 113770))))) - : (c <= 113788 || (c < 119163 - ? (c < 113821 - ? (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817) - : (c <= 113822 || (c < 119149 + : c <= 92766) + : (c <= 92777 || (c < 92864 + ? (c >= 92784 && c <= 92862) + : c <= 92873))) + : (c <= 92909 || (c < 92992 + ? (c < 92928 + ? (c >= 92912 && c <= 92916) + : c <= 92982) + : (c <= 92995 || (c < 93027 + ? (c >= 93008 && c <= 93017) + : c <= 93047))))) + : (c <= 93071 || (c < 94179 + ? (c < 94031 + ? (c < 93952 + ? (c >= 93760 && c <= 93823) + : c <= 94026) + : (c <= 94087 || (c < 94176 + ? (c >= 94095 && c <= 94111) + : c <= 94177))) + : (c <= 94180 || (c < 100352 + ? (c < 94208 + ? (c >= 94192 && c <= 94193) + : c <= 100343) + : (c <= 101589 || (c < 110576 + ? (c >= 101632 && c <= 101640) + : c <= 110579))))))) + : (c <= 110587 || (c < 118576 + ? (c < 113664 + ? (c < 110928 + ? (c < 110592 + ? (c >= 110589 && c <= 110590) + : c <= 110882) + : (c <= 110930 || (c < 110960 + ? (c >= 110948 && c <= 110951) + : c <= 111355))) + : (c <= 113770 || (c < 113808 + ? (c < 113792 + ? (c >= 113776 && c <= 113788) + : c <= 113800) + : (c <= 113817 || (c < 118528 + ? (c >= 113821 && c <= 113822) + : c <= 118573))))) + : (c <= 118598 || (c < 119362 + ? (c < 119163 + ? (c < 119149 ? (c >= 119141 && c <= 119145) - : c <= 119154))) - : (c <= 119170 || (c < 119362 - ? (c < 119210 + : c <= 119154) + : (c <= 119170 || (c < 119210 ? (c >= 119173 && c <= 119179) - : c <= 119213) - : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 124928 - ? (c < 120630 - ? (c < 120094 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : c <= 119213))) + : (c <= 119364 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 124912 + ? (c < 120746 + ? (c < 120134 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 + : c <= 119993) + : (c <= 119995 || (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c < 120086 + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 ? (c >= 120077 && c <= 120084) - : c <= 120092))))) - : (c <= 120121 || (c < 120488 - ? (c < 120134 - ? (c < 120128 + : c <= 120092) + : (c <= 120121 || (c < 120128 ? (c >= 120123 && c <= 120126) - : c <= 120132) - : (c <= 120134 || (c < 120146 + : c <= 120132))))) + : (c <= 120134 || (c < 120572 + ? (c < 120488 + ? (c < 120146 ? (c >= 120138 && c <= 120144) - : c <= 120485))) - : (c <= 120512 || (c < 120572 - ? (c < 120540 + : c <= 120485) + : (c <= 120512 || (c < 120540 ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))))))) - : (c <= 120654 || (c < 121505 - ? (c < 120782 - ? (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779))) - : (c <= 120831 || (c < 121461 - ? (c < 121403 - ? (c >= 121344 && c <= 121398) - : c <= 121452) - : (c <= 121461 || (c < 121499 - ? c == 121476 - : c <= 121503))))) - : (c <= 121519 || (c < 123136 - ? (c < 122907 - ? (c < 122888 + : c <= 120570))) + : (c <= 120596 || (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744))))))) + : (c <= 120770 || (c < 122907 + ? (c < 121476 + ? (c < 121344 + ? (c < 120782 + ? (c >= 120772 && c <= 120779) + : c <= 120831) + : (c <= 121398 || (c < 121461 + ? (c >= 121403 && c <= 121452) + : c <= 121461))) + : (c <= 121476 || (c < 122624 + ? (c < 121505 + ? (c >= 121499 && c <= 121503) + : c <= 121519) + : (c <= 122654 || (c < 122888 ? (c >= 122880 && c <= 122886) - : c <= 122904) - : (c <= 122913 || (c < 122918 + : c <= 122904))))) + : (c <= 122913 || (c < 123214 + ? (c < 123136 + ? (c < 122918 ? (c >= 122915 && c <= 122916) - : c <= 122922))) - : (c <= 123180 || (c < 123214 - ? (c < 123200 + : c <= 122922) + : (c <= 123180 || (c < 123200 ? (c >= 123184 && c <= 123197) - : c <= 123209) - : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) - : (c <= 125124 || (c < 126557 - ? (c < 126523 - ? (c < 126497 - ? (c < 125264 - ? (c < 125184 - ? (c >= 125136 && c <= 125142) - : c <= 125259) - : (c <= 125273 || (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495))) - : (c <= 126498 || (c < 126505 - ? (c < 126503 - ? c == 126500 - : c <= 126503) - : (c <= 126514 || (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521))))) - : (c <= 126523 || (c < 126545 - ? (c < 126537 - ? (c < 126535 - ? c == 126530 - : c <= 126535) - : (c <= 126537 || (c < 126541 - ? c == 126539 - : c <= 126543))) - : (c <= 126546 || (c < 126553 - ? (c < 126551 - ? c == 126548 - : c <= 126551) - : (c <= 126553 || c == 126555)))))) + : c <= 123209))) + : (c <= 123214 || (c < 124896 + ? (c < 123584 + ? (c >= 123536 && c <= 123566) + : c <= 123641) + : (c <= 124902 || (c < 124909 + ? (c >= 124904 && c <= 124907) + : c <= 124910))))))))) + : (c <= 124926 || (c < 126557 + ? (c < 126521 + ? (c < 126469 + ? (c < 125184 + ? (c < 125136 + ? (c >= 124928 && c <= 125124) + : c <= 125142) + : (c <= 125259 || (c < 126464 + ? (c >= 125264 && c <= 125273) + : c <= 126467))) + : (c <= 126495 || (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : c <= 126519))))) + : (c <= 126521 || (c < 126541 + ? (c < 126535 + ? (c < 126530 + ? c == 126523 + : c <= 126530) + : (c <= 126535 || (c < 126539 + ? c == 126537 + : c <= 126539))) + : (c <= 126543 || (c < 126551 + ? (c < 126548 + ? (c >= 126545 && c <= 126546) + : c <= 126548) + : (c <= 126551 || (c < 126555 + ? c == 126553 + : c <= 126555))))))) : (c <= 126557 || (c < 126629 ? (c < 126580 ? (c < 126564 @@ -6737,8 +6945,8 @@ static inline bool sym_identifier_character_set_4(int32_t c) { ? (c < 130032 ? (c >= 126635 && c <= 126651) : c <= 130041) - : (c <= 173789 || (c < 177984 - ? (c >= 173824 && c <= 177972) + : (c <= 173791 || (c < 177984 + ? (c >= 173824 && c <= 177976) : c <= 178205))) : (c <= 183969 || (c < 196608 ? (c < 194560 @@ -6748,10 +6956,10 @@ static inline bool sym_identifier_character_set_4(int32_t c) { } static inline bool sym_identifier_character_set_5(int32_t c) { - return (c < 43052 - ? (c < 3718 - ? (c < 2730 - ? (c < 2042 + return (c < 43616 + ? (c < 3782 + ? (c < 2748 + ? (c < 2045 ? (c < 1015 ? (c < 710 ? (c < 181 @@ -6812,338 +7020,344 @@ static inline bool sym_identifier_character_set_5(int32_t c) { ? (c < 1808 ? c == 1791 : c <= 1866) - : (c <= 1969 || (c >= 1984 && c <= 2037))))))))) - : (c <= 2042 || (c < 2534 - ? (c < 2447 - ? (c < 2230 - ? (c < 2112 - ? (c < 2048 - ? c == 2045 - : c <= 2093) - : (c <= 2139 || (c < 2208 - ? (c >= 2144 && c <= 2154) - : c <= 2228))) - : (c <= 2247 || (c < 2406 - ? (c < 2275 - ? (c >= 2259 && c <= 2273) - : c <= 2403) - : (c <= 2415 || (c < 2437 - ? (c >= 2417 && c <= 2435) - : c <= 2444))))) - : (c <= 2448 || (c < 2503 - ? (c < 2482 - ? (c < 2474 - ? (c >= 2451 && c <= 2472) - : c <= 2480) - : (c <= 2482 || (c < 2492 - ? (c >= 2486 && c <= 2489) - : c <= 2500))) - : (c <= 2504 || (c < 2524 - ? (c < 2519 - ? (c >= 2507 && c <= 2510) - : c <= 2519) - : (c <= 2525 || (c >= 2527 && c <= 2531))))))) - : (c <= 2545 || (c < 2622 - ? (c < 2579 - ? (c < 2561 - ? (c < 2558 - ? c == 2556 - : c <= 2558) - : (c <= 2563 || (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576))) - : (c <= 2600 || (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c < 2620 - ? (c >= 2616 && c <= 2617) - : c <= 2620))))) - : (c <= 2626 || (c < 2662 - ? (c < 2641 - ? (c < 2635 - ? (c >= 2631 && c <= 2632) - : c <= 2637) - : (c <= 2641 || (c < 2654 - ? (c >= 2649 && c <= 2652) - : c <= 2654))) - : (c <= 2677 || (c < 2703 - ? (c < 2693 - ? (c >= 2689 && c <= 2691) - : c <= 2701) - : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) - : (c <= 2736 || (c < 3142 - ? (c < 2918 - ? (c < 2831 - ? (c < 2768 - ? (c < 2748 - ? (c < 2741 + : (c <= 1969 || (c < 2042 + ? (c >= 1984 && c <= 2037) + : c <= 2042))))))))) + : (c <= 2045 || (c < 2558 + ? (c < 2451 + ? (c < 2200 + ? (c < 2144 + ? (c < 2112 + ? (c >= 2048 && c <= 2093) + : c <= 2139) + : (c <= 2154 || (c < 2185 + ? (c >= 2160 && c <= 2183) + : c <= 2190))) + : (c <= 2273 || (c < 2417 + ? (c < 2406 + ? (c >= 2275 && c <= 2403) + : c <= 2415) + : (c <= 2435 || (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448))))) + : (c <= 2472 || (c < 2507 + ? (c < 2486 + ? (c < 2482 + ? (c >= 2474 && c <= 2480) + : c <= 2482) + : (c <= 2489 || (c < 2503 + ? (c >= 2492 && c <= 2500) + : c <= 2504))) + : (c <= 2510 || (c < 2527 + ? (c < 2524 + ? c == 2519 + : c <= 2525) + : (c <= 2531 || (c < 2556 + ? (c >= 2534 && c <= 2545) + : c <= 2556))))))) + : (c <= 2558 || (c < 2635 + ? (c < 2610 + ? (c < 2575 + ? (c < 2565 + ? (c >= 2561 && c <= 2563) + : c <= 2570) + : (c <= 2576 || (c < 2602 + ? (c >= 2579 && c <= 2600) + : c <= 2608))) + : (c <= 2611 || (c < 2620 + ? (c < 2616 + ? (c >= 2613 && c <= 2614) + : c <= 2617) + : (c <= 2620 || (c < 2631 + ? (c >= 2622 && c <= 2626) + : c <= 2632))))) + : (c <= 2637 || (c < 2693 + ? (c < 2654 + ? (c < 2649 + ? c == 2641 + : c <= 2652) + : (c <= 2654 || (c < 2689 + ? (c >= 2662 && c <= 2677) + : c <= 2691))) + : (c <= 2701 || (c < 2730 + ? (c < 2707 + ? (c >= 2703 && c <= 2705) + : c <= 2728) + : (c <= 2736 || (c < 2741 ? (c >= 2738 && c <= 2739) - : c <= 2745) - : (c <= 2757 || (c < 2763 + : c <= 2745))))))))))) + : (c <= 2757 || (c < 3168 + ? (c < 2958 + ? (c < 2866 + ? (c < 2809 + ? (c < 2768 + ? (c < 2763 ? (c >= 2759 && c <= 2761) - : c <= 2765))) - : (c <= 2768 || (c < 2809 - ? (c < 2790 + : c <= 2765) + : (c <= 2768 || (c < 2790 ? (c >= 2784 && c <= 2787) - : c <= 2799) - : (c <= 2815 || (c < 2821 + : c <= 2799))) + : (c <= 2815 || (c < 2831 + ? (c < 2821 ? (c >= 2817 && c <= 2819) - : c <= 2828))))) - : (c <= 2832 || (c < 2887 - ? (c < 2866 - ? (c < 2858 + : c <= 2828) + : (c <= 2832 || (c < 2858 ? (c >= 2835 && c <= 2856) - : c <= 2864) - : (c <= 2867 || (c < 2876 + : c <= 2864))))) + : (c <= 2867 || (c < 2908 + ? (c < 2887 + ? (c < 2876 ? (c >= 2869 && c <= 2873) - : c <= 2884))) - : (c <= 2888 || (c < 2908 - ? (c < 2901 + : c <= 2884) + : (c <= 2888 || (c < 2901 ? (c >= 2891 && c <= 2893) - : c <= 2903) - : (c <= 2909 || (c >= 2911 && c <= 2915))))))) - : (c <= 2927 || (c < 3006 - ? (c < 2969 - ? (c < 2949 - ? (c < 2946 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965))) - : (c <= 2970 || (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001))))) - : (c <= 3010 || (c < 3072 - ? (c < 3024 - ? (c < 3018 - ? (c >= 3014 && c <= 3016) - : c <= 3021) - : (c <= 3024 || (c < 3046 - ? c == 3031 - : c <= 3055))) - : (c <= 3084 || (c < 3114 - ? (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112) - : (c <= 3129 || (c >= 3133 && c <= 3140))))))))) - : (c <= 3144 || (c < 3398 - ? (c < 3260 - ? (c < 3200 - ? (c < 3160 - ? (c < 3157 - ? (c >= 3146 && c <= 3149) - : c <= 3158) - : (c <= 3162 || (c < 3174 - ? (c >= 3168 && c <= 3171) - : c <= 3183))) - : (c <= 3203 || (c < 3218 - ? (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216) - : (c <= 3240 || (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257))))) - : (c <= 3268 || (c < 3302 - ? (c < 3285 - ? (c < 3274 - ? (c >= 3270 && c <= 3272) - : c <= 3277) - : (c <= 3286 || (c < 3296 - ? c == 3294 - : c <= 3299))) - : (c <= 3311 || (c < 3342 - ? (c < 3328 - ? (c >= 3313 && c <= 3314) - : c <= 3340) - : (c <= 3344 || (c >= 3346 && c <= 3396))))))) - : (c <= 3400 || (c < 3530 - ? (c < 3457 - ? (c < 3423 - ? (c < 3412 - ? (c >= 3402 && c <= 3406) - : c <= 3415) - : (c <= 3427 || (c < 3450 - ? (c >= 3430 && c <= 3439) - : c <= 3455))) - : (c <= 3459 || (c < 3507 - ? (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505) - : (c <= 3515 || (c < 3520 - ? c == 3517 - : c <= 3526))))) - : (c <= 3530 || (c < 3585 - ? (c < 3544 - ? (c < 3542 - ? (c >= 3535 && c <= 3540) - : c <= 3542) - : (c <= 3551 || (c < 3570 - ? (c >= 3558 && c <= 3567) - : c <= 3571))) - : (c <= 3642 || (c < 3713 - ? (c < 3664 - ? (c >= 3648 && c <= 3662) - : c <= 3673) - : (c <= 3714 || c == 3716)))))))))))) - : (c <= 3722 || (c < 7296 - ? (c < 5024 - ? (c < 4256 - ? (c < 3893 - ? (c < 3784 - ? (c < 3751 + : c <= 2903))) + : (c <= 2909 || (c < 2929 + ? (c < 2918 + ? (c >= 2911 && c <= 2915) + : c <= 2927) + : (c <= 2929 || (c < 2949 + ? (c >= 2946 && c <= 2947) + : c <= 2954))))))) + : (c <= 2960 || (c < 3031 + ? (c < 2984 + ? (c < 2972 + ? (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970) + : (c <= 2972 || (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980))) + : (c <= 2986 || (c < 3014 + ? (c < 3006 + ? (c >= 2990 && c <= 3001) + : c <= 3010) + : (c <= 3016 || (c < 3024 + ? (c >= 3018 && c <= 3021) + : c <= 3024))))) + : (c <= 3031 || (c < 3132 + ? (c < 3086 + ? (c < 3072 + ? (c >= 3046 && c <= 3055) + : c <= 3084) + : (c <= 3088 || (c < 3114 + ? (c >= 3090 && c <= 3112) + : c <= 3129))) + : (c <= 3140 || (c < 3157 + ? (c < 3146 + ? (c >= 3142 && c <= 3144) + : c <= 3149) + : (c <= 3158 || (c < 3165 + ? (c >= 3160 && c <= 3162) + : c <= 3165))))))))) + : (c <= 3171 || (c < 3450 + ? (c < 3293 + ? (c < 3242 + ? (c < 3205 + ? (c < 3200 + ? (c >= 3174 && c <= 3183) + : c <= 3203) + : (c <= 3212 || (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240))) + : (c <= 3251 || (c < 3270 + ? (c < 3260 + ? (c >= 3253 && c <= 3257) + : c <= 3268) + : (c <= 3272 || (c < 3285 + ? (c >= 3274 && c <= 3277) + : c <= 3286))))) + : (c <= 3294 || (c < 3346 + ? (c < 3313 + ? (c < 3302 + ? (c >= 3296 && c <= 3299) + : c <= 3311) + : (c <= 3314 || (c < 3342 + ? (c >= 3328 && c <= 3340) + : c <= 3344))) + : (c <= 3396 || (c < 3412 + ? (c < 3402 + ? (c >= 3398 && c <= 3400) + : c <= 3406) + : (c <= 3415 || (c < 3430 + ? (c >= 3423 && c <= 3427) + : c <= 3439))))))) + : (c <= 3455 || (c < 3570 + ? (c < 3520 + ? (c < 3482 + ? (c < 3461 + ? (c >= 3457 && c <= 3459) + : c <= 3478) + : (c <= 3505 || (c < 3517 + ? (c >= 3507 && c <= 3515) + : c <= 3517))) + : (c <= 3526 || (c < 3542 + ? (c < 3535 + ? c == 3530 + : c <= 3540) + : (c <= 3542 || (c < 3558 + ? (c >= 3544 && c <= 3551) + : c <= 3567))))) + : (c <= 3571 || (c < 3718 + ? (c < 3664 + ? (c < 3648 + ? (c >= 3585 && c <= 3642) + : c <= 3662) + : (c <= 3673 || (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716))) + : (c <= 3722 || (c < 3751 ? (c < 3749 ? (c >= 3724 && c <= 3747) : c <= 3749) - : (c <= 3773 || (c < 3782 - ? (c >= 3776 && c <= 3780) - : c <= 3782))) - : (c <= 3789 || (c < 3840 - ? (c < 3804 - ? (c >= 3792 && c <= 3801) - : c <= 3807) - : (c <= 3840 || (c < 3872 - ? (c >= 3864 && c <= 3865) - : c <= 3881))))) - : (c <= 3893 || (c < 3974 - ? (c < 3902 - ? (c < 3897 - ? c == 3895 - : c <= 3897) - : (c <= 3911 || (c < 3953 - ? (c >= 3913 && c <= 3948) - : c <= 3972))) - : (c <= 3991 || (c < 4096 - ? (c < 4038 - ? (c >= 3993 && c <= 4028) - : c <= 4038) - : (c <= 4169 || (c >= 4176 && c <= 4253))))))) - : (c <= 4293 || (c < 4786 - ? (c < 4688 - ? (c < 4304 + : (c <= 3773 || (c >= 3776 && c <= 3780))))))))))))) + : (c <= 3782 || (c < 8025 + ? (c < 5888 + ? (c < 4688 + ? (c < 3953 + ? (c < 3872 + ? (c < 3804 + ? (c < 3792 + ? (c >= 3784 && c <= 3789) + : c <= 3801) + : (c <= 3807 || (c < 3864 + ? c == 3840 + : c <= 3865))) + : (c <= 3881 || (c < 3897 + ? (c < 3895 + ? c == 3893 + : c <= 3895) + : (c <= 3897 || (c < 3913 + ? (c >= 3902 && c <= 3911) + : c <= 3948))))) + : (c <= 3972 || (c < 4256 + ? (c < 4038 + ? (c < 3993 + ? (c >= 3974 && c <= 3991) + : c <= 4028) + : (c <= 4038 || (c < 4176 + ? (c >= 4096 && c <= 4169) + : c <= 4253))) + : (c <= 4293 || (c < 4304 ? (c < 4301 ? c == 4295 : c <= 4301) : (c <= 4346 || (c < 4682 ? (c >= 4348 && c <= 4680) - : c <= 4685))) - : (c <= 4694 || (c < 4704 + : c <= 4685))))))) + : (c <= 4694 || (c < 4882 + ? (c < 4786 + ? (c < 4704 ? (c < 4698 ? c == 4696 : c <= 4701) : (c <= 4744 || (c < 4752 ? (c >= 4746 && c <= 4749) - : c <= 4784))))) - : (c <= 4789 || (c < 4882 - ? (c < 4802 + : c <= 4784))) + : (c <= 4789 || (c < 4802 ? (c < 4800 ? (c >= 4792 && c <= 4798) : c <= 4800) : (c <= 4805 || (c < 4824 ? (c >= 4808 && c <= 4822) - : c <= 4880))) - : (c <= 4885 || (c < 4969 + : c <= 4880))))) + : (c <= 4885 || (c < 5112 + ? (c < 4969 ? (c < 4957 ? (c >= 4888 && c <= 4954) : c <= 4959) - : (c <= 4977 || (c >= 4992 && c <= 5007))))))))) - : (c <= 5109 || (c < 6400 - ? (c < 5998 - ? (c < 5870 - ? (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c < 5792 - ? (c >= 5761 && c <= 5786) - : c <= 5866))) - : (c <= 5880 || (c < 5920 - ? (c < 5902 - ? (c >= 5888 && c <= 5900) - : c <= 5908) - : (c <= 5940 || (c < 5984 - ? (c >= 5952 && c <= 5971) - : c <= 5996))))) - : (c <= 6000 || (c < 6155 - ? (c < 6103 - ? (c < 6016 - ? (c >= 6002 && c <= 6003) - : c <= 6099) - : (c <= 6103 || (c < 6112 - ? (c >= 6108 && c <= 6109) - : c <= 6121))) - : (c <= 6157 || (c < 6272 - ? (c < 6176 - ? (c >= 6160 && c <= 6169) - : c <= 6264) - : (c <= 6314 || (c >= 6320 && c <= 6389))))))) - : (c <= 6430 || (c < 6800 - ? (c < 6576 - ? (c < 6470 - ? (c < 6448 + : (c <= 4977 || (c < 5024 + ? (c >= 4992 && c <= 5007) + : c <= 5109))) + : (c <= 5117 || (c < 5761 + ? (c < 5743 + ? (c >= 5121 && c <= 5740) + : c <= 5759) + : (c <= 5786 || (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880))))))))) + : (c <= 5909 || (c < 6688 + ? (c < 6176 + ? (c < 6016 + ? (c < 5984 + ? (c < 5952 + ? (c >= 5919 && c <= 5940) + : c <= 5971) + : (c <= 5996 || (c < 6002 + ? (c >= 5998 && c <= 6000) + : c <= 6003))) + : (c <= 6099 || (c < 6112 + ? (c < 6108 + ? c == 6103 + : c <= 6109) + : (c <= 6121 || (c < 6159 + ? (c >= 6155 && c <= 6157) + : c <= 6169))))) + : (c <= 6264 || (c < 6470 + ? (c < 6400 + ? (c < 6320 + ? (c >= 6272 && c <= 6314) + : c <= 6389) + : (c <= 6430 || (c < 6448 ? (c >= 6432 && c <= 6443) - : c <= 6459) - : (c <= 6509 || (c < 6528 + : c <= 6459))) + : (c <= 6509 || (c < 6576 + ? (c < 6528 ? (c >= 6512 && c <= 6516) - : c <= 6571))) - : (c <= 6601 || (c < 6688 - ? (c < 6656 + : c <= 6571) + : (c <= 6601 || (c < 6656 ? (c >= 6608 && c <= 6618) - : c <= 6683) - : (c <= 6750 || (c < 6783 + : c <= 6683))))))) + : (c <= 6750 || (c < 7232 + ? (c < 6847 + ? (c < 6800 + ? (c < 6783 ? (c >= 6752 && c <= 6780) - : c <= 6793))))) - : (c <= 6809 || (c < 7019 - ? (c < 6847 - ? (c < 6832 + : c <= 6793) + : (c <= 6809 || (c < 6832 ? c == 6823 - : c <= 6845) - : (c <= 6848 || (c < 6992 - ? (c >= 6912 && c <= 6987) - : c <= 7001))) - : (c <= 7027 || (c < 7232 - ? (c < 7168 + : c <= 6845))) + : (c <= 6862 || (c < 7019 + ? (c < 6992 + ? (c >= 6912 && c <= 6988) + : c <= 7001) + : (c <= 7027 || (c < 7168 ? (c >= 7040 && c <= 7155) - : c <= 7223) - : (c <= 7241 || (c >= 7245 && c <= 7293))))))))))) - : (c <= 7304 || (c < 11264 - ? (c < 8178 - ? (c < 8027 - ? (c < 7675 - ? (c < 7376 - ? (c < 7357 - ? (c >= 7312 && c <= 7354) - : c <= 7359) - : (c <= 7378 || (c < 7424 - ? (c >= 7380 && c <= 7418) - : c <= 7673))) - : (c <= 7957 || (c < 8008 - ? (c < 7968 - ? (c >= 7960 && c <= 7965) - : c <= 8005) - : (c <= 8013 || (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025))))) - : (c <= 8027 || (c < 8130 - ? (c < 8064 - ? (c < 8031 - ? c == 8029 - : c <= 8061) - : (c <= 8116 || (c < 8126 - ? (c >= 8118 && c <= 8124) - : c <= 8126))) - : (c <= 8132 || (c < 8150 - ? (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147) - : (c <= 8155 || (c >= 8160 && c <= 8172))))))) - : (c <= 8180 || (c < 8458 - ? (c < 8336 + : c <= 7223))))) + : (c <= 7241 || (c < 7380 + ? (c < 7312 + ? (c < 7296 + ? (c >= 7245 && c <= 7293) + : c <= 7304) + : (c <= 7354 || (c < 7376 + ? (c >= 7357 && c <= 7359) + : c <= 7378))) + : (c <= 7418 || (c < 7968 + ? (c < 7960 + ? (c >= 7424 && c <= 7957) + : c <= 7965) + : (c <= 8005 || (c < 8016 + ? (c >= 8008 && c <= 8013) + : c <= 8023))))))))))) + : (c <= 8025 || (c < 11720 + ? (c < 8458 + ? (c < 8178 + ? (c < 8126 + ? (c < 8031 + ? (c < 8029 + ? c == 8027 + : c <= 8029) + : (c <= 8061 || (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124))) + : (c <= 8126 || (c < 8144 + ? (c < 8134 + ? (c >= 8130 && c <= 8132) + : c <= 8140) + : (c <= 8147 || (c < 8160 + ? (c >= 8150 && c <= 8155) + : c <= 8172))))) + : (c <= 8180 || (c < 8336 ? (c < 8276 ? (c < 8255 ? (c >= 8182 && c <= 8188) @@ -7157,8 +7371,9 @@ static inline bool sym_identifier_character_set_5(int32_t c) { : c <= 8417) : (c <= 8432 || (c < 8455 ? c == 8450 - : c <= 8455))))) - : (c <= 8467 || (c < 8490 + : c <= 8455))))))) + : (c <= 8467 || (c < 11499 + ? (c < 8490 ? (c < 8484 ? (c < 8472 ? c == 8469 @@ -7170,518 +7385,563 @@ static inline bool sym_identifier_character_set_5(int32_t c) { ? (c < 8517 ? (c >= 8508 && c <= 8511) : c <= 8521) - : (c <= 8526 || (c >= 8544 && c <= 8584))))))))) - : (c <= 11310 || (c < 12353 - ? (c < 11696 - ? (c < 11565 - ? (c < 11499 - ? (c < 11360 - ? (c >= 11312 && c <= 11358) - : c <= 11492) - : (c <= 11507 || (c < 11559 + : (c <= 8526 || (c < 11264 + ? (c >= 8544 && c <= 8584) + : c <= 11492))))) + : (c <= 11507 || (c < 11647 + ? (c < 11565 + ? (c < 11559 ? (c >= 11520 && c <= 11557) - : c <= 11559))) - : (c <= 11565 || (c < 11647 - ? (c < 11631 + : c <= 11559) + : (c <= 11565 || (c < 11631 ? (c >= 11568 && c <= 11623) - : c <= 11631) - : (c <= 11670 || (c < 11688 + : c <= 11631))) + : (c <= 11670 || (c < 11696 + ? (c < 11688 ? (c >= 11680 && c <= 11686) - : c <= 11694))))) - : (c <= 11702 || (c < 11744 - ? (c < 11720 - ? (c < 11712 + : c <= 11694) + : (c <= 11702 || (c < 11712 ? (c >= 11704 && c <= 11710) - : c <= 11718) - : (c <= 11726 || (c < 11736 + : c <= 11718))))))))) + : (c <= 11726 || (c < 42623 + ? (c < 12540 + ? (c < 12337 + ? (c < 11744 + ? (c < 11736 ? (c >= 11728 && c <= 11734) - : c <= 11742))) - : (c <= 11775 || (c < 12337 - ? (c < 12321 + : c <= 11742) + : (c <= 11775 || (c < 12321 ? (c >= 12293 && c <= 12295) - : c <= 12335) - : (c <= 12341 || (c >= 12344 && c <= 12348))))))) - : (c <= 12438 || (c < 42192 - ? (c < 12593 - ? (c < 12449 - ? (c < 12445 - ? (c >= 12441 && c <= 12442) - : c <= 12447) - : (c <= 12538 || (c < 12549 - ? (c >= 12540 && c <= 12543) - : c <= 12591))) - : (c <= 12686 || (c < 13312 - ? (c < 12784 - ? (c >= 12704 && c <= 12735) - : c <= 12799) - : (c <= 19903 || (c < 40960 - ? (c >= 19968 && c <= 40956) - : c <= 42124))))) - : (c <= 42237 || (c < 42775 - ? (c < 42560 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42539) - : (c <= 42607 || (c < 42623 - ? (c >= 42612 && c <= 42621) - : c <= 42737))) - : (c <= 42783 || (c < 42946 - ? (c < 42891 - ? (c >= 42786 && c <= 42888) - : c <= 42943) - : (c <= 42954 || (c >= 42997 && c <= 43047))))))))))))))) - : (c <= 43052 || (c < 71096 - ? (c < 66864 - ? (c < 64914 - ? (c < 43816 - ? (c < 43520 - ? (c < 43261 - ? (c < 43216 - ? (c < 43136 - ? (c >= 43072 && c <= 43123) - : c <= 43205) - : (c <= 43225 || (c < 43259 - ? (c >= 43232 && c <= 43255) - : c <= 43259))) - : (c <= 43309 || (c < 43392 - ? (c < 43360 - ? (c >= 43312 && c <= 43347) - : c <= 43388) - : (c <= 43456 || (c < 43488 - ? (c >= 43471 && c <= 43481) - : c <= 43518))))) - : (c <= 43574 || (c < 43744 - ? (c < 43616 - ? (c < 43600 - ? (c >= 43584 && c <= 43597) - : c <= 43609) - : (c <= 43638 || (c < 43739 + : c <= 12335))) + : (c <= 12341 || (c < 12441 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12442 || (c < 12449 + ? (c >= 12445 && c <= 12447) + : c <= 12538))))) + : (c <= 12543 || (c < 19968 + ? (c < 12704 + ? (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686) + : (c <= 12735 || (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903))) + : (c <= 42124 || (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42539 || (c < 42612 + ? (c >= 42560 && c <= 42607) + : c <= 42621))))))) + : (c <= 42737 || (c < 43232 + ? (c < 42965 + ? (c < 42891 + ? (c < 42786 + ? (c >= 42775 && c <= 42783) + : c <= 42888) + : (c <= 42954 || (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963))) + : (c <= 42969 || (c < 43072 + ? (c < 43052 + ? (c >= 42994 && c <= 43047) + : c <= 43052) + : (c <= 43123 || (c < 43216 + ? (c >= 43136 && c <= 43205) + : c <= 43225))))) + : (c <= 43255 || (c < 43471 + ? (c < 43312 + ? (c < 43261 + ? c == 43259 + : c <= 43309) + : (c <= 43347 || (c < 43392 + ? (c >= 43360 && c <= 43388) + : c <= 43456))) + : (c <= 43481 || (c < 43584 + ? (c < 43520 + ? (c >= 43488 && c <= 43518) + : c <= 43574) + : (c <= 43597 || (c >= 43600 && c <= 43609))))))))))))))) + : (c <= 43638 || (c < 71453 + ? (c < 67639 + ? (c < 65345 + ? (c < 64312 + ? (c < 43888 + ? (c < 43785 + ? (c < 43744 + ? (c < 43739 ? (c >= 43642 && c <= 43714) - : c <= 43741))) - : (c <= 43759 || (c < 43785 - ? (c < 43777 + : c <= 43741) + : (c <= 43759 || (c < 43777 ? (c >= 43762 && c <= 43766) - : c <= 43782) - : (c <= 43790 || (c < 43808 + : c <= 43782))) + : (c <= 43790 || (c < 43816 + ? (c < 43808 ? (c >= 43793 && c <= 43798) - : c <= 43814))))))) - : (c <= 43822 || (c < 64275 - ? (c < 44032 - ? (c < 43888 - ? (c < 43868 + : c <= 43814) + : (c <= 43822 || (c < 43868 ? (c >= 43824 && c <= 43866) - : c <= 43881) - : (c <= 44010 || (c < 44016 + : c <= 43881))))) + : (c <= 44010 || (c < 63744 + ? (c < 44032 + ? (c < 44016 ? (c >= 44012 && c <= 44013) - : c <= 44025))) - : (c <= 55203 || (c < 63744 - ? (c < 55243 + : c <= 44025) + : (c <= 55203 || (c < 55243 ? (c >= 55216 && c <= 55238) - : c <= 55291) - : (c <= 64109 || (c < 64256 + : c <= 55291))) + : (c <= 64109 || (c < 64275 + ? (c < 64256 ? (c >= 64112 && c <= 64217) - : c <= 64262))))) - : (c <= 64279 || (c < 64323 - ? (c < 64312 - ? (c < 64298 + : c <= 64262) + : (c <= 64279 || (c < 64298 ? (c >= 64285 && c <= 64296) - : c <= 64310) - : (c <= 64316 || (c < 64320 + : c <= 64310))))))) + : (c <= 64316 || (c < 65075 + ? (c < 64612 + ? (c < 64323 + ? (c < 64320 ? c == 64318 - : c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 + : c <= 64321) + : (c <= 64324 || (c < 64467 ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65549 - ? (c < 65151 - ? (c < 65137 - ? (c < 65056 - ? (c < 65024 - ? (c >= 65008 && c <= 65017) - : c <= 65039) - : (c <= 65071 || (c < 65101 - ? (c >= 65075 && c <= 65076) - : c <= 65103))) - : (c <= 65137 || (c < 65145 - ? (c < 65143 - ? c == 65139 - : c <= 65143) - : (c <= 65145 || (c < 65149 - ? c == 65147 - : c <= 65149))))) - : (c <= 65276 || (c < 65474 - ? (c < 65343 - ? (c < 65313 - ? (c >= 65296 && c <= 65305) - : c <= 65338) - : (c <= 65343 || (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65470))) - : (c <= 65479 || (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c >= 65536 && c <= 65547))))))) - : (c <= 65574 || (c < 66349 - ? (c < 65856 - ? (c < 65599 - ? (c < 65596 - ? (c >= 65576 && c <= 65594) - : c <= 65597) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786))) - : (c <= 65908 || (c < 66208 - ? (c < 66176 - ? c == 66045 - : c <= 66204) - : (c <= 66256 || (c < 66304 - ? c == 66272 - : c <= 66335))))) - : (c <= 66378 || (c < 66560 - ? (c < 66464 - ? (c < 66432 - ? (c >= 66384 && c <= 66426) - : c <= 66461) - : (c <= 66499 || (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517))) - : (c <= 66717 || (c < 66776 - ? (c < 66736 - ? (c >= 66720 && c <= 66729) - : c <= 66771) - : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) - : (c <= 66915 || (c < 69632 - ? (c < 68152 - ? (c < 67808 - ? (c < 67594 - ? (c < 67424 - ? (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413) - : (c <= 67431 || (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592))) - : (c <= 67637 || (c < 67647 - ? (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644) - : (c <= 67669 || (c < 67712 - ? (c >= 67680 && c <= 67702) - : c <= 67742))))) - : (c <= 67826 || (c < 68096 - ? (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031))) - : (c <= 68099 || (c < 68117 - ? (c < 68108 - ? (c >= 68101 && c <= 68102) - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))))))) - : (c <= 68154 || (c < 68800 - ? (c < 68352 - ? (c < 68224 - ? (c < 68192 - ? c == 68159 - : c <= 68220) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68326))) - : (c <= 68405 || (c < 68480 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : c <= 68466) - : (c <= 68497 || (c < 68736 - ? (c >= 68608 && c <= 68680) - : c <= 68786))))) - : (c <= 68850 || (c < 69376 - ? (c < 69248 - ? (c < 68912 - ? (c >= 68864 && c <= 68903) - : c <= 68921) - : (c <= 69289 || (c < 69296 - ? (c >= 69291 && c <= 69292) - : c <= 69297))) - : (c <= 69404 || (c < 69552 - ? (c < 69424 - ? c == 69415 - : c <= 69456) - : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) - : (c <= 69702 || (c < 70384 - ? (c < 70094 - ? (c < 69942 - ? (c < 69840 - ? (c < 69759 - ? (c >= 69734 && c <= 69743) - : c <= 69818) - : (c <= 69864 || (c < 69888 - ? (c >= 69872 && c <= 69881) - : c <= 69940))) - : (c <= 69951 || (c < 70006 - ? (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003) - : (c <= 70006 || (c < 70089 - ? (c >= 70016 && c <= 70084) - : c <= 70092))))) - : (c <= 70106 || (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70199 || (c < 70272 - ? c == 70206 - : c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70378))))))) - : (c <= 70393 || (c < 70487 - ? (c < 70450 - ? (c < 70415 - ? (c < 70405 - ? (c >= 70400 && c <= 70403) - : c <= 70412) - : (c <= 70416 || (c < 70442 - ? (c >= 70419 && c <= 70440) - : c <= 70448))) - : (c <= 70451 || (c < 70471 - ? (c < 70459 - ? (c >= 70453 && c <= 70457) - : c <= 70468) - : (c <= 70472 || (c < 70480 - ? (c >= 70475 && c <= 70477) - : c <= 70480))))) - : (c <= 70487 || (c < 70750 - ? (c < 70512 - ? (c < 70502 - ? (c >= 70493 && c <= 70499) - : c <= 70508) - : (c <= 70516 || (c < 70736 - ? (c >= 70656 && c <= 70730) - : c <= 70745))) - : (c <= 70753 || (c < 70864 - ? (c < 70855 - ? (c >= 70784 && c <= 70853) - : c <= 70855) - : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) - : (c <= 71104 || (c < 119894 - ? (c < 73104 - ? (c < 72163 - ? (c < 71935 - ? (c < 71360 - ? (c < 71236 - ? (c < 71168 + : c <= 64605))) + : (c <= 64829 || (c < 65008 + ? (c < 64914 + ? (c >= 64848 && c <= 64911) + : c <= 64967) + : (c <= 65017 || (c < 65056 + ? (c >= 65024 && c <= 65039) + : c <= 65071))))) + : (c <= 65076 || (c < 65147 + ? (c < 65139 + ? (c < 65137 + ? (c >= 65101 && c <= 65103) + : c <= 65137) + : (c <= 65139 || (c < 65145 + ? c == 65143 + : c <= 65145))) + : (c <= 65147 || (c < 65296 + ? (c < 65151 + ? c == 65149 + : c <= 65276) + : (c <= 65305 || (c < 65343 + ? (c >= 65313 && c <= 65338) + : c <= 65343))))))))) + : (c <= 65370 || (c < 66513 + ? (c < 65664 + ? (c < 65536 + ? (c < 65482 + ? (c < 65474 + ? (c >= 65382 && c <= 65470) + : c <= 65479) + : (c <= 65487 || (c < 65498 + ? (c >= 65490 && c <= 65495) + : c <= 65500))) + : (c <= 65547 || (c < 65596 + ? (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594) + : (c <= 65597 || (c < 65616 + ? (c >= 65599 && c <= 65613) + : c <= 65629))))) + : (c <= 65786 || (c < 66304 + ? (c < 66176 + ? (c < 66045 + ? (c >= 65856 && c <= 65908) + : c <= 66045) + : (c <= 66204 || (c < 66272 + ? (c >= 66208 && c <= 66256) + : c <= 66272))) + : (c <= 66335 || (c < 66432 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66426) + : (c <= 66461 || (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511))))))) + : (c <= 66517 || (c < 66979 + ? (c < 66864 + ? (c < 66736 + ? (c < 66720 + ? (c >= 66560 && c <= 66717) + : c <= 66729) + : (c <= 66771 || (c < 66816 + ? (c >= 66776 && c <= 66811) + : c <= 66855))) + : (c <= 66915 || (c < 66956 + ? (c < 66940 + ? (c >= 66928 && c <= 66938) + : c <= 66954) + : (c <= 66962 || (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977))))) + : (c <= 66993 || (c < 67456 + ? (c < 67072 + ? (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004) + : (c <= 67382 || (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431))) + : (c <= 67461 || (c < 67584 + ? (c < 67506 + ? (c >= 67463 && c <= 67504) + : c <= 67514) + : (c <= 67589 || (c < 67594 + ? c == 67592 + : c <= 67637))))))))))) + : (c <= 67640 || (c < 69956 + ? (c < 68448 + ? (c < 68101 + ? (c < 67828 + ? (c < 67680 + ? (c < 67647 + ? c == 67644 + : c <= 67669) + : (c <= 67702 || (c < 67808 + ? (c >= 67712 && c <= 67742) + : c <= 67826))) + : (c <= 67829 || (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c < 68096 + ? (c >= 68030 && c <= 68031) + : c <= 68099))))) + : (c <= 68102 || (c < 68192 + ? (c < 68121 + ? (c < 68117 + ? (c >= 68108 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c < 68159 + ? (c >= 68152 && c <= 68154) + : c <= 68159))) + : (c <= 68220 || (c < 68297 + ? (c < 68288 + ? (c >= 68224 && c <= 68252) + : c <= 68295) + : (c <= 68326 || (c < 68416 + ? (c >= 68352 && c <= 68405) + : c <= 68437))))))) + : (c <= 68466 || (c < 69424 + ? (c < 68912 + ? (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c < 68864 + ? (c >= 68800 && c <= 68850) + : c <= 68903))) + : (c <= 68921 || (c < 69296 + ? (c < 69291 + ? (c >= 69248 && c <= 69289) + : c <= 69292) + : (c <= 69297 || (c < 69415 + ? (c >= 69376 && c <= 69404) + : c <= 69415))))) + : (c <= 69456 || (c < 69759 + ? (c < 69600 + ? (c < 69552 + ? (c >= 69488 && c <= 69509) + : c <= 69572) + : (c <= 69622 || (c < 69734 + ? (c >= 69632 && c <= 69702) + : c <= 69749))) + : (c <= 69818 || (c < 69872 + ? (c < 69840 + ? c == 69826 + : c <= 69864) + : (c <= 69881 || (c < 69942 + ? (c >= 69888 && c <= 69940) + : c <= 69951))))))))) + : (c <= 69959 || (c < 70459 + ? (c < 70282 + ? (c < 70108 + ? (c < 70016 + ? (c < 70006 + ? (c >= 69968 && c <= 70003) + : c <= 70006) + : (c <= 70084 || (c < 70094 + ? (c >= 70089 && c <= 70092) + : c <= 70106))) + : (c <= 70108 || (c < 70206 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70199) + : (c <= 70206 || (c < 70280 + ? (c >= 70272 && c <= 70278) + : c <= 70280))))) + : (c <= 70285 || (c < 70405 + ? (c < 70320 + ? (c < 70303 + ? (c >= 70287 && c <= 70301) + : c <= 70312) + : (c <= 70378 || (c < 70400 + ? (c >= 70384 && c <= 70393) + : c <= 70403))) + : (c <= 70412 || (c < 70442 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440) + : (c <= 70448 || (c < 70453 + ? (c >= 70450 && c <= 70451) + : c <= 70457))))))) + : (c <= 70468 || (c < 70855 + ? (c < 70502 + ? (c < 70480 + ? (c < 70475 + ? (c >= 70471 && c <= 70472) + : c <= 70477) + : (c <= 70480 || (c < 70493 + ? c == 70487 + : c <= 70499))) + : (c <= 70508 || (c < 70736 + ? (c < 70656 + ? (c >= 70512 && c <= 70516) + : c <= 70730) + : (c <= 70745 || (c < 70784 + ? (c >= 70750 && c <= 70753) + : c <= 70853))))) + : (c <= 70855 || (c < 71236 + ? (c < 71096 + ? (c < 71040 + ? (c >= 70864 && c <= 70873) + : c <= 71093) + : (c <= 71104 || (c < 71168 ? (c >= 71128 && c <= 71133) - : c <= 71232) - : (c <= 71236 || (c < 71296 + : c <= 71232))) + : (c <= 71236 || (c < 71360 + ? (c < 71296 ? (c >= 71248 && c <= 71257) - : c <= 71352))) - : (c <= 71369 || (c < 71472 - ? (c < 71453 - ? (c >= 71424 && c <= 71450) - : c <= 71467) - : (c <= 71481 || (c < 71840 - ? (c >= 71680 && c <= 71738) - : c <= 71913))))) - : (c <= 71942 || (c < 71995 - ? (c < 71957 - ? (c < 71948 - ? c == 71945 - : c <= 71955) - : (c <= 71958 || (c < 71991 - ? (c >= 71960 && c <= 71989) - : c <= 71992))) - : (c <= 72003 || (c < 72106 - ? (c < 72096 - ? (c >= 72016 && c <= 72025) - : c <= 72103) - : (c <= 72151 || (c >= 72154 && c <= 72161))))))) - : (c <= 72164 || (c < 72873 - ? (c < 72704 - ? (c < 72272 - ? (c < 72263 - ? (c >= 72192 && c <= 72254) - : c <= 72263) - : (c <= 72345 || (c < 72384 - ? c == 72349 - : c <= 72440))) - : (c <= 72712 || (c < 72784 - ? (c < 72760 - ? (c >= 72714 && c <= 72758) - : c <= 72768) - : (c <= 72793 || (c < 72850 - ? (c >= 72818 && c <= 72847) - : c <= 72871))))) - : (c <= 72886 || (c < 73023 - ? (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73014 || (c < 73020 - ? c == 73018 - : c <= 73021))) - : (c <= 73031 || (c < 73063 - ? (c < 73056 - ? (c >= 73040 && c <= 73049) - : c <= 73061) - : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) - : (c <= 73105 || (c < 94095 - ? (c < 92768 - ? (c < 74752 - ? (c < 73440 - ? (c < 73120 + : c <= 71352) + : (c <= 71369 || (c >= 71424 && c <= 71450))))))))))))) + : (c <= 71467 || (c < 119973 + ? (c < 77824 + ? (c < 72760 + ? (c < 72016 + ? (c < 71945 + ? (c < 71680 + ? (c < 71488 + ? (c >= 71472 && c <= 71481) + : c <= 71494) + : (c <= 71738 || (c < 71935 + ? (c >= 71840 && c <= 71913) + : c <= 71942))) + : (c <= 71945 || (c < 71960 + ? (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958) + : (c <= 71989 || (c < 71995 + ? (c >= 71991 && c <= 71992) + : c <= 72003))))) + : (c <= 72025 || (c < 72263 + ? (c < 72154 + ? (c < 72106 + ? (c >= 72096 && c <= 72103) + : c <= 72151) + : (c <= 72161 || (c < 72192 + ? (c >= 72163 && c <= 72164) + : c <= 72254))) + : (c <= 72263 || (c < 72368 + ? (c < 72349 + ? (c >= 72272 && c <= 72345) + : c <= 72349) + : (c <= 72440 || (c < 72714 + ? (c >= 72704 && c <= 72712) + : c <= 72758))))))) + : (c <= 72768 || (c < 73056 + ? (c < 72968 + ? (c < 72850 + ? (c < 72818 + ? (c >= 72784 && c <= 72793) + : c <= 72847) + : (c <= 72871 || (c < 72960 + ? (c >= 72873 && c <= 72886) + : c <= 72966))) + : (c <= 72969 || (c < 73020 + ? (c < 73018 + ? (c >= 72971 && c <= 73014) + : c <= 73018) + : (c <= 73021 || (c < 73040 + ? (c >= 73023 && c <= 73031) + : c <= 73049))))) + : (c <= 73061 || (c < 73440 + ? (c < 73104 + ? (c < 73066 + ? (c >= 73063 && c <= 73064) + : c <= 73102) + : (c <= 73105 || (c < 73120 ? (c >= 73107 && c <= 73112) - : c <= 73129) - : (c <= 73462 || (c < 73728 + : c <= 73129))) + : (c <= 73462 || (c < 74752 + ? (c < 73728 ? c == 73648 - : c <= 74649))) - : (c <= 74862 || (c < 82944 - ? (c < 77824 + : c <= 74649) + : (c <= 74862 || (c < 77712 ? (c >= 74880 && c <= 75075) - : c <= 78894) - : (c <= 83526 || (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766))))) - : (c <= 92777 || (c < 93027 - ? (c < 92928 + : c <= 77808))))))))) + : (c <= 78894 || (c < 110576 + ? (c < 93027 + ? (c < 92864 + ? (c < 92736 + ? (c < 92160 + ? (c >= 82944 && c <= 83526) + : c <= 92728) + : (c <= 92766 || (c < 92784 + ? (c >= 92768 && c <= 92777) + : c <= 92862))) + : (c <= 92873 || (c < 92928 ? (c < 92912 ? (c >= 92880 && c <= 92909) : c <= 92916) : (c <= 92982 || (c < 93008 ? (c >= 92992 && c <= 92995) - : c <= 93017))) - : (c <= 93047 || (c < 93952 + : c <= 93017))))) + : (c <= 93047 || (c < 94176 + ? (c < 93952 ? (c < 93760 ? (c >= 93053 && c <= 93071) : c <= 93823) - : (c <= 94026 || (c >= 94031 && c <= 94087))))))) - : (c <= 94111 || (c < 113776 - ? (c < 101632 - ? (c < 94192 - ? (c < 94179 - ? (c >= 94176 && c <= 94177) - : c <= 94180) - : (c <= 94193 || (c < 100352 - ? (c >= 94208 && c <= 100343) - : c <= 101589))) - : (c <= 101640 || (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110878) - : c <= 110930) - : (c <= 110951 || (c < 113664 - ? (c >= 110960 && c <= 111355) - : c <= 113770))))) - : (c <= 113788 || (c < 119163 - ? (c < 113821 - ? (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817) - : (c <= 113822 || (c < 119149 - ? (c >= 119141 && c <= 119145) - : c <= 119154))) - : (c <= 119170 || (c < 119362 - ? (c < 119210 - ? (c >= 119173 && c <= 119179) - : c <= 119213) - : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 124928 - ? (c < 120630 - ? (c < 120094 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 + : (c <= 94026 || (c < 94095 + ? (c >= 94031 && c <= 94087) + : c <= 94111))) + : (c <= 94177 || (c < 94208 + ? (c < 94192 + ? (c >= 94179 && c <= 94180) + : c <= 94193) + : (c <= 100343 || (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640))))))) + : (c <= 110579 || (c < 118528 + ? (c < 110960 + ? (c < 110592 + ? (c < 110589 + ? (c >= 110581 && c <= 110587) + : c <= 110590) + : (c <= 110882 || (c < 110948 + ? (c >= 110928 && c <= 110930) + : c <= 110951))) + : (c <= 111355 || (c < 113792 + ? (c < 113776 + ? (c >= 113664 && c <= 113770) + : c <= 113788) + : (c <= 113800 || (c < 113821 + ? (c >= 113808 && c <= 113817) + : c <= 113822))))) + : (c <= 118573 || (c < 119210 + ? (c < 119149 + ? (c < 119141 + ? (c >= 118576 && c <= 118598) + : c <= 119145) + : (c <= 119154 || (c < 119173 + ? (c >= 119163 && c <= 119170) + : c <= 119179))) + : (c <= 119213 || (c < 119894 + ? (c < 119808 + ? (c >= 119362 && c <= 119364) + : c <= 119892) + : (c <= 119964 || (c < 119970 ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : c <= 119970))))))))))) + : (c <= 119974 || (c < 124912 + ? (c < 120746 + ? (c < 120134 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 + : c <= 119993) + : (c <= 119995 || (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c < 120086 + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 ? (c >= 120077 && c <= 120084) - : c <= 120092))))) - : (c <= 120121 || (c < 120488 - ? (c < 120134 - ? (c < 120128 + : c <= 120092) + : (c <= 120121 || (c < 120128 ? (c >= 120123 && c <= 120126) - : c <= 120132) - : (c <= 120134 || (c < 120146 + : c <= 120132))))) + : (c <= 120134 || (c < 120572 + ? (c < 120488 + ? (c < 120146 ? (c >= 120138 && c <= 120144) - : c <= 120485))) - : (c <= 120512 || (c < 120572 - ? (c < 120540 + : c <= 120485) + : (c <= 120512 || (c < 120540 ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))))))) - : (c <= 120654 || (c < 121505 - ? (c < 120782 - ? (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779))) - : (c <= 120831 || (c < 121461 - ? (c < 121403 - ? (c >= 121344 && c <= 121398) - : c <= 121452) - : (c <= 121461 || (c < 121499 - ? c == 121476 - : c <= 121503))))) - : (c <= 121519 || (c < 123136 - ? (c < 122907 - ? (c < 122888 + : c <= 120570))) + : (c <= 120596 || (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744))))))) + : (c <= 120770 || (c < 122907 + ? (c < 121476 + ? (c < 121344 + ? (c < 120782 + ? (c >= 120772 && c <= 120779) + : c <= 120831) + : (c <= 121398 || (c < 121461 + ? (c >= 121403 && c <= 121452) + : c <= 121461))) + : (c <= 121476 || (c < 122624 + ? (c < 121505 + ? (c >= 121499 && c <= 121503) + : c <= 121519) + : (c <= 122654 || (c < 122888 ? (c >= 122880 && c <= 122886) - : c <= 122904) - : (c <= 122913 || (c < 122918 + : c <= 122904))))) + : (c <= 122913 || (c < 123214 + ? (c < 123136 + ? (c < 122918 ? (c >= 122915 && c <= 122916) - : c <= 122922))) - : (c <= 123180 || (c < 123214 - ? (c < 123200 + : c <= 122922) + : (c <= 123180 || (c < 123200 ? (c >= 123184 && c <= 123197) - : c <= 123209) - : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) - : (c <= 125124 || (c < 126557 - ? (c < 126523 - ? (c < 126497 - ? (c < 125264 - ? (c < 125184 - ? (c >= 125136 && c <= 125142) - : c <= 125259) - : (c <= 125273 || (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495))) - : (c <= 126498 || (c < 126505 - ? (c < 126503 - ? c == 126500 - : c <= 126503) - : (c <= 126514 || (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521))))) - : (c <= 126523 || (c < 126545 - ? (c < 126537 - ? (c < 126535 - ? c == 126530 - : c <= 126535) - : (c <= 126537 || (c < 126541 - ? c == 126539 - : c <= 126543))) - : (c <= 126546 || (c < 126553 - ? (c < 126551 - ? c == 126548 - : c <= 126551) - : (c <= 126553 || c == 126555)))))) + : c <= 123209))) + : (c <= 123214 || (c < 124896 + ? (c < 123584 + ? (c >= 123536 && c <= 123566) + : c <= 123641) + : (c <= 124902 || (c < 124909 + ? (c >= 124904 && c <= 124907) + : c <= 124910))))))))) + : (c <= 124926 || (c < 126557 + ? (c < 126521 + ? (c < 126469 + ? (c < 125184 + ? (c < 125136 + ? (c >= 124928 && c <= 125124) + : c <= 125142) + : (c <= 125259 || (c < 126464 + ? (c >= 125264 && c <= 125273) + : c <= 126467))) + : (c <= 126495 || (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : c <= 126519))))) + : (c <= 126521 || (c < 126541 + ? (c < 126535 + ? (c < 126530 + ? c == 126523 + : c <= 126530) + : (c <= 126535 || (c < 126539 + ? c == 126537 + : c <= 126539))) + : (c <= 126543 || (c < 126551 + ? (c < 126548 + ? (c >= 126545 && c <= 126546) + : c <= 126548) + : (c <= 126551 || (c < 126555 + ? c == 126553 + : c <= 126555))))))) : (c <= 126557 || (c < 126629 ? (c < 126580 ? (c < 126564 @@ -7703,8 +7963,8 @@ static inline bool sym_identifier_character_set_5(int32_t c) { ? (c < 130032 ? (c >= 126635 && c <= 126651) : c <= 130041) - : (c <= 173789 || (c < 177984 - ? (c >= 173824 && c <= 177972) + : (c <= 173791 || (c < 177984 + ? (c >= 173824 && c <= 177976) : c <= 178205))) : (c <= 183969 || (c < 196608 ? (c < 194560 @@ -7714,10 +7974,10 @@ static inline bool sym_identifier_character_set_5(int32_t c) { } static inline bool sym_identifier_character_set_6(int32_t c) { - return (c < 43072 - ? (c < 3724 - ? (c < 2738 - ? (c < 2045 + return (c < 43642 + ? (c < 3784 + ? (c < 2759 + ? (c < 2048 ? (c < 1155 ? (c < 736 ? (c < 183 @@ -7778,338 +8038,344 @@ static inline bool sym_identifier_character_set_6(int32_t c) { ? (c < 1869 ? (c >= 1808 && c <= 1866) : c <= 1969) - : (c <= 2037 || c == 2042)))))))) - : (c <= 2045 || (c < 2556 - ? (c < 2451 - ? (c < 2259 - ? (c < 2144 - ? (c < 2112 - ? (c >= 2048 && c <= 2093) - : c <= 2139) - : (c <= 2154 || (c < 2230 - ? (c >= 2208 && c <= 2228) - : c <= 2247))) - : (c <= 2273 || (c < 2417 - ? (c < 2406 - ? (c >= 2275 && c <= 2403) - : c <= 2415) - : (c <= 2435 || (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448))))) - : (c <= 2472 || (c < 2507 - ? (c < 2486 - ? (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482) - : (c <= 2489 || (c < 2503 - ? (c >= 2492 && c <= 2500) - : c <= 2504))) - : (c <= 2510 || (c < 2527 - ? (c < 2524 - ? c == 2519 - : c <= 2525) - : (c <= 2531 || (c >= 2534 && c <= 2545))))))) - : (c <= 2556 || (c < 2631 - ? (c < 2602 - ? (c < 2565 - ? (c < 2561 - ? c == 2558 - : c <= 2563) - : (c <= 2570 || (c < 2579 - ? (c >= 2575 && c <= 2576) - : c <= 2600))) - : (c <= 2608 || (c < 2616 - ? (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614) - : (c <= 2617 || (c < 2622 - ? c == 2620 - : c <= 2626))))) - : (c <= 2632 || (c < 2689 - ? (c < 2649 - ? (c < 2641 - ? (c >= 2635 && c <= 2637) - : c <= 2641) - : (c <= 2652 || (c < 2662 - ? c == 2654 - : c <= 2677))) - : (c <= 2691 || (c < 2707 - ? (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))))))))))) - : (c <= 2739 || (c < 3146 - ? (c < 2929 - ? (c < 2835 - ? (c < 2784 - ? (c < 2759 - ? (c < 2748 + : (c <= 2037 || (c < 2045 + ? c == 2042 + : c <= 2045))))))))) + : (c <= 2093 || (c < 2561 + ? (c < 2474 + ? (c < 2275 + ? (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2139) + : c <= 2154) + : (c <= 2183 || (c < 2200 + ? (c >= 2185 && c <= 2190) + : c <= 2273))) + : (c <= 2403 || (c < 2437 + ? (c < 2417 + ? (c >= 2406 && c <= 2415) + : c <= 2435) + : (c <= 2444 || (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472))))) + : (c <= 2480 || (c < 2519 + ? (c < 2492 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2500 || (c < 2507 + ? (c >= 2503 && c <= 2504) + : c <= 2510))) + : (c <= 2519 || (c < 2534 + ? (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2531) + : (c <= 2545 || (c < 2558 + ? c == 2556 + : c <= 2558))))))) + : (c <= 2563 || (c < 2641 + ? (c < 2613 + ? (c < 2579 + ? (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576) + : (c <= 2600 || (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611))) + : (c <= 2614 || (c < 2622 + ? (c < 2620 + ? (c >= 2616 && c <= 2617) + : c <= 2620) + : (c <= 2626 || (c < 2635 + ? (c >= 2631 && c <= 2632) + : c <= 2637))))) + : (c <= 2641 || (c < 2703 + ? (c < 2662 + ? (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654) + : (c <= 2677 || (c < 2693 + ? (c >= 2689 && c <= 2691) + : c <= 2701))) + : (c <= 2705 || (c < 2738 + ? (c < 2730 + ? (c >= 2707 && c <= 2728) + : c <= 2736) + : (c <= 2739 || (c < 2748 ? (c >= 2741 && c <= 2745) - : c <= 2757) - : (c <= 2761 || (c < 2768 + : c <= 2757))))))))))) + : (c <= 2761 || (c < 3174 + ? (c < 2962 + ? (c < 2869 + ? (c < 2817 + ? (c < 2784 + ? (c < 2768 ? (c >= 2763 && c <= 2765) - : c <= 2768))) - : (c <= 2787 || (c < 2817 - ? (c < 2809 + : c <= 2768) + : (c <= 2787 || (c < 2809 ? (c >= 2790 && c <= 2799) - : c <= 2815) - : (c <= 2819 || (c < 2831 + : c <= 2815))) + : (c <= 2819 || (c < 2835 + ? (c < 2831 ? (c >= 2821 && c <= 2828) - : c <= 2832))))) - : (c <= 2856 || (c < 2891 - ? (c < 2869 - ? (c < 2866 + : c <= 2832) + : (c <= 2856 || (c < 2866 ? (c >= 2858 && c <= 2864) - : c <= 2867) - : (c <= 2873 || (c < 2887 + : c <= 2867))))) + : (c <= 2873 || (c < 2911 + ? (c < 2891 + ? (c < 2887 ? (c >= 2876 && c <= 2884) - : c <= 2888))) - : (c <= 2893 || (c < 2911 - ? (c < 2908 + : c <= 2888) + : (c <= 2893 || (c < 2908 ? (c >= 2901 && c <= 2903) - : c <= 2909) - : (c <= 2915 || (c >= 2918 && c <= 2927))))))) - : (c <= 2929 || (c < 3014 - ? (c < 2972 - ? (c < 2958 - ? (c < 2949 - ? (c >= 2946 && c <= 2947) - : c <= 2954) - : (c <= 2960 || (c < 2969 - ? (c >= 2962 && c <= 2965) - : c <= 2970))) - : (c <= 2972 || (c < 2984 - ? (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980) - : (c <= 2986 || (c < 3006 - ? (c >= 2990 && c <= 3001) - : c <= 3010))))) - : (c <= 3016 || (c < 3086 - ? (c < 3031 - ? (c < 3024 - ? (c >= 3018 && c <= 3021) - : c <= 3024) - : (c <= 3031 || (c < 3072 - ? (c >= 3046 && c <= 3055) - : c <= 3084))) - : (c <= 3088 || (c < 3133 - ? (c < 3114 - ? (c >= 3090 && c <= 3112) - : c <= 3129) - : (c <= 3140 || (c >= 3142 && c <= 3144))))))))) - : (c <= 3149 || (c < 3402 - ? (c < 3270 - ? (c < 3205 - ? (c < 3168 - ? (c < 3160 - ? (c >= 3157 && c <= 3158) - : c <= 3162) - : (c <= 3171 || (c < 3200 - ? (c >= 3174 && c <= 3183) - : c <= 3203))) - : (c <= 3212 || (c < 3242 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240) - : (c <= 3251 || (c < 3260 - ? (c >= 3253 && c <= 3257) - : c <= 3268))))) - : (c <= 3272 || (c < 3313 - ? (c < 3294 - ? (c < 3285 - ? (c >= 3274 && c <= 3277) - : c <= 3286) - : (c <= 3294 || (c < 3302 - ? (c >= 3296 && c <= 3299) - : c <= 3311))) - : (c <= 3314 || (c < 3346 - ? (c < 3342 - ? (c >= 3328 && c <= 3340) - : c <= 3344) - : (c <= 3396 || (c >= 3398 && c <= 3400))))))) - : (c <= 3406 || (c < 3535 - ? (c < 3461 - ? (c < 3430 - ? (c < 3423 - ? (c >= 3412 && c <= 3415) - : c <= 3427) - : (c <= 3439 || (c < 3457 - ? (c >= 3450 && c <= 3455) - : c <= 3459))) - : (c <= 3478 || (c < 3517 - ? (c < 3507 - ? (c >= 3482 && c <= 3505) - : c <= 3515) - : (c <= 3517 || (c < 3530 - ? (c >= 3520 && c <= 3526) - : c <= 3530))))) - : (c <= 3540 || (c < 3648 - ? (c < 3558 - ? (c < 3544 - ? c == 3542 - : c <= 3551) - : (c <= 3567 || (c < 3585 - ? (c >= 3570 && c <= 3571) - : c <= 3642))) - : (c <= 3662 || (c < 3716 - ? (c < 3713 - ? (c >= 3664 && c <= 3673) - : c <= 3714) - : (c <= 3716 || (c >= 3718 && c <= 3722))))))))))))) - : (c <= 3747 || (c < 7312 - ? (c < 5112 - ? (c < 4295 - ? (c < 3895 - ? (c < 3792 - ? (c < 3776 + : c <= 2909))) + : (c <= 2915 || (c < 2946 + ? (c < 2929 + ? (c >= 2918 && c <= 2927) + : c <= 2929) + : (c <= 2947 || (c < 2958 + ? (c >= 2949 && c <= 2954) + : c <= 2960))))))) + : (c <= 2965 || (c < 3046 + ? (c < 2990 + ? (c < 2974 + ? (c < 2972 + ? (c >= 2969 && c <= 2970) + : c <= 2972) + : (c <= 2975 || (c < 2984 + ? (c >= 2979 && c <= 2980) + : c <= 2986))) + : (c <= 3001 || (c < 3018 + ? (c < 3014 + ? (c >= 3006 && c <= 3010) + : c <= 3016) + : (c <= 3021 || (c < 3031 + ? c == 3024 + : c <= 3031))))) + : (c <= 3055 || (c < 3142 + ? (c < 3090 + ? (c < 3086 + ? (c >= 3072 && c <= 3084) + : c <= 3088) + : (c <= 3112 || (c < 3132 + ? (c >= 3114 && c <= 3129) + : c <= 3140))) + : (c <= 3144 || (c < 3160 + ? (c < 3157 + ? (c >= 3146 && c <= 3149) + : c <= 3158) + : (c <= 3162 || (c < 3168 + ? c == 3165 + : c <= 3171))))))))) + : (c <= 3183 || (c < 3457 + ? (c < 3296 + ? (c < 3253 + ? (c < 3214 + ? (c < 3205 + ? (c >= 3200 && c <= 3203) + : c <= 3212) + : (c <= 3216 || (c < 3242 + ? (c >= 3218 && c <= 3240) + : c <= 3251))) + : (c <= 3257 || (c < 3274 + ? (c < 3270 + ? (c >= 3260 && c <= 3268) + : c <= 3272) + : (c <= 3277 || (c < 3293 + ? (c >= 3285 && c <= 3286) + : c <= 3294))))) + : (c <= 3299 || (c < 3398 + ? (c < 3328 + ? (c < 3313 + ? (c >= 3302 && c <= 3311) + : c <= 3314) + : (c <= 3340 || (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3396))) + : (c <= 3400 || (c < 3423 + ? (c < 3412 + ? (c >= 3402 && c <= 3406) + : c <= 3415) + : (c <= 3427 || (c < 3450 + ? (c >= 3430 && c <= 3439) + : c <= 3455))))))) + : (c <= 3459 || (c < 3585 + ? (c < 3530 + ? (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || (c < 3520 + ? c == 3517 + : c <= 3526))) + : (c <= 3530 || (c < 3544 + ? (c < 3542 + ? (c >= 3535 && c <= 3540) + : c <= 3542) + : (c <= 3551 || (c < 3570 + ? (c >= 3558 && c <= 3567) + : c <= 3571))))) + : (c <= 3642 || (c < 3724 + ? (c < 3713 + ? (c < 3664 + ? (c >= 3648 && c <= 3662) + : c <= 3673) + : (c <= 3714 || (c < 3718 + ? c == 3716 + : c <= 3722))) + : (c <= 3747 || (c < 3776 ? (c < 3751 ? c == 3749 : c <= 3773) - : (c <= 3780 || (c < 3784 - ? c == 3782 - : c <= 3789))) - : (c <= 3801 || (c < 3864 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840) - : (c <= 3865 || (c < 3893 - ? (c >= 3872 && c <= 3881) - : c <= 3893))))) - : (c <= 3895 || (c < 3993 - ? (c < 3913 - ? (c < 3902 - ? c == 3897 - : c <= 3911) - : (c <= 3948 || (c < 3974 - ? (c >= 3953 && c <= 3972) - : c <= 3991))) - : (c <= 4028 || (c < 4176 - ? (c < 4096 - ? c == 4038 - : c <= 4169) - : (c <= 4253 || (c >= 4256 && c <= 4293))))))) - : (c <= 4295 || (c < 4792 - ? (c < 4696 - ? (c < 4348 + : (c <= 3780 || c == 3782)))))))))))) + : (c <= 3789 || (c < 8027 + ? (c < 5919 + ? (c < 4696 + ? (c < 3974 + ? (c < 3893 + ? (c < 3840 + ? (c < 3804 + ? (c >= 3792 && c <= 3801) + : c <= 3807) + : (c <= 3840 || (c < 3872 + ? (c >= 3864 && c <= 3865) + : c <= 3881))) + : (c <= 3893 || (c < 3902 + ? (c < 3897 + ? c == 3895 + : c <= 3897) + : (c <= 3911 || (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972))))) + : (c <= 3991 || (c < 4295 + ? (c < 4096 + ? (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038) + : (c <= 4169 || (c < 4256 + ? (c >= 4176 && c <= 4253) + : c <= 4293))) + : (c <= 4295 || (c < 4348 ? (c < 4304 ? c == 4301 : c <= 4346) : (c <= 4680 || (c < 4688 ? (c >= 4682 && c <= 4685) - : c <= 4694))) - : (c <= 4696 || (c < 4746 + : c <= 4694))))))) + : (c <= 4696 || (c < 4888 + ? (c < 4792 + ? (c < 4746 ? (c < 4704 ? (c >= 4698 && c <= 4701) : c <= 4744) : (c <= 4749 || (c < 4786 ? (c >= 4752 && c <= 4784) - : c <= 4789))))) - : (c <= 4798 || (c < 4888 - ? (c < 4808 + : c <= 4789))) + : (c <= 4798 || (c < 4808 ? (c < 4802 ? c == 4800 : c <= 4805) : (c <= 4822 || (c < 4882 ? (c >= 4824 && c <= 4880) - : c <= 4885))) - : (c <= 4954 || (c < 4992 + : c <= 4885))))) + : (c <= 4954 || (c < 5121 + ? (c < 4992 ? (c < 4969 ? (c >= 4957 && c <= 4959) : c <= 4977) - : (c <= 5007 || (c >= 5024 && c <= 5109))))))))) - : (c <= 5117 || (c < 6432 - ? (c < 6002 - ? (c < 5888 - ? (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880))) - : (c <= 5900 || (c < 5952 - ? (c < 5920 - ? (c >= 5902 && c <= 5908) - : c <= 5940) - : (c <= 5971 || (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000))))) - : (c <= 6003 || (c < 6160 - ? (c < 6108 - ? (c < 6103 - ? (c >= 6016 && c <= 6099) - : c <= 6103) - : (c <= 6109 || (c < 6155 - ? (c >= 6112 && c <= 6121) - : c <= 6157))) - : (c <= 6169 || (c < 6320 - ? (c < 6272 - ? (c >= 6176 && c <= 6264) - : c <= 6314) - : (c <= 6389 || (c >= 6400 && c <= 6430))))))) - : (c <= 6443 || (c < 6823 - ? (c < 6608 - ? (c < 6512 - ? (c < 6470 + : (c <= 5007 || (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117))) + : (c <= 5740 || (c < 5792 + ? (c < 5761 + ? (c >= 5743 && c <= 5759) + : c <= 5786) + : (c <= 5866 || (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5909))))))))) + : (c <= 5940 || (c < 6752 + ? (c < 6272 + ? (c < 6103 + ? (c < 5998 + ? (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996) + : (c <= 6000 || (c < 6016 + ? (c >= 6002 && c <= 6003) + : c <= 6099))) + : (c <= 6103 || (c < 6155 + ? (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121) + : (c <= 6157 || (c < 6176 + ? (c >= 6159 && c <= 6169) + : c <= 6264))))) + : (c <= 6314 || (c < 6512 + ? (c < 6432 + ? (c < 6400 + ? (c >= 6320 && c <= 6389) + : c <= 6430) + : (c <= 6443 || (c < 6470 ? (c >= 6448 && c <= 6459) - : c <= 6509) - : (c <= 6516 || (c < 6576 + : c <= 6509))) + : (c <= 6516 || (c < 6608 + ? (c < 6576 ? (c >= 6528 && c <= 6571) - : c <= 6601))) - : (c <= 6618 || (c < 6752 - ? (c < 6688 + : c <= 6601) + : (c <= 6618 || (c < 6688 ? (c >= 6656 && c <= 6683) - : c <= 6750) - : (c <= 6780 || (c < 6800 + : c <= 6750))))))) + : (c <= 6780 || (c < 7245 + ? (c < 6912 + ? (c < 6823 + ? (c < 6800 ? (c >= 6783 && c <= 6793) - : c <= 6809))))) - : (c <= 6823 || (c < 7040 - ? (c < 6912 - ? (c < 6847 + : c <= 6809) + : (c <= 6823 || (c < 6847 ? (c >= 6832 && c <= 6845) - : c <= 6848) - : (c <= 6987 || (c < 7019 + : c <= 6862))) + : (c <= 6988 || (c < 7040 + ? (c < 7019 ? (c >= 6992 && c <= 7001) - : c <= 7027))) - : (c <= 7155 || (c < 7245 - ? (c < 7232 + : c <= 7027) + : (c <= 7155 || (c < 7232 ? (c >= 7168 && c <= 7223) - : c <= 7241) - : (c <= 7293 || (c >= 7296 && c <= 7304))))))))))) - : (c <= 7354 || (c < 11312 - ? (c < 8182 - ? (c < 8029 - ? (c < 7960 - ? (c < 7380 - ? (c < 7376 - ? (c >= 7357 && c <= 7359) - : c <= 7378) - : (c <= 7418 || (c < 7675 - ? (c >= 7424 && c <= 7673) - : c <= 7957))) - : (c <= 7965 || (c < 8016 - ? (c < 8008 - ? (c >= 7968 && c <= 8005) - : c <= 8013) - : (c <= 8023 || (c < 8027 - ? c == 8025 - : c <= 8027))))) - : (c <= 8029 || (c < 8134 - ? (c < 8118 - ? (c < 8064 - ? (c >= 8031 && c <= 8061) - : c <= 8116) - : (c <= 8124 || (c < 8130 - ? c == 8126 - : c <= 8132))) - : (c <= 8140 || (c < 8160 - ? (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155) - : (c <= 8172 || (c >= 8178 && c <= 8180))))))) - : (c <= 8188 || (c < 8469 - ? (c < 8400 + : c <= 7241))))) + : (c <= 7293 || (c < 7424 + ? (c < 7357 + ? (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354) + : (c <= 7359 || (c < 7380 + ? (c >= 7376 && c <= 7378) + : c <= 7418))) + : (c <= 7957 || (c < 8008 + ? (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005) + : (c <= 8013 || (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025))))))))))) + : (c <= 8027 || (c < 11728 + ? (c < 8469 + ? (c < 8182 + ? (c < 8130 + ? (c < 8064 + ? (c < 8031 + ? c == 8029 + : c <= 8061) + : (c <= 8116 || (c < 8126 + ? (c >= 8118 && c <= 8124) + : c <= 8126))) + : (c <= 8132 || (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c < 8178 + ? (c >= 8160 && c <= 8172) + : c <= 8180))))) + : (c <= 8188 || (c < 8400 ? (c < 8305 ? (c < 8276 ? (c >= 8255 && c <= 8256) @@ -8123,8 +8389,9 @@ static inline bool sym_identifier_character_set_6(int32_t c) { : c <= 8432) : (c <= 8450 || (c < 8458 ? c == 8455 - : c <= 8467))))) - : (c <= 8469 || (c < 8508 + : c <= 8467))))))) + : (c <= 8469 || (c < 11520 + ? (c < 8508 ? (c < 8486 ? (c < 8484 ? (c >= 8472 && c <= 8477) @@ -8136,516 +8403,561 @@ static inline bool sym_identifier_character_set_6(int32_t c) { ? (c < 8526 ? (c >= 8517 && c <= 8521) : c <= 8526) - : (c <= 8584 || (c >= 11264 && c <= 11310))))))))) - : (c <= 11358 || (c < 12441 - ? (c < 11704 - ? (c < 11568 - ? (c < 11520 - ? (c < 11499 - ? (c >= 11360 && c <= 11492) - : c <= 11507) - : (c <= 11557 || (c < 11565 + : (c <= 8584 || (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11507))))) + : (c <= 11557 || (c < 11680 + ? (c < 11568 + ? (c < 11565 ? c == 11559 - : c <= 11565))) - : (c <= 11623 || (c < 11680 - ? (c < 11647 + : c <= 11565) + : (c <= 11623 || (c < 11647 ? c == 11631 - : c <= 11670) - : (c <= 11686 || (c < 11696 + : c <= 11670))) + : (c <= 11686 || (c < 11704 + ? (c < 11696 ? (c >= 11688 && c <= 11694) - : c <= 11702))))) - : (c <= 11710 || (c < 12293 - ? (c < 11728 - ? (c < 11720 + : c <= 11702) + : (c <= 11710 || (c < 11720 ? (c >= 11712 && c <= 11718) - : c <= 11726) - : (c <= 11734 || (c < 11744 + : c <= 11726))))))))) + : (c <= 11734 || (c < 42775 + ? (c < 12549 + ? (c < 12344 + ? (c < 12293 + ? (c < 11744 ? (c >= 11736 && c <= 11742) - : c <= 11775))) - : (c <= 12295 || (c < 12344 - ? (c < 12337 + : c <= 11775) + : (c <= 12295 || (c < 12337 ? (c >= 12321 && c <= 12335) - : c <= 12341) - : (c <= 12348 || (c >= 12353 && c <= 12438))))))) - : (c <= 12442 || (c < 42240 - ? (c < 12704 - ? (c < 12540 - ? (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538) - : (c <= 12543 || (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686))) - : (c <= 12735 || (c < 19968 - ? (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903) - : (c <= 40956 || (c < 42192 - ? (c >= 40960 && c <= 42124) - : c <= 42237))))) - : (c <= 42508 || (c < 42786 - ? (c < 42612 - ? (c < 42560 - ? (c >= 42512 && c <= 42539) - : c <= 42607) - : (c <= 42621 || (c < 42775 - ? (c >= 42623 && c <= 42737) - : c <= 42783))) - : (c <= 42888 || (c < 42997 - ? (c < 42946 - ? (c >= 42891 && c <= 42943) + : c <= 12341))) + : (c <= 12348 || (c < 12445 + ? (c < 12441 + ? (c >= 12353 && c <= 12438) + : c <= 12442) + : (c <= 12447 || (c < 12540 + ? (c >= 12449 && c <= 12538) + : c <= 12543))))) + : (c <= 12591 || (c < 42192 + ? (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c < 19968 + ? (c >= 13312 && c <= 19903) + : c <= 42124))) + : (c <= 42237 || (c < 42560 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42539) + : (c <= 42607 || (c < 42623 + ? (c >= 42612 && c <= 42621) + : c <= 42737))))))) + : (c <= 42783 || (c < 43259 + ? (c < 42994 + ? (c < 42960 + ? (c < 42891 + ? (c >= 42786 && c <= 42888) : c <= 42954) - : (c <= 43047 || c == 43052)))))))))))))) - : (c <= 43123 || (c < 71096 - ? (c < 66864 - ? (c < 64914 - ? (c < 43816 - ? (c < 43584 - ? (c < 43312 - ? (c < 43232 - ? (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225) - : (c <= 43255 || (c < 43261 - ? c == 43259 - : c <= 43309))) - : (c <= 43347 || (c < 43471 - ? (c < 43392 - ? (c >= 43360 && c <= 43388) - : c <= 43456) - : (c <= 43481 || (c < 43520 - ? (c >= 43488 && c <= 43518) - : c <= 43574))))) - : (c <= 43597 || (c < 43762 - ? (c < 43642 - ? (c < 43616 - ? (c >= 43600 && c <= 43609) - : c <= 43638) - : (c <= 43714 || (c < 43744 + : (c <= 42961 || (c < 42965 + ? c == 42963 + : c <= 42969))) + : (c <= 43047 || (c < 43136 + ? (c < 43072 + ? c == 43052 + : c <= 43123) + : (c <= 43205 || (c < 43232 + ? (c >= 43216 && c <= 43225) + : c <= 43255))))) + : (c <= 43259 || (c < 43488 + ? (c < 43360 + ? (c < 43312 + ? (c >= 43261 && c <= 43309) + : c <= 43347) + : (c <= 43388 || (c < 43471 + ? (c >= 43392 && c <= 43456) + : c <= 43481))) + : (c <= 43518 || (c < 43600 + ? (c < 43584 + ? (c >= 43520 && c <= 43574) + : c <= 43597) + : (c <= 43609 || (c >= 43616 && c <= 43638))))))))))))))) + : (c <= 43714 || (c < 71472 + ? (c < 67644 + ? (c < 65382 + ? (c < 64318 + ? (c < 44012 + ? (c < 43793 + ? (c < 43762 + ? (c < 43744 ? (c >= 43739 && c <= 43741) - : c <= 43759))) - : (c <= 43766 || (c < 43793 - ? (c < 43785 + : c <= 43759) + : (c <= 43766 || (c < 43785 ? (c >= 43777 && c <= 43782) - : c <= 43790) - : (c <= 43798 || (c >= 43808 && c <= 43814))))))) - : (c <= 43822 || (c < 64275 - ? (c < 44032 - ? (c < 43888 - ? (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881) - : (c <= 44010 || (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025))) - : (c <= 55203 || (c < 63744 - ? (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291) - : (c <= 64109 || (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262))))) - : (c <= 64279 || (c < 64323 - ? (c < 64312 - ? (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310) - : (c <= 64316 || (c < 64320 - ? c == 64318 - : c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65549 - ? (c < 65151 - ? (c < 65137 - ? (c < 65056 - ? (c < 65024 - ? (c >= 65008 && c <= 65017) - : c <= 65039) - : (c <= 65071 || (c < 65101 - ? (c >= 65075 && c <= 65076) - : c <= 65103))) - : (c <= 65137 || (c < 65145 - ? (c < 65143 - ? c == 65139 - : c <= 65143) - : (c <= 65145 || (c < 65149 - ? c == 65147 - : c <= 65149))))) - : (c <= 65276 || (c < 65474 - ? (c < 65343 - ? (c < 65313 - ? (c >= 65296 && c <= 65305) - : c <= 65338) - : (c <= 65343 || (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65470))) - : (c <= 65479 || (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c >= 65536 && c <= 65547))))))) - : (c <= 65574 || (c < 66349 - ? (c < 65856 - ? (c < 65599 + : c <= 43790))) + : (c <= 43798 || (c < 43824 + ? (c < 43816 + ? (c >= 43808 && c <= 43814) + : c <= 43822) + : (c <= 43866 || (c < 43888 + ? (c >= 43868 && c <= 43881) + : c <= 44010))))) + : (c <= 44013 || (c < 64112 + ? (c < 55216 + ? (c < 44032 + ? (c >= 44016 && c <= 44025) + : c <= 55203) + : (c <= 55238 || (c < 63744 + ? (c >= 55243 && c <= 55291) + : c <= 64109))) + : (c <= 64217 || (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64296 || (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316))))))) + : (c <= 64318 || (c < 65101 + ? (c < 64848 + ? (c < 64326 + ? (c < 64323 + ? (c >= 64320 && c <= 64321) + : c <= 64324) + : (c <= 64433 || (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829))) + : (c <= 64911 || (c < 65024 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65017) + : (c <= 65039 || (c < 65075 + ? (c >= 65056 && c <= 65071) + : c <= 65076))))) + : (c <= 65103 || (c < 65149 + ? (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || (c < 65147 + ? c == 65145 + : c <= 65147))) + : (c <= 65149 || (c < 65313 + ? (c < 65296 + ? (c >= 65151 && c <= 65276) + : c <= 65305) + : (c <= 65338 || (c < 65345 + ? c == 65343 + : c <= 65370))))))))) + : (c <= 65470 || (c < 66560 + ? (c < 65856 + ? (c < 65549 + ? (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c < 65536 + ? (c >= 65498 && c <= 65500) + : c <= 65547))) + : (c <= 65574 || (c < 65599 ? (c < 65596 ? (c >= 65576 && c <= 65594) : c <= 65597) : (c <= 65613 || (c < 65664 ? (c >= 65616 && c <= 65629) - : c <= 65786))) - : (c <= 65908 || (c < 66208 + : c <= 65786))))) + : (c <= 65908 || (c < 66349 + ? (c < 66208 ? (c < 66176 ? c == 66045 : c <= 66204) : (c <= 66256 || (c < 66304 ? c == 66272 - : c <= 66335))))) - : (c <= 66378 || (c < 66560 - ? (c < 66464 + : c <= 66335))) + : (c <= 66378 || (c < 66464 ? (c < 66432 ? (c >= 66384 && c <= 66426) : c <= 66461) : (c <= 66499 || (c < 66513 ? (c >= 66504 && c <= 66511) - : c <= 66517))) - : (c <= 66717 || (c < 66776 + : c <= 66517))))))) + : (c <= 66717 || (c < 66995 + ? (c < 66928 + ? (c < 66776 ? (c < 66736 ? (c >= 66720 && c <= 66729) : c <= 66771) - : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) - : (c <= 66915 || (c < 69632 - ? (c < 68152 - ? (c < 67808 - ? (c < 67594 - ? (c < 67424 - ? (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413) - : (c <= 67431 || (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592))) - : (c <= 67637 || (c < 67647 - ? (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644) - : (c <= 67669 || (c < 67712 - ? (c >= 67680 && c <= 67702) - : c <= 67742))))) - : (c <= 67826 || (c < 68096 - ? (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031))) - : (c <= 68099 || (c < 68117 - ? (c < 68108 - ? (c >= 68101 && c <= 68102) - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))))))) - : (c <= 68154 || (c < 68800 - ? (c < 68352 - ? (c < 68224 - ? (c < 68192 + : (c <= 66811 || (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915))) + : (c <= 66938 || (c < 66964 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : c <= 66962) + : (c <= 66965 || (c < 66979 + ? (c >= 66967 && c <= 66977) + : c <= 66993))))) + : (c <= 67001 || (c < 67463 + ? (c < 67392 + ? (c < 67072 + ? (c >= 67003 && c <= 67004) + : c <= 67382) + : (c <= 67413 || (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461))) + : (c <= 67504 || (c < 67592 + ? (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589) + : (c <= 67592 || (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640))))))))))) + : (c <= 67644 || (c < 69968 + ? (c < 68480 + ? (c < 68108 + ? (c < 67840 + ? (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c < 67828 + ? (c >= 67808 && c <= 67826) + : c <= 67829))) + : (c <= 67861 || (c < 68030 + ? (c < 67968 + ? (c >= 67872 && c <= 67897) + : c <= 68023) + : (c <= 68031 || (c < 68101 + ? (c >= 68096 && c <= 68099) + : c <= 68102))))) + : (c <= 68115 || (c < 68224 + ? (c < 68152 + ? (c < 68121 + ? (c >= 68117 && c <= 68119) + : c <= 68149) + : (c <= 68154 || (c < 68192 ? c == 68159 - : c <= 68220) - : (c <= 68252 || (c < 68297 + : c <= 68220))) + : (c <= 68252 || (c < 68352 + ? (c < 68297 ? (c >= 68288 && c <= 68295) - : c <= 68326))) - : (c <= 68405 || (c < 68480 - ? (c < 68448 + : c <= 68326) + : (c <= 68405 || (c < 68448 ? (c >= 68416 && c <= 68437) - : c <= 68466) - : (c <= 68497 || (c < 68736 + : c <= 68466))))))) + : (c <= 68497 || (c < 69488 + ? (c < 69248 + ? (c < 68800 + ? (c < 68736 ? (c >= 68608 && c <= 68680) - : c <= 68786))))) - : (c <= 68850 || (c < 69376 - ? (c < 69248 - ? (c < 68912 + : c <= 68786) + : (c <= 68850 || (c < 68912 ? (c >= 68864 && c <= 68903) - : c <= 68921) - : (c <= 69289 || (c < 69296 + : c <= 68921))) + : (c <= 69289 || (c < 69376 + ? (c < 69296 ? (c >= 69291 && c <= 69292) - : c <= 69297))) - : (c <= 69404 || (c < 69552 - ? (c < 69424 + : c <= 69297) + : (c <= 69404 || (c < 69424 ? c == 69415 - : c <= 69456) - : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) - : (c <= 69702 || (c < 70384 - ? (c < 70094 - ? (c < 69942 - ? (c < 69840 - ? (c < 69759 - ? (c >= 69734 && c <= 69743) - : c <= 69818) - : (c <= 69864 || (c < 69888 - ? (c >= 69872 && c <= 69881) - : c <= 69940))) - : (c <= 69951 || (c < 70006 - ? (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003) - : (c <= 70006 || (c < 70089 - ? (c >= 70016 && c <= 70084) - : c <= 70092))))) - : (c <= 70106 || (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70199 || (c < 70272 - ? c == 70206 - : c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70378))))))) - : (c <= 70393 || (c < 70487 - ? (c < 70450 - ? (c < 70415 - ? (c < 70405 + : c <= 69456))))) + : (c <= 69509 || (c < 69826 + ? (c < 69632 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69702 || (c < 69759 + ? (c >= 69734 && c <= 69749) + : c <= 69818))) + : (c <= 69826 || (c < 69888 + ? (c < 69872 + ? (c >= 69840 && c <= 69864) + : c <= 69881) + : (c <= 69940 || (c < 69956 + ? (c >= 69942 && c <= 69951) + : c <= 69959))))))))) + : (c <= 70003 || (c < 70471 + ? (c < 70287 + ? (c < 70144 + ? (c < 70089 + ? (c < 70016 + ? c == 70006 + : c <= 70084) + : (c <= 70092 || (c < 70108 + ? (c >= 70094 && c <= 70106) + : c <= 70108))) + : (c <= 70161 || (c < 70272 + ? (c < 70206 + ? (c >= 70163 && c <= 70199) + : c <= 70206) + : (c <= 70278 || (c < 70282 + ? c == 70280 + : c <= 70285))))) + : (c <= 70301 || (c < 70415 + ? (c < 70384 + ? (c < 70320 + ? (c >= 70303 && c <= 70312) + : c <= 70378) + : (c <= 70393 || (c < 70405 ? (c >= 70400 && c <= 70403) - : c <= 70412) - : (c <= 70416 || (c < 70442 + : c <= 70412))) + : (c <= 70416 || (c < 70450 + ? (c < 70442 ? (c >= 70419 && c <= 70440) - : c <= 70448))) - : (c <= 70451 || (c < 70471 - ? (c < 70459 + : c <= 70448) + : (c <= 70451 || (c < 70459 ? (c >= 70453 && c <= 70457) - : c <= 70468) - : (c <= 70472 || (c < 70480 + : c <= 70468))))))) + : (c <= 70472 || (c < 70864 + ? (c < 70512 + ? (c < 70487 + ? (c < 70480 ? (c >= 70475 && c <= 70477) - : c <= 70480))))) - : (c <= 70487 || (c < 70750 - ? (c < 70512 - ? (c < 70502 + : c <= 70480) + : (c <= 70487 || (c < 70502 ? (c >= 70493 && c <= 70499) - : c <= 70508) - : (c <= 70516 || (c < 70736 + : c <= 70508))) + : (c <= 70516 || (c < 70750 + ? (c < 70736 ? (c >= 70656 && c <= 70730) - : c <= 70745))) - : (c <= 70753 || (c < 70864 - ? (c < 70855 + : c <= 70745) + : (c <= 70753 || (c < 70855 ? (c >= 70784 && c <= 70853) - : c <= 70855) - : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) - : (c <= 71104 || (c < 119894 - ? (c < 73104 - ? (c < 72163 - ? (c < 71935 - ? (c < 71360 - ? (c < 71236 - ? (c < 71168 - ? (c >= 71128 && c <= 71133) - : c <= 71232) - : (c <= 71236 || (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352))) - : (c <= 71369 || (c < 71472 - ? (c < 71453 - ? (c >= 71424 && c <= 71450) - : c <= 71467) - : (c <= 71481 || (c < 71840 - ? (c >= 71680 && c <= 71738) - : c <= 71913))))) - : (c <= 71942 || (c < 71995 - ? (c < 71957 - ? (c < 71948 - ? c == 71945 - : c <= 71955) - : (c <= 71958 || (c < 71991 - ? (c >= 71960 && c <= 71989) - : c <= 71992))) - : (c <= 72003 || (c < 72106 - ? (c < 72096 - ? (c >= 72016 && c <= 72025) - : c <= 72103) - : (c <= 72151 || (c >= 72154 && c <= 72161))))))) - : (c <= 72164 || (c < 72873 - ? (c < 72704 - ? (c < 72272 - ? (c < 72263 + : c <= 70855))))) + : (c <= 70873 || (c < 71248 + ? (c < 71128 + ? (c < 71096 + ? (c >= 71040 && c <= 71093) + : c <= 71104) + : (c <= 71133 || (c < 71236 + ? (c >= 71168 && c <= 71232) + : c <= 71236))) + : (c <= 71257 || (c < 71424 + ? (c < 71360 + ? (c >= 71296 && c <= 71352) + : c <= 71369) + : (c <= 71450 || (c >= 71453 && c <= 71467))))))))))))) + : (c <= 71481 || (c < 119973 + ? (c < 82944 + ? (c < 72784 + ? (c < 72096 + ? (c < 71948 + ? (c < 71840 + ? (c < 71680 + ? (c >= 71488 && c <= 71494) + : c <= 71738) + : (c <= 71913 || (c < 71945 + ? (c >= 71935 && c <= 71942) + : c <= 71945))) + : (c <= 71955 || (c < 71991 + ? (c < 71960 + ? (c >= 71957 && c <= 71958) + : c <= 71989) + : (c <= 71992 || (c < 72016 + ? (c >= 71995 && c <= 72003) + : c <= 72025))))) + : (c <= 72103 || (c < 72272 + ? (c < 72163 + ? (c < 72154 + ? (c >= 72106 && c <= 72151) + : c <= 72161) + : (c <= 72164 || (c < 72263 ? (c >= 72192 && c <= 72254) - : c <= 72263) - : (c <= 72345 || (c < 72384 + : c <= 72263))) + : (c <= 72345 || (c < 72704 + ? (c < 72368 ? c == 72349 - : c <= 72440))) - : (c <= 72712 || (c < 72784 - ? (c < 72760 + : c <= 72440) + : (c <= 72712 || (c < 72760 ? (c >= 72714 && c <= 72758) - : c <= 72768) - : (c <= 72793 || (c < 72850 + : c <= 72768))))))) + : (c <= 72793 || (c < 73063 + ? (c < 72971 + ? (c < 72873 + ? (c < 72850 ? (c >= 72818 && c <= 72847) - : c <= 72871))))) - : (c <= 72886 || (c < 73023 - ? (c < 72971 - ? (c < 72968 + : c <= 72871) + : (c <= 72886 || (c < 72968 ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73014 || (c < 73020 + : c <= 72969))) + : (c <= 73014 || (c < 73023 + ? (c < 73020 ? c == 73018 - : c <= 73021))) - : (c <= 73031 || (c < 73063 - ? (c < 73056 + : c <= 73021) + : (c <= 73031 || (c < 73056 ? (c >= 73040 && c <= 73049) - : c <= 73061) - : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) - : (c <= 73105 || (c < 94095 - ? (c < 92768 - ? (c < 74752 - ? (c < 73440 - ? (c < 73120 - ? (c >= 73107 && c <= 73112) - : c <= 73129) - : (c <= 73462 || (c < 73728 - ? c == 73648 - : c <= 74649))) - : (c <= 74862 || (c < 82944 - ? (c < 77824 - ? (c >= 74880 && c <= 75075) - : c <= 78894) - : (c <= 83526 || (c < 92736 + : c <= 73061))))) + : (c <= 73064 || (c < 73648 + ? (c < 73107 + ? (c < 73104 + ? (c >= 73066 && c <= 73102) + : c <= 73105) + : (c <= 73112 || (c < 73440 + ? (c >= 73120 && c <= 73129) + : c <= 73462))) + : (c <= 73648 || (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c < 77824 + ? (c >= 77712 && c <= 77808) + : c <= 78894))))))))) + : (c <= 83526 || (c < 110581 + ? (c < 93053 + ? (c < 92880 + ? (c < 92768 + ? (c < 92736 ? (c >= 92160 && c <= 92728) - : c <= 92766))))) - : (c <= 92777 || (c < 93027 - ? (c < 92928 - ? (c < 92912 - ? (c >= 92880 && c <= 92909) - : c <= 92916) - : (c <= 92982 || (c < 93008 - ? (c >= 92992 && c <= 92995) - : c <= 93017))) - : (c <= 93047 || (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c >= 94031 && c <= 94087))))))) - : (c <= 94111 || (c < 113776 - ? (c < 101632 - ? (c < 94192 - ? (c < 94179 - ? (c >= 94176 && c <= 94177) - : c <= 94180) - : (c <= 94193 || (c < 100352 - ? (c >= 94208 && c <= 100343) - : c <= 101589))) - : (c <= 101640 || (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110878) - : c <= 110930) - : (c <= 110951 || (c < 113664 - ? (c >= 110960 && c <= 111355) - : c <= 113770))))) - : (c <= 113788 || (c < 119163 - ? (c < 113821 - ? (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817) - : (c <= 113822 || (c < 119149 + : c <= 92766) + : (c <= 92777 || (c < 92864 + ? (c >= 92784 && c <= 92862) + : c <= 92873))) + : (c <= 92909 || (c < 92992 + ? (c < 92928 + ? (c >= 92912 && c <= 92916) + : c <= 92982) + : (c <= 92995 || (c < 93027 + ? (c >= 93008 && c <= 93017) + : c <= 93047))))) + : (c <= 93071 || (c < 94179 + ? (c < 94031 + ? (c < 93952 + ? (c >= 93760 && c <= 93823) + : c <= 94026) + : (c <= 94087 || (c < 94176 + ? (c >= 94095 && c <= 94111) + : c <= 94177))) + : (c <= 94180 || (c < 100352 + ? (c < 94208 + ? (c >= 94192 && c <= 94193) + : c <= 100343) + : (c <= 101589 || (c < 110576 + ? (c >= 101632 && c <= 101640) + : c <= 110579))))))) + : (c <= 110587 || (c < 118576 + ? (c < 113664 + ? (c < 110928 + ? (c < 110592 + ? (c >= 110589 && c <= 110590) + : c <= 110882) + : (c <= 110930 || (c < 110960 + ? (c >= 110948 && c <= 110951) + : c <= 111355))) + : (c <= 113770 || (c < 113808 + ? (c < 113792 + ? (c >= 113776 && c <= 113788) + : c <= 113800) + : (c <= 113817 || (c < 118528 + ? (c >= 113821 && c <= 113822) + : c <= 118573))))) + : (c <= 118598 || (c < 119362 + ? (c < 119163 + ? (c < 119149 ? (c >= 119141 && c <= 119145) - : c <= 119154))) - : (c <= 119170 || (c < 119362 - ? (c < 119210 + : c <= 119154) + : (c <= 119170 || (c < 119210 ? (c >= 119173 && c <= 119179) - : c <= 119213) - : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 124928 - ? (c < 120630 - ? (c < 120094 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : c <= 119213))) + : (c <= 119364 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 124912 + ? (c < 120746 + ? (c < 120134 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 + : c <= 119993) + : (c <= 119995 || (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c < 120086 + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 ? (c >= 120077 && c <= 120084) - : c <= 120092))))) - : (c <= 120121 || (c < 120488 - ? (c < 120134 - ? (c < 120128 + : c <= 120092) + : (c <= 120121 || (c < 120128 ? (c >= 120123 && c <= 120126) - : c <= 120132) - : (c <= 120134 || (c < 120146 + : c <= 120132))))) + : (c <= 120134 || (c < 120572 + ? (c < 120488 + ? (c < 120146 ? (c >= 120138 && c <= 120144) - : c <= 120485))) - : (c <= 120512 || (c < 120572 - ? (c < 120540 + : c <= 120485) + : (c <= 120512 || (c < 120540 ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))))))) - : (c <= 120654 || (c < 121505 - ? (c < 120782 - ? (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779))) - : (c <= 120831 || (c < 121461 - ? (c < 121403 - ? (c >= 121344 && c <= 121398) - : c <= 121452) - : (c <= 121461 || (c < 121499 - ? c == 121476 - : c <= 121503))))) - : (c <= 121519 || (c < 123136 - ? (c < 122907 - ? (c < 122888 + : c <= 120570))) + : (c <= 120596 || (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744))))))) + : (c <= 120770 || (c < 122907 + ? (c < 121476 + ? (c < 121344 + ? (c < 120782 + ? (c >= 120772 && c <= 120779) + : c <= 120831) + : (c <= 121398 || (c < 121461 + ? (c >= 121403 && c <= 121452) + : c <= 121461))) + : (c <= 121476 || (c < 122624 + ? (c < 121505 + ? (c >= 121499 && c <= 121503) + : c <= 121519) + : (c <= 122654 || (c < 122888 ? (c >= 122880 && c <= 122886) - : c <= 122904) - : (c <= 122913 || (c < 122918 + : c <= 122904))))) + : (c <= 122913 || (c < 123214 + ? (c < 123136 + ? (c < 122918 ? (c >= 122915 && c <= 122916) - : c <= 122922))) - : (c <= 123180 || (c < 123214 - ? (c < 123200 + : c <= 122922) + : (c <= 123180 || (c < 123200 ? (c >= 123184 && c <= 123197) - : c <= 123209) - : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) - : (c <= 125124 || (c < 126557 - ? (c < 126523 - ? (c < 126497 - ? (c < 125264 - ? (c < 125184 - ? (c >= 125136 && c <= 125142) - : c <= 125259) - : (c <= 125273 || (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495))) - : (c <= 126498 || (c < 126505 - ? (c < 126503 - ? c == 126500 - : c <= 126503) - : (c <= 126514 || (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521))))) - : (c <= 126523 || (c < 126545 - ? (c < 126537 - ? (c < 126535 - ? c == 126530 - : c <= 126535) - : (c <= 126537 || (c < 126541 - ? c == 126539 - : c <= 126543))) - : (c <= 126546 || (c < 126553 - ? (c < 126551 - ? c == 126548 - : c <= 126551) - : (c <= 126553 || c == 126555)))))) + : c <= 123209))) + : (c <= 123214 || (c < 124896 + ? (c < 123584 + ? (c >= 123536 && c <= 123566) + : c <= 123641) + : (c <= 124902 || (c < 124909 + ? (c >= 124904 && c <= 124907) + : c <= 124910))))))))) + : (c <= 124926 || (c < 126557 + ? (c < 126521 + ? (c < 126469 + ? (c < 125184 + ? (c < 125136 + ? (c >= 124928 && c <= 125124) + : c <= 125142) + : (c <= 125259 || (c < 126464 + ? (c >= 125264 && c <= 125273) + : c <= 126467))) + : (c <= 126495 || (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : c <= 126519))))) + : (c <= 126521 || (c < 126541 + ? (c < 126535 + ? (c < 126530 + ? c == 126523 + : c <= 126530) + : (c <= 126535 || (c < 126539 + ? c == 126537 + : c <= 126539))) + : (c <= 126543 || (c < 126551 + ? (c < 126548 + ? (c >= 126545 && c <= 126546) + : c <= 126548) + : (c <= 126551 || (c < 126555 + ? c == 126553 + : c <= 126555))))))) : (c <= 126557 || (c < 126629 ? (c < 126580 ? (c < 126564 @@ -8667,8 +8979,8 @@ static inline bool sym_identifier_character_set_6(int32_t c) { ? (c < 130032 ? (c >= 126635 && c <= 126651) : c <= 130041) - : (c <= 173789 || (c < 177984 - ? (c >= 173824 && c <= 177972) + : (c <= 173791 || (c < 177984 + ? (c >= 173824 && c <= 177976) : c <= 178205))) : (c <= 183969 || (c < 196608 ? (c < 194560 @@ -8678,10 +8990,10 @@ static inline bool sym_identifier_character_set_6(int32_t c) { } static inline bool sym_identifier_character_set_7(int32_t c) { - return (c < 43052 - ? (c < 3718 - ? (c < 2730 - ? (c < 2042 + return (c < 43616 + ? (c < 3782 + ? (c < 2748 + ? (c < 2045 ? (c < 1015 ? (c < 710 ? (c < 181 @@ -8742,338 +9054,344 @@ static inline bool sym_identifier_character_set_7(int32_t c) { ? (c < 1808 ? c == 1791 : c <= 1866) - : (c <= 1969 || (c >= 1984 && c <= 2037))))))))) - : (c <= 2042 || (c < 2534 - ? (c < 2447 - ? (c < 2230 - ? (c < 2112 - ? (c < 2048 - ? c == 2045 - : c <= 2093) - : (c <= 2139 || (c < 2208 - ? (c >= 2144 && c <= 2154) - : c <= 2228))) - : (c <= 2247 || (c < 2406 - ? (c < 2275 - ? (c >= 2259 && c <= 2273) - : c <= 2403) - : (c <= 2415 || (c < 2437 - ? (c >= 2417 && c <= 2435) - : c <= 2444))))) - : (c <= 2448 || (c < 2503 - ? (c < 2482 - ? (c < 2474 - ? (c >= 2451 && c <= 2472) - : c <= 2480) - : (c <= 2482 || (c < 2492 - ? (c >= 2486 && c <= 2489) - : c <= 2500))) - : (c <= 2504 || (c < 2524 - ? (c < 2519 - ? (c >= 2507 && c <= 2510) - : c <= 2519) - : (c <= 2525 || (c >= 2527 && c <= 2531))))))) - : (c <= 2545 || (c < 2622 - ? (c < 2579 - ? (c < 2561 - ? (c < 2558 - ? c == 2556 - : c <= 2558) - : (c <= 2563 || (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576))) - : (c <= 2600 || (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c < 2620 - ? (c >= 2616 && c <= 2617) - : c <= 2620))))) - : (c <= 2626 || (c < 2662 - ? (c < 2641 - ? (c < 2635 - ? (c >= 2631 && c <= 2632) - : c <= 2637) - : (c <= 2641 || (c < 2654 - ? (c >= 2649 && c <= 2652) - : c <= 2654))) - : (c <= 2677 || (c < 2703 - ? (c < 2693 - ? (c >= 2689 && c <= 2691) - : c <= 2701) - : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) - : (c <= 2736 || (c < 3142 - ? (c < 2918 - ? (c < 2831 - ? (c < 2768 - ? (c < 2748 - ? (c < 2741 + : (c <= 1969 || (c < 2042 + ? (c >= 1984 && c <= 2037) + : c <= 2042))))))))) + : (c <= 2045 || (c < 2558 + ? (c < 2451 + ? (c < 2200 + ? (c < 2144 + ? (c < 2112 + ? (c >= 2048 && c <= 2093) + : c <= 2139) + : (c <= 2154 || (c < 2185 + ? (c >= 2160 && c <= 2183) + : c <= 2190))) + : (c <= 2273 || (c < 2417 + ? (c < 2406 + ? (c >= 2275 && c <= 2403) + : c <= 2415) + : (c <= 2435 || (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448))))) + : (c <= 2472 || (c < 2507 + ? (c < 2486 + ? (c < 2482 + ? (c >= 2474 && c <= 2480) + : c <= 2482) + : (c <= 2489 || (c < 2503 + ? (c >= 2492 && c <= 2500) + : c <= 2504))) + : (c <= 2510 || (c < 2527 + ? (c < 2524 + ? c == 2519 + : c <= 2525) + : (c <= 2531 || (c < 2556 + ? (c >= 2534 && c <= 2545) + : c <= 2556))))))) + : (c <= 2558 || (c < 2635 + ? (c < 2610 + ? (c < 2575 + ? (c < 2565 + ? (c >= 2561 && c <= 2563) + : c <= 2570) + : (c <= 2576 || (c < 2602 + ? (c >= 2579 && c <= 2600) + : c <= 2608))) + : (c <= 2611 || (c < 2620 + ? (c < 2616 + ? (c >= 2613 && c <= 2614) + : c <= 2617) + : (c <= 2620 || (c < 2631 + ? (c >= 2622 && c <= 2626) + : c <= 2632))))) + : (c <= 2637 || (c < 2693 + ? (c < 2654 + ? (c < 2649 + ? c == 2641 + : c <= 2652) + : (c <= 2654 || (c < 2689 + ? (c >= 2662 && c <= 2677) + : c <= 2691))) + : (c <= 2701 || (c < 2730 + ? (c < 2707 + ? (c >= 2703 && c <= 2705) + : c <= 2728) + : (c <= 2736 || (c < 2741 ? (c >= 2738 && c <= 2739) - : c <= 2745) - : (c <= 2757 || (c < 2763 + : c <= 2745))))))))))) + : (c <= 2757 || (c < 3168 + ? (c < 2958 + ? (c < 2866 + ? (c < 2809 + ? (c < 2768 + ? (c < 2763 ? (c >= 2759 && c <= 2761) - : c <= 2765))) - : (c <= 2768 || (c < 2809 - ? (c < 2790 + : c <= 2765) + : (c <= 2768 || (c < 2790 ? (c >= 2784 && c <= 2787) - : c <= 2799) - : (c <= 2815 || (c < 2821 + : c <= 2799))) + : (c <= 2815 || (c < 2831 + ? (c < 2821 ? (c >= 2817 && c <= 2819) - : c <= 2828))))) - : (c <= 2832 || (c < 2887 - ? (c < 2866 - ? (c < 2858 + : c <= 2828) + : (c <= 2832 || (c < 2858 ? (c >= 2835 && c <= 2856) - : c <= 2864) - : (c <= 2867 || (c < 2876 + : c <= 2864))))) + : (c <= 2867 || (c < 2908 + ? (c < 2887 + ? (c < 2876 ? (c >= 2869 && c <= 2873) - : c <= 2884))) - : (c <= 2888 || (c < 2908 - ? (c < 2901 + : c <= 2884) + : (c <= 2888 || (c < 2901 ? (c >= 2891 && c <= 2893) - : c <= 2903) - : (c <= 2909 || (c >= 2911 && c <= 2915))))))) - : (c <= 2927 || (c < 3006 - ? (c < 2969 - ? (c < 2949 - ? (c < 2946 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965))) - : (c <= 2970 || (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001))))) - : (c <= 3010 || (c < 3072 - ? (c < 3024 - ? (c < 3018 - ? (c >= 3014 && c <= 3016) - : c <= 3021) - : (c <= 3024 || (c < 3046 - ? c == 3031 - : c <= 3055))) - : (c <= 3084 || (c < 3114 - ? (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112) - : (c <= 3129 || (c >= 3133 && c <= 3140))))))))) - : (c <= 3144 || (c < 3398 - ? (c < 3260 - ? (c < 3200 - ? (c < 3160 - ? (c < 3157 - ? (c >= 3146 && c <= 3149) - : c <= 3158) - : (c <= 3162 || (c < 3174 - ? (c >= 3168 && c <= 3171) - : c <= 3183))) - : (c <= 3203 || (c < 3218 - ? (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216) - : (c <= 3240 || (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257))))) - : (c <= 3268 || (c < 3302 - ? (c < 3285 - ? (c < 3274 - ? (c >= 3270 && c <= 3272) - : c <= 3277) - : (c <= 3286 || (c < 3296 - ? c == 3294 - : c <= 3299))) - : (c <= 3311 || (c < 3342 - ? (c < 3328 - ? (c >= 3313 && c <= 3314) - : c <= 3340) - : (c <= 3344 || (c >= 3346 && c <= 3396))))))) - : (c <= 3400 || (c < 3530 - ? (c < 3457 - ? (c < 3423 - ? (c < 3412 - ? (c >= 3402 && c <= 3406) - : c <= 3415) - : (c <= 3427 || (c < 3450 - ? (c >= 3430 && c <= 3439) - : c <= 3455))) - : (c <= 3459 || (c < 3507 - ? (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505) - : (c <= 3515 || (c < 3520 - ? c == 3517 - : c <= 3526))))) - : (c <= 3530 || (c < 3585 - ? (c < 3544 - ? (c < 3542 - ? (c >= 3535 && c <= 3540) - : c <= 3542) - : (c <= 3551 || (c < 3570 - ? (c >= 3558 && c <= 3567) - : c <= 3571))) - : (c <= 3642 || (c < 3713 - ? (c < 3664 - ? (c >= 3648 && c <= 3662) - : c <= 3673) - : (c <= 3714 || c == 3716)))))))))))) - : (c <= 3722 || (c < 7296 - ? (c < 5024 - ? (c < 4256 - ? (c < 3893 - ? (c < 3784 - ? (c < 3751 + : c <= 2903))) + : (c <= 2909 || (c < 2929 + ? (c < 2918 + ? (c >= 2911 && c <= 2915) + : c <= 2927) + : (c <= 2929 || (c < 2949 + ? (c >= 2946 && c <= 2947) + : c <= 2954))))))) + : (c <= 2960 || (c < 3031 + ? (c < 2984 + ? (c < 2972 + ? (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970) + : (c <= 2972 || (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980))) + : (c <= 2986 || (c < 3014 + ? (c < 3006 + ? (c >= 2990 && c <= 3001) + : c <= 3010) + : (c <= 3016 || (c < 3024 + ? (c >= 3018 && c <= 3021) + : c <= 3024))))) + : (c <= 3031 || (c < 3132 + ? (c < 3086 + ? (c < 3072 + ? (c >= 3046 && c <= 3055) + : c <= 3084) + : (c <= 3088 || (c < 3114 + ? (c >= 3090 && c <= 3112) + : c <= 3129))) + : (c <= 3140 || (c < 3157 + ? (c < 3146 + ? (c >= 3142 && c <= 3144) + : c <= 3149) + : (c <= 3158 || (c < 3165 + ? (c >= 3160 && c <= 3162) + : c <= 3165))))))))) + : (c <= 3171 || (c < 3450 + ? (c < 3293 + ? (c < 3242 + ? (c < 3205 + ? (c < 3200 + ? (c >= 3174 && c <= 3183) + : c <= 3203) + : (c <= 3212 || (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240))) + : (c <= 3251 || (c < 3270 + ? (c < 3260 + ? (c >= 3253 && c <= 3257) + : c <= 3268) + : (c <= 3272 || (c < 3285 + ? (c >= 3274 && c <= 3277) + : c <= 3286))))) + : (c <= 3294 || (c < 3346 + ? (c < 3313 + ? (c < 3302 + ? (c >= 3296 && c <= 3299) + : c <= 3311) + : (c <= 3314 || (c < 3342 + ? (c >= 3328 && c <= 3340) + : c <= 3344))) + : (c <= 3396 || (c < 3412 + ? (c < 3402 + ? (c >= 3398 && c <= 3400) + : c <= 3406) + : (c <= 3415 || (c < 3430 + ? (c >= 3423 && c <= 3427) + : c <= 3439))))))) + : (c <= 3455 || (c < 3570 + ? (c < 3520 + ? (c < 3482 + ? (c < 3461 + ? (c >= 3457 && c <= 3459) + : c <= 3478) + : (c <= 3505 || (c < 3517 + ? (c >= 3507 && c <= 3515) + : c <= 3517))) + : (c <= 3526 || (c < 3542 + ? (c < 3535 + ? c == 3530 + : c <= 3540) + : (c <= 3542 || (c < 3558 + ? (c >= 3544 && c <= 3551) + : c <= 3567))))) + : (c <= 3571 || (c < 3718 + ? (c < 3664 + ? (c < 3648 + ? (c >= 3585 && c <= 3642) + : c <= 3662) + : (c <= 3673 || (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716))) + : (c <= 3722 || (c < 3751 ? (c < 3749 ? (c >= 3724 && c <= 3747) : c <= 3749) - : (c <= 3773 || (c < 3782 - ? (c >= 3776 && c <= 3780) - : c <= 3782))) - : (c <= 3789 || (c < 3840 - ? (c < 3804 - ? (c >= 3792 && c <= 3801) - : c <= 3807) - : (c <= 3840 || (c < 3872 - ? (c >= 3864 && c <= 3865) - : c <= 3881))))) - : (c <= 3893 || (c < 3974 - ? (c < 3902 - ? (c < 3897 - ? c == 3895 - : c <= 3897) - : (c <= 3911 || (c < 3953 - ? (c >= 3913 && c <= 3948) - : c <= 3972))) - : (c <= 3991 || (c < 4096 - ? (c < 4038 - ? (c >= 3993 && c <= 4028) - : c <= 4038) - : (c <= 4169 || (c >= 4176 && c <= 4253))))))) - : (c <= 4293 || (c < 4786 - ? (c < 4688 - ? (c < 4304 + : (c <= 3773 || (c >= 3776 && c <= 3780))))))))))))) + : (c <= 3782 || (c < 8025 + ? (c < 5888 + ? (c < 4688 + ? (c < 3953 + ? (c < 3872 + ? (c < 3804 + ? (c < 3792 + ? (c >= 3784 && c <= 3789) + : c <= 3801) + : (c <= 3807 || (c < 3864 + ? c == 3840 + : c <= 3865))) + : (c <= 3881 || (c < 3897 + ? (c < 3895 + ? c == 3893 + : c <= 3895) + : (c <= 3897 || (c < 3913 + ? (c >= 3902 && c <= 3911) + : c <= 3948))))) + : (c <= 3972 || (c < 4256 + ? (c < 4038 + ? (c < 3993 + ? (c >= 3974 && c <= 3991) + : c <= 4028) + : (c <= 4038 || (c < 4176 + ? (c >= 4096 && c <= 4169) + : c <= 4253))) + : (c <= 4293 || (c < 4304 ? (c < 4301 ? c == 4295 : c <= 4301) : (c <= 4346 || (c < 4682 ? (c >= 4348 && c <= 4680) - : c <= 4685))) - : (c <= 4694 || (c < 4704 + : c <= 4685))))))) + : (c <= 4694 || (c < 4882 + ? (c < 4786 + ? (c < 4704 ? (c < 4698 ? c == 4696 : c <= 4701) : (c <= 4744 || (c < 4752 ? (c >= 4746 && c <= 4749) - : c <= 4784))))) - : (c <= 4789 || (c < 4882 - ? (c < 4802 + : c <= 4784))) + : (c <= 4789 || (c < 4802 ? (c < 4800 ? (c >= 4792 && c <= 4798) : c <= 4800) : (c <= 4805 || (c < 4824 ? (c >= 4808 && c <= 4822) - : c <= 4880))) - : (c <= 4885 || (c < 4969 + : c <= 4880))))) + : (c <= 4885 || (c < 5112 + ? (c < 4969 ? (c < 4957 ? (c >= 4888 && c <= 4954) : c <= 4959) - : (c <= 4977 || (c >= 4992 && c <= 5007))))))))) - : (c <= 5109 || (c < 6400 - ? (c < 5998 - ? (c < 5870 - ? (c < 5743 - ? (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740) - : (c <= 5759 || (c < 5792 - ? (c >= 5761 && c <= 5786) - : c <= 5866))) - : (c <= 5880 || (c < 5920 - ? (c < 5902 - ? (c >= 5888 && c <= 5900) - : c <= 5908) - : (c <= 5940 || (c < 5984 - ? (c >= 5952 && c <= 5971) - : c <= 5996))))) - : (c <= 6000 || (c < 6155 - ? (c < 6103 - ? (c < 6016 - ? (c >= 6002 && c <= 6003) - : c <= 6099) - : (c <= 6103 || (c < 6112 - ? (c >= 6108 && c <= 6109) - : c <= 6121))) - : (c <= 6157 || (c < 6272 - ? (c < 6176 - ? (c >= 6160 && c <= 6169) - : c <= 6264) - : (c <= 6314 || (c >= 6320 && c <= 6389))))))) - : (c <= 6430 || (c < 6800 - ? (c < 6576 - ? (c < 6470 - ? (c < 6448 + : (c <= 4977 || (c < 5024 + ? (c >= 4992 && c <= 5007) + : c <= 5109))) + : (c <= 5117 || (c < 5761 + ? (c < 5743 + ? (c >= 5121 && c <= 5740) + : c <= 5759) + : (c <= 5786 || (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880))))))))) + : (c <= 5909 || (c < 6688 + ? (c < 6176 + ? (c < 6016 + ? (c < 5984 + ? (c < 5952 + ? (c >= 5919 && c <= 5940) + : c <= 5971) + : (c <= 5996 || (c < 6002 + ? (c >= 5998 && c <= 6000) + : c <= 6003))) + : (c <= 6099 || (c < 6112 + ? (c < 6108 + ? c == 6103 + : c <= 6109) + : (c <= 6121 || (c < 6159 + ? (c >= 6155 && c <= 6157) + : c <= 6169))))) + : (c <= 6264 || (c < 6470 + ? (c < 6400 + ? (c < 6320 + ? (c >= 6272 && c <= 6314) + : c <= 6389) + : (c <= 6430 || (c < 6448 ? (c >= 6432 && c <= 6443) - : c <= 6459) - : (c <= 6509 || (c < 6528 + : c <= 6459))) + : (c <= 6509 || (c < 6576 + ? (c < 6528 ? (c >= 6512 && c <= 6516) - : c <= 6571))) - : (c <= 6601 || (c < 6688 - ? (c < 6656 + : c <= 6571) + : (c <= 6601 || (c < 6656 ? (c >= 6608 && c <= 6618) - : c <= 6683) - : (c <= 6750 || (c < 6783 + : c <= 6683))))))) + : (c <= 6750 || (c < 7232 + ? (c < 6847 + ? (c < 6800 + ? (c < 6783 ? (c >= 6752 && c <= 6780) - : c <= 6793))))) - : (c <= 6809 || (c < 7019 - ? (c < 6847 - ? (c < 6832 + : c <= 6793) + : (c <= 6809 || (c < 6832 ? c == 6823 - : c <= 6845) - : (c <= 6848 || (c < 6992 - ? (c >= 6912 && c <= 6987) - : c <= 7001))) - : (c <= 7027 || (c < 7232 - ? (c < 7168 + : c <= 6845))) + : (c <= 6862 || (c < 7019 + ? (c < 6992 + ? (c >= 6912 && c <= 6988) + : c <= 7001) + : (c <= 7027 || (c < 7168 ? (c >= 7040 && c <= 7155) - : c <= 7223) - : (c <= 7241 || (c >= 7245 && c <= 7293))))))))))) - : (c <= 7304 || (c < 11264 - ? (c < 8178 - ? (c < 8027 - ? (c < 7675 - ? (c < 7376 - ? (c < 7357 - ? (c >= 7312 && c <= 7354) - : c <= 7359) - : (c <= 7378 || (c < 7424 - ? (c >= 7380 && c <= 7418) - : c <= 7673))) - : (c <= 7957 || (c < 8008 - ? (c < 7968 - ? (c >= 7960 && c <= 7965) - : c <= 8005) - : (c <= 8013 || (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025))))) - : (c <= 8027 || (c < 8130 - ? (c < 8064 - ? (c < 8031 - ? c == 8029 - : c <= 8061) - : (c <= 8116 || (c < 8126 - ? (c >= 8118 && c <= 8124) - : c <= 8126))) - : (c <= 8132 || (c < 8150 - ? (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147) - : (c <= 8155 || (c >= 8160 && c <= 8172))))))) - : (c <= 8180 || (c < 8458 - ? (c < 8336 + : c <= 7223))))) + : (c <= 7241 || (c < 7380 + ? (c < 7312 + ? (c < 7296 + ? (c >= 7245 && c <= 7293) + : c <= 7304) + : (c <= 7354 || (c < 7376 + ? (c >= 7357 && c <= 7359) + : c <= 7378))) + : (c <= 7418 || (c < 7968 + ? (c < 7960 + ? (c >= 7424 && c <= 7957) + : c <= 7965) + : (c <= 8005 || (c < 8016 + ? (c >= 8008 && c <= 8013) + : c <= 8023))))))))))) + : (c <= 8025 || (c < 11720 + ? (c < 8458 + ? (c < 8178 + ? (c < 8126 + ? (c < 8031 + ? (c < 8029 + ? c == 8027 + : c <= 8029) + : (c <= 8061 || (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124))) + : (c <= 8126 || (c < 8144 + ? (c < 8134 + ? (c >= 8130 && c <= 8132) + : c <= 8140) + : (c <= 8147 || (c < 8160 + ? (c >= 8150 && c <= 8155) + : c <= 8172))))) + : (c <= 8180 || (c < 8336 ? (c < 8276 ? (c < 8255 ? (c >= 8182 && c <= 8188) @@ -9087,8 +9405,9 @@ static inline bool sym_identifier_character_set_7(int32_t c) { : c <= 8417) : (c <= 8432 || (c < 8455 ? c == 8450 - : c <= 8455))))) - : (c <= 8467 || (c < 8490 + : c <= 8455))))))) + : (c <= 8467 || (c < 11499 + ? (c < 8490 ? (c < 8484 ? (c < 8472 ? c == 8469 @@ -9100,518 +9419,563 @@ static inline bool sym_identifier_character_set_7(int32_t c) { ? (c < 8517 ? (c >= 8508 && c <= 8511) : c <= 8521) - : (c <= 8526 || (c >= 8544 && c <= 8584))))))))) - : (c <= 11310 || (c < 12353 - ? (c < 11696 - ? (c < 11565 - ? (c < 11499 - ? (c < 11360 - ? (c >= 11312 && c <= 11358) - : c <= 11492) - : (c <= 11507 || (c < 11559 + : (c <= 8526 || (c < 11264 + ? (c >= 8544 && c <= 8584) + : c <= 11492))))) + : (c <= 11507 || (c < 11647 + ? (c < 11565 + ? (c < 11559 ? (c >= 11520 && c <= 11557) - : c <= 11559))) - : (c <= 11565 || (c < 11647 - ? (c < 11631 + : c <= 11559) + : (c <= 11565 || (c < 11631 ? (c >= 11568 && c <= 11623) - : c <= 11631) - : (c <= 11670 || (c < 11688 + : c <= 11631))) + : (c <= 11670 || (c < 11696 + ? (c < 11688 ? (c >= 11680 && c <= 11686) - : c <= 11694))))) - : (c <= 11702 || (c < 11744 - ? (c < 11720 - ? (c < 11712 + : c <= 11694) + : (c <= 11702 || (c < 11712 ? (c >= 11704 && c <= 11710) - : c <= 11718) - : (c <= 11726 || (c < 11736 + : c <= 11718))))))))) + : (c <= 11726 || (c < 42623 + ? (c < 12540 + ? (c < 12337 + ? (c < 11744 + ? (c < 11736 ? (c >= 11728 && c <= 11734) - : c <= 11742))) - : (c <= 11775 || (c < 12337 - ? (c < 12321 + : c <= 11742) + : (c <= 11775 || (c < 12321 ? (c >= 12293 && c <= 12295) - : c <= 12335) - : (c <= 12341 || (c >= 12344 && c <= 12348))))))) - : (c <= 12438 || (c < 42192 - ? (c < 12593 - ? (c < 12449 - ? (c < 12445 - ? (c >= 12441 && c <= 12442) - : c <= 12447) - : (c <= 12538 || (c < 12549 - ? (c >= 12540 && c <= 12543) - : c <= 12591))) - : (c <= 12686 || (c < 13312 - ? (c < 12784 - ? (c >= 12704 && c <= 12735) - : c <= 12799) - : (c <= 19903 || (c < 40960 - ? (c >= 19968 && c <= 40956) - : c <= 42124))))) - : (c <= 42237 || (c < 42775 - ? (c < 42560 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42539) - : (c <= 42607 || (c < 42623 - ? (c >= 42612 && c <= 42621) - : c <= 42737))) - : (c <= 42783 || (c < 42946 - ? (c < 42891 - ? (c >= 42786 && c <= 42888) - : c <= 42943) - : (c <= 42954 || (c >= 42997 && c <= 43047))))))))))))))) - : (c <= 43052 || (c < 71096 - ? (c < 66864 - ? (c < 64914 - ? (c < 43816 - ? (c < 43520 - ? (c < 43261 - ? (c < 43216 - ? (c < 43136 - ? (c >= 43072 && c <= 43123) - : c <= 43205) - : (c <= 43225 || (c < 43259 - ? (c >= 43232 && c <= 43255) - : c <= 43259))) - : (c <= 43309 || (c < 43392 - ? (c < 43360 - ? (c >= 43312 && c <= 43347) - : c <= 43388) - : (c <= 43456 || (c < 43488 - ? (c >= 43471 && c <= 43481) - : c <= 43518))))) - : (c <= 43574 || (c < 43744 - ? (c < 43616 - ? (c < 43600 - ? (c >= 43584 && c <= 43597) - : c <= 43609) - : (c <= 43638 || (c < 43739 + : c <= 12335))) + : (c <= 12341 || (c < 12441 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12442 || (c < 12449 + ? (c >= 12445 && c <= 12447) + : c <= 12538))))) + : (c <= 12543 || (c < 19968 + ? (c < 12704 + ? (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686) + : (c <= 12735 || (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903))) + : (c <= 42124 || (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42539 || (c < 42612 + ? (c >= 42560 && c <= 42607) + : c <= 42621))))))) + : (c <= 42737 || (c < 43232 + ? (c < 42965 + ? (c < 42891 + ? (c < 42786 + ? (c >= 42775 && c <= 42783) + : c <= 42888) + : (c <= 42954 || (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963))) + : (c <= 42969 || (c < 43072 + ? (c < 43052 + ? (c >= 42994 && c <= 43047) + : c <= 43052) + : (c <= 43123 || (c < 43216 + ? (c >= 43136 && c <= 43205) + : c <= 43225))))) + : (c <= 43255 || (c < 43471 + ? (c < 43312 + ? (c < 43261 + ? c == 43259 + : c <= 43309) + : (c <= 43347 || (c < 43392 + ? (c >= 43360 && c <= 43388) + : c <= 43456))) + : (c <= 43481 || (c < 43584 + ? (c < 43520 + ? (c >= 43488 && c <= 43518) + : c <= 43574) + : (c <= 43597 || (c >= 43600 && c <= 43609))))))))))))))) + : (c <= 43638 || (c < 71453 + ? (c < 67639 + ? (c < 65345 + ? (c < 64312 + ? (c < 43888 + ? (c < 43785 + ? (c < 43744 + ? (c < 43739 ? (c >= 43642 && c <= 43714) - : c <= 43741))) - : (c <= 43759 || (c < 43785 - ? (c < 43777 + : c <= 43741) + : (c <= 43759 || (c < 43777 ? (c >= 43762 && c <= 43766) - : c <= 43782) - : (c <= 43790 || (c < 43808 + : c <= 43782))) + : (c <= 43790 || (c < 43816 + ? (c < 43808 ? (c >= 43793 && c <= 43798) - : c <= 43814))))))) - : (c <= 43822 || (c < 64275 - ? (c < 44032 - ? (c < 43888 - ? (c < 43868 + : c <= 43814) + : (c <= 43822 || (c < 43868 ? (c >= 43824 && c <= 43866) - : c <= 43881) - : (c <= 44010 || (c < 44016 + : c <= 43881))))) + : (c <= 44010 || (c < 63744 + ? (c < 44032 + ? (c < 44016 ? (c >= 44012 && c <= 44013) - : c <= 44025))) - : (c <= 55203 || (c < 63744 - ? (c < 55243 + : c <= 44025) + : (c <= 55203 || (c < 55243 ? (c >= 55216 && c <= 55238) - : c <= 55291) - : (c <= 64109 || (c < 64256 + : c <= 55291))) + : (c <= 64109 || (c < 64275 + ? (c < 64256 ? (c >= 64112 && c <= 64217) - : c <= 64262))))) - : (c <= 64279 || (c < 64323 - ? (c < 64312 - ? (c < 64298 + : c <= 64262) + : (c <= 64279 || (c < 64298 ? (c >= 64285 && c <= 64296) - : c <= 64310) - : (c <= 64316 || (c < 64320 + : c <= 64310))))))) + : (c <= 64316 || (c < 65075 + ? (c < 64612 + ? (c < 64323 + ? (c < 64320 ? c == 64318 - : c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 + : c <= 64321) + : (c <= 64324 || (c < 64467 ? (c >= 64326 && c <= 64433) - : c <= 64605) - : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) - : (c <= 64967 || (c < 65549 - ? (c < 65151 - ? (c < 65137 - ? (c < 65056 - ? (c < 65024 - ? (c >= 65008 && c <= 65017) - : c <= 65039) - : (c <= 65071 || (c < 65101 - ? (c >= 65075 && c <= 65076) - : c <= 65103))) - : (c <= 65137 || (c < 65145 - ? (c < 65143 - ? c == 65139 - : c <= 65143) - : (c <= 65145 || (c < 65149 - ? c == 65147 - : c <= 65149))))) - : (c <= 65276 || (c < 65474 - ? (c < 65343 - ? (c < 65313 - ? (c >= 65296 && c <= 65305) - : c <= 65338) - : (c <= 65343 || (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65470))) - : (c <= 65479 || (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c >= 65536 && c <= 65547))))))) - : (c <= 65574 || (c < 66349 - ? (c < 65856 - ? (c < 65599 - ? (c < 65596 - ? (c >= 65576 && c <= 65594) - : c <= 65597) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786))) - : (c <= 65908 || (c < 66208 - ? (c < 66176 - ? c == 66045 - : c <= 66204) - : (c <= 66256 || (c < 66304 - ? c == 66272 - : c <= 66335))))) - : (c <= 66378 || (c < 66560 - ? (c < 66464 - ? (c < 66432 - ? (c >= 66384 && c <= 66426) - : c <= 66461) - : (c <= 66499 || (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517))) - : (c <= 66717 || (c < 66776 - ? (c < 66736 - ? (c >= 66720 && c <= 66729) - : c <= 66771) - : (c <= 66811 || (c >= 66816 && c <= 66855))))))))))) - : (c <= 66915 || (c < 69632 - ? (c < 68152 - ? (c < 67808 - ? (c < 67594 - ? (c < 67424 - ? (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413) - : (c <= 67431 || (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592))) - : (c <= 67637 || (c < 67647 - ? (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644) - : (c <= 67669 || (c < 67712 - ? (c >= 67680 && c <= 67702) - : c <= 67742))))) - : (c <= 67826 || (c < 68096 - ? (c < 67872 - ? (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861) - : (c <= 67897 || (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031))) - : (c <= 68099 || (c < 68117 - ? (c < 68108 - ? (c >= 68101 && c <= 68102) - : c <= 68115) - : (c <= 68119 || (c >= 68121 && c <= 68149))))))) - : (c <= 68154 || (c < 68800 - ? (c < 68352 - ? (c < 68224 - ? (c < 68192 - ? c == 68159 - : c <= 68220) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68326))) - : (c <= 68405 || (c < 68480 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : c <= 68466) - : (c <= 68497 || (c < 68736 - ? (c >= 68608 && c <= 68680) - : c <= 68786))))) - : (c <= 68850 || (c < 69376 - ? (c < 69248 - ? (c < 68912 - ? (c >= 68864 && c <= 68903) - : c <= 68921) - : (c <= 69289 || (c < 69296 - ? (c >= 69291 && c <= 69292) - : c <= 69297))) - : (c <= 69404 || (c < 69552 - ? (c < 69424 - ? c == 69415 - : c <= 69456) - : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) - : (c <= 69702 || (c < 70384 - ? (c < 70094 - ? (c < 69942 - ? (c < 69840 - ? (c < 69759 - ? (c >= 69734 && c <= 69743) - : c <= 69818) - : (c <= 69864 || (c < 69888 - ? (c >= 69872 && c <= 69881) - : c <= 69940))) - : (c <= 69951 || (c < 70006 - ? (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003) - : (c <= 70006 || (c < 70089 - ? (c >= 70016 && c <= 70084) - : c <= 70092))))) - : (c <= 70106 || (c < 70280 - ? (c < 70163 - ? (c < 70144 - ? c == 70108 - : c <= 70161) - : (c <= 70199 || (c < 70272 - ? c == 70206 - : c <= 70278))) - : (c <= 70280 || (c < 70303 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301) - : (c <= 70312 || (c >= 70320 && c <= 70378))))))) - : (c <= 70393 || (c < 70487 - ? (c < 70450 - ? (c < 70415 - ? (c < 70405 - ? (c >= 70400 && c <= 70403) - : c <= 70412) - : (c <= 70416 || (c < 70442 - ? (c >= 70419 && c <= 70440) - : c <= 70448))) - : (c <= 70451 || (c < 70471 - ? (c < 70459 - ? (c >= 70453 && c <= 70457) - : c <= 70468) - : (c <= 70472 || (c < 70480 - ? (c >= 70475 && c <= 70477) - : c <= 70480))))) - : (c <= 70487 || (c < 70750 - ? (c < 70512 - ? (c < 70502 - ? (c >= 70493 && c <= 70499) - : c <= 70508) - : (c <= 70516 || (c < 70736 - ? (c >= 70656 && c <= 70730) - : c <= 70745))) - : (c <= 70753 || (c < 70864 - ? (c < 70855 - ? (c >= 70784 && c <= 70853) - : c <= 70855) - : (c <= 70873 || (c >= 71040 && c <= 71093))))))))))))) - : (c <= 71104 || (c < 119894 - ? (c < 73104 - ? (c < 72163 - ? (c < 71935 - ? (c < 71360 - ? (c < 71236 - ? (c < 71168 + : c <= 64605))) + : (c <= 64829 || (c < 65008 + ? (c < 64914 + ? (c >= 64848 && c <= 64911) + : c <= 64967) + : (c <= 65017 || (c < 65056 + ? (c >= 65024 && c <= 65039) + : c <= 65071))))) + : (c <= 65076 || (c < 65147 + ? (c < 65139 + ? (c < 65137 + ? (c >= 65101 && c <= 65103) + : c <= 65137) + : (c <= 65139 || (c < 65145 + ? c == 65143 + : c <= 65145))) + : (c <= 65147 || (c < 65296 + ? (c < 65151 + ? c == 65149 + : c <= 65276) + : (c <= 65305 || (c < 65343 + ? (c >= 65313 && c <= 65338) + : c <= 65343))))))))) + : (c <= 65370 || (c < 66513 + ? (c < 65664 + ? (c < 65536 + ? (c < 65482 + ? (c < 65474 + ? (c >= 65382 && c <= 65470) + : c <= 65479) + : (c <= 65487 || (c < 65498 + ? (c >= 65490 && c <= 65495) + : c <= 65500))) + : (c <= 65547 || (c < 65596 + ? (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594) + : (c <= 65597 || (c < 65616 + ? (c >= 65599 && c <= 65613) + : c <= 65629))))) + : (c <= 65786 || (c < 66304 + ? (c < 66176 + ? (c < 66045 + ? (c >= 65856 && c <= 65908) + : c <= 66045) + : (c <= 66204 || (c < 66272 + ? (c >= 66208 && c <= 66256) + : c <= 66272))) + : (c <= 66335 || (c < 66432 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66426) + : (c <= 66461 || (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511))))))) + : (c <= 66517 || (c < 66979 + ? (c < 66864 + ? (c < 66736 + ? (c < 66720 + ? (c >= 66560 && c <= 66717) + : c <= 66729) + : (c <= 66771 || (c < 66816 + ? (c >= 66776 && c <= 66811) + : c <= 66855))) + : (c <= 66915 || (c < 66956 + ? (c < 66940 + ? (c >= 66928 && c <= 66938) + : c <= 66954) + : (c <= 66962 || (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977))))) + : (c <= 66993 || (c < 67456 + ? (c < 67072 + ? (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004) + : (c <= 67382 || (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431))) + : (c <= 67461 || (c < 67584 + ? (c < 67506 + ? (c >= 67463 && c <= 67504) + : c <= 67514) + : (c <= 67589 || (c < 67594 + ? c == 67592 + : c <= 67637))))))))))) + : (c <= 67640 || (c < 69956 + ? (c < 68448 + ? (c < 68101 + ? (c < 67828 + ? (c < 67680 + ? (c < 67647 + ? c == 67644 + : c <= 67669) + : (c <= 67702 || (c < 67808 + ? (c >= 67712 && c <= 67742) + : c <= 67826))) + : (c <= 67829 || (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c < 68096 + ? (c >= 68030 && c <= 68031) + : c <= 68099))))) + : (c <= 68102 || (c < 68192 + ? (c < 68121 + ? (c < 68117 + ? (c >= 68108 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c < 68159 + ? (c >= 68152 && c <= 68154) + : c <= 68159))) + : (c <= 68220 || (c < 68297 + ? (c < 68288 + ? (c >= 68224 && c <= 68252) + : c <= 68295) + : (c <= 68326 || (c < 68416 + ? (c >= 68352 && c <= 68405) + : c <= 68437))))))) + : (c <= 68466 || (c < 69424 + ? (c < 68912 + ? (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c < 68864 + ? (c >= 68800 && c <= 68850) + : c <= 68903))) + : (c <= 68921 || (c < 69296 + ? (c < 69291 + ? (c >= 69248 && c <= 69289) + : c <= 69292) + : (c <= 69297 || (c < 69415 + ? (c >= 69376 && c <= 69404) + : c <= 69415))))) + : (c <= 69456 || (c < 69759 + ? (c < 69600 + ? (c < 69552 + ? (c >= 69488 && c <= 69509) + : c <= 69572) + : (c <= 69622 || (c < 69734 + ? (c >= 69632 && c <= 69702) + : c <= 69749))) + : (c <= 69818 || (c < 69872 + ? (c < 69840 + ? c == 69826 + : c <= 69864) + : (c <= 69881 || (c < 69942 + ? (c >= 69888 && c <= 69940) + : c <= 69951))))))))) + : (c <= 69959 || (c < 70459 + ? (c < 70282 + ? (c < 70108 + ? (c < 70016 + ? (c < 70006 + ? (c >= 69968 && c <= 70003) + : c <= 70006) + : (c <= 70084 || (c < 70094 + ? (c >= 70089 && c <= 70092) + : c <= 70106))) + : (c <= 70108 || (c < 70206 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70199) + : (c <= 70206 || (c < 70280 + ? (c >= 70272 && c <= 70278) + : c <= 70280))))) + : (c <= 70285 || (c < 70405 + ? (c < 70320 + ? (c < 70303 + ? (c >= 70287 && c <= 70301) + : c <= 70312) + : (c <= 70378 || (c < 70400 + ? (c >= 70384 && c <= 70393) + : c <= 70403))) + : (c <= 70412 || (c < 70442 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440) + : (c <= 70448 || (c < 70453 + ? (c >= 70450 && c <= 70451) + : c <= 70457))))))) + : (c <= 70468 || (c < 70855 + ? (c < 70502 + ? (c < 70480 + ? (c < 70475 + ? (c >= 70471 && c <= 70472) + : c <= 70477) + : (c <= 70480 || (c < 70493 + ? c == 70487 + : c <= 70499))) + : (c <= 70508 || (c < 70736 + ? (c < 70656 + ? (c >= 70512 && c <= 70516) + : c <= 70730) + : (c <= 70745 || (c < 70784 + ? (c >= 70750 && c <= 70753) + : c <= 70853))))) + : (c <= 70855 || (c < 71236 + ? (c < 71096 + ? (c < 71040 + ? (c >= 70864 && c <= 70873) + : c <= 71093) + : (c <= 71104 || (c < 71168 ? (c >= 71128 && c <= 71133) - : c <= 71232) - : (c <= 71236 || (c < 71296 + : c <= 71232))) + : (c <= 71236 || (c < 71360 + ? (c < 71296 ? (c >= 71248 && c <= 71257) - : c <= 71352))) - : (c <= 71369 || (c < 71472 - ? (c < 71453 - ? (c >= 71424 && c <= 71450) - : c <= 71467) - : (c <= 71481 || (c < 71840 - ? (c >= 71680 && c <= 71738) - : c <= 71913))))) - : (c <= 71942 || (c < 71995 - ? (c < 71957 - ? (c < 71948 - ? c == 71945 - : c <= 71955) - : (c <= 71958 || (c < 71991 - ? (c >= 71960 && c <= 71989) - : c <= 71992))) - : (c <= 72003 || (c < 72106 - ? (c < 72096 - ? (c >= 72016 && c <= 72025) - : c <= 72103) - : (c <= 72151 || (c >= 72154 && c <= 72161))))))) - : (c <= 72164 || (c < 72873 - ? (c < 72704 - ? (c < 72272 - ? (c < 72263 - ? (c >= 72192 && c <= 72254) - : c <= 72263) - : (c <= 72345 || (c < 72384 - ? c == 72349 - : c <= 72440))) - : (c <= 72712 || (c < 72784 - ? (c < 72760 - ? (c >= 72714 && c <= 72758) - : c <= 72768) - : (c <= 72793 || (c < 72850 - ? (c >= 72818 && c <= 72847) - : c <= 72871))))) - : (c <= 72886 || (c < 73023 - ? (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73014 || (c < 73020 - ? c == 73018 - : c <= 73021))) - : (c <= 73031 || (c < 73063 - ? (c < 73056 - ? (c >= 73040 && c <= 73049) - : c <= 73061) - : (c <= 73064 || (c >= 73066 && c <= 73102))))))))) - : (c <= 73105 || (c < 94095 - ? (c < 92768 - ? (c < 74752 - ? (c < 73440 - ? (c < 73120 + : c <= 71352) + : (c <= 71369 || (c >= 71424 && c <= 71450))))))))))))) + : (c <= 71467 || (c < 119973 + ? (c < 77824 + ? (c < 72760 + ? (c < 72016 + ? (c < 71945 + ? (c < 71680 + ? (c < 71488 + ? (c >= 71472 && c <= 71481) + : c <= 71494) + : (c <= 71738 || (c < 71935 + ? (c >= 71840 && c <= 71913) + : c <= 71942))) + : (c <= 71945 || (c < 71960 + ? (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958) + : (c <= 71989 || (c < 71995 + ? (c >= 71991 && c <= 71992) + : c <= 72003))))) + : (c <= 72025 || (c < 72263 + ? (c < 72154 + ? (c < 72106 + ? (c >= 72096 && c <= 72103) + : c <= 72151) + : (c <= 72161 || (c < 72192 + ? (c >= 72163 && c <= 72164) + : c <= 72254))) + : (c <= 72263 || (c < 72368 + ? (c < 72349 + ? (c >= 72272 && c <= 72345) + : c <= 72349) + : (c <= 72440 || (c < 72714 + ? (c >= 72704 && c <= 72712) + : c <= 72758))))))) + : (c <= 72768 || (c < 73056 + ? (c < 72968 + ? (c < 72850 + ? (c < 72818 + ? (c >= 72784 && c <= 72793) + : c <= 72847) + : (c <= 72871 || (c < 72960 + ? (c >= 72873 && c <= 72886) + : c <= 72966))) + : (c <= 72969 || (c < 73020 + ? (c < 73018 + ? (c >= 72971 && c <= 73014) + : c <= 73018) + : (c <= 73021 || (c < 73040 + ? (c >= 73023 && c <= 73031) + : c <= 73049))))) + : (c <= 73061 || (c < 73440 + ? (c < 73104 + ? (c < 73066 + ? (c >= 73063 && c <= 73064) + : c <= 73102) + : (c <= 73105 || (c < 73120 ? (c >= 73107 && c <= 73112) - : c <= 73129) - : (c <= 73462 || (c < 73728 + : c <= 73129))) + : (c <= 73462 || (c < 74752 + ? (c < 73728 ? c == 73648 - : c <= 74649))) - : (c <= 74862 || (c < 82944 - ? (c < 77824 + : c <= 74649) + : (c <= 74862 || (c < 77712 ? (c >= 74880 && c <= 75075) - : c <= 78894) - : (c <= 83526 || (c < 92736 - ? (c >= 92160 && c <= 92728) - : c <= 92766))))) - : (c <= 92777 || (c < 93027 - ? (c < 92928 + : c <= 77808))))))))) + : (c <= 78894 || (c < 110576 + ? (c < 93027 + ? (c < 92864 + ? (c < 92736 + ? (c < 92160 + ? (c >= 82944 && c <= 83526) + : c <= 92728) + : (c <= 92766 || (c < 92784 + ? (c >= 92768 && c <= 92777) + : c <= 92862))) + : (c <= 92873 || (c < 92928 ? (c < 92912 ? (c >= 92880 && c <= 92909) : c <= 92916) : (c <= 92982 || (c < 93008 ? (c >= 92992 && c <= 92995) - : c <= 93017))) - : (c <= 93047 || (c < 93952 + : c <= 93017))))) + : (c <= 93047 || (c < 94176 + ? (c < 93952 ? (c < 93760 ? (c >= 93053 && c <= 93071) : c <= 93823) - : (c <= 94026 || (c >= 94031 && c <= 94087))))))) - : (c <= 94111 || (c < 113776 - ? (c < 101632 - ? (c < 94192 - ? (c < 94179 - ? (c >= 94176 && c <= 94177) - : c <= 94180) - : (c <= 94193 || (c < 100352 - ? (c >= 94208 && c <= 100343) - : c <= 101589))) - : (c <= 101640 || (c < 110948 - ? (c < 110928 - ? (c >= 110592 && c <= 110878) - : c <= 110930) - : (c <= 110951 || (c < 113664 - ? (c >= 110960 && c <= 111355) - : c <= 113770))))) - : (c <= 113788 || (c < 119163 - ? (c < 113821 - ? (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817) - : (c <= 113822 || (c < 119149 - ? (c >= 119141 && c <= 119145) - : c <= 119154))) - : (c <= 119170 || (c < 119362 - ? (c < 119210 - ? (c >= 119173 && c <= 119179) - : c <= 119213) - : (c <= 119364 || (c >= 119808 && c <= 119892))))))))))) - : (c <= 119964 || (c < 124928 - ? (c < 120630 - ? (c < 120094 - ? (c < 119995 - ? (c < 119973 - ? (c < 119970 + : (c <= 94026 || (c < 94095 + ? (c >= 94031 && c <= 94087) + : c <= 94111))) + : (c <= 94177 || (c < 94208 + ? (c < 94192 + ? (c >= 94179 && c <= 94180) + : c <= 94193) + : (c <= 100343 || (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640))))))) + : (c <= 110579 || (c < 118528 + ? (c < 110960 + ? (c < 110592 + ? (c < 110589 + ? (c >= 110581 && c <= 110587) + : c <= 110590) + : (c <= 110882 || (c < 110948 + ? (c >= 110928 && c <= 110930) + : c <= 110951))) + : (c <= 111355 || (c < 113792 + ? (c < 113776 + ? (c >= 113664 && c <= 113770) + : c <= 113788) + : (c <= 113800 || (c < 113821 + ? (c >= 113808 && c <= 113817) + : c <= 113822))))) + : (c <= 118573 || (c < 119210 + ? (c < 119149 + ? (c < 119141 + ? (c >= 118576 && c <= 118598) + : c <= 119145) + : (c <= 119154 || (c < 119173 + ? (c >= 119163 && c <= 119170) + : c <= 119179))) + : (c <= 119213 || (c < 119894 + ? (c < 119808 + ? (c >= 119362 && c <= 119364) + : c <= 119892) + : (c <= 119964 || (c < 119970 ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : c <= 119970))))))))))) + : (c <= 119974 || (c < 124912 + ? (c < 120746 + ? (c < 120134 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 + : c <= 119993) + : (c <= 119995 || (c < 120005 ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c < 120086 + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 ? (c >= 120077 && c <= 120084) - : c <= 120092))))) - : (c <= 120121 || (c < 120488 - ? (c < 120134 - ? (c < 120128 + : c <= 120092) + : (c <= 120121 || (c < 120128 ? (c >= 120123 && c <= 120126) - : c <= 120132) - : (c <= 120134 || (c < 120146 + : c <= 120132))))) + : (c <= 120134 || (c < 120572 + ? (c < 120488 + ? (c < 120146 ? (c >= 120138 && c <= 120144) - : c <= 120485))) - : (c <= 120512 || (c < 120572 - ? (c < 120540 + : c <= 120485) + : (c <= 120512 || (c < 120540 ? (c >= 120514 && c <= 120538) - : c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))))))) - : (c <= 120654 || (c < 121505 - ? (c < 120782 - ? (c < 120714 - ? (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712) - : (c <= 120744 || (c < 120772 - ? (c >= 120746 && c <= 120770) - : c <= 120779))) - : (c <= 120831 || (c < 121461 - ? (c < 121403 - ? (c >= 121344 && c <= 121398) - : c <= 121452) - : (c <= 121461 || (c < 121499 - ? c == 121476 - : c <= 121503))))) - : (c <= 121519 || (c < 123136 - ? (c < 122907 - ? (c < 122888 + : c <= 120570))) + : (c <= 120596 || (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744))))))) + : (c <= 120770 || (c < 122907 + ? (c < 121476 + ? (c < 121344 + ? (c < 120782 + ? (c >= 120772 && c <= 120779) + : c <= 120831) + : (c <= 121398 || (c < 121461 + ? (c >= 121403 && c <= 121452) + : c <= 121461))) + : (c <= 121476 || (c < 122624 + ? (c < 121505 + ? (c >= 121499 && c <= 121503) + : c <= 121519) + : (c <= 122654 || (c < 122888 ? (c >= 122880 && c <= 122886) - : c <= 122904) - : (c <= 122913 || (c < 122918 + : c <= 122904))))) + : (c <= 122913 || (c < 123214 + ? (c < 123136 + ? (c < 122918 ? (c >= 122915 && c <= 122916) - : c <= 122922))) - : (c <= 123180 || (c < 123214 - ? (c < 123200 + : c <= 122922) + : (c <= 123180 || (c < 123200 ? (c >= 123184 && c <= 123197) - : c <= 123209) - : (c <= 123214 || (c >= 123584 && c <= 123641))))))))) - : (c <= 125124 || (c < 126557 - ? (c < 126523 - ? (c < 126497 - ? (c < 125264 - ? (c < 125184 - ? (c >= 125136 && c <= 125142) - : c <= 125259) - : (c <= 125273 || (c < 126469 - ? (c >= 126464 && c <= 126467) - : c <= 126495))) - : (c <= 126498 || (c < 126505 - ? (c < 126503 - ? c == 126500 - : c <= 126503) - : (c <= 126514 || (c < 126521 - ? (c >= 126516 && c <= 126519) - : c <= 126521))))) - : (c <= 126523 || (c < 126545 - ? (c < 126537 - ? (c < 126535 - ? c == 126530 - : c <= 126535) - : (c <= 126537 || (c < 126541 - ? c == 126539 - : c <= 126543))) - : (c <= 126546 || (c < 126553 - ? (c < 126551 - ? c == 126548 - : c <= 126551) - : (c <= 126553 || c == 126555)))))) + : c <= 123209))) + : (c <= 123214 || (c < 124896 + ? (c < 123584 + ? (c >= 123536 && c <= 123566) + : c <= 123641) + : (c <= 124902 || (c < 124909 + ? (c >= 124904 && c <= 124907) + : c <= 124910))))))))) + : (c <= 124926 || (c < 126557 + ? (c < 126521 + ? (c < 126469 + ? (c < 125184 + ? (c < 125136 + ? (c >= 124928 && c <= 125124) + : c <= 125142) + : (c <= 125259 || (c < 126464 + ? (c >= 125264 && c <= 125273) + : c <= 126467))) + : (c <= 126495 || (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : c <= 126519))))) + : (c <= 126521 || (c < 126541 + ? (c < 126535 + ? (c < 126530 + ? c == 126523 + : c <= 126530) + : (c <= 126535 || (c < 126539 + ? c == 126537 + : c <= 126539))) + : (c <= 126543 || (c < 126551 + ? (c < 126548 + ? (c >= 126545 && c <= 126546) + : c <= 126548) + : (c <= 126551 || (c < 126555 + ? c == 126553 + : c <= 126555))))))) : (c <= 126557 || (c < 126629 ? (c < 126580 ? (c < 126564 @@ -9633,8 +9997,8 @@ static inline bool sym_identifier_character_set_7(int32_t c) { ? (c < 130032 ? (c >= 126635 && c <= 126651) : c <= 130041) - : (c <= 173789 || (c < 177984 - ? (c >= 173824 && c <= 177972) + : (c <= 173791 || (c < 177984 + ? (c >= 173824 && c <= 177976) : c <= 178205))) : (c <= 183969 || (c < 196608 ? (c < 194560 @@ -11689,7 +12053,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { } } -static TSLexMode ts_lex_modes[STATE_COUNT] = { +static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 58, .external_lex_state = 2}, [2] = {.lex_state = 58, .external_lex_state = 2}, @@ -14266,14 +14630,14 @@ enum { ts_external_token_block_comment = 3, }; -static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__string_content] = sym__string_content, [ts_external_token_raw_string_literal] = sym_raw_string_literal, [ts_external_token_float_literal] = sym_float_literal, [ts_external_token_block_comment] = sym_block_comment, }; -static bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__string_content] = true, [ts_external_token_raw_string_literal] = true, @@ -14298,7 +14662,7 @@ static bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { }, }; -static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), @@ -70570,7 +70934,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, }; -static uint16_t ts_small_parse_table[] = { +static const uint16_t ts_small_parse_table[] = { [0] = 32, ACTIONS(77), 1, anon_sym_LT, @@ -126320,7 +126684,7 @@ static uint16_t ts_small_parse_table[] = { sym_line_comment, }; -static uint32_t ts_small_parse_table_map[] = { +static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(647)] = 0, [SMALL_STATE(648)] = 129, [SMALL_STATE(649)] = 258, @@ -128243,7 +128607,7 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2566)] = 68282, }; -static TSParseActionEntry ts_parse_actions[] = { +static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), @@ -130975,7 +131339,7 @@ void tree_sitter_rust_external_scanner_deserialize(void *, const char *, unsigne #endif extern const TSLanguage *tree_sitter_rust(void) { - static TSLanguage language = { + static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, @@ -130986,24 +131350,24 @@ extern const TSLanguage *tree_sitter_rust(void) { .production_id_count = PRODUCTION_ID_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, - .parse_table = (const uint16_t *)ts_parse_table, - .small_parse_table = (const uint16_t *)ts_small_parse_table, - .small_parse_table_map = (const uint32_t *)ts_small_parse_table_map, + .parse_table = &ts_parse_table[0][0], + .small_parse_table = ts_small_parse_table, + .small_parse_table_map = ts_small_parse_table_map, .parse_actions = ts_parse_actions, .symbol_names = ts_symbol_names, .field_names = ts_field_names, - .field_map_slices = (const TSFieldMapSlice *)ts_field_map_slices, - .field_map_entries = (const TSFieldMapEntry *)ts_field_map_entries, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, - .alias_sequences = (const TSSymbol *)ts_alias_sequences, + .alias_sequences = &ts_alias_sequences[0][0], .lex_modes = ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, .external_scanner = { - (const bool *)ts_external_scanner_states, + &ts_external_scanner_states[0][0], ts_external_scanner_symbol_map, tree_sitter_rust_external_scanner_create, tree_sitter_rust_external_scanner_destroy, diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index a3a87bd1..2b14ac10 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -102,8 +102,8 @@ struct TSLanguage { const uint16_t *small_parse_table; const uint32_t *small_parse_table_map; const TSParseActionEntry *parse_actions; - const char **symbol_names; - const char **field_names; + const char * const *symbol_names; + const char * const *field_names; const TSFieldMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; @@ -123,6 +123,7 @@ struct TSLanguage { unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; + const TSStateId *primary_state_ids; }; /*